Interface StoragePropertiesOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
StorageProperties, StorageProperties.Builder

@Generated public interface StoragePropertiesOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    getFilePattern(int index)
    Patterns to identify a set of files for this fileset.
    com.google.protobuf.ByteString
    Patterns to identify a set of files for this fileset.
    int
    Patterns to identify a set of files for this fileset.
    Patterns to identify a set of files for this fileset.
    File type in MIME format, for example, `text/plain`.
    com.google.protobuf.ByteString
    File type in MIME format, for example, `text/plain`.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getFilePatternList

      List<String> 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;
      Returns:
      A list containing the filePattern.
    • getFilePatternCount

      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;
      Returns:
      The count of filePattern.
    • getFilePattern

      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;
      Parameters:
      index - The index of the element to return.
      Returns:
      The filePattern at the given index.
    • getFilePatternBytes

      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;
      Parameters:
      index - The index of the value to return.
      Returns:
      The bytes of the filePattern at the given index.
    • getFileType

      String getFileType()
       File type in MIME format, for example, `text/plain`.
       
      string file_type = 2;
      Returns:
      The fileType.
    • getFileTypeBytes

      com.google.protobuf.ByteString getFileTypeBytes()
       File type in MIME format, for example, `text/plain`.
       
      string file_type = 2;
      Returns:
      The bytes for fileType.