Class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1ListResourcePoliciesResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1ListResourcePoliciesResponse
- 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
-
#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::FirebaseappcheckV1::GoogleFirebaseAppcheckV1ResourcePolicy>
The ResourcePolicy objects retrieved.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1ListResourcePoliciesResponse
constructor
A new instance of GoogleFirebaseAppcheckV1ListResourcePoliciesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_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
853 854 855 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 853 def next_page_token @next_page_token end |
#resource_policies ⇒ Array<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 |