class Google::Apis::DeploymentmanagerV2::Type
A resource type supported by Deployment
Manager.
Attributes
Corresponds to the JSON property `id` @return [Fixnum]
Output only. Creation timestamp in RFC3339 text format. Corresponds to the JSON property `insertTime` @return [String]
Name of the type. Corresponds to the JSON property `name` @return [String]
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::DeploymentmanagerV2::Operation]
Output only. Server defined URL for the resource. Corresponds to the JSON property `selfLink` @return [String]
Public Class Methods
# File lib/google/apis/deploymentmanager_v2/classes.rb, line 1617 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/deploymentmanager_v2/classes.rb, line 1622 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