Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListInstanceAttachmentsResponse

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

Response for ListInstanceAttachments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListInstanceAttachmentsResponse

Returns a new instance of GoogleCloudApigeeV1ListInstanceAttachmentsResponse.



4903
4904
4905
# File 'lib/google/apis/apigee_v1/classes.rb', line 4903

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

Instance Attribute Details

#attachmentsArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceAttachment>

Attachments for the instance. Corresponds to the JSON property attachments



4895
4896
4897
# File 'lib/google/apis/apigee_v1/classes.rb', line 4895

def attachments
  @attachments
end

#next_page_tokenString

Page token that you can include in a ListInstanceAttachments request to retrieve the next page of content. If omitted, no subsequent pages exist. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4901
4902
4903
# File 'lib/google/apis/apigee_v1/classes.rb', line 4901

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4908
4909
4910
4911
# File 'lib/google/apis/apigee_v1/classes.rb', line 4908

def update!(**args)
  @attachments = args[:attachments] if args.key?(:attachments)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end