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.



1345
1346
1347
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1345

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 property targetSnapshotId

Returns:

  • (String)


1343
1344
1345
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1343

def target_snapshot_id
  @target_snapshot_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1350
1351
1352
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1350

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