Class: Google::Apis::DeploymentmanagerAlpha::Type

Inherits:
Object
  • Object
show all
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

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



2081
2082
2083
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2081

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

Instance Attribute Details

#configurable_serviceGoogle::Apis::DeploymentmanagerAlpha::ConfigurableService

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



2039
2040
2041
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2039

def configurable_service
  @configurable_service
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)


2045
2046
2047
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2045

def description
  @description
end

#idFixnum

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

Returns:

  • (Fixnum)


2050
2051
2052
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2050

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)


2055
2056
2057
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2055

def insert_time
  @insert_time
end

#labelsArray<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



2064
2065
2066
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2064

def labels
  @labels
end

#nameString

Name of the type. Corresponds to the JSON property name

Returns:

  • (String)


2069
2070
2071
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2069

def name
  @name
end

#operationGoogle::Apis::DeploymentmanagerAlpha::Operation

An Operation resource, used to manage asynchronous API requests. Corresponds to the JSON property operation



2074
2075
2076
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2074

def operation
  @operation
end

[Output Only] Self link for the type. Corresponds to the JSON property selfLink

Returns:

  • (String)


2079
2080
2081
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2079

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2086

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