class Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaUpdateServiceRequest
Request message for the UpdateService method as well as an individual update message for the BatchUpdateServices method.
Attributes
service[RW]
The enforcement configuration for a Firebase service supported by App Check. Corresponds to the JSON property `service` @return [Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaService]
update_mask[RW]
Required. A comma-separated list of names of fields in the Service to update. Example: `enforcement_mode`. 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 815 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 820 def update!(**args) @service = args[:service] if args.key?(:service) @update_mask = args[:update_mask] if args.key?(:update_mask) end