Class: Google::Apis::FileV1::RevertInstanceRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RevertInstanceRequest

Returns a new instance of RevertInstanceRequest.



1677
1678
1679
# File 'lib/google/apis/file_v1/classes.rb', line 1677

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)


1675
1676
1677
# File 'lib/google/apis/file_v1/classes.rb', line 1675

def target_snapshot_id
  @target_snapshot_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1682
1683
1684
# File 'lib/google/apis/file_v1/classes.rb', line 1682

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