@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.46 kB
TypeScript
export declare const FilterType: {
readonly Simple: "Simple";
};
/**
* Enum that discriminates between filter types. Currently only `Simple` type is supported.
*/
export type FilterType = (typeof FilterType)[keyof typeof FilterType];
export declare const ManagedServiceIdentityType: {
readonly None: "None";
readonly SystemAssigned: "SystemAssigned";
readonly UserAssigned: "UserAssigned";
readonly SystemAssigned_UserAssigned: "SystemAssigned,UserAssigned";
};
/**
* Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
*/
export type ManagedServiceIdentityType = (typeof ManagedServiceIdentityType)[keyof typeof ManagedServiceIdentityType];
export declare const PublicNetworkAccessOption: {
readonly Enabled: "Enabled";
readonly Disabled: "Disabled";
};
/**
* Public Network Access Control for PrivateAccess resource.
*/
export type PublicNetworkAccessOption = (typeof PublicNetworkAccessOption)[keyof typeof PublicNetworkAccessOption];
export declare const SelectorType: {
readonly List: "List";
readonly Query: "Query";
};
/**
* Enum of the selector type.
*/
export type SelectorType = (typeof SelectorType)[keyof typeof SelectorType];
export declare const TargetReferenceType: {
readonly ChaosTarget: "ChaosTarget";
};
/**
* Enum of the Target reference type.
*/
export type TargetReferenceType = (typeof TargetReferenceType)[keyof typeof TargetReferenceType];