-
Notifications
You must be signed in to change notification settings - Fork 82
/
update_compartment_details.go
38 lines (29 loc) · 1.54 KB
/
update_compartment_details.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
// Copyright (c) 2016, 2018, 2019, 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"
)
// UpdateCompartmentDetails The representation of UpdateCompartmentDetails
type UpdateCompartmentDetails struct {
// The description you assign to the compartment. Does not have to be unique, and it's changeable.
Description *string `mandatory:"false" json:"description"`
// The new name you assign to the compartment. The name must be unique across all compartments in the parent compartment.
// Avoid entering confidential information.
Name *string `mandatory:"false" json:"name"`
// Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
// For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
// Example: `{"Department": "Finance"}`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
// Defined tags for this resource. Each key is predefined and scoped to a namespace.
// For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
// Example: `{"Operations": {"CostCenter": "42"}}`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
}
func (m UpdateCompartmentDetails) String() string {
return common.PointerString(m)
}