@formalco/pulumi
Version:
A Pulumi package for creating and managing Formal resources.
90 lines (89 loc) • 3.84 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
* Registering a Data Catalog integration.
*/
export declare class IntegrationDataCatalog extends pulumi.CustomResource {
/**
* Get an existing IntegrationDataCatalog 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 state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IntegrationDataCatalogState, opts?: pulumi.CustomResourceOptions): IntegrationDataCatalog;
/**
* Returns true if the given object is an instance of IntegrationDataCatalog. 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 IntegrationDataCatalog;
/**
* Configuration block for Datahub integration. This block is optional and may be omitted if not configuring a Datahub integration.
*/
readonly datahub: pulumi.Output<outputs.IntegrationDataCatalogDatahub | undefined>;
/**
* Name of the Integration
*/
readonly name: pulumi.Output<string>;
/**
* Sync direction of the Integration: supported values are 'bidirectional', 'formal*to*datahub', 'datahub*to*formal'.
*/
readonly syncDirection: pulumi.Output<string>;
/**
* Synced entities of the Integration: currently supported values are 'tags', 'data_labels'.
*/
readonly syncedEntities: pulumi.Output<string[]>;
/**
* Create a IntegrationDataCatalog 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: IntegrationDataCatalogArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering IntegrationDataCatalog resources.
*/
export interface IntegrationDataCatalogState {
/**
* Configuration block for Datahub integration. This block is optional and may be omitted if not configuring a Datahub integration.
*/
datahub?: pulumi.Input<inputs.IntegrationDataCatalogDatahub>;
/**
* Name of the Integration
*/
name?: pulumi.Input<string>;
/**
* Sync direction of the Integration: supported values are 'bidirectional', 'formal*to*datahub', 'datahub*to*formal'.
*/
syncDirection?: pulumi.Input<string>;
/**
* Synced entities of the Integration: currently supported values are 'tags', 'data_labels'.
*/
syncedEntities?: pulumi.Input<pulumi.Input<string>[]>;
}
/**
* The set of arguments for constructing a IntegrationDataCatalog resource.
*/
export interface IntegrationDataCatalogArgs {
/**
* Configuration block for Datahub integration. This block is optional and may be omitted if not configuring a Datahub integration.
*/
datahub?: pulumi.Input<inputs.IntegrationDataCatalogDatahub>;
/**
* Name of the Integration
*/
name?: pulumi.Input<string>;
/**
* Sync direction of the Integration: supported values are 'bidirectional', 'formal*to*datahub', 'datahub*to*formal'.
*/
syncDirection: pulumi.Input<string>;
/**
* Synced entities of the Integration: currently supported values are 'tags', 'data_labels'.
*/
syncedEntities: pulumi.Input<pulumi.Input<string>[]>;
}