Skip to main content

DeploymentActionFilter

Filter by deployment action.

All operators within a single filter are combined with AND. Use in to match deployments triggered by any of several actions.

{ "action": { "in": ["PROVISION", "DECOMMISSION"] } }
input DeploymentActionFilter {
eq: DeploymentAction
in: [DeploymentAction!]
}

Fields

DeploymentActionFilter.eq ● DeploymentAction enum {#eq}

Return only deployments whose action exactly equals this value.

DeploymentActionFilter.in ● [DeploymentAction!] list enum {#in}

Return deployments whose action matches any value in this list.

Member Of

DeploymentsFilter input