import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Connect Harness resource in Oracle Cloud Infrastructure Streaming service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/ * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/streaming * * Starts the provisioning of a new connect harness. * To track the progress of the provisioning, you can periodically call [GetConnectHarness]. * In the response, the `lifecycleState` parameter of the [ConnectHarness](https://docs.cloud.oracle.com/iaas/api/#/en/streaming/20180418/ConnectHarness/) object tells you its current state. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConnectHarness = new oci.streaming.ConnectHarness("test_connect_harness", { * compartmentId: compartmentId, * name: connectHarnessName, * definedTags: connectHarnessDefinedTags, * freeformTags: { * Department: "Finance", * }, * }); * ``` * * ## Import * * ConnectHarnesses can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Streaming/connectHarness:ConnectHarness test_connect_harness "id" * ``` */ export declare class ConnectHarness extends pulumi.CustomResource { /** * Get an existing ConnectHarness 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, state?: ConnectHarnessState, opts?: pulumi.CustomResourceOptions): ConnectHarness; /** * Returns true if the given object is an instance of ConnectHarness. 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 ConnectHarness; /** * (Updatable) The OCID of the compartment that contains the connect harness. */ readonly compartmentId: pulumi.Output; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * Any additional details about the current state of the connect harness. */ readonly lifecycleStateDetails: pulumi.Output; /** * The name of the connect harness. Avoid entering confidential information. Example: `JDBCConnector` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly name: pulumi.Output; /** * The current state of the connect harness. */ readonly state: pulumi.Output; /** * The date and time the connect harness was created, expressed in in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2018-04-20T00:00:07.405Z` */ readonly timeCreated: pulumi.Output; /** * Create a ConnectHarness 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: ConnectHarnessArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ConnectHarness resources. */ export interface ConnectHarnessState { /** * (Updatable) The OCID of the compartment that contains the connect harness. */ compartmentId?: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Any additional details about the current state of the connect harness. */ lifecycleStateDetails?: pulumi.Input; /** * The name of the connect harness. Avoid entering confidential information. Example: `JDBCConnector` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ name?: pulumi.Input; /** * The current state of the connect harness. */ state?: pulumi.Input; /** * The date and time the connect harness was created, expressed in in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2018-04-20T00:00:07.405Z` */ timeCreated?: pulumi.Input; } /** * The set of arguments for constructing a ConnectHarness resource. */ export interface ConnectHarnessArgs { /** * (Updatable) The OCID of the compartment that contains the connect harness. */ compartmentId: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The name of the connect harness. Avoid entering confidential information. Example: `JDBCConnector` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ name?: pulumi.Input; } //# sourceMappingURL=connectHarness.d.ts.map