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
-
#configurable_service ⇒ Google::Apis::DeploymentmanagerAlpha::ConfigurableService
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
Output only.
-
#insert_time ⇒ String
Output only.
-
#labels ⇒ Array<Google::Apis::DeploymentmanagerAlpha::TypeLabelEntry>
Map of labels; provided by the client when the resource is created or updated.
-
#name ⇒ String
Name of the type.
-
#operation ⇒ Google::Apis::DeploymentmanagerAlpha::Operation
An Operation resource, used to manage asynchronous API requests.
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Type
Returns a new instance of Type
2371 2372 2373 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2371 def initialize(**args) update!(**args) end |
Instance Attribute Details
#configurable_service ⇒ Google::Apis::DeploymentmanagerAlpha::ConfigurableService
BaseType that describes a service-backed Type.
Corresponds to the JSON property configurableService
2325 2326 2327 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2325 def configurable_service @configurable_service 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
2331 2332 2333 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2331 def description @description end |
#id ⇒ Fixnum
Output only. Unique identifier for the resource; defined by the server.
Corresponds to the JSON property id
2336 2337 2338 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2336 def id @id end |
#insert_time ⇒ String
Output only. Timestamp when the type was created, in RFC3339 text format.
Corresponds to the JSON property insertTime
2341 2342 2343 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2341 def insert_time @insert_time end |
#labels ⇒ Array<Google::Apis::DeploymentmanagerAlpha::TypeLabelEntry>
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
2350 2351 2352 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2350 def labels @labels end |
#name ⇒ String
Name of the type.
Corresponds to the JSON property name
2355 2356 2357 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2355 def name @name end |
#operation ⇒ Google::Apis::DeploymentmanagerAlpha::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
2364 2365 2366 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2364 def operation @operation end |
#self_link ⇒ String
Output only. Self link for the type.
Corresponds to the JSON property selfLink
2369 2370 2371 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2369 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2376 def update!(**args) @configurable_service = args[:configurable_service] if args.key?(:configurable_service) @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 |