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

43 lines (42 loc) 1.49 kB
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];