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

132 lines (131 loc) 3.08 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets a connector mapping in the connector. * * Uses Azure REST API version 2017-04-26. */ export declare function getConnectorMapping(args: GetConnectorMappingArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectorMappingResult>; export interface GetConnectorMappingArgs { /** * The name of the connector. */ connectorName: string; /** * The name of the hub. */ hubName: string; /** * The name of the connector mapping. */ mappingName: string; /** * The name of the resource group. */ resourceGroupName: string; } /** * The connector mapping resource format. */ export interface GetConnectorMappingResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The connector mapping name */ readonly connectorMappingName: string; /** * The connector name. */ readonly connectorName: string; /** * Type of connector. */ readonly connectorType?: string; /** * The created time. */ readonly created: string; /** * The DataFormat ID. */ readonly dataFormatId: string; /** * The description of the connector mapping. */ readonly description?: string; /** * Display name for the connector mapping. */ readonly displayName?: string; /** * Defines which entity type the file should map to. */ readonly entityType: string; /** * The mapping entity name. */ readonly entityTypeName: string; /** * Resource ID. */ readonly id: string; /** * The last modified time. */ readonly lastModified: string; /** * The properties of the mapping. */ readonly mappingProperties: outputs.customerinsights.ConnectorMappingPropertiesResponse; /** * Resource name. */ readonly name: string; /** * The next run time based on customer's settings. */ readonly nextRunTime: string; /** * The RunId. */ readonly runId: string; /** * State of connector mapping. */ readonly state: string; /** * The hub name. */ readonly tenantId: string; /** * Resource type. */ readonly type: string; } /** * Gets a connector mapping in the connector. * * Uses Azure REST API version 2017-04-26. */ export declare function getConnectorMappingOutput(args: GetConnectorMappingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectorMappingResult>; export interface GetConnectorMappingOutputArgs { /** * The name of the connector. */ connectorName: pulumi.Input<string>; /** * The name of the hub. */ hubName: pulumi.Input<string>; /** * The name of the connector mapping. */ mappingName: pulumi.Input<string>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; }