Class: Google::Apis::DeploymentmanagerV2beta::Type

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/deploymentmanager_v2beta/classes.rb,
generated/google/apis/deploymentmanager_v2beta/representations.rb,
generated/google/apis/deploymentmanager_v2beta/representations.rb

Overview

A resource type supported by Deployment Manager.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Type

Returns a new instance of Type



2250
2251
2252
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2250

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#baseGoogle::Apis::DeploymentmanagerV2beta::BaseType

BaseType that describes a service-backed Type. Corresponds to the JSON property base



2204
2205
2206
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2204

def base
  @base
end

#descriptionString

An optional textual description of the resource; provided by the client when the resource is created. Corresponds to the JSON property description

Returns:

  • (String)


2210
2211
2212
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2210

def description
  @description
end

#idFixnum

Output only. Unique identifier for the resource; defined by the server. Corresponds to the JSON property id

Returns:

  • (Fixnum)


2215
2216
2217
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2215

def id
  @id
end

#insert_timeString

Output only. Timestamp when the type was created, in RFC3339 text format. Corresponds to the JSON property insertTime

Returns:

  • (String)


2220
2221
2222
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2220

def insert_time
  @insert_time
end

#labelsArray<Google::Apis::DeploymentmanagerV2beta::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



2229
2230
2231
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2229

def labels
  @labels
end

#nameString

Name of the type. Corresponds to the JSON property name

Returns:

  • (String)


2234
2235
2236
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2234

def name
  @name
end

#operationGoogle::Apis::DeploymentmanagerV2beta::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



2243
2244
2245
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2243

def operation
  @operation
end

Output only. Self link for the type. Corresponds to the JSON property selfLink

Returns:

  • (String)


2248
2249
2250
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2248

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2255

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