Class: Google::Apis::VpcaccessV1::ListConnectorsResponse

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

Overview

Response for listing Serverless VPC Access connectors.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListConnectorsResponse

Returns a new instance of ListConnectorsResponse.



129
130
131
# File 'lib/google/apis/vpcaccess_v1/classes.rb', line 129

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

Instance Attribute Details

#connectorsArray<Google::Apis::VpcaccessV1::Connector>

List of Serverless VPC Access connectors. Corresponds to the JSON property connectors



122
123
124
# File 'lib/google/apis/vpcaccess_v1/classes.rb', line 122

def connectors
  @connectors
end

#next_page_tokenString

Continuation token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


127
128
129
# File 'lib/google/apis/vpcaccess_v1/classes.rb', line 127

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



134
135
136
137
# File 'lib/google/apis/vpcaccess_v1/classes.rb', line 134

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