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

126 lines (125 loc) 4.64 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of ARM tracked top level resource. * * Uses Azure REST API version 2022-06-01. * * Other available API versions: 2024-03-11. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native monitor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getDataCollectionEndpoint(args: GetDataCollectionEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetDataCollectionEndpointResult>; export interface GetDataCollectionEndpointArgs { /** * The name of the data collection endpoint. The name is case insensitive. */ dataCollectionEndpointName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Definition of ARM tracked top level resource. */ export interface GetDataCollectionEndpointResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The endpoint used by clients to access their configuration. */ readonly configurationAccess?: outputs.monitor.DataCollectionEndpointResponseConfigurationAccess; /** * Description of the data collection endpoint. */ readonly description?: string; /** * Resource entity tag (ETag). */ readonly etag: string; /** * Failover configuration on this endpoint. This property is READ-ONLY. */ readonly failoverConfiguration: outputs.monitor.DataCollectionEndpointResponseFailoverConfiguration; /** * Fully qualified ID of the resource. */ readonly id: string; /** * Managed service identity of the resource. */ readonly identity?: outputs.monitor.DataCollectionEndpointResourceResponseIdentity; /** * The immutable ID of this data collection endpoint resource. This property is READ-ONLY. */ readonly immutableId?: string; /** * The kind of the resource. */ readonly kind?: string; /** * The geo-location where the resource lives. */ readonly location: string; /** * The endpoint used by clients to ingest logs. */ readonly logsIngestion?: outputs.monitor.DataCollectionEndpointResponseLogsIngestion; /** * Metadata for the resource. This property is READ-ONLY. */ readonly metadata: outputs.monitor.DataCollectionEndpointResponseMetadata; /** * The endpoint used by clients to ingest metrics. */ readonly metricsIngestion?: outputs.monitor.DataCollectionEndpointResponseMetricsIngestion; /** * The name of the resource. */ readonly name: string; /** * Network access control rules for the endpoints. */ readonly networkAcls?: outputs.monitor.DataCollectionEndpointResponseNetworkAcls; /** * List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY. */ readonly privateLinkScopedResources: outputs.monitor.PrivateLinkScopedResourceResponse[]; /** * The resource provisioning state. This property is READ-ONLY. */ readonly provisioningState: string; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: outputs.monitor.DataCollectionEndpointResourceResponseSystemData; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The type of the resource. */ readonly type: string; } /** * Definition of ARM tracked top level resource. * * Uses Azure REST API version 2022-06-01. * * Other available API versions: 2024-03-11. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native monitor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getDataCollectionEndpointOutput(args: GetDataCollectionEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDataCollectionEndpointResult>; export interface GetDataCollectionEndpointOutputArgs { /** * The name of the data collection endpoint. The name is case insensitive. */ dataCollectionEndpointName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }