Class: Google::Apis::DataformV1beta1::MoveDirectoryRequest

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MoveDirectoryRequest

Returns a new instance of MoveDirectoryRequest.



1215
1216
1217
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1215

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

Instance Attribute Details

#new_pathString

Required. The new path for the directory including directory name, rooted at workspace root. Corresponds to the JSON property newPath

Returns:

  • (String)


1207
1208
1209
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1207

def new_path
  @new_path
end

#pathString

Required. The directory's full path including directory name, relative to the workspace root. Corresponds to the JSON property path

Returns:

  • (String)


1213
1214
1215
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1213

def path
  @path
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1220
1221
1222
1223
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1220

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