@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 667 B
TypeScript
export declare const PurgeableOrchestrationState: {
/**
* The orchestration is completed
*/
readonly Completed: "Completed";
/**
* The orchestration is failed
*/
readonly Failed: "Failed";
/**
* The orchestration is terminated
*/
readonly Terminated: "Terminated";
/**
* The orchestration is canceled
*/
readonly Canceled: "Canceled";
};
/**
* The orchestration state to which this policy applies. If omitted, the policy applies to all purgeable orchestration states.
*/
export type PurgeableOrchestrationState = (typeof PurgeableOrchestrationState)[keyof typeof PurgeableOrchestrationState];