Class: Google::Apis::FirebasehostingV1beta1::CloneVersionRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebasehostingV1beta1::CloneVersionRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasehosting_v1beta1/classes.rb,
lib/google/apis/firebasehosting_v1beta1/representations.rb,
lib/google/apis/firebasehosting_v1beta1/representations.rb
Instance Attribute Summary collapse
-
#exclude ⇒ Google::Apis::FirebasehostingV1beta1::PathFilter
A representation of filter path.
-
#finalize ⇒ Boolean
(also: #finalize?)
If true, the call to
CloneVersion
immediately finalizes the version after cloning is complete. -
#include ⇒ Google::Apis::FirebasehostingV1beta1::PathFilter
A representation of filter path.
-
#source_version ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloneVersionRequest
constructor
A new instance of CloneVersionRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloneVersionRequest
Returns a new instance of CloneVersionRequest.
214 215 216 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 214 def initialize(**args) update!(**args) end |
Instance Attribute Details
#exclude ⇒ Google::Apis::FirebasehostingV1beta1::PathFilter
A representation of filter path.
Corresponds to the JSON property exclude
192 193 194 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 192 def exclude @exclude end |
#finalize ⇒ Boolean Also known as: finalize?
If true, the call to CloneVersion
immediately finalizes the version after
cloning is complete. If false, the cloned version will have a status of
CREATED
. Use UpdateVersion
to set the status of the version to
FINALIZED
.
Corresponds to the JSON property finalize
200 201 202 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 200 def finalize @finalize end |
#include ⇒ Google::Apis::FirebasehostingV1beta1::PathFilter
A representation of filter path.
Corresponds to the JSON property include
206 207 208 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 206 def include @include end |
#source_version ⇒ String
Required. The unique identifier for the version to be cloned, in the format:
sites/SITE_ID/versions/VERSION_ID
Corresponds to the JSON property sourceVersion
212 213 214 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 212 def source_version @source_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
219 220 221 222 223 224 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 219 def update!(**args) @exclude = args[:exclude] if args.key?(:exclude) @finalize = args[:finalize] if args.key?(:finalize) @include = args[:include] if args.key?(:include) @source_version = args[:source_version] if args.key?(:source_version) end |