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

76 lines (75 loc) 2.54 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets information about the specified Private Endpoint. * * Uses Azure REST API version 2020-03-01. */ export declare function getPrivateEndpoint(args: GetPrivateEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateEndpointResult>; export interface GetPrivateEndpointArgs { /** * The name of the cluster. */ clusterName: string; /** * The name of the private endpoint. */ privateEndpointName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Complete information about the private endpoint. */ export interface GetPrivateEndpointResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The date when this private endpoint was created. */ readonly createdDate: string; /** * Unique opaque string (generally a GUID) that represents the metadata state of the resource (private endpoint) and changes whenever the resource is updated. Required on PUT (CreateOrUpdate) requests. */ readonly etag: string; /** * Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * A list of connections to the remote resource. Immutable after it is set. */ readonly manualPrivateLinkServiceConnections?: outputs.streamanalytics.PrivateLinkServiceConnectionResponse[]; /** * The name of the resource */ readonly name: string; /** * The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. */ readonly type: string; } /** * Gets information about the specified Private Endpoint. * * Uses Azure REST API version 2020-03-01. */ export declare function getPrivateEndpointOutput(args: GetPrivateEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateEndpointResult>; export interface GetPrivateEndpointOutputArgs { /** * The name of the cluster. */ clusterName: pulumi.Input<string>; /** * The name of the private endpoint. */ privateEndpointName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }