Class: Google::Cloud::GkeMultiCloud::V1::AttachedCluster
- Inherits:
-
Object
- Object
- Google::Cloud::GkeMultiCloud::V1::AttachedCluster
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb
Overview
An Anthos cluster running on customer own infrastructure.
Defined Under Namespace
Modules: State Classes: AnnotationsEntry, TagsEntry
Instance Attribute Summary collapse
-
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
Optional.
-
#authorization ⇒ ::Google::Cloud::GkeMultiCloud::V1::AttachedClustersAuthorization
Optional.
-
#binary_authorization ⇒ ::Google::Cloud::GkeMultiCloud::V1::BinaryAuthorization
Optional.
-
#cluster_region ⇒ ::String
readonly
Output only.
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#description ⇒ ::String
Optional.
-
#distribution ⇒ ::String
Required.
-
#errors ⇒ ::Array<::Google::Cloud::GkeMultiCloud::V1::AttachedClusterError>
readonly
Output only.
-
#etag ⇒ ::String
Allows clients to perform consistent read-modify-writes through optimistic concurrency control.
-
#fleet ⇒ ::Google::Cloud::GkeMultiCloud::V1::Fleet
Required.
-
#kubernetes_version ⇒ ::String
readonly
Output only.
-
#logging_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::LoggingConfig
Optional.
-
#monitoring_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::MonitoringConfig
Optional.
-
#name ⇒ ::String
The name of this resource.
-
#oidc_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::AttachedOidcConfig
Required.
-
#platform_version ⇒ ::String
Required.
-
#proxy_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::AttachedProxyConfig
Optional.
-
#reconciling ⇒ ::Boolean
readonly
Output only.
-
#security_posture_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::SecurityPostureConfig
Optional.
-
#state ⇒ ::Google::Cloud::GkeMultiCloud::V1::AttachedCluster::State
readonly
Output only.
-
#tags ⇒ ::Google::Protobuf::Map{::String => ::String}
Optional.
-
#uid ⇒ ::String
readonly
Output only.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#workload_identity_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::WorkloadIdentityConfig
readonly
Output only.
Instance Attribute Details
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns Optional. Annotations on the cluster.
This field has the same restrictions as Kubernetes annotations. The total size of all keys and values combined is limited to 256k. Key can have 2 segments: prefix (optional) and name (required), separated by a slash (/). Prefix must be a DNS subdomain. Name must be 63 characters or less, begin and end with alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#authorization ⇒ ::Google::Cloud::GkeMultiCloud::V1::AttachedClustersAuthorization
Returns Optional. Configuration related to the cluster RBAC settings.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#binary_authorization ⇒ ::Google::Cloud::GkeMultiCloud::V1::BinaryAuthorization
Returns Optional. Binary Authorization configuration for this cluster.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#cluster_region ⇒ ::String (readonly)
Returns Output only. The region where this cluster runs.
For EKS clusters, this is a AWS region. For AKS clusters, this is an Azure region.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The time at which this cluster was registered.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#description ⇒ ::String
Returns Optional. A human readable description of this cluster. Cannot be longer than 255 UTF-8 encoded bytes.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#distribution ⇒ ::String
Returns Required. The Kubernetes distribution of the underlying attached cluster.
Supported values: ["eks", "aks", "generic"].
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#errors ⇒ ::Array<::Google::Cloud::GkeMultiCloud::V1::AttachedClusterError> (readonly)
Returns Output only. A set of errors found in the cluster.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#etag ⇒ ::String
Returns Allows clients to perform consistent read-modify-writes through optimistic concurrency control.
Can be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#fleet ⇒ ::Google::Cloud::GkeMultiCloud::V1::Fleet
Returns Required. Fleet configuration.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#kubernetes_version ⇒ ::String (readonly)
Returns Output only. The Kubernetes version of the cluster.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#logging_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::LoggingConfig
Returns Optional. Logging configuration for this cluster.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#monitoring_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::MonitoringConfig
Returns Optional. Monitoring configuration for this cluster.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#name ⇒ ::String
Returns The name of this resource.
Cluster names are formatted as
projects/<project-number>/locations/<region>/attachedClusters/<cluster-id>.
See Resource Names for more details on Google Cloud Platform resource names.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#oidc_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::AttachedOidcConfig
Returns Required. OpenID Connect (OIDC) configuration for the cluster.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#platform_version ⇒ ::String
Returns Required. The platform version for the cluster (e.g. 1.19.0-gke.1000).
You can list all supported versions on a given Google Cloud region by calling GetAttachedServerConfig.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#proxy_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::AttachedProxyConfig
Returns Optional. Proxy configuration for outbound HTTP(S) traffic.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#reconciling ⇒ ::Boolean (readonly)
Returns Output only. If set, there are currently changes in flight to the cluster.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#security_posture_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::SecurityPostureConfig
Returns Optional. Security Posture configuration for this cluster.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#state ⇒ ::Google::Cloud::GkeMultiCloud::V1::AttachedCluster::State (readonly)
Returns Output only. The current state of the cluster.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#tags ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns Optional. Input only. Tag keys/values directly bound to this resource.
Tag key must be specified in the format
See Tags for more details on Google Cloud Platform tags.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#uid ⇒ ::String (readonly)
Returns Output only. A globally unique identifier for the cluster.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#update_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The time at which this cluster was last updated.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |
#workload_identity_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::WorkloadIdentityConfig (readonly)
Returns Output only. Workload Identity settings.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb', line 137 class AttachedCluster include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being registered. PROVISIONING = 1 # The RUNNING state indicates the cluster has been register and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading software components. RECONCILING = 3 # The STOPPING state indicates the cluster is being de-registered. STOPPING = 4 # The ERROR state indicates the cluster is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the cluster requires user action to # restore full functionality. DEGRADED = 6 end end |