Class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaBatchUpdateServicesRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaBatchUpdateServicesRequest
- 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 BatchUpdateServices method.
Instance Attribute Summary collapse
-
#requests ⇒ Array<Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaUpdateServiceRequest>
Required.
-
#update_mask ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaBatchUpdateServicesRequest
constructor
A new instance of GoogleFirebaseAppcheckV1betaBatchUpdateServicesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaBatchUpdateServicesRequest
Returns a new instance of GoogleFirebaseAppcheckV1betaBatchUpdateServicesRequest.
327 328 329 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 327 def initialize(**args) update!(**args) end |
Instance Attribute Details
#requests ⇒ Array<Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaUpdateServiceRequest>
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
317 318 319 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 317 def requests @requests end |
#update_mask ⇒ String
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
325 326 327 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 325 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
332 333 334 335 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 332 def update!(**args) @requests = args[:requests] if args.key?(:requests) @update_mask = args[:update_mask] if args.key?(:update_mask) end |