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] The current action that the managed instance group has scheduled for the instance.
-
#id ⇒ ::Integer
[Output only] The unique identifier for this resource.
-
#instance ⇒ ::String
[Output Only] The URL of the instance.
-
#instance_health ⇒ ::Array<::Google::Cloud::Compute::V1::ManagedInstanceInstanceHealth>
[Output Only] Health state of the instance per health-check.
-
#instance_status ⇒ ::String
[Output Only] The status of the instance.
-
#last_attempt ⇒ ::Google::Cloud::Compute::V1::ManagedInstanceLastAttempt
[Output Only] Information about the last attempt to create or delete the instance.
-
#preserved_state_from_config ⇒ ::Google::Cloud::Compute::V1::PreservedState
[Output Only] Preserved state applied from per-instance config for this instance.
-
#preserved_state_from_policy ⇒ ::Google::Cloud::Compute::V1::PreservedState
[Output Only] Preserved state generated based on stateful policy for this instance.
-
#version ⇒ ::Google::Cloud::Compute::V1::ManagedInstanceVersion
[Output Only] Intended version of this instance.
Instance Attribute Details
#current_action ⇒ ::String
Returns [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's targetSize 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.
15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 15949 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # [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's targetSize 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. 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 = 388244813 # 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 = 455564985 # 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 = 428843785 # The managed instance group is permanently deleting this instance. DELETING = 528602024 # The managed instance group has not scheduled any actions for this instance. NONE = 2402104 # The managed instance group is recreating this instance. RECREATING = 287278572 # 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 = 163266343 # The managed instance group is restarting this instance. RESTARTING = 320534387 # 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 = 16982185 end # [Output Only] The status of the instance. This field is empty when the instance does not exist. module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The Nanny is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428935662 # Resources are being allocated for the instance. PROVISIONING = 290896621 # The instance is in repair. REPAIRING = 413483285 # The instance is running. RUNNING = 121282975 # All required resources have been allocated and the instance is being started. STAGING = 431072283 # The instance has stopped successfully. STOPPED = 444276141 # The instance is currently stopping (either being deleted or killed). STOPPING = 350791796 # The instance has suspended. SUSPENDED = 51223995 # The instance is suspending. SUSPENDING = 514206246 # The instance has stopped (either by explicit action or underlying failure). TERMINATED = 250018339 end end |
#id ⇒ ::Integer
Returns [Output only] The unique identifier for this resource. This field is empty when instance does not exist.
15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 15949 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # [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's targetSize 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. 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 = 388244813 # 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 = 455564985 # 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 = 428843785 # The managed instance group is permanently deleting this instance. DELETING = 528602024 # The managed instance group has not scheduled any actions for this instance. NONE = 2402104 # The managed instance group is recreating this instance. RECREATING = 287278572 # 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 = 163266343 # The managed instance group is restarting this instance. RESTARTING = 320534387 # 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 = 16982185 end # [Output Only] The status of the instance. This field is empty when the instance does not exist. module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The Nanny is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428935662 # Resources are being allocated for the instance. PROVISIONING = 290896621 # The instance is in repair. REPAIRING = 413483285 # The instance is running. RUNNING = 121282975 # All required resources have been allocated and the instance is being started. STAGING = 431072283 # The instance has stopped successfully. STOPPED = 444276141 # The instance is currently stopping (either being deleted or killed). STOPPING = 350791796 # The instance has suspended. SUSPENDED = 51223995 # The instance is suspending. SUSPENDING = 514206246 # The instance has stopped (either by explicit action or underlying failure). TERMINATED = 250018339 end end |
#instance ⇒ ::String
Returns [Output Only] The URL of the instance. The URL can exist even if the instance has not yet been created.
15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 15949 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # [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's targetSize 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. 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 = 388244813 # 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 = 455564985 # 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 = 428843785 # The managed instance group is permanently deleting this instance. DELETING = 528602024 # The managed instance group has not scheduled any actions for this instance. NONE = 2402104 # The managed instance group is recreating this instance. RECREATING = 287278572 # 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 = 163266343 # The managed instance group is restarting this instance. RESTARTING = 320534387 # 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 = 16982185 end # [Output Only] The status of the instance. This field is empty when the instance does not exist. module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The Nanny is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428935662 # Resources are being allocated for the instance. PROVISIONING = 290896621 # The instance is in repair. REPAIRING = 413483285 # The instance is running. RUNNING = 121282975 # All required resources have been allocated and the instance is being started. STAGING = 431072283 # The instance has stopped successfully. STOPPED = 444276141 # The instance is currently stopping (either being deleted or killed). STOPPING = 350791796 # The instance has suspended. SUSPENDED = 51223995 # The instance is suspending. SUSPENDING = 514206246 # The instance has stopped (either by explicit action or underlying failure). TERMINATED = 250018339 end end |
#instance_health ⇒ ::Array<::Google::Cloud::Compute::V1::ManagedInstanceInstanceHealth>
Returns [Output Only] Health state of the instance per health-check.
15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 15949 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # [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's targetSize 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. 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 = 388244813 # 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 = 455564985 # 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 = 428843785 # The managed instance group is permanently deleting this instance. DELETING = 528602024 # The managed instance group has not scheduled any actions for this instance. NONE = 2402104 # The managed instance group is recreating this instance. RECREATING = 287278572 # 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 = 163266343 # The managed instance group is restarting this instance. RESTARTING = 320534387 # 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 = 16982185 end # [Output Only] The status of the instance. This field is empty when the instance does not exist. module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The Nanny is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428935662 # Resources are being allocated for the instance. PROVISIONING = 290896621 # The instance is in repair. REPAIRING = 413483285 # The instance is running. RUNNING = 121282975 # All required resources have been allocated and the instance is being started. STAGING = 431072283 # The instance has stopped successfully. STOPPED = 444276141 # The instance is currently stopping (either being deleted or killed). STOPPING = 350791796 # The instance has suspended. SUSPENDED = 51223995 # The instance is suspending. SUSPENDING = 514206246 # The instance has stopped (either by explicit action or underlying failure). TERMINATED = 250018339 end end |
#instance_status ⇒ ::String
Returns [Output Only] The status of the instance. This field is empty when the instance does not exist.
15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 15949 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # [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's targetSize 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. 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 = 388244813 # 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 = 455564985 # 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 = 428843785 # The managed instance group is permanently deleting this instance. DELETING = 528602024 # The managed instance group has not scheduled any actions for this instance. NONE = 2402104 # The managed instance group is recreating this instance. RECREATING = 287278572 # 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 = 163266343 # The managed instance group is restarting this instance. RESTARTING = 320534387 # 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 = 16982185 end # [Output Only] The status of the instance. This field is empty when the instance does not exist. module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The Nanny is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428935662 # Resources are being allocated for the instance. PROVISIONING = 290896621 # The instance is in repair. REPAIRING = 413483285 # The instance is running. RUNNING = 121282975 # All required resources have been allocated and the instance is being started. STAGING = 431072283 # The instance has stopped successfully. STOPPED = 444276141 # The instance is currently stopping (either being deleted or killed). STOPPING = 350791796 # The instance has suspended. SUSPENDED = 51223995 # The instance is suspending. SUSPENDING = 514206246 # The instance has stopped (either by explicit action or underlying failure). TERMINATED = 250018339 end end |
#last_attempt ⇒ ::Google::Cloud::Compute::V1::ManagedInstanceLastAttempt
Returns [Output Only] Information about the last attempt to create or delete the instance.
15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 15949 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # [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's targetSize 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. 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 = 388244813 # 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 = 455564985 # 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 = 428843785 # The managed instance group is permanently deleting this instance. DELETING = 528602024 # The managed instance group has not scheduled any actions for this instance. NONE = 2402104 # The managed instance group is recreating this instance. RECREATING = 287278572 # 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 = 163266343 # The managed instance group is restarting this instance. RESTARTING = 320534387 # 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 = 16982185 end # [Output Only] The status of the instance. This field is empty when the instance does not exist. module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The Nanny is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428935662 # Resources are being allocated for the instance. PROVISIONING = 290896621 # The instance is in repair. REPAIRING = 413483285 # The instance is running. RUNNING = 121282975 # All required resources have been allocated and the instance is being started. STAGING = 431072283 # The instance has stopped successfully. STOPPED = 444276141 # The instance is currently stopping (either being deleted or killed). STOPPING = 350791796 # The instance has suspended. SUSPENDED = 51223995 # The instance is suspending. SUSPENDING = 514206246 # The instance has stopped (either by explicit action or underlying failure). TERMINATED = 250018339 end end |
#preserved_state_from_config ⇒ ::Google::Cloud::Compute::V1::PreservedState
Returns [Output Only] Preserved state applied from per-instance config for this instance.
15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 15949 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # [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's targetSize 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. 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 = 388244813 # 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 = 455564985 # 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 = 428843785 # The managed instance group is permanently deleting this instance. DELETING = 528602024 # The managed instance group has not scheduled any actions for this instance. NONE = 2402104 # The managed instance group is recreating this instance. RECREATING = 287278572 # 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 = 163266343 # The managed instance group is restarting this instance. RESTARTING = 320534387 # 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 = 16982185 end # [Output Only] The status of the instance. This field is empty when the instance does not exist. module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The Nanny is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428935662 # Resources are being allocated for the instance. PROVISIONING = 290896621 # The instance is in repair. REPAIRING = 413483285 # The instance is running. RUNNING = 121282975 # All required resources have been allocated and the instance is being started. STAGING = 431072283 # The instance has stopped successfully. STOPPED = 444276141 # The instance is currently stopping (either being deleted or killed). STOPPING = 350791796 # The instance has suspended. SUSPENDED = 51223995 # The instance is suspending. SUSPENDING = 514206246 # The instance has stopped (either by explicit action or underlying failure). TERMINATED = 250018339 end end |
#preserved_state_from_policy ⇒ ::Google::Cloud::Compute::V1::PreservedState
Returns [Output Only] Preserved state generated based on stateful policy for this instance.
15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 15949 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # [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's targetSize 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. 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 = 388244813 # 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 = 455564985 # 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 = 428843785 # The managed instance group is permanently deleting this instance. DELETING = 528602024 # The managed instance group has not scheduled any actions for this instance. NONE = 2402104 # The managed instance group is recreating this instance. RECREATING = 287278572 # 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 = 163266343 # The managed instance group is restarting this instance. RESTARTING = 320534387 # 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 = 16982185 end # [Output Only] The status of the instance. This field is empty when the instance does not exist. module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The Nanny is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428935662 # Resources are being allocated for the instance. PROVISIONING = 290896621 # The instance is in repair. REPAIRING = 413483285 # The instance is running. RUNNING = 121282975 # All required resources have been allocated and the instance is being started. STAGING = 431072283 # The instance has stopped successfully. STOPPED = 444276141 # The instance is currently stopping (either being deleted or killed). STOPPING = 350791796 # The instance has suspended. SUSPENDED = 51223995 # The instance is suspending. SUSPENDING = 514206246 # The instance has stopped (either by explicit action or underlying failure). TERMINATED = 250018339 end end |
#version ⇒ ::Google::Cloud::Compute::V1::ManagedInstanceVersion
Returns [Output Only] Intended version of this instance.
15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 15949 class ManagedInstance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # [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's targetSize 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. 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 = 388244813 # 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 = 455564985 # 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 = 428843785 # The managed instance group is permanently deleting this instance. DELETING = 528602024 # The managed instance group has not scheduled any actions for this instance. NONE = 2402104 # The managed instance group is recreating this instance. RECREATING = 287278572 # 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 = 163266343 # The managed instance group is restarting this instance. RESTARTING = 320534387 # 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 = 16982185 end # [Output Only] The status of the instance. This field is empty when the instance does not exist. module InstanceStatus # A value indicating that the enum field is not set. UNDEFINED_INSTANCE_STATUS = 0 # The Nanny is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc. DEPROVISIONING = 428935662 # Resources are being allocated for the instance. PROVISIONING = 290896621 # The instance is in repair. REPAIRING = 413483285 # The instance is running. RUNNING = 121282975 # All required resources have been allocated and the instance is being started. STAGING = 431072283 # The instance has stopped successfully. STOPPED = 444276141 # The instance is currently stopping (either being deleted or killed). STOPPING = 350791796 # The instance has suspended. SUSPENDED = 51223995 # The instance is suspending. SUSPENDING = 514206246 # The instance has stopped (either by explicit action or underlying failure). TERMINATED = 250018339 end end |