@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.75 kB
TypeScript
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>;
}