Class: Google::Apis::FileV1beta1::RevertInstanceRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/file_v1beta1/classes.rb,
lib/google/apis/file_v1beta1/representations.rb,
lib/google/apis/file_v1beta1/representations.rb

Overview

RevertInstanceRequest reverts the given instance's file share to the specified snapshot.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RevertInstanceRequest

Returns a new instance of RevertInstanceRequest.



1642
1643
1644
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1642

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#target_snapshot_idString

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 propertytargetSnapshotId`

Returns:

  • (String)


1640
1641
1642
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1640

def target_snapshot_id
  @target_snapshot_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1647
1648
1649
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1647

def update!(**args)
  @target_snapshot_id = args[:target_snapshot_id] if args.key?(:target_snapshot_id)
end