Class: Google::Apis::AccesscontextmanagerV1::ListServicePerimetersResponse
- Inherits:
-
Object
- Object
- Google::Apis::AccesscontextmanagerV1::ListServicePerimetersResponse
- 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 ListServicePerimetersRequest
.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The pagination token to retrieve the next page of results.
-
#service_perimeters ⇒ Array<Google::Apis::AccesscontextmanagerV1::ServicePerimeter>
List of the Service Perimeter instances.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListServicePerimetersResponse
constructor
A new instance of ListServicePerimetersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListServicePerimetersResponse
Returns a new instance of ListServicePerimetersResponse.
1358 1359 1360 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1358 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
1351 1352 1353 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1351 def next_page_token @next_page_token end |
#service_perimeters ⇒ Array<Google::Apis::AccesscontextmanagerV1::ServicePerimeter>
List of the Service Perimeter instances.
Corresponds to the JSON property servicePerimeters
1356 1357 1358 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1356 def service_perimeters @service_perimeters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1363 1364 1365 1366 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1363 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @service_perimeters = args[:service_perimeters] if args.key?(:service_perimeters) end |