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

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

Overview

A resource type supported by Deployment Manager.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Type

Returns a new instance of Type.



2127
2128
2129
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2127

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



2076
2077
2078
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2076

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)


2082
2083
2084
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2082

def description
  @description
end

#idFixnum

Corresponds to the JSON property id

Returns:

  • (Fixnum)


2087
2088
2089
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2087

def id
  @id
end

#insert_timeString

Output only. Creation timestamp in RFC3339 text format. Corresponds to the JSON property insertTime

Returns:

  • (String)


2092
2093
2094
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2092

def insert_time
  @insert_time
end

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



2101
2102
2103
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2101

def labels
  @labels
end

#nameString

Name of the type. Corresponds to the JSON property name

Returns:

  • (String)


2106
2107
2108
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2106

def name
  @name
end

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



2120
2121
2122
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2120

def operation
  @operation
end

Output only. Server defined URL for the resource. Corresponds to the JSON property selfLink

Returns:

  • (String)


2125
2126
2127
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2125

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2132

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