Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1GcsFilesetSpec

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

Describes a Cloud Storage fileset entry.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1GcsFilesetSpec

Returns a new instance of GoogleCloudDatacatalogV1beta1GcsFilesetSpec.



687
688
689
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 687

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

Instance Attribute Details

#file_patternsArray<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

Returns:

  • (Array<String>)


678
679
680
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 678

def file_patterns
  @file_patterns
end

#sample_gcs_file_specsArray<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



685
686
687
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 685

def sample_gcs_file_specs
  @sample_gcs_file_specs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



692
693
694
695
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 692

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