Class: Google::Cloud::DataCatalog::V1::CloudBigtableInstanceSpec
- Inherits:
-
Object
- Object
- Google::Cloud::DataCatalog::V1::CloudBigtableInstanceSpec
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/datacatalog/v1/datacatalog.rb
Overview
Specification that applies to Instance
entries that are part of CLOUD_BIGTABLE
system.
(user_specified_type)
Defined Under Namespace
Classes: CloudBigtableClusterSpec
Instance Attribute Summary collapse
-
#cloud_bigtable_cluster_specs ⇒ ::Array<::Google::Cloud::DataCatalog::V1::CloudBigtableInstanceSpec::CloudBigtableClusterSpec>
The list of clusters for the Instance.
Instance Attribute Details
#cloud_bigtable_cluster_specs ⇒ ::Array<::Google::Cloud::DataCatalog::V1::CloudBigtableInstanceSpec::CloudBigtableClusterSpec>
Returns The list of clusters for the Instance.
850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 850 class CloudBigtableInstanceSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Spec that applies to clusters of an Instance of Cloud Bigtable. # @!attribute [rw] display_name # @return [::String] # Name of the cluster. # @!attribute [rw] location # @return [::String] # Location of the cluster, typically a Cloud zone. # @!attribute [rw] type # @return [::String] # Type of the resource. For a cluster this would be "CLUSTER". # @!attribute [rw] linked_resource # @return [::String] # A link back to the parent resource, in this case Instance. class CloudBigtableClusterSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |