Class: Google::Cloud::StorageInsights::V1::DatasetConfig::CloudStorageBuckets

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/storageinsights/v1/storageinsights.rb

Overview

Collection of Cloud Storage buckets.

Defined Under Namespace

Classes: CloudStorageBucket

Instance Attribute Summary collapse

Instance Attribute Details

#cloud_storage_buckets::Array<::Google::Cloud::StorageInsights::V1::DatasetConfig::CloudStorageBuckets::CloudStorageBucket>



593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
# File 'proto_docs/google/cloud/storageinsights/v1/storageinsights.rb', line 593

class CloudStorageBuckets
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Defines the bucket by its name or a regex pattern to match buckets.
  # @!attribute [rw] bucket_name
  #   @return [::String]
  #     Cloud Storage bucket name.
  #
  #     Note: The following fields are mutually exclusive: `bucket_name`, `bucket_prefix_regex`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bucket_prefix_regex
  #   @return [::String]
  #     A regex pattern for bucket names matching the regex. Regex should
  #     follow the syntax specified in `google/re2` on GitHub.
  #
  #     Note: The following fields are mutually exclusive: `bucket_prefix_regex`, `bucket_name`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class CloudStorageBucket
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end