Class: Google::Apis::DataformV1beta1::MoveDirectoryRequest
- Inherits:
-
Object
- Object
- Google::Apis::DataformV1beta1::MoveDirectoryRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataform_v1beta1/classes.rb,
lib/google/apis/dataform_v1beta1/representations.rb,
lib/google/apis/dataform_v1beta1/representations.rb
Overview
MoveDirectory request message.
Instance Attribute Summary collapse
-
#new_path ⇒ String
Required.
-
#path ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MoveDirectoryRequest
constructor
A new instance of MoveDirectoryRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MoveDirectoryRequest
Returns a new instance of MoveDirectoryRequest.
1386 1387 1388 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1386 def initialize(**args) update!(**args) end |
Instance Attribute Details
#new_path ⇒ String
Required. The new path for the directory including directory name, rooted at
workspace root.
Corresponds to the JSON property newPath
1378 1379 1380 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1378 def new_path @new_path end |
#path ⇒ String
Required. The directory's full path including directory name, relative to the
workspace root.
Corresponds to the JSON property path
1384 1385 1386 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1384 def path @path end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1391 1392 1393 1394 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1391 def update!(**args) @new_path = args[:new_path] if args.key?(:new_path) @path = args[:path] if args.key?(:path) end |