Class: Google::Apis::AccesscontextmanagerV1::ListAccessLevelsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListAccessLevelsResponse

Returns a new instance of ListAccessLevelsResponse.



1317
1318
1319
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1317

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

Instance Attribute Details

#access_levelsArray<Google::Apis::AccesscontextmanagerV1::AccessLevel>

List of the Access Level instances. Corresponds to the JSON property accessLevels



1309
1310
1311
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1309

def access_levels
  @access_levels
end

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


1315
1316
1317
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1315

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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