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.



1022
1023
1024
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1022

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



1009
1010
1011
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1009

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)


1015
1016
1017
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1015

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>)


1020
1021
1022
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1020

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1027
1028
1029
1030
1031
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1027

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