Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceAttachment

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

Overview

InstanceAttachment represents the installation of an environment onto an instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1InstanceAttachment

Returns a new instance of GoogleCloudApigeeV1InstanceAttachment.



5551
5552
5553
# File 'lib/google/apis/apigee_v1/classes.rb', line 5551

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

Instance Attribute Details

#created_atFixnum

Output only. Time the attachment was created in milliseconds since epoch. Corresponds to the JSON property createdAt

Returns:

  • (Fixnum)


5539
5540
5541
# File 'lib/google/apis/apigee_v1/classes.rb', line 5539

def created_at
  @created_at
end

#environmentString

ID of the attached environment. Corresponds to the JSON property environment

Returns:

  • (String)


5544
5545
5546
# File 'lib/google/apis/apigee_v1/classes.rb', line 5544

def environment
  @environment
end

#nameString

Output only. ID of the attachment. Corresponds to the JSON property name

Returns:

  • (String)


5549
5550
5551
# File 'lib/google/apis/apigee_v1/classes.rb', line 5549

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5556
5557
5558
5559
5560
# File 'lib/google/apis/apigee_v1/classes.rb', line 5556

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