-
Notifications
You must be signed in to change notification settings - Fork 82
/
tag_summary.go
57 lines (42 loc) · 2.41 KB
/
tag_summary.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// 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"
)
// TagSummary A tag definition that belongs to a specific tag namespace.
type TagSummary struct {
// The OCID of the compartment that contains the tag definition.
CompartmentId *string `mandatory:"false" json:"compartmentId"`
// The OCID of the tag definition.
Id *string `mandatory:"false" json:"id"`
// The name of the tag. The name must be unique across all tags in the tag namespace and can't be changed.
Name *string `mandatory:"false" json:"name"`
// The description you assign to the tag.
Description *string `mandatory:"false" json:"description"`
// 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"`
// Whether the tag is retired.
// See Retiring Key Definitions and Namespace Definitions (https://docs.cloud.oracle.com/Content/Identity/Concepts/taggingoverview.htm#Retiring).
IsRetired *bool `mandatory:"false" json:"isRetired"`
// The tag's current state. After creating a tag, make sure its `lifecycleState` is ACTIVE before using it. After retiring a tag, make sure its `lifecycleState` is INACTIVE before using it.
LifecycleState TagLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"`
// Date and time the tag was created, in the format defined by RFC3339.
// Example: `2016-08-25T21:10:29.600Z`
TimeCreated *common.SDKTime `mandatory:"false" json:"timeCreated"`
// Indicates whether the tag is enabled for cost tracking.
IsCostTracking *bool `mandatory:"false" json:"isCostTracking"`
}
func (m TagSummary) String() string {
return common.PointerString(m)
}