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

84 lines (83 loc) 2.79 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * (INTERNAL - DO NOT USE) Get the specified private endpoint connection proxy associated with the device update account. * * Uses Azure REST API version 2023-07-01. */ export declare function getPrivateEndpointConnectionProxy(args: GetPrivateEndpointConnectionProxyArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateEndpointConnectionProxyResult>; export interface GetPrivateEndpointConnectionProxyArgs { /** * Account name. */ accountName: string; /** * The ID of the private endpoint connection proxy object. */ privateEndpointConnectionProxyId: string; /** * The resource group name. */ resourceGroupName: string; } /** * Private endpoint connection proxy details. */ export interface GetPrivateEndpointConnectionProxyResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * ETag from NRP. */ readonly eTag: string; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * The name of the resource */ readonly name: string; /** * The provisioning state of the private endpoint connection proxy resource. */ readonly provisioningState: string; /** * Remote private endpoint details. */ readonly remotePrivateEndpoint?: outputs.deviceupdate.RemotePrivateEndpointResponse; /** * Operation status. */ readonly status?: string; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.deviceupdate.SystemDataResponse; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * (INTERNAL - DO NOT USE) Get the specified private endpoint connection proxy associated with the device update account. * * Uses Azure REST API version 2023-07-01. */ export declare function getPrivateEndpointConnectionProxyOutput(args: GetPrivateEndpointConnectionProxyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateEndpointConnectionProxyResult>; export interface GetPrivateEndpointConnectionProxyOutputArgs { /** * Account name. */ accountName: pulumi.Input<string>; /** * The ID of the private endpoint connection proxy object. */ privateEndpointConnectionProxyId: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; }