-
Notifications
You must be signed in to change notification settings - Fork 82
/
region.go
42 lines (35 loc) · 1.44 KB
/
region.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// 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)
}