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

80 lines (79 loc) 3.14 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get the private endpoint with the specified name. * * Uses Azure REST API version 2020-05-01. * * Other available API versions: 2023-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native migrate [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getPrivateEndpointConnectionControllerPrivateEndpointConnection(args: GetPrivateEndpointConnectionControllerPrivateEndpointConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateEndpointConnectionControllerPrivateEndpointConnectionResult>; export interface GetPrivateEndpointConnectionControllerPrivateEndpointConnectionArgs { /** * Migrate project name. */ migrateProjectName: string; /** * Private endpoint connection name. */ peConnectionName: string; /** * Name of the Azure Resource Group that project is part of. */ resourceGroupName: string; } /** * REST model used to encapsulate the user visible state of a PrivateEndpoint. */ export interface GetPrivateEndpointConnectionControllerPrivateEndpointConnectionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Gets the tag for optimistic concurrency control. */ readonly eTag: string; /** * Relative URL to get this Sites. */ readonly id: string; /** * Gets the name of the resource. */ readonly name: string; /** * Gets the properties of the object. */ readonly properties: outputs.migrate.PrivateEndpointConnectionPropertiesResponse; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: outputs.migrate.SystemDataResponse; /** * Gets the resource type. */ readonly type: string; } /** * Get the private endpoint with the specified name. * * Uses Azure REST API version 2020-05-01. * * Other available API versions: 2023-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native migrate [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getPrivateEndpointConnectionControllerPrivateEndpointConnectionOutput(args: GetPrivateEndpointConnectionControllerPrivateEndpointConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateEndpointConnectionControllerPrivateEndpointConnectionResult>; export interface GetPrivateEndpointConnectionControllerPrivateEndpointConnectionOutputArgs { /** * Migrate project name. */ migrateProjectName: pulumi.Input<string>; /** * Private endpoint connection name. */ peConnectionName: pulumi.Input<string>; /** * Name of the Azure Resource Group that project is part of. */ resourceGroupName: pulumi.Input<string>; }