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

96 lines (95 loc) 2.67 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets a change data capture. * * Uses Azure REST API version 2018-06-01. */ export declare function getChangeDataCapture(args: GetChangeDataCaptureArgs, opts?: pulumi.InvokeOptions): Promise<GetChangeDataCaptureResult>; export interface GetChangeDataCaptureArgs { /** * The change data capture name. */ changeDataCaptureName: string; /** * The factory name. */ factoryName: string; /** * The resource group name. */ resourceGroupName: string; } /** * Change data capture resource type. */ export interface GetChangeDataCaptureResult { /** * A boolean to determine if the vnet configuration needs to be overwritten. */ readonly allowVNetOverride?: boolean; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The description of the change data capture. */ readonly description?: string; /** * Etag identifies change in the resource. */ readonly etag: string; /** * The folder that this CDC is in. If not specified, CDC will appear at the root level. */ readonly folder?: outputs.datafactory.ChangeDataCaptureResponseFolder; /** * The resource identifier. */ readonly id: string; /** * The resource name. */ readonly name: string; /** * CDC policy */ readonly policy: outputs.datafactory.MapperPolicyResponse; /** * List of sources connections that can be used as sources in the CDC. */ readonly sourceConnectionsInfo: outputs.datafactory.MapperSourceConnectionsInfoResponse[]; /** * Status of the CDC as to if it is running or stopped. */ readonly status?: string; /** * List of target connections that can be used as sources in the CDC. */ readonly targetConnectionsInfo: outputs.datafactory.MapperTargetConnectionsInfoResponse[]; /** * The resource type. */ readonly type: string; } /** * Gets a change data capture. * * Uses Azure REST API version 2018-06-01. */ export declare function getChangeDataCaptureOutput(args: GetChangeDataCaptureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetChangeDataCaptureResult>; export interface GetChangeDataCaptureOutputArgs { /** * The change data capture name. */ changeDataCaptureName: pulumi.Input<string>; /** * The factory name. */ factoryName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; }