import * as pulumi from "@pulumi/pulumi"; /** * Provides a Datadog IntegrationConfluentResource resource. This can be used to create and manage Datadog integration_confluent_resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * const foo = new datadog.confluent.IntegrationAccount("foo", { * apiKey: "TESTAPIKEY123", * apiSecret: "test-api-secret-123", * tags: [ * "mytag", * "mytag2:myvalue", * ], * }); * // Create new integration_confluent_resource resource * const fooIntegrationResource = new datadog.confluent.IntegrationResource("foo", { * accountId: foo.id, * resourceId: "123456", * resourceType: "kafka", * tags: [ * "mytag", * "mytag2:myvalue", * ], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import datadog:confluent/integrationResource:IntegrationResource new_list "confluent_account_id:confluent_resource_id" * ``` */ export declare class IntegrationResource extends pulumi.CustomResource { /** * Get an existing IntegrationResource 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?: IntegrationResourceState, opts?: pulumi.CustomResourceOptions): IntegrationResource; /** * Returns true if the given object is an instance of IntegrationResource. 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 IntegrationResource; /** * Confluent Account ID. */ readonly accountId: pulumi.Output; /** * Enable the `custom.consumer_lag_offset` metric, which contains extra metric tags. Defaults to `false`. */ readonly enableCustomMetrics: pulumi.Output; /** * The ID associated with a Confluent resource. */ readonly resourceId: pulumi.Output; /** * The resource type of the Resource. Can be `kafka`, `connector`, `ksql`, or `schemaRegistry`. */ readonly resourceType: pulumi.Output; /** * A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon. */ readonly tags: pulumi.Output; /** * Create a IntegrationResource 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: IntegrationResourceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IntegrationResource resources. */ export interface IntegrationResourceState { /** * Confluent Account ID. */ accountId?: pulumi.Input; /** * Enable the `custom.consumer_lag_offset` metric, which contains extra metric tags. Defaults to `false`. */ enableCustomMetrics?: pulumi.Input; /** * The ID associated with a Confluent resource. */ resourceId?: pulumi.Input; /** * The resource type of the Resource. Can be `kafka`, `connector`, `ksql`, or `schemaRegistry`. */ resourceType?: pulumi.Input; /** * A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon. */ tags?: pulumi.Input[]>; } /** * The set of arguments for constructing a IntegrationResource resource. */ export interface IntegrationResourceArgs { /** * Confluent Account ID. */ accountId: pulumi.Input; /** * Enable the `custom.consumer_lag_offset` metric, which contains extra metric tags. Defaults to `false`. */ enableCustomMetrics?: pulumi.Input; /** * The ID associated with a Confluent resource. */ resourceId: pulumi.Input; /** * The resource type of the Resource. Can be `kafka`, `connector`, `ksql`, or `schemaRegistry`. */ resourceType?: pulumi.Input; /** * A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon. */ tags?: pulumi.Input[]>; }