Class: Google::Apis::DeploymentmanagerV2beta::CompositeType
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2beta::CompositeType
- 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
Holds the composite type.
Instance Attribute Summary collapse
-
#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::CompositeTypeLabelEntry>
Map of labels; provided by the client when the resource is created or updated.
-
#name ⇒ String
Name of the composite type, must follow the expression: a-z?.
-
#operation ⇒ Google::Apis::DeploymentmanagerV2beta::Operation
An Operation resource, used to manage asynchronous API requests.
-
#self_link ⇒ String
Output only.
-
#status ⇒ String
Corresponds to the JSON property
status
. -
#template_contents ⇒ Google::Apis::DeploymentmanagerV2beta::TemplateContents
Files that make up the template contents of a template type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CompositeType
constructor
A new instance of CompositeType.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CompositeType
Returns a new instance of CompositeType
344 345 346 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 344 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
An optional textual description of the resource; provided by the client when
the resource is created.
Corresponds to the JSON property description
292 293 294 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 292 def description @description end |
#id ⇒ Fixnum
Output only. Unique identifier for the resource; defined by the server.
Corresponds to the JSON property id
297 298 299 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 297 def id @id end |
#insert_time ⇒ String
Output only. Timestamp when the composite type was created, in RFC3339 text
format.
Corresponds to the JSON property insertTime
303 304 305 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 303 def insert_time @insert_time end |
#labels ⇒ Array<Google::Apis::DeploymentmanagerV2beta::CompositeTypeLabelEntry>
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
312 313 314 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 312 def labels @labels end |
#name ⇒ String
Name of the composite type, must follow the expression: a-z?.
Corresponds to the JSON property name
318 319 320 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 318 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
327 328 329 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 327 def operation @operation end |
#self_link ⇒ String
Output only. Self link for the type provider.
Corresponds to the JSON property selfLink
332 333 334 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 332 def self_link @self_link end |
#status ⇒ String
Corresponds to the JSON property status
337 338 339 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 337 def status @status end |
#template_contents ⇒ Google::Apis::DeploymentmanagerV2beta::TemplateContents
Files that make up the template contents of a template type.
Corresponds to the JSON property templateContents
342 343 344 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 342 def template_contents @template_contents end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
349 350 351 352 353 354 355 356 357 358 359 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 349 def update!(**args) @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) @status = args[:status] if args.key?(:status) @template_contents = args[:template_contents] if args.key?(:template_contents) end |