@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.04 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a DataLakeTopicMapResource
*
* Uses Azure REST API version 2023-10-04-preview.
*/
export declare function getDataLakeConnectorTopicMap(args: GetDataLakeConnectorTopicMapArgs, opts?: pulumi.InvokeOptions): Promise<GetDataLakeConnectorTopicMapResult>;
export interface GetDataLakeConnectorTopicMapArgs {
/**
* Name of MQ dataLakeConnector resource
*/
dataLakeConnectorName: string;
/**
* Name of MQ resource
*/
mqName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* Name of MQ dataLakeConnector/topicMap resource
*/
topicMapName: string;
}
/**
* MQ dataLakeConnector/topicMap resource
*/
export interface GetDataLakeConnectorTopicMapResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* DataLake Connector CRD to use.
*/
readonly dataLakeConnectorRef: string;
/**
* Extended Location
*/
readonly extendedLocation: outputs.iotoperationsmq.ExtendedLocationPropertyResponse;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* TopicMap for DataLake connector.
*/
readonly mapping: outputs.iotoperationsmq.DataLakeConnectorMapResponse;
/**
* The name of the resource
*/
readonly name: string;
/**
* The status of the last operation.
*/
readonly provisioningState: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.iotoperationsmq.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get a DataLakeTopicMapResource
*
* Uses Azure REST API version 2023-10-04-preview.
*/
export declare function getDataLakeConnectorTopicMapOutput(args: GetDataLakeConnectorTopicMapOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDataLakeConnectorTopicMapResult>;
export interface GetDataLakeConnectorTopicMapOutputArgs {
/**
* Name of MQ dataLakeConnector resource
*/
dataLakeConnectorName: pulumi.Input<string>;
/**
* Name of MQ resource
*/
mqName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Name of MQ dataLakeConnector/topicMap resource
*/
topicMapName: pulumi.Input<string>;
}