class Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceAttachment

InstanceAttachment represents the installation of an environment onto an instance.

Attributes

created_at[RW]

Output only. Time the attachment was created in milliseconds since epoch. Corresponds to the JSON property `createdAt` @return [Fixnum]

environment[RW]

ID of the attached environment. Corresponds to the JSON property `environment` @return [String]

name[RW]

Output only. ID of the attachment. Corresponds to the JSON property `name` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 3782
def update!(**args)
  @created_at = args[:created_at] if args.key?(:created_at)
  @environment = args[:environment] if args.key?(:environment)
  @name = args[:name] if args.key?(:name)
end