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

57 lines (56 loc) 1.84 kB
export declare const AlertRuleCreationProperties: { /** * The alert rule was created with an action group. */ readonly CreatedWithActionGroup: "CreatedWithActionGroup"; /** * The alert rule was created with no properties. */ readonly None: "None"; }; /** * The properties with which the alert rule resource was created. */ export type AlertRuleCreationProperties = (typeof AlertRuleCreationProperties)[keyof typeof AlertRuleCreationProperties]; export declare const KustoOfferingType: { /** * The Azure Data Explorer cluster Kusto offering. */ readonly Adx: "adx"; /** * The free Azure Data Explorer cluster Kusto offering. */ readonly Free: "free"; /** * The Fabric Real-Time Analytics Kusto offering. */ readonly Fabric: "fabric"; }; /** * The type of a Kusto offering. */ export type KustoOfferingType = (typeof KustoOfferingType)[keyof typeof KustoOfferingType]; 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 TargetAuthenticationType: { /** * The Azure Active Directory authentication. */ readonly Aad: "Aad"; /** * The SQL password authentication. */ readonly Sql: "Sql"; }; /** * The type of authentication to use when connecting to a target. */ export type TargetAuthenticationType = (typeof TargetAuthenticationType)[keyof typeof TargetAuthenticationType];