Class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaBatchUpdateResourcePoliciesRequest

Inherits:
Object
  • Object
show all
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

Request message for the BatchUpdateResourcePolicies method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaBatchUpdateResourcePoliciesRequest

Returns a new instance of GoogleFirebaseAppcheckV1betaBatchUpdateResourcePoliciesRequest.



278
279
280
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 278

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

Instance Attribute Details

#requestsArray<Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaUpdateResourcePolicyRequest>

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



268
269
270
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 268

def requests
  @requests
end

#update_maskString

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

Returns:

  • (String)


276
277
278
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 276

def update_mask
  @update_mask
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



283
284
285
286
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 283

def update!(**args)
  @requests = args[:requests] if args.key?(:requests)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
end