class Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaBatchUpdateServicesRequest

Request message for the BatchUpdateServices method.

Attributes

requests[RW]

Required. The request messages specifying the Services to update. A maximum of 100 objects can be updated in a batch. Corresponds to the JSON property `requests` @return [Array<Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaUpdateServiceRequest>]

update_mask[RW]

Optional. A comma-separated list of names of fields in the Services to update. Example: `display_name`. If this field is present, the `update_mask` field in the UpdateServiceRequest messages must all match this field, or the entire batch fails and no updates will be committed. Corresponds to the JSON property `updateMask` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 213
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 218
def update!(**args)
  @requests = args[:requests] if args.key?(:requests)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
end