@piclemx/pulumi-opensearch
Version:
A Pulumi package for creating and managing Opensearch resources. Based on terraform-provider-opensearch: version v2.2.1
93 lines (92 loc) • 2.84 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Provides an OpenSearch ingest pipeline resource.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as opensearch from "@piclemx/pulumi-opensearch";
*
* // Create a simple ingest pipeline
* const test = new opensearch.IngestPipeline("test", {body: `{
* "description" : "describe pipeline",
* "version": 123,
* "processors" : [
* {
* "set" : {
* "field": "foo",
* "value": "bar"
* }
* }
* ]
* }
*
* `});
* ```
*
* ## Import
*
* ```sh
* $ pulumi import opensearch:index/ingestPipeline:IngestPipeline test terraform-test
* ```
*/
export declare class IngestPipeline extends pulumi.CustomResource {
/**
* Get an existing IngestPipeline 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?: IngestPipelineState, opts?: pulumi.CustomResourceOptions): IngestPipeline;
/**
* Returns true if the given object is an instance of IngestPipeline. 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 IngestPipeline;
/**
* The JSON body of the ingest pipeline
*/
readonly body: pulumi.Output<string>;
/**
* The name of the ingest pipeline
*/
readonly name: pulumi.Output<string>;
/**
* Create a IngestPipeline 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: IngestPipelineArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering IngestPipeline resources.
*/
export interface IngestPipelineState {
/**
* The JSON body of the ingest pipeline
*/
body?: pulumi.Input<string>;
/**
* The name of the ingest pipeline
*/
name?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a IngestPipeline resource.
*/
export interface IngestPipelineArgs {
/**
* The JSON body of the ingest pipeline
*/
body: pulumi.Input<string>;
/**
* The name of the ingest pipeline
*/
name?: pulumi.Input<string>;
}