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
Corresponds to the JSON property
id
. -
#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]([-a-z0-9_.]
0, 61[a-z0-9])?
. -
#operation ⇒ Google::Apis::DeploymentmanagerV2beta::Operation
Represents an Operation resource.
-
#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.
Constructor Details
#initialize(**args) ⇒ CompositeType
Returns a new instance of CompositeType.
347 348 349 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 347 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
291 292 293 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 291 def description @description end |
#id ⇒ Fixnum
Corresponds to the JSON property id
296 297 298 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 296 def id @id end |
#insert_time ⇒ String
Output only. Creation timestamp in RFC3339 text format.
Corresponds to the JSON property insertTime
301 302 303 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 301 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]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the
regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?
.
Corresponds to the JSON property labels
310 311 312 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 310 def labels @labels end |
#name ⇒ String
Name of the composite type, must follow the expression: [a-z]([-a-z0-9_.]
0,
61[a-z0-9])?
.
Corresponds to the JSON property name
316 317 318 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 316 def name @name end |
#operation ⇒ Google::Apis::DeploymentmanagerV2beta::Operation
Represents an Operation resource. Google Compute Engine has three Operation
resources: * Global * Regional * Zonal You can use an operation resource to manage asynchronous API
requests. For more information, read Handling API responses. Operations can be
global, regional or zonal. - For global operations, use the globalOperations
resource. - For regional operations, use the regionOperations
resource. -
For zonal operations, use the zonalOperations
resource. For more information,
read Global, Regional, and Zonal Resources.
Corresponds to the JSON property operation
330 331 332 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 330 def operation @operation end |
#self_link ⇒ String
Output only. Server defined URL for the resource.
Corresponds to the JSON property selfLink
335 336 337 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 335 def self_link @self_link end |
#status ⇒ String
Corresponds to the JSON property status
340 341 342 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 340 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
345 346 347 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 345 def template_contents @template_contents end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
352 353 354 355 356 357 358 359 360 361 362 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 352 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 |