-
Notifications
You must be signed in to change notification settings - Fork 82
/
stack_summary.go
66 lines (52 loc) · 2.81 KB
/
stack_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
58
59
60
61
62
63
64
65
66
// Copyright (c) 2016, 2018, 2020, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// Resource Manager API
//
// API for the Resource Manager service.
// Use this API to install, configure, and manage resources via the "infrastructure-as-code" model.
// For more information, see
// Overview of Resource Manager (https://docs.cloud.oracle.com/iaas/Content/ResourceManager/Concepts/resourcemanager.htm).
//
package resourcemanager
import (
"github.com/oracle/oci-go-sdk/common"
)
// StackSummary Returns a list of properties and the defining property values for the specified stack.
type StackSummary struct {
// Unique identifier of the specified stack.
Id *string `mandatory:"false" json:"id"`
// Unique identifier of the compartment in which the stack resides.
CompartmentId *string `mandatory:"false" json:"compartmentId"`
// Human-readable display name for the stack.
DisplayName *string `mandatory:"false" json:"displayName"`
// General description of the stack.
Description *string `mandatory:"false" json:"description"`
// The date and time when the stack was created.
// Format is defined by RFC3339.
// Example: `2020-01-25T21:10:29.600Z`
TimeCreated *common.SDKTime `mandatory:"false" json:"timeCreated"`
// The current lifecycle state of the stack.
// For more information about stack lifecycle states in Resource Manager, see
// Key Concepts (https://docs.cloud.oracle.com/iaas/Content/ResourceManager/Concepts/resourcemanager.htm#StackStates).
// Allowable values:
// - CREATING
// - ACTIVE
// - DELETING
// - DELETED
// - FAILED
LifecycleState StackLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"`
// The version of Terraform specified for the stack. Example: `0.12.x`
TerraformVersion *string `mandatory:"false" json:"terraformVersion"`
// Free-form tags associated with this resource. Each tag is a key-value pair with no predefined name, type, or namespace.
// For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/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/iaas/Content/General/Concepts/resourcetags.htm).
// Example: `{"Operations": {"CostCenter": "42"}}`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
}
func (m StackSummary) String() string {
return common.PointerString(m)
}