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

52 lines (51 loc) 2 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Response of a list operation. * * Uses Azure REST API version 2023-10-20. * * Other available API versions: 2022-06-01, 2022-08-01, 2023-01-01, 2023-07-07. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native datadog [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listMonitorApiKeys(args: ListMonitorApiKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListMonitorApiKeysResult>; export interface ListMonitorApiKeysArgs { /** * Monitor resource name */ monitorName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Response of a list operation. */ export interface ListMonitorApiKeysResult { /** * Link to the next set of results, if any. */ readonly nextLink?: string; /** * Results of a list operation. */ readonly value?: outputs.datadog.DatadogApiKeyResponse[]; } /** * Response of a list operation. * * Uses Azure REST API version 2023-10-20. * * Other available API versions: 2022-06-01, 2022-08-01, 2023-01-01, 2023-07-07. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native datadog [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listMonitorApiKeysOutput(args: ListMonitorApiKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListMonitorApiKeysResult>; export interface ListMonitorApiKeysOutputArgs { /** * Monitor resource name */ monitorName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }