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

69 lines (68 loc) 1.77 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the details of the fabric agent. * * Uses Azure REST API version 2021-02-16-preview. */ export declare function getDra(args: GetDraArgs, opts?: pulumi.InvokeOptions): Promise<GetDraResult>; export interface GetDraArgs { /** * The fabric agent (Dra) name. */ fabricAgentName: string; /** * The fabric name. */ fabricName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Dra model. */ export interface GetDraResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Gets or sets the Id of the resource. */ readonly id: string; /** * Gets or sets the name of the resource. */ readonly name: string; /** * Dra model properties. */ readonly properties: outputs.datareplication.DraModelPropertiesResponse; readonly systemData: outputs.datareplication.DraModelResponseSystemData; /** * Gets or sets the type of the resource. */ readonly type: string; } /** * Gets the details of the fabric agent. * * Uses Azure REST API version 2021-02-16-preview. */ export declare function getDraOutput(args: GetDraOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDraResult>; export interface GetDraOutputArgs { /** * The fabric agent (Dra) name. */ fabricAgentName: pulumi.Input<string>; /** * The fabric name. */ fabricName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }