class Google::Apis::DeploymentmanagerV2beta::CompositeType
Holds the composite type.
Attributes
An optional textual description of the resource; provided by the client when the resource is created. Corresponds to the JSON property `description` @return [String]
Corresponds to the JSON property `id` @return [Fixnum]
Output only. Creation timestamp in RFC3339 text format. Corresponds to the JSON property `insertTime` @return [String]
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])?` Label values must be between 0 and 63 characters long and must conform to the regular expression `([a-z](*[a-z0-9])?)?`. Corresponds to the JSON property `labels` @return [Array<Google::Apis::DeploymentmanagerV2beta::CompositeTypeLabelEntry>]
Represents an Operation
resource. Google
Compute Engine has three Operation
resources: * [Global](/compute/docs/reference/rest/`$api_version`/ globalOperations) * [Regional](/compute/docs/reference/rest/`$api_version`/ regionOperations) * [Zonal](/compute/docs/reference/rest/`$api_version`/ zoneOperations) 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` @return [Google::Apis::DeploymentmanagerV2beta::Operation]
Output only. Server defined URL for the resource. Corresponds to the JSON property `selfLink` @return [String]
Corresponds to the JSON property `status` @return [String]
Files that make up the template contents of a template type. Corresponds to the JSON property `templateContents` @return [Google::Apis::DeploymentmanagerV2beta::TemplateContents]
Public Class Methods
# File lib/google/apis/deploymentmanager_v2beta/classes.rb, line 347 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/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