Class: Google::Cloud::GkeMultiCloud::V1::AzureNodePool
- Inherits:
-
Object
- Object
- Google::Cloud::GkeMultiCloud::V1::AzureNodePool
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb
Overview
An Anthos node pool running on Azure.
Defined Under Namespace
Modules: State Classes: AnnotationsEntry
Instance Attribute Summary collapse
-
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
Optional.
-
#autoscaling ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureNodePoolAutoscaling
Required.
-
#azure_availability_zone ⇒ ::String
Optional.
-
#config ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureNodeConfig
Required.
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#errors ⇒ ::Array<::Google::Cloud::GkeMultiCloud::V1::AzureNodePoolError>
readonly
Output only.
-
#etag ⇒ ::String
Allows clients to perform consistent read-modify-writes through optimistic concurrency control.
-
#management ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureNodeManagement
Optional.
-
#max_pods_constraint ⇒ ::Google::Cloud::GkeMultiCloud::V1::MaxPodsConstraint
Required.
-
#name ⇒ ::String
The name of this resource.
-
#reconciling ⇒ ::Boolean
readonly
Output only.
-
#state ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureNodePool::State
readonly
Output only.
-
#subnet_id ⇒ ::String
Required.
-
#uid ⇒ ::String
readonly
Output only.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#version ⇒ ::String
Required.
Instance Attribute Details
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns Optional. Annotations on the node pool.
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.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#autoscaling ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureNodePoolAutoscaling
Returns Required. Autoscaler configuration for this node pool.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#azure_availability_zone ⇒ ::String
Returns Optional. The Azure availability zone of the nodes in this nodepool.
When unspecified, it defaults to 1
.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#config ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureNodeConfig
Returns Required. The node configuration of the node pool.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool 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 node pool was created.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#errors ⇒ ::Array<::Google::Cloud::GkeMultiCloud::V1::AzureNodePoolError> (readonly)
Returns Output only. A set of errors found in the node pool.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool 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.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#management ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureNodeManagement
Returns Optional. The Management configuration for this node pool.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#max_pods_constraint ⇒ ::Google::Cloud::GkeMultiCloud::V1::MaxPodsConstraint
Returns Required. The constraint on the maximum number of pods that can be run simultaneously on a node in the node pool.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#name ⇒ ::String
Returns The name of this resource.
Node pool names are formatted as
projects/<project-number>/locations/<region>/azureClusters/<cluster-id>/azureNodePools/<node-pool-id>
.
For more details on Google Cloud resource names, see Resource Names.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#reconciling ⇒ ::Boolean (readonly)
Returns Output only. If set, there are currently pending changes to the node pool.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#state ⇒ ::Google::Cloud::GkeMultiCloud::V1::AzureNodePool::State (readonly)
Returns Output only. The current state of the node pool.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#subnet_id ⇒ ::String
Returns Required. The ARM ID of the subnet where the node pool VMs run. Make sure it's a subnet under the virtual network in the cluster configuration.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#uid ⇒ ::String (readonly)
Returns Output only. A globally unique identifier for the node pool.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool 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 node pool was last updated.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |
#version ⇒ ::String
Returns Required. The Kubernetes version (e.g. 1.19.10-gke.1000
) running on this
node pool.
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb', line 594 class AzureNodePool 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 node pool. module State # Not set. STATE_UNSPECIFIED = 0 # The PROVISIONING state indicates the node pool is being created. PROVISIONING = 1 # The RUNNING state indicates the node pool has been created and is fully # usable. RUNNING = 2 # The RECONCILING state indicates that the node pool is being reconciled. RECONCILING = 3 # The STOPPING state indicates the node pool is being deleted. STOPPING = 4 # The ERROR state indicates the node pool is in a broken unrecoverable # state. ERROR = 5 # The DEGRADED state indicates the node pool requires user action to # restore full functionality. DEGRADED = 6 end end |