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

94 lines (93 loc) 2.53 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * The Get Azure Data Catalog Service operation retrieves a json representation of the data catalog. * * Uses Azure REST API version 2016-03-30. */ export declare function getADCCatalog(args: GetADCCatalogArgs, opts?: pulumi.InvokeOptions): Promise<GetADCCatalogResult>; export interface GetADCCatalogArgs { /** * The name of the data catalog in the specified subscription and resource group. */ catalogName: string; /** * The name of the resource group within the user's subscription. The name is case insensitive. */ resourceGroupName: string; } /** * Azure Data Catalog. */ export interface GetADCCatalogResult { /** * Azure data catalog admin list. */ readonly admins?: outputs.datacatalog.PrincipalsResponse[]; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Automatic unit adjustment enabled or not. */ readonly enableAutomaticUnitAdjustment?: boolean; /** * Resource etag */ readonly etag?: string; /** * Resource Id */ readonly id: string; /** * Resource location */ readonly location?: string; /** * Resource name */ readonly name: string; /** * Azure data catalog SKU. */ readonly sku?: string; /** * Azure data catalog provision status. */ readonly successfullyProvisioned?: boolean; /** * Resource tags */ readonly tags?: { [key: string]: string; }; /** * Resource type */ readonly type: string; /** * Azure data catalog units. */ readonly units?: number; /** * Azure data catalog user list. */ readonly users?: outputs.datacatalog.PrincipalsResponse[]; } /** * The Get Azure Data Catalog Service operation retrieves a json representation of the data catalog. * * Uses Azure REST API version 2016-03-30. */ export declare function getADCCatalogOutput(args: GetADCCatalogOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetADCCatalogResult>; export interface GetADCCatalogOutputArgs { /** * The name of the data catalog in the specified subscription and resource group. */ catalogName: pulumi.Input<string>; /** * The name of the resource group within the user's subscription. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }