@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.24 kB
TypeScript
export declare const AuthCredentialsKind: {
/**
* OAuth Client Credential type
*/
readonly OAuthClientCredentials: "OAuthClientCredentials";
/**
* API Key Auth Credential type
*/
readonly ApiKeyAuthCredentials: "ApiKeyAuthCredentials";
};
/**
* Type of credential.
*/
export type AuthCredentialsKind = (typeof AuthCredentialsKind)[keyof typeof AuthCredentialsKind];
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 SkuTier: {
readonly Free: "Free";
readonly Basic: "Basic";
readonly Standard: "Standard";
readonly Premium: "Premium";
};
/**
* This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
*/
export type SkuTier = (typeof SkuTier)[keyof typeof SkuTier];