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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/accesscontextmanager_v1/classes.rb,
generated/google/apis/accesscontextmanager_v1/representations.rb,
generated/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.



789
790
791
# File 'generated/google/apis/accesscontextmanager_v1/classes.rb', line 789

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



781
782
783
# File 'generated/google/apis/accesscontextmanager_v1/classes.rb', line 781

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)


787
788
789
# File 'generated/google/apis/accesscontextmanager_v1/classes.rb', line 787

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



794
795
796
797
# File 'generated/google/apis/accesscontextmanager_v1/classes.rb', line 794

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