services property

Map<String, StateTimeline>? services
getter/setter pair

Maps services to their current or planned states.

Service names are keys, and the associated values describe the state of the service. If a state change is expected, the value is either ADDING or DELETING, depending on the actions taken. Sample output: "services": { "big-query": { "states": [ { "effectiveTime": "2024-12-12T08:00:00Z" "state": "ADDING", }, ] }, "cloud-storage": { "states": [ { "state": "ACTIVE", } ] } }

Optional.

Implementation

core.Map<core.String, StateTimeline>? services;