packer-cn/vendor/github.com/oracle/oci-go-sdk/identity/region.go

43 lines
1.4 KiB
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"
)
// Region A localized geographic area, such as Phoenix, AZ. Oracle Cloud Infrastructure is hosted in regions and Availability
// Domains. A region is composed of several Availability Domains. An Availability Domain is one or more data centers
// located within a region. For more information, see Regions and Availability Domains (https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/regions.htm).
// To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized,
// talk to an administrator. If you're an administrator who needs to write policies to give users access,
// see Getting Started with Policies (https://docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/policygetstarted.htm).
type Region struct {
// The key of the region.
// Allowed values are:
// - `PHX`
// - `IAD`
// - `FRA`
// - `LHR`
Key *string `mandatory:"false" json:"key"`
// The name of the region.
// Allowed values are:
// - `us-phoenix-1`
// - `us-ashburn-1`
// - `eu-frankfurt-1`
// - `uk-london-1`
Name *string `mandatory:"false" json:"name"`
}
func (m Region) String() string {
return common.PointerString(m)
}