Class: Google::Apis::ConnectorsV1::ListEndpointAttachmentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::ListEndpointAttachmentsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Response message for ConnectorsService.ListEndpointAttachments
Instance Attribute Summary collapse
-
#endpoint_attachments ⇒ Array<Google::Apis::ConnectorsV1::EndpointAttachment>
EndpointAttachments.
-
#next_page_token ⇒ String
Next page token.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListEndpointAttachmentsResponse
constructor
A new instance of ListEndpointAttachmentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListEndpointAttachmentsResponse
Returns a new instance of ListEndpointAttachmentsResponse.
3610 3611 3612 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3610 def initialize(**args) update!(**args) end |
Instance Attribute Details
#endpoint_attachments ⇒ Array<Google::Apis::ConnectorsV1::EndpointAttachment>
EndpointAttachments.
Corresponds to the JSON property endpointAttachments
3598 3599 3600 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3598 def @endpoint_attachments end |
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
3603 3604 3605 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3603 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
3608 3609 3610 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3608 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3615 3616 3617 3618 3619 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3615 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) @unreachable = args[:unreachable] if args.key?(:unreachable) end |