Skip to content

Commit 35ffd82

Browse files
Google APIscopybara-github
authored andcommitted
feat: add UpdateNodePoolRequest.machine_type, disk_type, disk_size_gb
PiperOrigin-RevId: 560146115
1 parent bcaff9a commit 35ffd82

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

google/container/v1beta1/cluster_service.proto

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3025,6 +3025,21 @@ message UpdateNodePoolRequest {
30253025

30263026
// Parameters that can be configured on Windows nodes.
30273027
WindowsNodeConfig windows_node_config = 34;
3028+
3029+
// Optional. The desired machine type for nodes in the node pool.
3030+
// Initiates an upgrade operation that migrates the nodes in the
3031+
// node pool to the specified machine type.
3032+
string machine_type = 36 [(google.api.field_behavior) = OPTIONAL];
3033+
3034+
// Optional. The desired disk type for nodes in the node pool.
3035+
// Initiates an upgrade operation that migrates the nodes in the
3036+
// node pool to the specified disk type.
3037+
string disk_type = 37 [(google.api.field_behavior) = OPTIONAL];
3038+
3039+
// Optional. The desired disk size for nodes in the node pool.
3040+
// Initiates an upgrade operation that migrates the nodes in the
3041+
// node pool to the specified disk size.
3042+
int64 disk_size_gb = 38 [(google.api.field_behavior) = OPTIONAL];
30283043
}
30293044

30303045
// SetNodePoolAutoscalingRequest sets the autoscaler settings of a node pool.

0 commit comments

Comments
 (0)