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

56 lines (55 loc) 1.98 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List network fabric controllers to artifact stores * * Uses Azure REST API version 2024-04-15. */ export declare function listArtifactStoreNetworkFabricControllerPrivateEndPoints(args: ListArtifactStoreNetworkFabricControllerPrivateEndPointsArgs, opts?: pulumi.InvokeOptions): Promise<ListArtifactStoreNetworkFabricControllerPrivateEndPointsResult>; export interface ListArtifactStoreNetworkFabricControllerPrivateEndPointsArgs { /** * The name of the artifact store. */ artifactStoreName: string; /** * The name of the publisher. */ publisherName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * List of manual private endpoints. */ export interface ListArtifactStoreNetworkFabricControllerPrivateEndPointsResult { /** * The URI to get the next set of results. */ readonly nextLink: string; /** * A list of network fabric controllers. */ readonly value?: outputs.hybridnetwork.ArtifactStoreNetworkFabricControllerEndPointsResponse[]; } /** * List network fabric controllers to artifact stores * * Uses Azure REST API version 2024-04-15. */ export declare function listArtifactStoreNetworkFabricControllerPrivateEndPointsOutput(args: ListArtifactStoreNetworkFabricControllerPrivateEndPointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListArtifactStoreNetworkFabricControllerPrivateEndPointsResult>; export interface ListArtifactStoreNetworkFabricControllerPrivateEndPointsOutputArgs { /** * The name of the artifact store. */ artifactStoreName: pulumi.Input<string>; /** * The name of the publisher. */ publisherName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }