Class: Google::Cloud::GkeMultiCloud::V1::AzureCluster
- Inherits:
-
Object
- Object
- Google::Cloud::GkeMultiCloud::V1::AzureCluster
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb
Overview
An Anthos cluster running on Azure.
Defined Under Namespace
Modules: State Classes: AnnotationsEntry
Instance Attribute Summary collapse
-
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
Optional.
-
#authorization ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureAuthorization
Required.
-
#azure_client ⇒ ::String
Optional.
-
#azure_region ⇒ ::String
Required.
-
#azure_services_authentication ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureServicesAuthentication
Optional.
-
#cluster_ca_certificate ⇒ ::String
readonly
Output only.
-
#control_plane ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureControlPlane
Required.
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#description ⇒ ::String
Optional.
-
#endpoint ⇒ ::String
readonly
Output only.
-
#errors ⇒ ::Array<::Google::Cloud::GkeMultiCloud::V1::AzureClusterError>
readonly
Output only.
-
#etag ⇒ ::String
Allows clients to perform consistent read-modify-writes through optimistic concurrency control.
-
#fleet ⇒ ::Google::Cloud::GkeMultiCloud::V1::Fleet
Required.
-
#logging_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::LoggingConfig
Optional.
-
#managed_resources ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureClusterResources
readonly
Output only.
-
#monitoring_config ⇒ ::Google::Cloud::GkeMultiCloud::V1::MonitoringConfig
Optional.
-
#name ⇒ ::String
The name of this resource.
-
#networking ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureClusterNetworking
Required.
-
#reconciling ⇒ ::Boolean
readonly
Output only.
-
#resource_group_id ⇒ ::String
Required.
-
#state ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureCluster::State
readonly
Output only.
-
#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. Keys 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.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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::AzureAuthorization
Returns Required. Configuration related to the cluster RBAC settings.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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 |
#azure_client ⇒ ::String
Returns Optional. Name of the AzureClient that contains authentication configuration for how the Anthos Multi-Cloud API connects to Azure APIs.
Either azure_client or azure_services_authentication should be provided.
The AzureClient
resource must reside on the same Google Cloud Platform
project and region as the AzureCluster
.
AzureClient
names are formatted as
projects/<project-number>/locations/<region>/azureClients/<client-id>
.
See Resource Names for more details on Google Cloud resource names.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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 |
#azure_region ⇒ ::String
Returns Required. The Azure region where the cluster runs.
Each Google Cloud region supports a subset of nearby Azure regions. You can call GetAzureServerConfig to list all supported Azure regions within a given Google Cloud region.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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 |
#azure_services_authentication ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureServicesAuthentication
Returns Optional. Authentication configuration for management of Azure resources.
Either azure_client or azure_services_authentication should be provided.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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_ca_certificate ⇒ ::String (readonly)
Returns Output only. PEM encoded x509 certificate of the cluster root of trust.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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 |
#control_plane ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureControlPlane
Returns Required. Configuration related to the cluster control plane.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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 created.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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 |
#endpoint ⇒ ::String (readonly)
Returns Output only. The endpoint of the cluster's API server.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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::AzureClusterError> (readonly)
Returns Output only. A set of errors found in the cluster.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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 |
#managed_resources ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureClusterResources (readonly)
Returns Output only. Managed Azure resources for this cluster.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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>/azureClusters/<cluster-id>
.
See Resource Names for more details on Google Cloud Platform resource names.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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 |
#networking ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureClusterNetworking
Returns Required. Cluster-wide networking configuration.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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 |
#resource_group_id ⇒ ::String
Returns Required. The ARM ID of the resource group where the cluster resources are
deployed. For example:
/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>
.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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::AzureCluster::State (readonly)
Returns Output only. The current state of the cluster.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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.
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 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 139 class AzureCluster 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 # The lifecycle state of the cluster. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the cluster is being created. PROVISIONING = 1 # The RUNNING state indicates the cluster has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that some work is actively being done on # the cluster, such as upgrading the control plane replicas. RECONCILING = 3 # The STOPPING state indicates the cluster is being deleted. 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 |