@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 4.19 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Azure Data Catalog.
*
* Uses Azure REST API version 2016-03-30. In version 2.x of the Azure Native provider, it used API version 2016-03-30.
*/
export declare class ADCCatalog extends pulumi.CustomResource {
/**
* Get an existing ADCCatalog resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ADCCatalog;
/**
* Returns true if the given object is an instance of ADCCatalog. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is ADCCatalog;
/**
* Azure data catalog admin list.
*/
readonly admins: pulumi.Output<outputs.datacatalog.PrincipalsResponse[] | undefined>;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* Automatic unit adjustment enabled or not.
*/
readonly enableAutomaticUnitAdjustment: pulumi.Output<boolean | undefined>;
/**
* Resource etag
*/
readonly etag: pulumi.Output<string | undefined>;
/**
* Resource location
*/
readonly location: pulumi.Output<string | undefined>;
/**
* Resource name
*/
readonly name: pulumi.Output<string>;
/**
* Azure data catalog SKU.
*/
readonly sku: pulumi.Output<string | undefined>;
/**
* Azure data catalog provision status.
*/
readonly successfullyProvisioned: pulumi.Output<boolean | undefined>;
/**
* Resource tags
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Resource type
*/
readonly type: pulumi.Output<string>;
/**
* Azure data catalog units.
*/
readonly units: pulumi.Output<number | undefined>;
/**
* Azure data catalog user list.
*/
readonly users: pulumi.Output<outputs.datacatalog.PrincipalsResponse[] | undefined>;
/**
* Create a ADCCatalog resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: ADCCatalogArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a ADCCatalog resource.
*/
export interface ADCCatalogArgs {
/**
* Azure data catalog admin list.
*/
admins?: pulumi.Input<pulumi.Input<inputs.datacatalog.PrincipalsArgs>[]>;
/**
* The name of the data catalog in the specified subscription and resource group.
*/
catalogName?: pulumi.Input<string>;
/**
* Automatic unit adjustment enabled or not.
*/
enableAutomaticUnitAdjustment?: pulumi.Input<boolean>;
/**
* Resource location
*/
location?: pulumi.Input<string>;
/**
* The name of the resource group within the user's subscription. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Azure data catalog SKU.
*/
sku?: pulumi.Input<string | enums.datacatalog.SkuType>;
/**
* Azure data catalog provision status.
*/
successfullyProvisioned?: pulumi.Input<boolean>;
/**
* Resource tags
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* Azure data catalog units.
*/
units?: pulumi.Input<number>;
/**
* Azure data catalog user list.
*/
users?: pulumi.Input<pulumi.Input<inputs.datacatalog.PrincipalsArgs>[]>;
}