@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.35 kB
TypeScript
export declare const AutoUpdateRingType: {
/**
* customer selection of preview update install mcc on their physical vm
*/
readonly Preview: "Preview";
/**
* customer selection of slow update to install mcc on their physical vm
*/
readonly Slow: "Slow";
/**
* customer selection of fast / auto update to install mcc on their physical vm
*/
readonly Fast: "Fast";
};
/**
* Auto Update Ring Type which is slow or fast etc.
*/
export type AutoUpdateRingType = (typeof AutoUpdateRingType)[keyof typeof AutoUpdateRingType];
export declare const CustomerTransitState: {
/**
* do not have transit
*/
readonly NoTransit: "NoTransit";
/**
* transit provider and have own subscribers
*/
readonly CombinedTransit: "CombinedTransit";
/**
* pure transit provider or network service provider
*/
readonly TransitOnly: "TransitOnly";
};
/**
* Customer resource transit state.
*/
export type CustomerTransitState = (typeof CustomerTransitState)[keyof typeof CustomerTransitState];
export declare const CycleType: {
/**
* customer selection of preview update install mcc on their physical vm
*/
readonly Preview: "Preview";
/**
* customer selection of slow update to install mcc on their physical vm
*/
readonly Slow: "Slow";
/**
* customer selection of fast / auto update to install mcc on their physical vm
*/
readonly Fast: "Fast";
};
/**
* Update Cycle Type
*/
export type CycleType = (typeof CycleType)[keyof typeof CycleType];
export declare const OsType: {
/**
* cache node installs on windows operating system
*/
readonly Windows: "Windows";
/**
* cache node installs on Linux Operating system
*/
readonly Linux: "Linux";
/**
* cache node installs on Azure Eflow
*/
readonly Eflow: "Eflow";
};
/**
* Operating system of the cache node
*/
export type OsType = (typeof OsType)[keyof typeof OsType];
export declare const ProxyRequired: {
/**
* Proxy is not required in setup
*/
readonly None: "None";
/**
* proxy is required in setup
*/
readonly Required: "Required";
};
/**
* Cache node resource requires a proxy
*/
export type ProxyRequired = (typeof ProxyRequired)[keyof typeof ProxyRequired];