Class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaListResourcePoliciesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaListResourcePoliciesResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/firebaseappcheck_v1beta/classes.rb,
lib/google/apis/firebaseappcheck_v1beta/representations.rb,
lib/google/apis/firebaseappcheck_v1beta/representations.rb 
Overview
Response message for the ListResourcePolicies method.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If the result list is too large to fit in a single response, then a token is returned.
 - 
  
    
      #resource_policies  ⇒ Array<Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaResourcePolicy> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ResourcePolicy objects retrieved.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleFirebaseAppcheckV1betaListResourcePoliciesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleFirebaseAppcheckV1betaListResourcePoliciesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaListResourcePoliciesResponse
Returns a new instance of GoogleFirebaseAppcheckV1betaListResourcePoliciesResponse.
      941 942 943  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 941 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
If the result list is too large to fit in a single response, then a token is
returned. If the string is empty or omitted, then this response is the last
page of results. This token can be used in a subsequent call to
ListResourcePolicies to find the next group of ResourcePolicy objects. Page
tokens are short-lived and should not be persisted.
Corresponds to the JSON property nextPageToken
      934 935 936  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 934 def next_page_token @next_page_token end  | 
  
#resource_policies ⇒ Array<Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaResourcePolicy>
The ResourcePolicy objects retrieved.
Corresponds to the JSON property resourcePolicies
      939 940 941  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 939 def resource_policies @resource_policies end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      946 947 948 949  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 946 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @resource_policies = args[:resource_policies] if args.key?(:resource_policies) end  |