Class: Google::Apis::ConnectorsV1::ListEndpointAttachmentsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_attachmentsArray<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
  @endpoint_attachments
end

#next_page_tokenString

Next page token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3603
3604
3605
# File 'lib/google/apis/connectors_v1/classes.rb', line 3603

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


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