class Google::Apis::BigqueryconnectionV1beta1::ListConnectionsResponse

The response for ConnectionService.ListConnections.

Attributes

connections[RW]

List of connections. Corresponds to the JSON property `connections` @return [Array<Google::Apis::BigqueryconnectionV1beta1::Connection>]

next_page_token[RW]

Next page token. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigqueryconnection_v1beta1/classes.rb, line 435
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigqueryconnection_v1beta1/classes.rb, line 440
def update!(**args)
  @connections = args[:connections] if args.key?(:connections)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end