The ordering of the State enum is defined such that if there is a state transition
from A -> B then A.compareTo(B) < 0. N.B. The converse is not true, i.e. if
A.compareTo(B) < 0 then there is not guaranteed to be a valid state transition
A -> B.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-15 UTC."],[[["This page details the various versions of `ApiService.State`, with version 2.46.1 being the latest."],["`ApiService.State` is an enum that represents the lifecycle states of a service, which include `NEW`, `STARTING`, `RUNNING`, `STOPPING`, `TERMINATED`, and `FAILED`."],["The order of states in the `ApiService.State` enum indicates possible transitions, meaning if state A comes before B then A can transition into B, however the reverse may not be true."],["There is a list of inherited members from the `Enum` and `Object` class, allowing you to use features like `valueOf`, `compareTo`, and `notifyAll` with this service."],["The page provides static fields that describe the operational status and functionality of a service in each state, such as 'RUNNING' for when a service is operational and 'FAILED' when it has encountered a problem."]]],[]]