Class: Google::Apis::FirebaseV1beta1::RemoveWebAppRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseV1beta1::RemoveWebAppRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebase_v1beta1/classes.rb,
lib/google/apis/firebase_v1beta1/representations.rb,
lib/google/apis/firebase_v1beta1/representations.rb
Instance Attribute Summary collapse
-
#allow_missing ⇒ Boolean
(also: #allow_missing?)
If set to true, and the App is not found, the request will succeed but no action will be taken on the server.
-
#etag ⇒ String
Checksum provided in the WebApp entity, which if provided ensures the client has an up-to-date value before proceeding.
-
#validate_only ⇒ Boolean
(also: #validate_only?)
If set to true, only validate the request and do not delete the app.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RemoveWebAppRequest
constructor
A new instance of RemoveWebAppRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RemoveWebAppRequest
Returns a new instance of RemoveWebAppRequest.
1136 1137 1138 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1136 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allow_missing ⇒ Boolean Also known as: allow_missing?
If set to true, and the App is not found, the request will succeed but no
action will be taken on the server.
Corresponds to the JSON property allowMissing
1121 1122 1123 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1121 def allow_missing @allow_missing end |
#etag ⇒ String
Checksum provided in the WebApp entity, which if provided ensures the client
has an up-to-date value before proceeding.
Corresponds to the JSON property etag
1128 1129 1130 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1128 def etag @etag end |
#validate_only ⇒ Boolean Also known as: validate_only?
If set to true, only validate the request and do not delete the app.
Corresponds to the JSON property validateOnly
1133 1134 1135 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1133 def validate_only @validate_only end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1141 1142 1143 1144 1145 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1141 def update!(**args) @allow_missing = args[:allow_missing] if args.key?(:allow_missing) @etag = args[:etag] if args.key?(:etag) @validate_only = args[:validate_only] if args.key?(:validate_only) end |