@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.96 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the specified private endpoint connection associated with the service.
*
* Uses Azure REST API version 2021-03-25-preview.
*/
export declare function getPrivateEndpointConnectionsComp(args: GetPrivateEndpointConnectionsCompArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateEndpointConnectionsCompResult>;
export interface GetPrivateEndpointConnectionsCompArgs {
/**
* The name of the private endpoint connection associated with the Azure resource
*/
privateEndpointConnectionName: string;
/**
* The name of the resource group that contains the service instance.
*/
resourceGroupName: string;
/**
* The name of the service instance.
*/
resourceName: string;
}
/**
* The Private Endpoint Connection resource.
*/
export interface GetPrivateEndpointConnectionsCompResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: 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 resource of private end point.
*/
readonly privateEndpoint?: outputs.m365securityandcompliance.PrivateEndpointResponse;
/**
* A collection of information about the state of the connection between service consumer and provider.
*/
readonly privateLinkServiceConnectionState: outputs.m365securityandcompliance.PrivateLinkServiceConnectionStateResponse;
/**
* The provisioning state of the private endpoint connection resource.
*/
readonly provisioningState: string;
/**
* Required property for system data
*/
readonly systemData: outputs.m365securityandcompliance.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets the specified private endpoint connection associated with the service.
*
* Uses Azure REST API version 2021-03-25-preview.
*/
export declare function getPrivateEndpointConnectionsCompOutput(args: GetPrivateEndpointConnectionsCompOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateEndpointConnectionsCompResult>;
export interface GetPrivateEndpointConnectionsCompOutputArgs {
/**
* The name of the private endpoint connection associated with the Azure resource
*/
privateEndpointConnectionName: pulumi.Input<string>;
/**
* The name of the resource group that contains the service instance.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the service instance.
*/
resourceName: pulumi.Input<string>;
}