Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1GcsFilesetSpec
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1GcsFilesetSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1beta1/classes.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb
Overview
Describes a Cloud Storage fileset entry.
Instance Attribute Summary collapse
-
#file_patterns ⇒ Array<String>
Required.
-
#sample_gcs_file_specs ⇒ Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1GcsFileSpec>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1GcsFilesetSpec
constructor
A new instance of GoogleCloudDatacatalogV1beta1GcsFilesetSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1GcsFilesetSpec
Returns a new instance of GoogleCloudDatacatalogV1beta1GcsFilesetSpec.
2784 2785 2786 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2784 def initialize(**args) update!(**args) end |
Instance Attribute Details
#file_patterns ⇒ Array<String>
Required. Patterns to identify a set of files in Google Cloud Storage. See
Cloud Storage documentation for more information. Note that bucket wildcards are
currently not supported. Examples of valid file_patterns: * gs://bucket_name/
dir/*
: matches all files within bucket_name/dir
directory. * gs://
bucket_name/dir/**
: matches all files in bucket_name/dir
spanning all
subdirectories. * gs://bucket_name/file*
: matches files prefixed by file
in bucket_name
* gs://bucket_name/??.txt
: matches files with two
characters followed by .txt
in bucket_name
* gs://bucket_name/[aeiou].txt
: matches files that contain a single vowel character followed by .txt
in
bucket_name
* gs://bucket_name/[a-m].txt
: matches files that contain a
,
b
, ... or m
followed by .txt
in bucket_name
* gs://bucket_name/a/*/b
:
matches all files in bucket_name
that match a/*/b
pattern, such as a/c/b
,
a/d/b
* gs://another_bucket/a.txt
: matches gs://another_bucket/a.txt
You can combine wildcards to provide more powerful matches, for example: * gs:
//bucket_name/[a-m]??.j*g
Corresponds to the JSON property filePatterns
2776 2777 2778 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2776 def file_patterns @file_patterns end |
#sample_gcs_file_specs ⇒ Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1GcsFileSpec>
Output only. Sample files contained in this fileset, not all files contained
in this fileset are represented here.
Corresponds to the JSON property sampleGcsFileSpecs
2782 2783 2784 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2782 def sample_gcs_file_specs @sample_gcs_file_specs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2789 2790 2791 2792 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2789 def update!(**args) @file_patterns = args[:file_patterns] if args.key?(:file_patterns) @sample_gcs_file_specs = args[:sample_gcs_file_specs] if args.key?(:sample_gcs_file_specs) end |