Class: Google::Apis::StoragetransferV1::GcsData
- Inherits:
-
Object
- Object
- Google::Apis::StoragetransferV1::GcsData
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/storagetransfer_v1/classes.rb,
lib/google/apis/storagetransfer_v1/representations.rb,
lib/google/apis/storagetransfer_v1/representations.rb
Overview
In a GcsData resource, an object's name is the Cloud Storage object's name and
its "last modification time" refers to the object's updated
property of
Cloud Storage objects, which changes when the content or the metadata of the
object is updated.
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
Required.
-
#managed_folder_transfer_enabled ⇒ Boolean
(also: #managed_folder_transfer_enabled?)
Preview.
-
#path ⇒ String
Root path to transfer objects.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GcsData
constructor
A new instance of GcsData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GcsData
Returns a new instance of GcsData.
519 520 521 |
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 519 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket_name ⇒ String
Required. Cloud Storage bucket name. Must meet Bucket Name Requirements.
Corresponds to the JSON property bucketName
498 499 500 |
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 498 def bucket_name @bucket_name end |
#managed_folder_transfer_enabled ⇒ Boolean Also known as: managed_folder_transfer_enabled?
Preview. Enables the transfer of managed folders between Cloud Storage buckets.
Set this option on the gcs_data_source. If set to true: - Managed folders in
the source bucket are transferred to the destination bucket. - Managed folders
in the destination bucket are overwritten. Other OVERWRITE options are not
supported. See Transfer Cloud Storage managed folders.
Corresponds to the JSON property managedFolderTransferEnabled
508 509 510 |
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 508 def managed_folder_transfer_enabled @managed_folder_transfer_enabled end |
#path ⇒ String
Root path to transfer objects. Must be an empty string or full path name that
ends with a '/'. This field is treated as an object prefix. As such, it should
generally not begin with a '/'. The root path value must meet Object Name
Requirements.
Corresponds to the JSON property path
517 518 519 |
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 517 def path @path end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
524 525 526 527 528 |
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 524 def update!(**args) @bucket_name = args[:bucket_name] if args.key?(:bucket_name) @managed_folder_transfer_enabled = args[:managed_folder_transfer_enabled] if args.key?(:managed_folder_transfer_enabled) @path = args[:path] if args.key?(:path) end |