@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.54 kB
TypeScript
export declare const PrivateEndpointServiceConnectionStatus: {
readonly Pending: "Pending";
readonly Approved: "Approved";
readonly Rejected: "Rejected";
};
/**
* Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
*/
export type PrivateEndpointServiceConnectionStatus = (typeof PrivateEndpointServiceConnectionStatus)[keyof typeof PrivateEndpointServiceConnectionStatus];
export declare const PublicNetworkAccessType: {
/**
* Enables public network connectivity to the Attestation Provider REST APIs.
*/
readonly Enabled: "Enabled";
/**
* Disables public network connectivity to the Attestation Provider REST APIs.
*/
readonly Disabled: "Disabled";
};
/**
* Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
*/
export type PublicNetworkAccessType = (typeof PublicNetworkAccessType)[keyof typeof PublicNetworkAccessType];
export declare const TpmAttestationAuthenticationType: {
/**
* Enables the requirement of authentication for TPM Attestation REST APIs.
*/
readonly Enabled: "Enabled";
/**
* Disables the requirement of authentication for TPM Attestation REST APIs.
*/
readonly Disabled: "Disabled";
};
/**
* The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
*/
export type TpmAttestationAuthenticationType = (typeof TpmAttestationAuthenticationType)[keyof typeof TpmAttestationAuthenticationType];