Class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpAppconnectionsV1ListAppConnectionsResponse

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.ListAppConnections.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBeyondcorpAppconnectionsV1ListAppConnectionsResponse

Returns a new instance of GoogleCloudBeyondcorpAppconnectionsV1ListAppConnectionsResponse.



895
896
897
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 895

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

Instance Attribute Details

#app_connectionsArray<Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpAppconnectionsV1AppConnection>

A list of BeyondCorp AppConnections in the project. Corresponds to the JSON property appConnections



882
883
884
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 882

def app_connections
  @app_connections
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)


888
889
890
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 888

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


893
894
895
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 893

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



900
901
902
903
904
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 900

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