@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.05 kB
TypeScript
export declare const ProfileType: {
/**
* Used for signing files which are distributed publicly.
*/
readonly PublicTrust: "PublicTrust";
/**
* Used for signing files which are distributed internally within organization or group boundary.
*/
readonly PrivateTrust: "PrivateTrust";
/**
* Used for signing CI policy files.
*/
readonly PrivateTrustCIPolicy: "PrivateTrustCIPolicy";
/**
* Used for signing files which are run in secure vbs enclave.
*/
readonly VBSEnclave: "VBSEnclave";
/**
* Used for signing files for testing purpose.
*/
readonly PublicTrustTest: "PublicTrustTest";
};
/**
* Profile type of the certificate.
*/
export type ProfileType = (typeof ProfileType)[keyof typeof ProfileType];
export declare const SkuName: {
/**
* Basic sku.
*/
readonly Basic: "Basic";
/**
* Premium sku.
*/
readonly Premium: "Premium";
};
/**
* Name of the SKU.
*/
export type SkuName = (typeof SkuName)[keyof typeof SkuName];