import * as pulumi from "@pulumi/pulumi"; /** * Creates a pattern for a opensearch cluster associated with a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const opensearch = ovh.CloudProjectDatabase.getDatabase({ * serviceName: "XXX", * engine: "opensearch", * id: "ZZZ", * }); * const pattern = new ovh.cloudprojectdatabase.OpensearchPattern("pattern", { * serviceName: opensearch.then(opensearch => opensearch.serviceName), * clusterId: opensearch.then(opensearch => opensearch.id), * maxIndexCount: 2, * pattern: "logs_*", * }); * ``` * * ## Import * * OVHcloud Managed opensearch clusters patterns can be imported using the `service_name`, `cluster_id` and `id` of the pattern, separated by "/" E.g., * * bash * * ```sh * $ pulumi import ovh:CloudProjectDatabase/opensearchPattern:OpensearchPattern my_pattern service_name/cluster_id/id * ``` */ export declare class OpensearchPattern extends pulumi.CustomResource { /** * Get an existing OpensearchPattern 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?: OpensearchPatternState, opts?: pulumi.CustomResourceOptions): OpensearchPattern; /** * Returns true if the given object is an instance of OpensearchPattern. 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 OpensearchPattern; /** * Cluster ID. */ readonly clusterId: pulumi.Output; /** * Maximum number of index for this pattern. */ readonly maxIndexCount: pulumi.Output; /** * Pattern format. */ readonly pattern: pulumi.Output; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ readonly serviceName: pulumi.Output; /** * Create a OpensearchPattern 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: OpensearchPatternArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OpensearchPattern resources. */ export interface OpensearchPatternState { /** * Cluster ID. */ clusterId?: pulumi.Input; /** * Maximum number of index for this pattern. */ maxIndexCount?: pulumi.Input; /** * Pattern format. */ pattern?: pulumi.Input; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; } /** * The set of arguments for constructing a OpensearchPattern resource. */ export interface OpensearchPatternArgs { /** * Cluster ID. */ clusterId: pulumi.Input; /** * Maximum number of index for this pattern. */ maxIndexCount?: pulumi.Input; /** * Pattern format. */ pattern: pulumi.Input; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; }