Class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1UpdateServiceRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1UpdateServiceRequest
- 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 UpdateService method as well as an individual update message for the BatchUpdateServices method.
Instance Attribute Summary collapse
-
#service ⇒ Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1Service
The enforcement configuration for a Firebase service supported by App Check.
-
#update_mask ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1UpdateServiceRequest
constructor
A new instance of GoogleFirebaseAppcheckV1UpdateServiceRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1UpdateServiceRequest
Returns a new instance of GoogleFirebaseAppcheckV1UpdateServiceRequest.
1275 1276 1277 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 1275 def initialize(**args) update!(**args) end |
Instance Attribute Details
#service ⇒ Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1Service
The enforcement configuration for a Firebase service supported by App Check.
Corresponds to the JSON property service
1267 1268 1269 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 1267 def service @service end |
#update_mask ⇒ String
Required. A comma-separated list of names of fields in the Service to update.
Example: enforcement_mode
.
Corresponds to the JSON property updateMask
1273 1274 1275 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 1273 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1280 1281 1282 1283 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 1280 def update!(**args) @service = args[:service] if args.key?(:service) @update_mask = args[:update_mask] if args.key?(:update_mask) end |