UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

75 lines (74 loc) 1.8 kB
export declare const ActiveState: { /** * Instance is active */ readonly Active: "active"; /** * Instance is inactive */ readonly Inactive: "inactive"; }; /** * State of instance */ export type ActiveState = (typeof ActiveState)[keyof typeof ActiveState]; export declare const ErrorActionMode: { /** * Stop on any failure */ readonly StopOnAnyFailure: "stopOnAnyFailure"; /** * Stop after N cumulative failures */ readonly StopOnNFailures: "stopOnNFailures"; /** * Continue silently despite errors */ readonly SilentlyContinue: "silentlyContinue"; }; /** * Error action mode */ export type ErrorActionMode = (typeof ErrorActionMode)[keyof typeof ErrorActionMode]; export declare const ExtendedLocationType: { /** * Azure Edge Zones location type */ readonly EdgeZone: "EdgeZone"; /** * Azure Custom Locations type */ readonly CustomLocation: "CustomLocation"; }; /** * The type of the extended location. */ export type ExtendedLocationType = (typeof ExtendedLocationType)[keyof typeof ExtendedLocationType]; export declare const ReconciliationState: { /** * Reconciliation is inactive */ readonly Inactive: "inactive"; /** * Reconciliation is active */ readonly Active: "active"; }; /** * The state of the ReconciliationPolicy */ export type ReconciliationState = (typeof ReconciliationState)[keyof typeof ReconciliationState]; export declare const ResourceState: { /** * Resource is active */ readonly Active: "active"; /** * Resource is inactive */ readonly Inactive: "inactive"; }; /** * State of resource */ export type ResourceState = (typeof ResourceState)[keyof typeof ResourceState];