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

41 lines (40 loc) 1.46 kB
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];