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.75 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List manual private endpoints on artifact stores * * Uses Azure REST API version 2024-04-15. */ export declare function listArtifactStorePrivateEndPoints(args: ListArtifactStorePrivateEndPointsArgs, opts?: pulumi.InvokeOptions): Promise<ListArtifactStorePrivateEndPointsResult>; export interface ListArtifactStorePrivateEndPointsArgs { /** * 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 ListArtifactStorePrivateEndPointsResult { /** * The URI to get the next set of results. */ readonly nextLink: string; /** * A list of private endpoints. */ readonly value?: outputs.hybridnetwork.ArtifactStorePrivateEndPointsFormatResponse[]; } /** * List manual private endpoints on artifact stores * * Uses Azure REST API version 2024-04-15. */ export declare function listArtifactStorePrivateEndPointsOutput(args: ListArtifactStorePrivateEndPointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListArtifactStorePrivateEndPointsResult>; export interface ListArtifactStorePrivateEndPointsOutputArgs { /** * 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>; }