Class: Google::Apis::FileV1::RevertInstanceRequest
- Inherits:
-
Object
- Object
- Google::Apis::FileV1::RevertInstanceRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/file_v1/classes.rb,
lib/google/apis/file_v1/representations.rb,
lib/google/apis/file_v1/representations.rb
Overview
RevertInstanceRequest reverts the given instance's file share to the specified snapshot.
Instance Attribute Summary collapse
-
#target_snapshot_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RevertInstanceRequest
constructor
A new instance of RevertInstanceRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RevertInstanceRequest
Returns a new instance of RevertInstanceRequest.
1404 1405 1406 |
# File 'lib/google/apis/file_v1/classes.rb', line 1404 def initialize(**args) update!(**args) end |
Instance Attribute Details
#target_snapshot_id ⇒ String
Required. The snapshot resource ID, in the format 'my-snapshot', where the
specified ID is the snapshot_id
of the fully qualified name like projects/
project_id
/locations/location_id
/instances/instance_id
/snapshots/
snapshot_id
Corresponds to the JSON property targetSnapshotId
1402 1403 1404 |
# File 'lib/google/apis/file_v1/classes.rb', line 1402 def target_snapshot_id @target_snapshot_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1409 1410 1411 |
# File 'lib/google/apis/file_v1/classes.rb', line 1409 def update!(**args) @target_snapshot_id = args[:target_snapshot_id] if args.key?(:target_snapshot_id) end |