Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListConnectionsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb

Overview

Response containing Connections listed by region.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListConnectionsResponse

Returns a new instance of GoogleCloudIntegrationsV1alphaListConnectionsResponse.



9039
9040
9041
# File 'lib/google/apis/integrations_v1/classes.rb', line 9039

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

Instance Attribute Details

#connectionsArray<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Connection>

Connections. Corresponds to the JSON property connections



9032
9033
9034
# File 'lib/google/apis/integrations_v1/classes.rb', line 9032

def connections
  @connections
end

#next_page_tokenString

Next page token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


9037
9038
9039
# File 'lib/google/apis/integrations_v1/classes.rb', line 9037

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9044
9045
9046
9047
# File 'lib/google/apis/integrations_v1/classes.rb', line 9044

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