Class: Google::Apis::DeploymentmanagerV2::Type

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

Overview

A resource type supported by Deployment Manager.

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) ⇒ Type

Returns a new instance of Type



1739
1740
1741
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1739

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

Instance Attribute Details

#idFixnum

Output only. Unique identifier for the resource; defined by the server. Corresponds to the JSON property id

Returns:

  • (Fixnum)


1713
1714
1715
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1713

def id
  @id
end

#insert_timeString

Output only. Timestamp when the type was created, in RFC3339 text format. Corresponds to the JSON property insertTime

Returns:

  • (String)


1718
1719
1720
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1718

def insert_time
  @insert_time
end

#nameString

Name of the type. Corresponds to the JSON property name

Returns:

  • (String)


1723
1724
1725
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1723

def name
  @name
end

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



1732
1733
1734
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1732

def operation
  @operation
end

Output only. Self link for the type. Corresponds to the JSON property selfLink

Returns:

  • (String)


1737
1738
1739
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1737

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1744
1745
1746
1747
1748
1749
1750
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1744

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @insert_time = args[:insert_time] if args.key?(:insert_time)
  @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