Class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1ListResourcePoliciesResponse

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

Overview

Response message for the ListResourcePolicies method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppcheckV1ListResourcePoliciesResponse

Returns a new instance of GoogleFirebaseAppcheckV1ListResourcePoliciesResponse.



860
861
862
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 860

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


853
854
855
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 853

def next_page_token
  @next_page_token
end

#resource_policiesArray<Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1ResourcePolicy>

The ResourcePolicy objects retrieved. Corresponds to the JSON property resourcePolicies



858
859
860
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 858

def resource_policies
  @resource_policies
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



865
866
867
868
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 865

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