30 lines
938 B
Go
30 lines
938 B
Go
// Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
// Code generated. DO NOT EDIT.
|
|
|
|
// Identity and Access Management Service API
|
|
//
|
|
// APIs for managing users, groups, compartments, and policies.
|
|
//
|
|
|
|
package identity
|
|
|
|
import (
|
|
"github.com/oracle/oci-go-sdk/common"
|
|
)
|
|
|
|
// AvailabilityDomain One or more isolated, fault-tolerant Oracle data centers that host cloud resources such as instances, volumes,
|
|
// and subnets. A region contains several Availability Domains. For more information, see
|
|
// Regions and Availability Domains (https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/regions.htm).
|
|
type AvailabilityDomain struct {
|
|
|
|
// The name of the Availability Domain.
|
|
Name *string `mandatory:"false" json:"name"`
|
|
|
|
// The OCID of the tenancy.
|
|
CompartmentId *string `mandatory:"false" json:"compartmentId"`
|
|
}
|
|
|
|
func (m AvailabilityDomain) String() string {
|
|
return common.PointerString(m)
|
|
}
|