@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.49 kB
TypeScript
export declare const AppSku: {
readonly ST0: "ST0";
readonly ST1: "ST1";
readonly ST2: "ST2";
};
/**
* The name of the SKU.
*/
export type AppSku = (typeof AppSku)[keyof typeof AppSku];
export declare const NetworkAction: {
readonly Allow: "Allow";
readonly Deny: "Deny";
};
/**
* The default network action to apply.
*/
export type NetworkAction = (typeof NetworkAction)[keyof typeof NetworkAction];
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 PublicNetworkAccess: {
readonly Enabled: "Enabled";
readonly Disabled: "Disabled";
};
/**
* Whether requests from the public network are allowed.
*/
export type PublicNetworkAccess = (typeof PublicNetworkAccess)[keyof typeof PublicNetworkAccess];
export declare const SystemAssignedServiceIdentityType: {
readonly None: "None";
readonly SystemAssigned: "SystemAssigned";
};
/**
* Type of managed service identity (either system assigned, or none).
*/
export type SystemAssignedServiceIdentityType = (typeof SystemAssignedServiceIdentityType)[keyof typeof SystemAssignedServiceIdentityType];