Class: Google::Cloud::Container::V1beta1::Operation

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/container/v1beta1/cluster_service.rb

Overview

This operation resource represents operations that may have happened or are happening on the cluster. All fields are output only.

Defined Under Namespace

Modules: Status, Type

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_conditions::Array<::Google::Cloud::Container::V1beta1::StatusCondition>

Deprecated.

This field is deprecated and may be removed in the next major version update.

Returns Which conditions caused the current cluster state. Deprecated. Use field error instead.

Returns:



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#detail::String (readonly)

Returns Output only. Detailed operation progress, if available.

Returns:

  • (::String)

    Output only. Detailed operation progress, if available.



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#end_time::String (readonly)

Returns Output only. The time the operation completed, in RFC3339 text format.

Returns:

  • (::String)

    Output only. The time the operation completed, in RFC3339 text format.



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#error::Google::Rpc::Status

Returns The error result of the operation in case of failure.

Returns:



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#location::String (readonly)

Returns Output only. The name of the Google Compute Engine zone or region in which the cluster resides.

Returns:

  • (::String)

    Output only. The name of the Google Compute Engine zone or region in which the cluster resides.



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#name::String (readonly)

Returns Output only. The server-assigned ID for the operation.

Returns:

  • (::String)

    Output only. The server-assigned ID for the operation.



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#nodepool_conditions::Array<::Google::Cloud::Container::V1beta1::StatusCondition>

Deprecated.

This field is deprecated and may be removed in the next major version update.

Returns Which conditions caused the current node pool state. Deprecated. Use field error instead.

Returns:



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#operation_type::Google::Cloud::Container::V1beta1::Operation::Type (readonly)

Returns Output only. The operation type.

Returns:



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#progress::Google::Cloud::Container::V1beta1::OperationProgress (readonly)

Returns Output only. Progress information for an operation.

Returns:



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

Returns Output only. Server-defined URI for the operation. Example: https://container.googleapis.com/v1alpha1/projects/123/locations/us-central1/operations/operation-123.

Returns:

  • (::String)

    Output only. Server-defined URI for the operation. Example: https://container.googleapis.com/v1alpha1/projects/123/locations/us-central1/operations/operation-123.



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#start_time::String (readonly)

Returns Output only. The time the operation started, in RFC3339 text format.

Returns:

  • (::String)

    Output only. The time the operation started, in RFC3339 text format.



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#status::Google::Cloud::Container::V1beta1::Operation::Status (readonly)

Returns Output only. The current status of the operation.

Returns:



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#status_message::String (readonly)

Deprecated.

This field is deprecated and may be removed in the next major version update.

Returns Output only. If an error has occurred, a textual description of the error. Deprecated. Use field error instead.

Returns:

  • (::String)

    Output only. If an error has occurred, a textual description of the error. Deprecated. Use field error instead.



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

Returns Output only. Server-defined URI for the target of the operation. The format of this is a URI to the resource being modified (such as a cluster, node pool, or node). For node pool repairs, there may be multiple nodes being repaired, but only one will be the target.

Examples:

-

https://container.googleapis.com/v1/projects/123/locations/us-central1/clusters/my-cluster

https://container.googleapis.com/v1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np

https://container.googleapis.com/v1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np/node/my-node.

Returns:

  • (::String)

    Output only. Server-defined URI for the target of the operation. The format of this is a URI to the resource being modified (such as a cluster, node pool, or node). For node pool repairs, there may be multiple nodes being repaired, but only one will be the target.

    Examples:

    -

    https://container.googleapis.com/v1/projects/123/locations/us-central1/clusters/my-cluster

    https://container.googleapis.com/v1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np

    https://container.googleapis.com/v1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np/node/my-node



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end

#zone::String (readonly)

Deprecated.

This field is deprecated and may be removed in the next major version update.

Returns Output only. The name of the Google Compute Engine zone in which the operation is taking place. This field is deprecated, use location instead.

Returns:

  • (::String)

    Output only. The name of the Google Compute Engine zone in which the operation is taking place. This field is deprecated, use location instead.



3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3211

class Operation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Current status of the operation.
  module Status
    # Not set.
    STATUS_UNSPECIFIED = 0

    # The operation has been created.
    PENDING = 1

    # The operation is currently running.
    RUNNING = 2

    # The operation is done, either cancelled or completed.
    DONE = 3

    # The operation is aborting.
    ABORTING = 4
  end

  # Operation type categorizes the operation.
  module Type
    # Not set.
    TYPE_UNSPECIFIED = 0

    # The cluster is being created. The cluster should be assumed to be
    # unusable until the operation finishes.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and eventually be deleted.
    CREATE_CLUSTER = 1

    # The cluster is being deleted. The cluster should be assumed to be
    # unusable as soon as this operation starts.
    #
    # In the event of the operation failing, the cluster will enter the [ERROR
    # state][Cluster.Status.ERROR] and the deletion will be automatically
    # retried until completed.
    DELETE_CLUSTER = 2

    # The [cluster
    # version][google.container.v1beta1.ClusterUpdate.desired_master_version]
    # is being updated. Note that this includes "upgrades" to the same version,
    # which are simply a recreation. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
    # For more details, see [documentation on cluster
    # upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
    UPGRADE_MASTER = 3

    # A node pool is being updated. Despite calling this an "upgrade", this
    # includes most forms of updates to node pools. This also includes
    # [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
    #
    # This operation sets the
    # {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
    # {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
    #
    # The upgrade strategy depends on [node pool
    # configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
    # The nodes are generally still usable during this operation.
    UPGRADE_NODES = 4

    # A problem has been detected with the control plane and is being repaired.
    # This operation type is initiated by GKE. For more details, see
    # [documentation on
    # repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    REPAIR_CLUSTER = 5

    # The cluster is being updated. This is a broad category of operations and
    # includes operations that only change metadata as well as those that must
    # recreate the entire cluster. If the control plane must be recreated, this
    # will cause temporary downtime for zonal clusters.
    #
    # Some features require recreating the nodes as well. Those will be
    # recreated as separate operations and the update may not be completely
    # functional until the node pools recreations finish. Node recreations will
    # generally follow [maintenance
    # policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
    #
    # Some GKE-initiated operations use this type. This includes certain types
    # of auto-upgrades and incident mitigations.
    UPDATE_CLUSTER = 6

    # A node pool is being created. The node pool should be assumed to be
    # unusable until this operation finishes. In the event of an error, the
    # node pool may be partially created.
    #
    # If enabled, [node
    # autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
    # may have automatically initiated such operations.
    CREATE_NODE_POOL = 7

    # The node pool is being deleted. The node pool should be assumed to be
    # unusable as soon as this operation starts.
    DELETE_NODE_POOL = 8

    # The node pool's
    # {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
    # updated. These operations only update metadata and may be concurrent with
    # most other operations.
    SET_NODE_POOL_MANAGEMENT = 9

    # A problem has been detected with nodes and [they are being
    # repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
    # This operation type is initiated by GKE, typically automatically. This
    # operation may be concurrent with other operations and there may be
    # multiple repairs occurring on the same node pool.
    AUTO_REPAIR_NODES = 10

    # Unused. Automatic node upgrade uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
    AUTO_UPGRADE_NODES = 11

    # Unused. Updating labels uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_LABELS = 12

    # Unused. Updating master auth uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MASTER_AUTH = 13

    # The node pool is being resized. With the exception of resizing to or from
    # size zero, the node pool is generally usable during this operation.
    SET_NODE_POOL_SIZE = 14

    # Unused. Updating network policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_NETWORK_POLICY = 15

    # Unused. Updating maintenance policy uses
    # {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
    SET_MAINTENANCE_POLICY = 16

    # The control plane is being resized. This operation type is initiated by
    # GKE. These operations are often performed preemptively to ensure that the
    # control plane has sufficient resources and is not typically an indication
    # of issues. For more details, see
    # [documentation on
    # resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
    RESIZE_CLUSTER = 18

    # Fleet features of GKE Enterprise are being upgraded. The cluster should
    # be assumed to be blocked for other upgrades until the operation finishes.
    FLEET_FEATURE_UPGRADE = 19
  end
end