NasTrial

Represents a uCAIP NasJob trial.

Fields
id string

Output only. The identifier of the NasTrial assigned by the service.

state enum (State)

Output only. The detailed state of the NasTrial.

finalMeasurement object (Measurement)

Output only. The final measurement containing the objective value.

startTime string (Timestamp format)

Output only. time when the NasTrial was started.

Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

endTime string (Timestamp format)

Output only. time when the NasTrial's status changed to SUCCEEDED or INFEASIBLE.

Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

JSON representation
{
  "id": string,
  "state": enum (State),
  "finalMeasurement": {
    object (Measurement)
  },
  "startTime": string,
  "endTime": string
}

State

Describes a NasTrial state.

Enums
STATE_UNSPECIFIED The NasTrial state is unspecified.
REQUESTED Indicates that a specific NasTrial has been requested, but it has not yet been suggested by the service.
ACTIVE Indicates that the NasTrial has been suggested.
STOPPING Indicates that the NasTrial should stop according to the service.
SUCCEEDED Indicates that the NasTrial is completed successfully.
INFEASIBLE Indicates that the NasTrial should not be attempted again. The service will set a NasTrial to INFEASIBLE when it's done but missing the finalMeasurement.