Class: Google::Apis::FirebaseV1beta1::RemoveIosAppRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseV1beta1::RemoveIosAppRequest
- 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 IosApp 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) ⇒ RemoveIosAppRequest
constructor
A new instance of RemoveIosAppRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RemoveIosAppRequest
Returns a new instance of RemoveIosAppRequest.
1101 1102 1103 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1101 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
1086 1087 1088 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1086 def allow_missing @allow_missing end |
#etag ⇒ String
Checksum provided in the IosApp entity, which if provided ensures the client
has an up-to-date value before proceeding.
Corresponds to the JSON property etag
1093 1094 1095 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1093 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
1098 1099 1100 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1098 def validate_only @validate_only end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1106 1107 1108 1109 1110 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1106 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 |