@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.84 kB
TypeScript
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];