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

67 lines (66 loc) 2.4 kB
import * as pulumi from "@pulumi/pulumi"; /** * Returns the current linked storage settings for an Application Insights component. * * Uses Azure REST API version 2020-03-01-preview. */ export declare function getComponentLinkedStorageAccount(args: GetComponentLinkedStorageAccountArgs, opts?: pulumi.InvokeOptions): Promise<GetComponentLinkedStorageAccountResult>; export interface GetComponentLinkedStorageAccountArgs { /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The name of the Application Insights component resource. */ resourceName: string; /** * The type of the Application Insights component data source for the linked storage account. */ storageType: string; } /** * An Application Insights component linked storage accounts */ export interface GetComponentLinkedStorageAccountResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * Linked storage account resource ID */ readonly linkedStorageAccount?: string; /** * The name of the resource */ readonly name: string; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Returns the current linked storage settings for an Application Insights component. * * Uses Azure REST API version 2020-03-01-preview. */ export declare function getComponentLinkedStorageAccountOutput(args: GetComponentLinkedStorageAccountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetComponentLinkedStorageAccountResult>; export interface GetComponentLinkedStorageAccountOutputArgs { /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The name of the Application Insights component resource. */ resourceName: pulumi.Input<string>; /** * The type of the Application Insights component data source for the linked storage account. */ storageType: pulumi.Input<string>; }