Class: Google::Apis::DeploymentmanagerV2beta::Type
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2beta::Type
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/deploymentmanager_v2beta/classes.rb,
generated/google/apis/deploymentmanager_v2beta/representations.rb,
generated/google/apis/deploymentmanager_v2beta/representations.rb
Overview
A resource type supported by Deployment Manager.
Instance Attribute Summary collapse
-
#base ⇒ Google::Apis::DeploymentmanagerV2beta::BaseType
BaseType that describes a service-backed Type.
-
#description ⇒ String
An optional textual description of the resource; provided by the client when the resource is created.
-
#id ⇒ Fixnum
Output only.
-
#insert_time ⇒ String
Output only.
-
#labels ⇒ Array<Google::Apis::DeploymentmanagerV2beta::TypeLabelEntry>
Map of labels; provided by the client when the resource is created or updated.
-
#name ⇒ String
Name of the type.
-
#operation ⇒ Google::Apis::DeploymentmanagerV2beta::Operation
An Operation resource, used to manage asynchronous API requests.
-
#self_link ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Type
constructor
A new instance of Type.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Type
Returns a new instance of Type
2145 2146 2147 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2145 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base ⇒ Google::Apis::DeploymentmanagerV2beta::BaseType
BaseType that describes a service-backed Type.
Corresponds to the JSON property base
2099 2100 2101 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2099 def base @base end |
#description ⇒ String
An optional textual description of the resource; provided by the client when
the resource is created.
Corresponds to the JSON property description
2105 2106 2107 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2105 def description @description end |
#id ⇒ Fixnum
Output only. Unique identifier for the resource; defined by the server.
Corresponds to the JSON property id
2110 2111 2112 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2110 def id @id end |
#insert_time ⇒ String
Output only. Timestamp when the type was created, in RFC3339 text format.
Corresponds to the JSON property insertTime
2115 2116 2117 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2115 def insert_time @insert_time end |
#labels ⇒ Array<Google::Apis::DeploymentmanagerV2beta::TypeLabelEntry>
Map of labels; provided by the client when the resource is created or updated.
Specifically: Label keys must be between 1 and 63 characters long and must
conform to the following regular expression: a-z? Label
values must be between 0 and 63 characters long and must conform to the
regular expression (a-z?)?
Corresponds to the JSON property labels
2124 2125 2126 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2124 def labels @labels end |
#name ⇒ String
Name of the type.
Corresponds to the JSON property name
2129 2130 2131 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2129 def name @name end |
#operation ⇒ Google::Apis::DeploymentmanagerV2beta::Operation
An Operation resource, used to manage asynchronous API requests. (==
resource_for v1.globalOperations ==) (== resource_for beta.globalOperations ==)
(== resource_for v1.regionOperations ==) (== resource_for beta.
regionOperations ==) (== resource_for v1.zoneOperations ==) (== resource_for
beta.zoneOperations ==)
Corresponds to the JSON property operation
2138 2139 2140 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2138 def operation @operation end |
#self_link ⇒ String
Output only. Self link for the type.
Corresponds to the JSON property selfLink
2143 2144 2145 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2143 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2150 def update!(**args) @base = args[:base] if args.key?(:base) @description = args[:description] if args.key?(:description) @id = args[:id] if args.key?(:id) @insert_time = args[:insert_time] if args.key?(:insert_time) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @operation = args[:operation] if args.key?(:operation) @self_link = args[:self_link] if args.key?(:self_link) end |