Class: Google::Apis::DeploymentmanagerAlpha::Type
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerAlpha::Type
- 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
A resource type supported by Deployment Manager.
Instance Attribute Summary collapse
-
#base ⇒ Google::Apis::DeploymentmanagerAlpha::BaseType
BaseType that describes a service-backed Type.
-
#description ⇒ String
An optional textual description of the resource; provided by the client when the resource is created.
-
#id ⇒ Fixnum
Corresponds to the JSON property
id
. -
#insert_time ⇒ String
Output only.
-
#labels ⇒ Array<Google::Apis::DeploymentmanagerAlpha::TypeLabelEntry>
Map of One Platform labels; provided by the client when the resource is created or updated.
-
#name ⇒ String
Name of the type.
-
#operation ⇒ Google::Apis::DeploymentmanagerAlpha::Operation
Represents an Operation resource.
-
#self_link ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Type
constructor
A new instance of Type.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Type
Returns a new instance of Type.
2236 2237 2238 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2236 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base ⇒ Google::Apis::DeploymentmanagerAlpha::BaseType
BaseType that describes a service-backed Type.
Corresponds to the JSON property base
2185 2186 2187 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2185 def base @base end |
#description ⇒ String
An optional textual description of the resource; provided by the client when
the resource is created.
Corresponds to the JSON property description
2191 2192 2193 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2191 def description @description end |
#id ⇒ Fixnum
Corresponds to the JSON property id
2196 2197 2198 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2196 def id @id end |
#insert_time ⇒ String
Output only. Creation timestamp in RFC3339 text format.
Corresponds to the JSON property insertTime
2201 2202 2203 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2201 def insert_time @insert_time end |
#labels ⇒ Array<Google::Apis::DeploymentmanagerAlpha::TypeLabelEntry>
Map of One Platform 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]*[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]*[a-z0-9])?)?
.
Corresponds to the JSON property labels
2210 2211 2212 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2210 def labels @labels end |
#name ⇒ String
Name of the type.
Corresponds to the JSON property name
2215 2216 2217 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2215 def name @name end |
#operation ⇒ Google::Apis::DeploymentmanagerAlpha::Operation
Represents an Operation resource. Google Compute Engine has three Operation
resources: * Global * Regional * Zonal 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
2229 2230 2231 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2229 def operation @operation end |
#self_link ⇒ String
Output only. Server defined URL for the resource.
Corresponds to the JSON property selfLink
2234 2235 2236 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2234 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2241 def update!(**args) @base = args[:base] if args.key?(:base) @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) end |