Class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpAppconnectorsV1ListAppConnectorsResponse

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

Overview

Response message for BeyondCorp.ListAppConnectors.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBeyondcorpAppconnectorsV1ListAppConnectorsResponse

Returns a new instance of GoogleCloudBeyondcorpAppconnectorsV1ListAppConnectorsResponse.



1323
1324
1325
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1323

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

Instance Attribute Details

#app_connectorsArray<Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpAppconnectorsV1AppConnector>

A list of BeyondCorp AppConnectors in the project. Corresponds to the JSON property appConnectors



1310
1311
1312
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1310

def app_connectors
  @app_connectors
end

#next_page_tokenString

A token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1316
1317
1318
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1316

def next_page_token
  @next_page_token
end

#unreachableArray<String>

A list of locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


1321
1322
1323
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1321

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1328
1329
1330
1331
1332
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1328

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