NasTrial

Represents a uCAIP NasJob trial.

JSON representation
{
  "id": string,
  "state": enum (State),
  "finalMeasurement": {
    object (Measurement)
  },
  "startTime": string,
  "endTime": string
}
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.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

endTime

string (Timestamp format)

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

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

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.