Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEndpointAttachmentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEndpointAttachmentsResponse
- 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 ListEndpointAttachments method.
Instance Attribute Summary collapse
-
#endpoint_attachments ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment>
Endpoint attachments in the specified organization.
-
#next_page_token ⇒ String
Page token that you can include in an
ListEndpointAttachments
request to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListEndpointAttachmentsResponse
constructor
A new instance of GoogleCloudApigeeV1ListEndpointAttachmentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListEndpointAttachmentsResponse
Returns a new instance of GoogleCloudApigeeV1ListEndpointAttachmentsResponse.
6102 6103 6104 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6102 def initialize(**args) update!(**args) end |
Instance Attribute Details
#endpoint_attachments ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment>
Endpoint attachments in the specified organization.
Corresponds to the JSON property endpointAttachments
6094 6095 6096 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6094 def @endpoint_attachments end |
#next_page_token ⇒ String
Page token that you can include in an ListEndpointAttachments
request to
retrieve the next page. If omitted, no subsequent pages exist.
Corresponds to the JSON property nextPageToken
6100 6101 6102 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6100 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6107 6108 6109 6110 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6107 def update!(**args) @endpoint_attachments = args[:endpoint_attachments] if args.key?(:endpoint_attachments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |