@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.16 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Uses Azure REST API version 2025-01-01-preview.
*
* Other available API versions: 2024-01-01-preview, 2024-07-01-preview, 2024-10-01-preview, 2025-04-01-preview, 2025-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native machinelearningservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listEndpointKeys(args: ListEndpointKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListEndpointKeysResult>;
export interface ListEndpointKeysArgs {
/**
* Name of the endpoint resource.
*/
endpointName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* Azure Machine Learning Workspace Name
*/
workspaceName: string;
}
export interface ListEndpointKeysResult {
/**
* Dictionary of Keys for the endpoint.
*/
readonly keys?: outputs.machinelearningservices.AccountApiKeysResponse;
}
/**
* Uses Azure REST API version 2025-01-01-preview.
*
* Other available API versions: 2024-01-01-preview, 2024-07-01-preview, 2024-10-01-preview, 2025-04-01-preview, 2025-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native machinelearningservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listEndpointKeysOutput(args: ListEndpointKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListEndpointKeysResult>;
export interface ListEndpointKeysOutputArgs {
/**
* Name of the endpoint resource.
*/
endpointName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Azure Machine Learning Workspace Name
*/
workspaceName: pulumi.Input<string>;
}