Class: Google::Cloud::Compute::V1::ManagedInstance
- Inherits:
-
Object
- Object
- Google::Cloud::Compute::V1::ManagedInstance
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/compute/v1/compute.rb
Overview
A Managed Instance resource.
Defined Under Namespace
Modules: CurrentAction, InstanceStatus
Instance Attribute Summary collapse
-
#current_action ⇒ ::String
Output only.
-
#id ⇒ ::Integer
Output only.
-
#instance ⇒ ::String
Output only.
-
#instance_health ⇒ ::Array<::Google::Cloud::Compute::V1::ManagedInstanceInstanceHealth>
Output only.
-
#instance_status ⇒ ::String
Output only.
-
#last_attempt ⇒ ::Google::Cloud::Compute::V1::ManagedInstanceLastAttempt
Output only.
-
#name ⇒ ::String
Output only.
-
#preserved_state_from_config ⇒ ::Google::Cloud::Compute::V1::PreservedState
Output only.
-
#preserved_state_from_policy ⇒ ::Google::Cloud::Compute::V1::PreservedState
Output only.
-
#properties_from_flexibility_policy ⇒ ::Google::Cloud::Compute::V1::ManagedInstancePropertiesFromFlexibilityPolicy
Output only.
-
#version ⇒ ::Google::Cloud::Compute::V1::ManagedInstanceVersion
Output only.
Instance Attribute Details
#current_action ⇒ ::String
Returns Output only. [Output Only] The current action that the managed instance group has scheduled for the instance. Possible values:
- NONE The instance is running, and the managed instance group does not have any scheduled actions for this instance.
- CREATING The managed instance group is creating this instance. If the group fails to create this instance, it will try again until it is successful.
- CREATING_WITHOUT_RETRIES The managed instance group is attempting to create this instance only once. If the group fails to create this instance, it does not try again and the group'stargetSize value is decreased instead.
- RECREATING The managed instance group is recreating this instance.
- DELETING The managed instance group is permanently deleting this instance.
- ABANDONING The managed instance group is abandoning this instance. The instance will be removed from the instance group and from any target pools that are associated with this group.
- RESTARTING The managed instance group is restarting the instance.
- REFRESHING The managed instance group is applying configuration changes to the instance without stopping it. For example, the group can update the target pool list for an instance without stopping that instance.
- VERIFYING The managed instance group has created the instance and it is in the process of being verified. Check the CurrentAction enum for the list of possible values.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |
#id ⇒ ::Integer
Returns Output only. [Output only] The unique identifier for this resource. This field is empty when instance does not exist.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |
#instance ⇒ ::String
Returns Output only. [Output Only] The URL of the instance. The URL can exist even if the instance has not yet been created.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |
#instance_health ⇒ ::Array<::Google::Cloud::Compute::V1::ManagedInstanceInstanceHealth>
Returns Output only. [Output Only] Health state of the instance per health-check.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |
#instance_status ⇒ ::String
Returns Output only. [Output Only] The status of the instance. This field is empty when the instance does not exist. Check the InstanceStatus enum for the list of possible values.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |
#last_attempt ⇒ ::Google::Cloud::Compute::V1::ManagedInstanceLastAttempt
Returns Output only. [Output Only] Information about the last attempt to create or delete the instance.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |
#name ⇒ ::String
Returns Output only. [Output Only] The name of the instance. The name always exists even if the instance has not yet been created.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |
#preserved_state_from_config ⇒ ::Google::Cloud::Compute::V1::PreservedState
Returns Output only. [Output Only] Preserved state applied from per-instance config for this instance.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |
#preserved_state_from_policy ⇒ ::Google::Cloud::Compute::V1::PreservedState
Returns Output only. [Output Only] Preserved state generated based on stateful policy for this instance.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |
#properties_from_flexibility_policy ⇒ ::Google::Cloud::Compute::V1::ManagedInstancePropertiesFromFlexibilityPolicy
Returns Output only. [Output Only] Instance properties selected for this instance resulting from InstanceFlexibilityPolicy.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |
#version ⇒ ::Google::Cloud::Compute::V1::ManagedInstanceVersion
Returns Output only. [Output Only] Intended version of this instance.
54375 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411 54412 54413 54414 54415 54416 54417 54418 54419 54420 54421 54422 54423 54424 54425 54426 54427 54428 54429 54430 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485 54486 54487 54488 54489 54490 54491 54492 54493 54494 54495 54496 54497 54498 54499 54500 54501 54502 54503 54504 54505 54506 54507 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 54375 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Output only. [Output Only] The current action that the managed instance group has # scheduled for the instance. Possible values: # # - NONE The instance is running, and the managed # instance group does not have any scheduled actions for this instance. # - CREATING The managed instance group is creating this # instance. If the group fails to create this instance, it will try again # until it is successful. # - CREATING_WITHOUT_RETRIES The managed instance group # is attempting to create this instance only once. If the group fails # to create this instance, it does not try again and the group'stargetSize value is decreased instead. # - RECREATING The managed instance group is recreating # this instance. # - DELETING The managed instance group is permanently # deleting this instance. # - ABANDONING The managed instance group is abandoning # this instance. The instance will be removed from the instance group # and from any target pools that are associated with this group. # - RESTARTING The managed instance group is restarting # the instance. # - REFRESHING The managed instance group is applying # configuration changes to the instance without stopping it. For example, # the group can update the target pool list for an instance without # stopping that instance. # - VERIFYING The managed instance group has created the # instance and it is in the process of being verified. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module CurrentAction # A value indicating that the enum field is not set. UNDEFINED_CURRENT_ACTION = 0 # The managed instance group is abandoning this instance. The instance # will be removed from the instance group and from any target pools that # are associated with this group. ABANDONING = 388_244_813 # The managed instance group is creating this instance. If the group # fails to create this instance, it will try again until it is # successful. CREATING = 455_564_985 # The managed instance group is attempting to create this instance # only once. If the group fails to create this instance, it does # not try again and the group's targetSize value is # decreased. CREATING_WITHOUT_RETRIES = 428_843_785 # The managed instance group is permanently deleting this instance. DELETING = 528_602_024 # The managed instance group has not scheduled any actions for this # instance. NONE = 2_402_104 # The managed instance group is recreating this instance. RECREATING = 287_278_572 # The managed instance group is applying configuration changes to the # instance without stopping it. For example, the group can update the # target pool list for an instance without stopping that instance. REFRESHING = 163_266_343 # The managed instance group is restarting this instance. RESTARTING = 320_534_387 # The managed instance group is resuming this instance. RESUMING = 446_856_618 # The managed instance group is starting this instance. STARTING = 488_820_800 # The managed instance group is verifying this already created instance. # Verification happens every time the instance is (re)created or restarted # and consists of: # 1. Waiting until health check specified as part of this managed instance # group's autohealing policy reports HEALTHY. # Note: Applies only if autohealing policy has a health check specified # 2. Waiting for addition verification steps performed as post-instance # creation (subject to future extensions). VERIFYING = 16_982_185 end # Output only. [Output Only] The status of the instance. This field is empty when # the instance does not exist. # Additional supported values which may be not listed in the enum directly due to technical reasons: # STOPPING # SUSPENDING module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The instance is halted and we are performing tear down tasks like network # deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428_935_662 # For Flex Start provisioning instance is waiting for available capacity # from Dynamic Workload Scheduler (DWS). PENDING = 35_394_935 # Resources are being allocated for the instance. PROVISIONING = 290_896_621 # The instance is in repair. REPAIRING = 413_483_285 # The instance is running. RUNNING = 121_282_975 # All required resources have been allocated and the instance # is being started. STAGING = 431_072_283 # The instance has stopped successfully. STOPPED = 444_276_141 STOPPING = 350_791_796 # The instance has suspended. SUSPENDED = 51_223_995 SUSPENDING = 514_206_246 # The instance has stopped (either by explicit action or underlying # failure). TERMINATED = 250_018_339 end end |