public final class StorageProperties extends com.google.protobuf.GeneratedMessageV3 implements StoragePropertiesOrBuilder
Details the properties of the underlying storage.Protobuf type
google.cloud.datacatalog.v1.StorageProperties| Modifier and Type | Class and Description |
|---|---|
static class |
StorageProperties.Builder
Details the properties of the underlying storage.
|
com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>,BuilderT extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageT,BuilderT>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter| Modifier and Type | Field and Description |
|---|---|
static int |
FILE_PATTERN_FIELD_NUMBER |
static int |
FILE_TYPE_FIELD_NUMBER |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
static StorageProperties |
getDefaultInstance() |
StorageProperties |
getDefaultInstanceForType() |
static com.google.protobuf.Descriptors.Descriptor |
getDescriptor() |
String |
getFilePattern(int index)
Patterns to identify a set of files for this fileset.
|
com.google.protobuf.ByteString |
getFilePatternBytes(int index)
Patterns to identify a set of files for this fileset.
|
int |
getFilePatternCount()
Patterns to identify a set of files for this fileset.
|
com.google.protobuf.ProtocolStringList |
getFilePatternList()
Patterns to identify a set of files for this fileset.
|
String |
getFileType()
File type in MIME format, for example, `text/plain`.
|
com.google.protobuf.ByteString |
getFileTypeBytes()
File type in MIME format, for example, `text/plain`.
|
com.google.protobuf.Parser<StorageProperties> |
getParserForType() |
int |
getSerializedSize() |
int |
hashCode() |
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable |
internalGetFieldAccessorTable() |
boolean |
isInitialized() |
static StorageProperties.Builder |
newBuilder() |
static StorageProperties.Builder |
newBuilder(StorageProperties prototype) |
StorageProperties.Builder |
newBuilderForType() |
protected StorageProperties.Builder |
newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) |
protected Object |
newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused) |
static StorageProperties |
parseDelimitedFrom(InputStream input) |
static StorageProperties |
parseDelimitedFrom(InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static StorageProperties |
parseFrom(byte[] data) |
static StorageProperties |
parseFrom(byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static StorageProperties |
parseFrom(ByteBuffer data) |
static StorageProperties |
parseFrom(ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static StorageProperties |
parseFrom(com.google.protobuf.ByteString data) |
static StorageProperties |
parseFrom(com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static StorageProperties |
parseFrom(com.google.protobuf.CodedInputStream input) |
static StorageProperties |
parseFrom(com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static StorageProperties |
parseFrom(InputStream input) |
static StorageProperties |
parseFrom(InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static com.google.protobuf.Parser<StorageProperties> |
parser() |
StorageProperties.Builder |
toBuilder() |
void |
writeTo(com.google.protobuf.CodedOutputStream output) |
canUseUnsafe, computeStringSize, computeStringSizeNoTag, emptyBooleanList, emptyDoubleList, emptyFloatList, emptyIntList, emptyLongList, getAllFields, getDescriptorForType, getField, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof, internalGetMapField, isStringEmpty, makeExtensionsImmutable, makeMutableCopy, mergeFromAndMakeImmutableInternal, mutableCopy, mutableCopy, mutableCopy, mutableCopy, mutableCopy, newBooleanList, newBuilderForType, newDoubleList, newFloatList, newIntList, newLongList, parseDelimitedWithIOException, parseDelimitedWithIOException, parseUnknownField, parseUnknownFieldProto3, parseWithIOException, parseWithIOException, parseWithIOException, parseWithIOException, serializeBooleanMapTo, serializeIntegerMapTo, serializeLongMapTo, serializeStringMapTo, writeReplace, writeString, writeStringNoTagfindInitializationErrors, getInitializationErrorString, hashBoolean, hashEnum, hashEnumList, hashFields, hashLong, toStringaddAll, addAll, checkByteStringIsUtf8, toByteArray, toByteString, writeDelimitedTo, writeToclone, finalize, getClass, notify, notifyAll, wait, wait, waitpublic static final int FILE_PATTERN_FIELD_NUMBER
public static final int FILE_TYPE_FIELD_NUMBER
protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
newInstance in class com.google.protobuf.GeneratedMessageV3public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3public com.google.protobuf.ProtocolStringList getFilePatternList()
Patterns to identify a set of files for this fileset.
Examples of a valid `file_pattern`:
* `gs://bucket_name/dir/*`: matches all files in the `bucket_name/dir`
directory
* `gs://bucket_name/dir/**`: matches all files in the `bucket_name/dir`
and all subdirectories recursively
* `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`
repeated string file_pattern = 1;getFilePatternList in interface StoragePropertiesOrBuilderpublic int getFilePatternCount()
Patterns to identify a set of files for this fileset.
Examples of a valid `file_pattern`:
* `gs://bucket_name/dir/*`: matches all files in the `bucket_name/dir`
directory
* `gs://bucket_name/dir/**`: matches all files in the `bucket_name/dir`
and all subdirectories recursively
* `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`
repeated string file_pattern = 1;getFilePatternCount in interface StoragePropertiesOrBuilderpublic String getFilePattern(int index)
Patterns to identify a set of files for this fileset.
Examples of a valid `file_pattern`:
* `gs://bucket_name/dir/*`: matches all files in the `bucket_name/dir`
directory
* `gs://bucket_name/dir/**`: matches all files in the `bucket_name/dir`
and all subdirectories recursively
* `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`
repeated string file_pattern = 1;getFilePattern in interface StoragePropertiesOrBuilderindex - The index of the element to return.public com.google.protobuf.ByteString getFilePatternBytes(int index)
Patterns to identify a set of files for this fileset.
Examples of a valid `file_pattern`:
* `gs://bucket_name/dir/*`: matches all files in the `bucket_name/dir`
directory
* `gs://bucket_name/dir/**`: matches all files in the `bucket_name/dir`
and all subdirectories recursively
* `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`
repeated string file_pattern = 1;getFilePatternBytes in interface StoragePropertiesOrBuilderindex - The index of the value to return.public String getFileType()
File type in MIME format, for example, `text/plain`.
string file_type = 2;getFileType in interface StoragePropertiesOrBuilderpublic com.google.protobuf.ByteString getFileTypeBytes()
File type in MIME format, for example, `text/plain`.
string file_type = 2;getFileTypeBytes in interface StoragePropertiesOrBuilderpublic final boolean isInitialized()
isInitialized in interface com.google.protobuf.MessageLiteOrBuilderisInitialized in class com.google.protobuf.GeneratedMessageV3public void writeTo(com.google.protobuf.CodedOutputStream output)
throws IOException
writeTo in interface com.google.protobuf.MessageLitewriteTo in class com.google.protobuf.GeneratedMessageV3IOExceptionpublic int getSerializedSize()
getSerializedSize in interface com.google.protobuf.MessageLitegetSerializedSize in class com.google.protobuf.GeneratedMessageV3public boolean equals(Object obj)
equals in interface com.google.protobuf.Messageequals in class com.google.protobuf.AbstractMessagepublic int hashCode()
hashCode in interface com.google.protobuf.MessagehashCode in class com.google.protobuf.AbstractMessagepublic static StorageProperties parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static StorageProperties parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static StorageProperties parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static StorageProperties parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static StorageProperties parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static StorageProperties parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static StorageProperties parseFrom(InputStream input) throws IOException
IOExceptionpublic static StorageProperties parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
IOExceptionpublic static StorageProperties parseDelimitedFrom(InputStream input) throws IOException
IOExceptionpublic static StorageProperties parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
IOExceptionpublic static StorageProperties parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
IOExceptionpublic static StorageProperties parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
IOExceptionpublic StorageProperties.Builder newBuilderForType()
newBuilderForType in interface com.google.protobuf.MessagenewBuilderForType in interface com.google.protobuf.MessageLitepublic static StorageProperties.Builder newBuilder()
public static StorageProperties.Builder newBuilder(StorageProperties prototype)
public StorageProperties.Builder toBuilder()
toBuilder in interface com.google.protobuf.MessagetoBuilder in interface com.google.protobuf.MessageLiteprotected StorageProperties.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
newBuilderForType in class com.google.protobuf.GeneratedMessageV3public static StorageProperties getDefaultInstance()
public static com.google.protobuf.Parser<StorageProperties> parser()
public com.google.protobuf.Parser<StorageProperties> getParserForType()
getParserForType in interface com.google.protobuf.MessagegetParserForType in interface com.google.protobuf.MessageLitegetParserForType in class com.google.protobuf.GeneratedMessageV3public StorageProperties getDefaultInstanceForType()
getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuildergetDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilderCopyright © 2023 Google LLC. All rights reserved.