Class GcsFilesetSpec.Builder (1.9.3)

public static final class GcsFilesetSpec.Builder extends GeneratedMessageV3.Builder<GcsFilesetSpec.Builder> implements GcsFilesetSpecOrBuilder

Describes a Cloud Storage fileset entry.

Protobuf type google.cloud.datacatalog.v1.GcsFilesetSpec

Static Methods

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

Methods

addAllFilePatterns(Iterable<String> values)

public GcsFilesetSpec.Builder addAllFilePatterns(Iterable<String> values)

Required. Patterns to identify a set of files in Google Cloud Storage. For more information, see Wildcard Names. Note: Currently, bucket wildcards are not supported. Examples of valid file_patterns:

  • gs://bucket_name/dir/*: matches all files in bucket_name/dir directory
  • gs://bucket_name/dir/**: matches all files in bucket_name/dir and 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 the 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 match complex sets of files, for example: gs://bucket_name/[a-m]??.j*g

repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
valuesIterable<String>

The filePatterns to add.

Returns
TypeDescription
GcsFilesetSpec.Builder

This builder for chaining.

addAllSampleGcsFileSpecs(Iterable<? extends GcsFileSpec> values)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
valuesIterable<? extends com.google.cloud.datacatalog.v1.GcsFileSpec>
Returns
TypeDescription
GcsFilesetSpec.Builder

addFilePatterns(String value)

public GcsFilesetSpec.Builder addFilePatterns(String value)

Required. Patterns to identify a set of files in Google Cloud Storage. For more information, see Wildcard Names. Note: Currently, bucket wildcards are not supported. Examples of valid file_patterns:

  • gs://bucket_name/dir/*: matches all files in bucket_name/dir directory
  • gs://bucket_name/dir/**: matches all files in bucket_name/dir and 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 the 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 match complex sets of files, for example: gs://bucket_name/[a-m]??.j*g

repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
valueString

The filePatterns to add.

Returns
TypeDescription
GcsFilesetSpec.Builder

This builder for chaining.

addFilePatternsBytes(ByteString value)

public GcsFilesetSpec.Builder addFilePatternsBytes(ByteString value)

Required. Patterns to identify a set of files in Google Cloud Storage. For more information, see Wildcard Names. Note: Currently, bucket wildcards are not supported. Examples of valid file_patterns:

  • gs://bucket_name/dir/*: matches all files in bucket_name/dir directory
  • gs://bucket_name/dir/**: matches all files in bucket_name/dir and 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 the 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 match complex sets of files, for example: gs://bucket_name/[a-m]??.j*g

repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
valueByteString

The bytes of the filePatterns to add.

Returns
TypeDescription
GcsFilesetSpec.Builder

This builder for chaining.

addRepeatedField(Descriptors.FieldDescriptor field, Object value)

public GcsFilesetSpec.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters
NameDescription
fieldFieldDescriptor
valueObject
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides

addSampleGcsFileSpecs(GcsFileSpec value)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
valueGcsFileSpec
Returns
TypeDescription
GcsFilesetSpec.Builder

addSampleGcsFileSpecs(GcsFileSpec.Builder builderForValue)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
builderForValueGcsFileSpec.Builder
Returns
TypeDescription
GcsFilesetSpec.Builder

addSampleGcsFileSpecs(int index, GcsFileSpec value)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameters
NameDescription
indexint
valueGcsFileSpec
Returns
TypeDescription
GcsFilesetSpec.Builder

addSampleGcsFileSpecs(int index, GcsFileSpec.Builder builderForValue)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameters
NameDescription
indexint
builderForValueGcsFileSpec.Builder
Returns
TypeDescription
GcsFilesetSpec.Builder

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
GcsFileSpec.Builder

addSampleGcsFileSpecsBuilder(int index)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
indexint
Returns
TypeDescription
GcsFileSpec.Builder

build()

public GcsFilesetSpec build()
Returns
TypeDescription
GcsFilesetSpec

buildPartial()

public GcsFilesetSpec buildPartial()
Returns
TypeDescription
GcsFilesetSpec

clear()

public GcsFilesetSpec.Builder clear()
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides

clearField(Descriptors.FieldDescriptor field)

public GcsFilesetSpec.Builder clearField(Descriptors.FieldDescriptor field)
Parameter
NameDescription
fieldFieldDescriptor
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides

clearFilePatterns()

public GcsFilesetSpec.Builder clearFilePatterns()

Required. Patterns to identify a set of files in Google Cloud Storage. For more information, see Wildcard Names. Note: Currently, bucket wildcards are not supported. Examples of valid file_patterns:

  • gs://bucket_name/dir/*: matches all files in bucket_name/dir directory
  • gs://bucket_name/dir/**: matches all files in bucket_name/dir and 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 the 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 match complex sets of files, for example: gs://bucket_name/[a-m]??.j*g

repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
GcsFilesetSpec.Builder

This builder for chaining.

clearOneof(Descriptors.OneofDescriptor oneof)

public GcsFilesetSpec.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter
NameDescription
oneofOneofDescriptor
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
GcsFilesetSpec.Builder

clone()

public GcsFilesetSpec.Builder clone()
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides

getDefaultInstanceForType()

public GcsFilesetSpec getDefaultInstanceForType()
Returns
TypeDescription
GcsFilesetSpec

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
TypeDescription
Descriptor
Overrides

getFilePatterns(int index)

public String getFilePatterns(int index)

Required. Patterns to identify a set of files in Google Cloud Storage. For more information, see Wildcard Names. Note: Currently, bucket wildcards are not supported. Examples of valid file_patterns:

  • gs://bucket_name/dir/*: matches all files in bucket_name/dir directory
  • gs://bucket_name/dir/**: matches all files in bucket_name/dir and 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 the 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 match complex sets of files, for example: gs://bucket_name/[a-m]??.j*g

repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
indexint

The index of the element to return.

Returns
TypeDescription
String

The filePatterns at the given index.

getFilePatternsBytes(int index)

public ByteString getFilePatternsBytes(int index)

Required. Patterns to identify a set of files in Google Cloud Storage. For more information, see Wildcard Names. Note: Currently, bucket wildcards are not supported. Examples of valid file_patterns:

  • gs://bucket_name/dir/*: matches all files in bucket_name/dir directory
  • gs://bucket_name/dir/**: matches all files in bucket_name/dir and 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 the 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 match complex sets of files, for example: gs://bucket_name/[a-m]??.j*g

repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
indexint

The index of the value to return.

Returns
TypeDescription
ByteString

The bytes of the filePatterns at the given index.

getFilePatternsCount()

public int getFilePatternsCount()

Required. Patterns to identify a set of files in Google Cloud Storage. For more information, see Wildcard Names. Note: Currently, bucket wildcards are not supported. Examples of valid file_patterns:

  • gs://bucket_name/dir/*: matches all files in bucket_name/dir directory
  • gs://bucket_name/dir/**: matches all files in bucket_name/dir and 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 the 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 match complex sets of files, for example: gs://bucket_name/[a-m]??.j*g

repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
int

The count of filePatterns.

getFilePatternsList()

public ProtocolStringList getFilePatternsList()

Required. Patterns to identify a set of files in Google Cloud Storage. For more information, see Wildcard Names. Note: Currently, bucket wildcards are not supported. Examples of valid file_patterns:

  • gs://bucket_name/dir/*: matches all files in bucket_name/dir directory
  • gs://bucket_name/dir/**: matches all files in bucket_name/dir and 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 the 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 match complex sets of files, for example: gs://bucket_name/[a-m]??.j*g

repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
ProtocolStringList

A list containing the filePatterns.

getSampleGcsFileSpecs(int index)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
indexint
Returns
TypeDescription
GcsFileSpec

getSampleGcsFileSpecsBuilder(int index)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
indexint
Returns
TypeDescription
GcsFileSpec.Builder

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
List<Builder>

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
int

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
List<GcsFileSpec>

getSampleGcsFileSpecsOrBuilder(int index)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
indexint
Returns
TypeDescription
GcsFileSpecOrBuilder

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
List<? extends com.google.cloud.datacatalog.v1.GcsFileSpecOrBuilder>

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

mergeFrom(GcsFilesetSpec other)

public GcsFilesetSpec.Builder mergeFrom(GcsFilesetSpec other)
Parameter
NameDescription
otherGcsFilesetSpec
Returns
TypeDescription
GcsFilesetSpec.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public GcsFilesetSpec.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides Exceptions
TypeDescription
IOException

mergeFrom(Message other)

public GcsFilesetSpec.Builder mergeFrom(Message other)
Parameter
NameDescription
otherMessage
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides

mergeUnknownFields(UnknownFieldSet unknownFields)

public final GcsFilesetSpec.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter
NameDescription
unknownFieldsUnknownFieldSet
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides

removeSampleGcsFileSpecs(int index)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
indexint
Returns
TypeDescription
GcsFilesetSpec.Builder

setField(Descriptors.FieldDescriptor field, Object value)

public GcsFilesetSpec.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters
NameDescription
fieldFieldDescriptor
valueObject
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides

setFilePatterns(int index, String value)

public GcsFilesetSpec.Builder setFilePatterns(int index, String value)

Required. Patterns to identify a set of files in Google Cloud Storage. For more information, see Wildcard Names. Note: Currently, bucket wildcards are not supported. Examples of valid file_patterns:

  • gs://bucket_name/dir/*: matches all files in bucket_name/dir directory
  • gs://bucket_name/dir/**: matches all files in bucket_name/dir and 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 the 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 match complex sets of files, for example: gs://bucket_name/[a-m]??.j*g

repeated string file_patterns = 1 [(.google.api.field_behavior) = REQUIRED];

Parameters
NameDescription
indexint

The index to set the value at.

valueString

The filePatterns to set.

Returns
TypeDescription
GcsFilesetSpec.Builder

This builder for chaining.

setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)

public GcsFilesetSpec.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
Parameters
NameDescription
fieldFieldDescriptor
indexint
valueObject
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides

setSampleGcsFileSpecs(int index, GcsFileSpec value)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameters
NameDescription
indexint
valueGcsFileSpec
Returns
TypeDescription
GcsFilesetSpec.Builder

setSampleGcsFileSpecs(int index, GcsFileSpec.Builder builderForValue)

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.v1.GcsFileSpec sample_gcs_file_specs = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameters
NameDescription
indexint
builderForValueGcsFileSpec.Builder
Returns
TypeDescription
GcsFilesetSpec.Builder

setUnknownFields(UnknownFieldSet unknownFields)

public final GcsFilesetSpec.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter
NameDescription
unknownFieldsUnknownFieldSet
Returns
TypeDescription
GcsFilesetSpec.Builder
Overrides