Class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesRequest
- 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
Request message for the BatchUpdateResourcePolicies method.
Instance Attribute Summary collapse
-
#requests ⇒ Array<Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1UpdateResourcePolicyRequest>
Required.
-
#update_mask ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesRequest
constructor
A new instance of GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesRequest
Returns a new instance of GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesRequest.
224 225 226 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 224 def initialize(**args) update!(**args) end |
Instance Attribute Details
#requests ⇒ Array<Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1UpdateResourcePolicyRequest>
Required. The request messages specifying the ResourcePolicy objects to update.
A maximum of 100 objects can be updated in a batch.
Corresponds to the JSON property requests
214 215 216 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 214 def requests @requests end |
#update_mask ⇒ String
Optional. A comma-separated list of names of fields in the ResourcePolicy
objects to update. Example: enforcement_mode
. If this field is present, the
update_mask
field in the UpdateResourcePolicyRequest messages must all match
this field, or the entire batch fails and no updates will be committed.
Corresponds to the JSON property updateMask
222 223 224 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 222 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
229 230 231 232 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 229 def update!(**args) @requests = args[:requests] if args.key?(:requests) @update_mask = args[:update_mask] if args.key?(:update_mask) end |