Class 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.GeneratedMessageV3.Builder<GcsFilesetSpec.Builder>
    implements GcsFilesetSpecOrBuilder
     Describes a Cloud Storage fileset entry.
     
    Protobuf type google.cloud.datacatalog.v1beta1.GcsFilesetSpec
    • Method Detail

      • getDescriptor

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

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.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.GeneratedMessageV3.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.GeneratedMessageV3.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
      • clone

        public GcsFilesetSpec.Builder clone()
        Specified by:
        clone in interface com.google.protobuf.Message.Builder
        Specified by:
        clone in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clone in class com.google.protobuf.GeneratedMessageV3.Builder<GcsFilesetSpec.Builder>
      • setField

        public GcsFilesetSpec.Builder setField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                               Object value)
        Specified by:
        setField in interface com.google.protobuf.Message.Builder
        Overrides:
        setField in class com.google.protobuf.GeneratedMessageV3.Builder<GcsFilesetSpec.Builder>
      • clearField

        public GcsFilesetSpec.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
        Specified by:
        clearField in interface com.google.protobuf.Message.Builder
        Overrides:
        clearField in class com.google.protobuf.GeneratedMessageV3.Builder<GcsFilesetSpec.Builder>
      • clearOneof

        public GcsFilesetSpec.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
        Specified by:
        clearOneof in interface com.google.protobuf.Message.Builder
        Overrides:
        clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<GcsFilesetSpec.Builder>
      • setRepeatedField

        public GcsFilesetSpec.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                       int index,
                                                       Object value)
        Specified by:
        setRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<GcsFilesetSpec.Builder>
      • addRepeatedField

        public GcsFilesetSpec.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                       Object value)
        Specified by:
        addRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<GcsFilesetSpec.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>
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3.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/gsutil/addlhelp/WildcardNames)
         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/gsutil/addlhelp/WildcardNames)
         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/gsutil/addlhelp/WildcardNames)
         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/gsutil/addlhelp/WildcardNames)
         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/gsutil/addlhelp/WildcardNames)
         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/gsutil/addlhelp/WildcardNames)
         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/gsutil/addlhelp/WildcardNames)
         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/gsutil/addlhelp/WildcardNames)
         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/gsutil/addlhelp/WildcardNames)
         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];
      • setUnknownFields

        public final GcsFilesetSpec.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        setUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<GcsFilesetSpec.Builder>
      • mergeUnknownFields

        public final GcsFilesetSpec.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        mergeUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<GcsFilesetSpec.Builder>