Class: Google::Apis::DeploymentmanagerAlpha::CompositeType
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerAlpha::CompositeType
- 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
-
#description ⇒ String
An optional textual description of the resource; provided by the client when the resource is created.
-
#id ⇒ Fixnum
[Output Only] Unique identifier for the resource; defined by the server.
-
#insert_time ⇒ String
[Output Only] Timestamp when the composite type was created, in RFC3339 text format.
-
#labels ⇒ Array<Google::Apis::DeploymentmanagerAlpha::CompositeTypeLabelEntry>
Map of labels; provided by the client when the resource is created or updated.
-
#name ⇒ String
Name of the composite type.
-
#operation ⇒ Google::Apis::DeploymentmanagerAlpha::Operation
An Operation resource, used to manage asynchronous API requests.
-
#self_link ⇒ String
[Output Only] Self link for the type provider.
-
#status ⇒ String
Corresponds to the JSON property
status
. -
#template_contents ⇒ Google::Apis::DeploymentmanagerAlpha::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
276 277 278 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 276 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
229 230 231 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 229 def description @description end |
#id ⇒ Fixnum
[Output Only] Unique identifier for the resource; defined by the server.
Corresponds to the JSON property id
234 235 236 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 234 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
240 241 242 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 240 def insert_time @insert_time end |
#labels ⇒ Array<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
249 250 251 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 249 def labels @labels end |
#name ⇒ String
Name of the composite type.
Corresponds to the JSON property name
254 255 256 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 254 def name @name end |
#operation ⇒ Google::Apis::DeploymentmanagerAlpha::Operation
An Operation resource, used to manage asynchronous API requests.
Corresponds to the JSON property operation
259 260 261 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 259 def operation @operation end |
#self_link ⇒ String
[Output Only] Self link for the type provider.
Corresponds to the JSON property selfLink
264 265 266 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 264 def self_link @self_link end |
#status ⇒ String
Corresponds to the JSON property status
269 270 271 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 269 def status @status end |
#template_contents ⇒ Google::Apis::DeploymentmanagerAlpha::TemplateContents
Files that make up the template contents of a template type.
Corresponds to the JSON property templateContents
274 275 276 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 274 def template_contents @template_contents end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
281 282 283 284 285 286 287 288 289 290 291 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 281 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 |