Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1GcsFileSpec
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1GcsFileSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datacatalog_v1beta1/classes.rb,
generated/google/apis/datacatalog_v1beta1/representations.rb,
generated/google/apis/datacatalog_v1beta1/representations.rb
Overview
Specifications of a single file in Cloud Storage.
Instance Attribute Summary collapse
-
#file_path ⇒ String
Required.
-
#gcs_timestamps ⇒ Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps
Timestamps about this resource according to a particular system.
-
#size_bytes ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1GcsFileSpec
constructor
A new instance of GoogleCloudDatacatalogV1beta1GcsFileSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1GcsFileSpec
Returns a new instance of GoogleCloudDatacatalogV1beta1GcsFileSpec.
590 591 592 |
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 590 def initialize(**args) update!(**args) end |
Instance Attribute Details
#file_path ⇒ String
Required. The full file path. Example: gs://bucket_name/a/b.txt
.
Corresponds to the JSON property filePath
578 579 580 |
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 578 def file_path @file_path end |
#gcs_timestamps ⇒ Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps
Timestamps about this resource according to a particular system.
Corresponds to the JSON property gcsTimestamps
583 584 585 |
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 583 def @gcs_timestamps end |
#size_bytes ⇒ Fixnum
Output only. The size of the file, in bytes.
Corresponds to the JSON property sizeBytes
588 589 590 |
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 588 def size_bytes @size_bytes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
595 596 597 598 599 |
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 595 def update!(**args) @file_path = args[:file_path] if args.key?(:file_path) @gcs_timestamps = args[:gcs_timestamps] if args.key?(:gcs_timestamps) @size_bytes = args[:size_bytes] if args.key?(:size_bytes) end |