Class: Google::Apis::DeploymentmanagerAlpha::CompositeType

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/deploymentmanager_alpha/classes.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb

Overview

Holds the composite type.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CompositeType

Returns a new instance of CompositeType.



312
313
314
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 312

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

An optional textual description of the resource; provided by the client when the resource is created. Corresponds to the JSON property description

Returns:

  • (String)


261
262
263
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 261

def description
  @description
end

#idFixnum

Corresponds to the JSON property id

Returns:

  • (Fixnum)


266
267
268
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 266

def id
  @id
end

#insert_timeString

Output only. Creation timestamp in RFC3339 text format. Corresponds to the JSON property insertTime

Returns:

  • (String)


271
272
273
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 271

def insert_time
  @insert_time
end

#labelsArray<Google::Apis::DeploymentmanagerAlpha::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



280
281
282
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 280

def labels
  @labels
end

#nameString

Name of the composite type, must follow the expression: a-z?. Corresponds to the JSON property name

Returns:

  • (String)


286
287
288
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 286

def name
  @name
end

#operationGoogle::Apis::DeploymentmanagerAlpha::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



295
296
297
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 295

def operation
  @operation
end

Output only. Server defined URL for the resource. Corresponds to the JSON property selfLink

Returns:

  • (String)


300
301
302
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 300

def self_link
  @self_link
end

#statusString

Corresponds to the JSON property status

Returns:

  • (String)


305
306
307
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 305

def status
  @status
end

#template_contentsGoogle::Apis::DeploymentmanagerAlpha::TemplateContents

Files that make up the template contents of a template type. Corresponds to the JSON property templateContents



310
311
312
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 310

def template_contents
  @template_contents
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



317
318
319
320
321
322
323
324
325
326
327
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 317

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