Class: Google::Apis::AccesscontextmanagerV1::ListSupportedServicesResponse

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

Overview

A response to ListSupportedServicesRequest.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSupportedServicesResponse

Returns a new instance of ListSupportedServicesResponse.



1382
1383
1384
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1382

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

Instance Attribute Details

#next_page_tokenString

The pagination token to retrieve the next page of results. If the value is empty, no further results remain. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1375
1376
1377
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1375

def next_page_token
  @next_page_token
end

#supported_servicesArray<Google::Apis::AccesscontextmanagerV1::SupportedService>

List of services supported by VPC Service Controls instances. Corresponds to the JSON property supportedServices



1380
1381
1382
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1380

def supported_services
  @supported_services
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1387
1388
1389
1390
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1387

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