Class: Google::Cloud::Container::V1beta1::AutopilotConversionStatus
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::AutopilotConversionStatus
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/cluster_service.rb
Overview
AutopilotConversionStatus represents conversion status.
Defined Under Namespace
Modules: State
Instance Attribute Summary collapse
-
#state ⇒ ::Google::Cloud::Container::V1beta1::AutopilotConversionStatus::State
readonly
Output only.
Instance Attribute Details
#state ⇒ ::Google::Cloud::Container::V1beta1::AutopilotConversionStatus::State (readonly)
Returns Output only. The current state of the conversion.
5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 5928 class AutopilotConversionStatus include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The current state of the conversion. module State # STATE_UNSPECIFIED indicates the state is unspecified. STATE_UNSPECIFIED = 0 # DONE indicates the conversion has been completed. Old node pools will # continue being deleted in the background. DONE = 5 end end |