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.05 kB
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];