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

60 lines (59 loc) 3.02 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists the access key for the specified configuration store. * * Uses Azure REST API version 2024-05-01. * * Other available API versions: 2023-03-01, 2023-08-01-preview, 2023-09-01-preview, 2024-06-01, 2024-06-15-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native appconfiguration [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listConfigurationStoreKeys(args: ListConfigurationStoreKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListConfigurationStoreKeysResult>; export interface ListConfigurationStoreKeysArgs { /** * The name of the configuration store. */ configStoreName: string; /** * The name of the resource group to which the container registry belongs. */ resourceGroupName: string; /** * A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */ skipToken?: string; } /** * The result of a request to list API keys. */ export interface ListConfigurationStoreKeysResult { /** * The URI that can be used to request the next set of paged results. */ readonly nextLink?: string; /** * The collection value. */ readonly value?: outputs.appconfiguration.ApiKeyResponse[]; } /** * Lists the access key for the specified configuration store. * * Uses Azure REST API version 2024-05-01. * * Other available API versions: 2023-03-01, 2023-08-01-preview, 2023-09-01-preview, 2024-06-01, 2024-06-15-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native appconfiguration [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listConfigurationStoreKeysOutput(args: ListConfigurationStoreKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListConfigurationStoreKeysResult>; export interface ListConfigurationStoreKeysOutputArgs { /** * The name of the configuration store. */ configStoreName: pulumi.Input<string>; /** * The name of the resource group to which the container registry belongs. */ resourceGroupName: pulumi.Input<string>; /** * A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */ skipToken?: pulumi.Input<string>; }