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

104 lines (103 loc) 3.71 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Export logs that show total throttled Api requests for this subscription in the given time window. * * Uses Azure REST API version 2024-11-01. * * Other available API versions: 2022-08-01, 2022-11-01, 2023-03-01, 2023-07-01, 2023-09-01, 2024-03-01, 2024-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native compute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getLogAnalyticExportThrottledRequests(args: GetLogAnalyticExportThrottledRequestsArgs, opts?: pulumi.InvokeOptions): Promise<GetLogAnalyticExportThrottledRequestsResult>; export interface GetLogAnalyticExportThrottledRequestsArgs { /** * SAS Uri of the logging blob container to which LogAnalytics Api writes output logs to. */ blobContainerSasUri: string; /** * From time of the query */ fromTime: string; /** * Group query result by Client Application ID. */ groupByClientApplicationId?: boolean; /** * Group query result by Operation Name. */ groupByOperationName?: boolean; /** * Group query result by Resource Name. */ groupByResourceName?: boolean; /** * Group query result by Throttle Policy applied. */ groupByThrottlePolicy?: boolean; /** * Group query result by User Agent. */ groupByUserAgent?: boolean; /** * The name of Azure region. */ location: string; /** * To time of the query */ toTime: string; } /** * LogAnalytics operation status response */ export interface GetLogAnalyticExportThrottledRequestsResult { /** * LogAnalyticsOutput */ readonly properties: outputs.compute.LogAnalyticsOutputResponse; } /** * Export logs that show total throttled Api requests for this subscription in the given time window. * * Uses Azure REST API version 2024-11-01. * * Other available API versions: 2022-08-01, 2022-11-01, 2023-03-01, 2023-07-01, 2023-09-01, 2024-03-01, 2024-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native compute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getLogAnalyticExportThrottledRequestsOutput(args: GetLogAnalyticExportThrottledRequestsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLogAnalyticExportThrottledRequestsResult>; export interface GetLogAnalyticExportThrottledRequestsOutputArgs { /** * SAS Uri of the logging blob container to which LogAnalytics Api writes output logs to. */ blobContainerSasUri: pulumi.Input<string>; /** * From time of the query */ fromTime: pulumi.Input<string>; /** * Group query result by Client Application ID. */ groupByClientApplicationId?: pulumi.Input<boolean>; /** * Group query result by Operation Name. */ groupByOperationName?: pulumi.Input<boolean>; /** * Group query result by Resource Name. */ groupByResourceName?: pulumi.Input<boolean>; /** * Group query result by Throttle Policy applied. */ groupByThrottlePolicy?: pulumi.Input<boolean>; /** * Group query result by User Agent. */ groupByUserAgent?: pulumi.Input<boolean>; /** * The name of Azure region. */ location: pulumi.Input<string>; /** * To time of the query */ toTime: pulumi.Input<string>; }