class Google::Apis::DeploymentmanagerV2::Type

A resource type supported by Deployment Manager.

Attributes

id[RW]
Output Only

Unique identifier for the resource; defined by the server.

Corresponds to the JSON property `id` @return [String]

insert_time[RW]
Output Only

Timestamp when the type was created, in RFC3339 text format.

Corresponds to the JSON property `insertTime` @return [String]

name[RW]

Name of the type. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/deploymentmanager_v2/classes.rb, line 1129
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/deploymentmanager_v2/classes.rb, line 1134
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @insert_time = args[:insert_time] if args.key?(:insert_time)
  @name = args[:name] if args.key?(:name)
  @self_link = args[:self_link] if args.key?(:self_link)
end