Class GcsFilesetSpec.Builder

java.lang.Object
com.google.protobuf.AbstractMessageLite.Builder
com.google.protobuf.AbstractMessage.Builder<BuilderT>
com.google.protobuf.GeneratedMessage.Builder<GcsFilesetSpec.Builder>
com.google.cloud.datacatalog.v1beta1.GcsFilesetSpec.Builder
All Implemented Interfaces:
GcsFilesetSpecOrBuilder, com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Cloneable
Enclosing class:
GcsFilesetSpec

public static final class GcsFilesetSpec.Builder extends com.google.protobuf.GeneratedMessage.Builder<GcsFilesetSpec.Builder> implements GcsFilesetSpecOrBuilder
 Describes a Cloud Storage fileset entry.
 
Protobuf type google.cloud.datacatalog.v1beta1.GcsFilesetSpec
  • Method Details

    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessage.Builder<GcsFilesetSpec.Builder>
    • clear

      public GcsFilesetSpec.Builder clear()
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      clear in class com.google.protobuf.GeneratedMessage.Builder<GcsFilesetSpec.Builder>
    • getDescriptorForType

      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessage.Builder<GcsFilesetSpec.Builder>
    • getDefaultInstanceForType

      public GcsFilesetSpec getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
    • build

      public GcsFilesetSpec build()
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
    • buildPartial

      public GcsFilesetSpec buildPartial()
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
    • mergeFrom

      public GcsFilesetSpec.Builder mergeFrom(com.google.protobuf.Message other)
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<GcsFilesetSpec.Builder>
    • mergeFrom

      public GcsFilesetSpec.Builder mergeFrom(GcsFilesetSpec other)
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessage.Builder<GcsFilesetSpec.Builder>
    • mergeFrom

      public GcsFilesetSpec.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<GcsFilesetSpec.Builder>
      Throws:
      IOException
    • getFilePatternsList

      public com.google.protobuf.ProtocolStringList getFilePatternsList()
       Required. Patterns to identify a set of files in Google Cloud Storage.
       See [Cloud Storage
       documentation](https://cloud.google.com/storage/docs/wildcards)
       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`
       
      repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];
      Specified by:
      getFilePatternsList in interface GcsFilesetSpecOrBuilder
      Returns:
      A list containing the filePatterns.
    • getFilePatternsCount

      public int getFilePatternsCount()
       Required. Patterns to identify a set of files in Google Cloud Storage.
       See [Cloud Storage
       documentation](https://cloud.google.com/storage/docs/wildcards)
       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`
       
      repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];
      Specified by:
      getFilePatternsCount in interface GcsFilesetSpecOrBuilder
      Returns:
      The count of filePatterns.
    • getFilePatterns

      public String getFilePatterns(int index)
       Required. Patterns to identify a set of files in Google Cloud Storage.
       See [Cloud Storage
       documentation](https://cloud.google.com/storage/docs/wildcards)
       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`
       
      repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];
      Specified by:
      getFilePatterns in interface GcsFilesetSpecOrBuilder
      Parameters:
      index - The index of the element to return.
      Returns:
      The filePatterns at the given index.
    • getFilePatternsBytes

      public com.google.protobuf.ByteString getFilePatternsBytes(int index)
       Required. Patterns to identify a set of files in Google Cloud Storage.
       See [Cloud Storage
       documentation](https://cloud.google.com/storage/docs/wildcards)
       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`
       
      repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];
      Specified by:
      getFilePatternsBytes in interface GcsFilesetSpecOrBuilder
      Parameters:
      index - The index of the value to return.
      Returns:
      The bytes of the filePatterns at the given index.
    • setFilePatterns

      public GcsFilesetSpec.Builder setFilePatterns(int index, String value)
       Required. Patterns to identify a set of files in Google Cloud Storage.
       See [Cloud Storage
       documentation](https://cloud.google.com/storage/docs/wildcards)
       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`
       
      repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];
      Parameters:
      index - The index to set the value at.
      value - The filePatterns to set.
      Returns:
      This builder for chaining.
    • addFilePatterns

      public GcsFilesetSpec.Builder addFilePatterns(String value)
       Required. Patterns to identify a set of files in Google Cloud Storage.
       See [Cloud Storage
       documentation](https://cloud.google.com/storage/docs/wildcards)
       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`
       
      repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];
      Parameters:
      value - The filePatterns to add.
      Returns:
      This builder for chaining.
    • addAllFilePatterns

      public GcsFilesetSpec.Builder addAllFilePatterns(Iterable<String> values)
       Required. Patterns to identify a set of files in Google Cloud Storage.
       See [Cloud Storage
       documentation](https://cloud.google.com/storage/docs/wildcards)
       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`
       
      repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];
      Parameters:
      values - The filePatterns to add.
      Returns:
      This builder for chaining.
    • clearFilePatterns

      public GcsFilesetSpec.Builder clearFilePatterns()
       Required. Patterns to identify a set of files in Google Cloud Storage.
       See [Cloud Storage
       documentation](https://cloud.google.com/storage/docs/wildcards)
       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`
       
      repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      This builder for chaining.
    • addFilePatternsBytes

      public GcsFilesetSpec.Builder addFilePatternsBytes(com.google.protobuf.ByteString value)
       Required. Patterns to identify a set of files in Google Cloud Storage.
       See [Cloud Storage
       documentation](https://cloud.google.com/storage/docs/wildcards)
       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`
       
      repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];
      Parameters:
      value - The bytes of the filePatterns to add.
      Returns:
      This builder for chaining.
    • getSampleGcsFileSpecsList

      public List<GcsFileSpec> getSampleGcsFileSpecsList()
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getSampleGcsFileSpecsList in interface GcsFilesetSpecOrBuilder
    • getSampleGcsFileSpecsCount

      public int getSampleGcsFileSpecsCount()
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getSampleGcsFileSpecsCount in interface GcsFilesetSpecOrBuilder
    • getSampleGcsFileSpecs

      public GcsFileSpec getSampleGcsFileSpecs(int index)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getSampleGcsFileSpecs in interface GcsFilesetSpecOrBuilder
    • setSampleGcsFileSpecs

      public GcsFilesetSpec.Builder setSampleGcsFileSpecs(int index, GcsFileSpec value)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • setSampleGcsFileSpecs

      public GcsFilesetSpec.Builder setSampleGcsFileSpecs(int index, GcsFileSpec.Builder builderForValue)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addSampleGcsFileSpecs

      public GcsFilesetSpec.Builder addSampleGcsFileSpecs(GcsFileSpec value)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addSampleGcsFileSpecs

      public GcsFilesetSpec.Builder addSampleGcsFileSpecs(int index, GcsFileSpec value)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addSampleGcsFileSpecs

      public GcsFilesetSpec.Builder addSampleGcsFileSpecs(GcsFileSpec.Builder builderForValue)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addSampleGcsFileSpecs

      public GcsFilesetSpec.Builder addSampleGcsFileSpecs(int index, GcsFileSpec.Builder builderForValue)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addAllSampleGcsFileSpecs

      public GcsFilesetSpec.Builder addAllSampleGcsFileSpecs(Iterable<? extends GcsFileSpec> values)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • clearSampleGcsFileSpecs

      public GcsFilesetSpec.Builder clearSampleGcsFileSpecs()
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • removeSampleGcsFileSpecs

      public GcsFilesetSpec.Builder removeSampleGcsFileSpecs(int index)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getSampleGcsFileSpecsBuilder

      public GcsFileSpec.Builder getSampleGcsFileSpecsBuilder(int index)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getSampleGcsFileSpecsOrBuilder

      public GcsFileSpecOrBuilder getSampleGcsFileSpecsOrBuilder(int index)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getSampleGcsFileSpecsOrBuilder in interface GcsFilesetSpecOrBuilder
    • getSampleGcsFileSpecsOrBuilderList

      public List<? extends GcsFileSpecOrBuilder> getSampleGcsFileSpecsOrBuilderList()
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getSampleGcsFileSpecsOrBuilderList in interface GcsFilesetSpecOrBuilder
    • addSampleGcsFileSpecsBuilder

      public GcsFileSpec.Builder addSampleGcsFileSpecsBuilder()
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addSampleGcsFileSpecsBuilder

      public GcsFileSpec.Builder addSampleGcsFileSpecsBuilder(int index)
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getSampleGcsFileSpecsBuilderList

      public List<GcsFileSpec.Builder> getSampleGcsFileSpecsBuilderList()
       Output only. Sample files contained in this fileset, not all files
       contained in this fileset are represented here.
       
      repeated .google.cloud.datacatalog.v1beta1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];