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

84 lines (83 loc) 2.53 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of generic ARM proxy resource. * * Uses Azure REST API version 2022-06-01. */ export declare function getDataCollectionRuleAssociation(args: GetDataCollectionRuleAssociationArgs, opts?: pulumi.InvokeOptions): Promise<GetDataCollectionRuleAssociationResult>; export interface GetDataCollectionRuleAssociationArgs { /** * The name of the association. The name is case insensitive. */ associationName: string; /** * The identifier of the resource. */ resourceUri: string; } /** * Definition of generic ARM proxy resource. */ export interface GetDataCollectionRuleAssociationResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The resource ID of the data collection endpoint that is to be associated. */ readonly dataCollectionEndpointId?: string; /** * The resource ID of the data collection rule that is to be associated. */ readonly dataCollectionRuleId?: string; /** * Description of the association. */ readonly description?: string; /** * Resource entity tag (ETag). */ readonly etag: string; /** * Fully qualified ID of the resource. */ readonly id: string; /** * Metadata about the resource */ readonly metadata: outputs.monitor.DataCollectionRuleAssociationResponseMetadata; /** * The name of the resource. */ readonly name: string; /** * The resource provisioning state. */ readonly provisioningState: string; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: outputs.monitor.DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData; /** * The type of the resource. */ readonly type: string; } /** * Definition of generic ARM proxy resource. * * Uses Azure REST API version 2022-06-01. */ export declare function getDataCollectionRuleAssociationOutput(args: GetDataCollectionRuleAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDataCollectionRuleAssociationResult>; export interface GetDataCollectionRuleAssociationOutputArgs { /** * The name of the association. The name is case insensitive. */ associationName: pulumi.Input<string>; /** * The identifier of the resource. */ resourceUri: pulumi.Input<string>; }