oci.Opensearch.OpensearchClusterPipeline
Explore with Pulumi AI
This resource provides the Opensearch Cluster Pipeline resource in Oracle Cloud Infrastructure Opensearch service.
Creates a new OpensearchCluster Pipeline.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOpensearchClusterPipeline = new oci.opensearch.OpensearchClusterPipeline("test_opensearch_cluster_pipeline", {
    compartmentId: compartmentId,
    dataPrepperConfigurationBody: opensearchClusterPipelineDataPrepperConfigurationBody,
    displayName: opensearchClusterPipelineDisplayName,
    memoryGb: opensearchClusterPipelineMemoryGb,
    nodeCount: opensearchClusterPipelineNodeCount,
    ocpuCount: opensearchClusterPipelineOcpuCount,
    pipelineConfigurationBody: opensearchClusterPipelinePipelineConfigurationBody,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    freeformTags: {
        "bar-key": "value",
    },
    nsgId: testNsg.id,
    opcDryRun: opensearchClusterPipelineOpcDryRun,
    reverseConnectionEndpoints: [{
        customerFqdn: opensearchClusterPipelineReverseConnectionEndpointsCustomerFqdn,
        customerIp: opensearchClusterPipelineReverseConnectionEndpointsCustomerIp,
    }],
    subnetCompartmentId: testCompartment.id,
    subnetId: testSubnet.id,
    vcnCompartmentId: testCompartment.id,
    vcnId: testVcn.id,
});
import pulumi
import pulumi_oci as oci
test_opensearch_cluster_pipeline = oci.opensearch.OpensearchClusterPipeline("test_opensearch_cluster_pipeline",
    compartment_id=compartment_id,
    data_prepper_configuration_body=opensearch_cluster_pipeline_data_prepper_configuration_body,
    display_name=opensearch_cluster_pipeline_display_name,
    memory_gb=opensearch_cluster_pipeline_memory_gb,
    node_count=opensearch_cluster_pipeline_node_count,
    ocpu_count=opensearch_cluster_pipeline_ocpu_count,
    pipeline_configuration_body=opensearch_cluster_pipeline_pipeline_configuration_body,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    freeform_tags={
        "bar-key": "value",
    },
    nsg_id=test_nsg["id"],
    opc_dry_run=opensearch_cluster_pipeline_opc_dry_run,
    reverse_connection_endpoints=[{
        "customer_fqdn": opensearch_cluster_pipeline_reverse_connection_endpoints_customer_fqdn,
        "customer_ip": opensearch_cluster_pipeline_reverse_connection_endpoints_customer_ip,
    }],
    subnet_compartment_id=test_compartment["id"],
    subnet_id=test_subnet["id"],
    vcn_compartment_id=test_compartment["id"],
    vcn_id=test_vcn["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/opensearch"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := opensearch.NewOpensearchClusterPipeline(ctx, "test_opensearch_cluster_pipeline", &opensearch.OpensearchClusterPipelineArgs{
			CompartmentId:                pulumi.Any(compartmentId),
			DataPrepperConfigurationBody: pulumi.Any(opensearchClusterPipelineDataPrepperConfigurationBody),
			DisplayName:                  pulumi.Any(opensearchClusterPipelineDisplayName),
			MemoryGb:                     pulumi.Any(opensearchClusterPipelineMemoryGb),
			NodeCount:                    pulumi.Any(opensearchClusterPipelineNodeCount),
			OcpuCount:                    pulumi.Any(opensearchClusterPipelineOcpuCount),
			PipelineConfigurationBody:    pulumi.Any(opensearchClusterPipelinePipelineConfigurationBody),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			NsgId:     pulumi.Any(testNsg.Id),
			OpcDryRun: pulumi.Any(opensearchClusterPipelineOpcDryRun),
			ReverseConnectionEndpoints: opensearch.OpensearchClusterPipelineReverseConnectionEndpointArray{
				&opensearch.OpensearchClusterPipelineReverseConnectionEndpointArgs{
					CustomerFqdn: pulumi.Any(opensearchClusterPipelineReverseConnectionEndpointsCustomerFqdn),
					CustomerIp:   pulumi.Any(opensearchClusterPipelineReverseConnectionEndpointsCustomerIp),
				},
			},
			SubnetCompartmentId: pulumi.Any(testCompartment.Id),
			SubnetId:            pulumi.Any(testSubnet.Id),
			VcnCompartmentId:    pulumi.Any(testCompartment.Id),
			VcnId:               pulumi.Any(testVcn.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testOpensearchClusterPipeline = new Oci.Opensearch.OpensearchClusterPipeline("test_opensearch_cluster_pipeline", new()
    {
        CompartmentId = compartmentId,
        DataPrepperConfigurationBody = opensearchClusterPipelineDataPrepperConfigurationBody,
        DisplayName = opensearchClusterPipelineDisplayName,
        MemoryGb = opensearchClusterPipelineMemoryGb,
        NodeCount = opensearchClusterPipelineNodeCount,
        OcpuCount = opensearchClusterPipelineOcpuCount,
        PipelineConfigurationBody = opensearchClusterPipelinePipelineConfigurationBody,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        NsgId = testNsg.Id,
        OpcDryRun = opensearchClusterPipelineOpcDryRun,
        ReverseConnectionEndpoints = new[]
        {
            new Oci.Opensearch.Inputs.OpensearchClusterPipelineReverseConnectionEndpointArgs
            {
                CustomerFqdn = opensearchClusterPipelineReverseConnectionEndpointsCustomerFqdn,
                CustomerIp = opensearchClusterPipelineReverseConnectionEndpointsCustomerIp,
            },
        },
        SubnetCompartmentId = testCompartment.Id,
        SubnetId = testSubnet.Id,
        VcnCompartmentId = testCompartment.Id,
        VcnId = testVcn.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Opensearch.OpensearchClusterPipeline;
import com.pulumi.oci.Opensearch.OpensearchClusterPipelineArgs;
import com.pulumi.oci.Opensearch.inputs.OpensearchClusterPipelineReverseConnectionEndpointArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var testOpensearchClusterPipeline = new OpensearchClusterPipeline("testOpensearchClusterPipeline", OpensearchClusterPipelineArgs.builder()
            .compartmentId(compartmentId)
            .dataPrepperConfigurationBody(opensearchClusterPipelineDataPrepperConfigurationBody)
            .displayName(opensearchClusterPipelineDisplayName)
            .memoryGb(opensearchClusterPipelineMemoryGb)
            .nodeCount(opensearchClusterPipelineNodeCount)
            .ocpuCount(opensearchClusterPipelineOcpuCount)
            .pipelineConfigurationBody(opensearchClusterPipelinePipelineConfigurationBody)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .freeformTags(Map.of("bar-key", "value"))
            .nsgId(testNsg.id())
            .opcDryRun(opensearchClusterPipelineOpcDryRun)
            .reverseConnectionEndpoints(OpensearchClusterPipelineReverseConnectionEndpointArgs.builder()
                .customerFqdn(opensearchClusterPipelineReverseConnectionEndpointsCustomerFqdn)
                .customerIp(opensearchClusterPipelineReverseConnectionEndpointsCustomerIp)
                .build())
            .subnetCompartmentId(testCompartment.id())
            .subnetId(testSubnet.id())
            .vcnCompartmentId(testCompartment.id())
            .vcnId(testVcn.id())
            .build());
    }
}
resources:
  testOpensearchClusterPipeline:
    type: oci:Opensearch:OpensearchClusterPipeline
    name: test_opensearch_cluster_pipeline
    properties:
      compartmentId: ${compartmentId}
      dataPrepperConfigurationBody: ${opensearchClusterPipelineDataPrepperConfigurationBody}
      displayName: ${opensearchClusterPipelineDisplayName}
      memoryGb: ${opensearchClusterPipelineMemoryGb}
      nodeCount: ${opensearchClusterPipelineNodeCount}
      ocpuCount: ${opensearchClusterPipelineOcpuCount}
      pipelineConfigurationBody: ${opensearchClusterPipelinePipelineConfigurationBody}
      definedTags:
        foo-namespace.bar-key: value
      freeformTags:
        bar-key: value
      nsgId: ${testNsg.id}
      opcDryRun: ${opensearchClusterPipelineOpcDryRun}
      reverseConnectionEndpoints:
        - customerFqdn: ${opensearchClusterPipelineReverseConnectionEndpointsCustomerFqdn}
          customerIp: ${opensearchClusterPipelineReverseConnectionEndpointsCustomerIp}
      subnetCompartmentId: ${testCompartment.id}
      subnetId: ${testSubnet.id}
      vcnCompartmentId: ${testCompartment.id}
      vcnId: ${testVcn.id}
Create OpensearchClusterPipeline Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpensearchClusterPipeline(name: string, args: OpensearchClusterPipelineArgs, opts?: CustomResourceOptions);@overload
def OpensearchClusterPipeline(resource_name: str,
                              args: OpensearchClusterPipelineArgs,
                              opts: Optional[ResourceOptions] = None)
@overload
def OpensearchClusterPipeline(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              ocpu_count: Optional[int] = None,
                              data_prepper_configuration_body: Optional[str] = None,
                              pipeline_configuration_body: Optional[str] = None,
                              display_name: Optional[str] = None,
                              compartment_id: Optional[str] = None,
                              memory_gb: Optional[int] = None,
                              node_count: Optional[int] = None,
                              freeform_tags: Optional[Mapping[str, str]] = None,
                              nsg_id: Optional[str] = None,
                              opc_dry_run: Optional[bool] = None,
                              defined_tags: Optional[Mapping[str, str]] = None,
                              reverse_connection_endpoints: Optional[Sequence[OpensearchClusterPipelineReverseConnectionEndpointArgs]] = None,
                              subnet_compartment_id: Optional[str] = None,
                              subnet_id: Optional[str] = None,
                              vcn_compartment_id: Optional[str] = None,
                              vcn_id: Optional[str] = None)func NewOpensearchClusterPipeline(ctx *Context, name string, args OpensearchClusterPipelineArgs, opts ...ResourceOption) (*OpensearchClusterPipeline, error)public OpensearchClusterPipeline(string name, OpensearchClusterPipelineArgs args, CustomResourceOptions? opts = null)
public OpensearchClusterPipeline(String name, OpensearchClusterPipelineArgs args)
public OpensearchClusterPipeline(String name, OpensearchClusterPipelineArgs args, CustomResourceOptions options)
type: oci:Opensearch:OpensearchClusterPipeline
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args OpensearchClusterPipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OpensearchClusterPipelineArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OpensearchClusterPipelineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpensearchClusterPipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpensearchClusterPipelineArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var opensearchClusterPipelineResource = new Oci.Opensearch.OpensearchClusterPipeline("opensearchClusterPipelineResource", new()
{
    OcpuCount = 0,
    DataPrepperConfigurationBody = "string",
    PipelineConfigurationBody = "string",
    DisplayName = "string",
    CompartmentId = "string",
    MemoryGb = 0,
    NodeCount = 0,
    FreeformTags = 
    {
        { "string", "string" },
    },
    NsgId = "string",
    OpcDryRun = false,
    DefinedTags = 
    {
        { "string", "string" },
    },
    ReverseConnectionEndpoints = new[]
    {
        new Oci.Opensearch.Inputs.OpensearchClusterPipelineReverseConnectionEndpointArgs
        {
            CustomerFqdn = "string",
            CustomerIp = "string",
        },
    },
    SubnetCompartmentId = "string",
    SubnetId = "string",
    VcnCompartmentId = "string",
    VcnId = "string",
});
example, err := opensearch.NewOpensearchClusterPipeline(ctx, "opensearchClusterPipelineResource", &opensearch.OpensearchClusterPipelineArgs{
	OcpuCount:                    pulumi.Int(0),
	DataPrepperConfigurationBody: pulumi.String("string"),
	PipelineConfigurationBody:    pulumi.String("string"),
	DisplayName:                  pulumi.String("string"),
	CompartmentId:                pulumi.String("string"),
	MemoryGb:                     pulumi.Int(0),
	NodeCount:                    pulumi.Int(0),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	NsgId:     pulumi.String("string"),
	OpcDryRun: pulumi.Bool(false),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ReverseConnectionEndpoints: opensearch.OpensearchClusterPipelineReverseConnectionEndpointArray{
		&opensearch.OpensearchClusterPipelineReverseConnectionEndpointArgs{
			CustomerFqdn: pulumi.String("string"),
			CustomerIp:   pulumi.String("string"),
		},
	},
	SubnetCompartmentId: pulumi.String("string"),
	SubnetId:            pulumi.String("string"),
	VcnCompartmentId:    pulumi.String("string"),
	VcnId:               pulumi.String("string"),
})
var opensearchClusterPipelineResource = new OpensearchClusterPipeline("opensearchClusterPipelineResource", OpensearchClusterPipelineArgs.builder()
    .ocpuCount(0)
    .dataPrepperConfigurationBody("string")
    .pipelineConfigurationBody("string")
    .displayName("string")
    .compartmentId("string")
    .memoryGb(0)
    .nodeCount(0)
    .freeformTags(Map.of("string", "string"))
    .nsgId("string")
    .opcDryRun(false)
    .definedTags(Map.of("string", "string"))
    .reverseConnectionEndpoints(OpensearchClusterPipelineReverseConnectionEndpointArgs.builder()
        .customerFqdn("string")
        .customerIp("string")
        .build())
    .subnetCompartmentId("string")
    .subnetId("string")
    .vcnCompartmentId("string")
    .vcnId("string")
    .build());
opensearch_cluster_pipeline_resource = oci.opensearch.OpensearchClusterPipeline("opensearchClusterPipelineResource",
    ocpu_count=0,
    data_prepper_configuration_body="string",
    pipeline_configuration_body="string",
    display_name="string",
    compartment_id="string",
    memory_gb=0,
    node_count=0,
    freeform_tags={
        "string": "string",
    },
    nsg_id="string",
    opc_dry_run=False,
    defined_tags={
        "string": "string",
    },
    reverse_connection_endpoints=[{
        "customer_fqdn": "string",
        "customer_ip": "string",
    }],
    subnet_compartment_id="string",
    subnet_id="string",
    vcn_compartment_id="string",
    vcn_id="string")
const opensearchClusterPipelineResource = new oci.opensearch.OpensearchClusterPipeline("opensearchClusterPipelineResource", {
    ocpuCount: 0,
    dataPrepperConfigurationBody: "string",
    pipelineConfigurationBody: "string",
    displayName: "string",
    compartmentId: "string",
    memoryGb: 0,
    nodeCount: 0,
    freeformTags: {
        string: "string",
    },
    nsgId: "string",
    opcDryRun: false,
    definedTags: {
        string: "string",
    },
    reverseConnectionEndpoints: [{
        customerFqdn: "string",
        customerIp: "string",
    }],
    subnetCompartmentId: "string",
    subnetId: "string",
    vcnCompartmentId: "string",
    vcnId: "string",
});
type: oci:Opensearch:OpensearchClusterPipeline
properties:
    compartmentId: string
    dataPrepperConfigurationBody: string
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    memoryGb: 0
    nodeCount: 0
    nsgId: string
    ocpuCount: 0
    opcDryRun: false
    pipelineConfigurationBody: string
    reverseConnectionEndpoints:
        - customerFqdn: string
          customerIp: string
    subnetCompartmentId: string
    subnetId: string
    vcnCompartmentId: string
    vcnId: string
OpensearchClusterPipeline Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The OpensearchClusterPipeline resource accepts the following input properties:
- CompartmentId string
- The OCID of the compartment to create the pipeline in.
- DataPrepper stringConfiguration Body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- DisplayName string
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- MemoryGb int
- (Updatable) The amount of memory in GB, for each pipeline node.
- NodeCount int
- (Updatable) The number of nodes configured for the pipeline.
- OcpuCount int
- (Updatable) The number of OCPUs configured for each pipeline node.
- PipelineConfiguration stringBody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- NsgId string
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- OpcDry boolRun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- ReverseConnection List<OpensearchEndpoints Cluster Pipeline Reverse Connection Endpoint> 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- SubnetCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- SubnetId string
- (Updatable) The OCID of the pipeline's subnet.
- VcnCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- VcnId string
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
- CompartmentId string
- The OCID of the compartment to create the pipeline in.
- DataPrepper stringConfiguration Body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- DisplayName string
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- MemoryGb int
- (Updatable) The amount of memory in GB, for each pipeline node.
- NodeCount int
- (Updatable) The number of nodes configured for the pipeline.
- OcpuCount int
- (Updatable) The number of OCPUs configured for each pipeline node.
- PipelineConfiguration stringBody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- NsgId string
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- OpcDry boolRun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- ReverseConnection []OpensearchEndpoints Cluster Pipeline Reverse Connection Endpoint Args 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- SubnetCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- SubnetId string
- (Updatable) The OCID of the pipeline's subnet.
- VcnCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- VcnId string
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
- compartmentId String
- The OCID of the compartment to create the pipeline in.
- dataPrepper StringConfiguration Body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- displayName String
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- memoryGb Integer
- (Updatable) The amount of memory in GB, for each pipeline node.
- nodeCount Integer
- (Updatable) The number of nodes configured for the pipeline.
- ocpuCount Integer
- (Updatable) The number of OCPUs configured for each pipeline node.
- pipelineConfiguration StringBody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- nsgId String
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- opcDry BooleanRun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- reverseConnection List<ClusterEndpoints Pipeline Reverse Connection Endpoint> 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- subnetCompartment StringId 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnetId String
- (Updatable) The OCID of the pipeline's subnet.
- vcnCompartment StringId 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcnId String
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
- compartmentId string
- The OCID of the compartment to create the pipeline in.
- dataPrepper stringConfiguration Body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- displayName string
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- memoryGb number
- (Updatable) The amount of memory in GB, for each pipeline node.
- nodeCount number
- (Updatable) The number of nodes configured for the pipeline.
- ocpuCount number
- (Updatable) The number of OCPUs configured for each pipeline node.
- pipelineConfiguration stringBody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- nsgId string
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- opcDry booleanRun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- reverseConnection OpensearchEndpoints Cluster Pipeline Reverse Connection Endpoint[] 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- subnetCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnetId string
- (Updatable) The OCID of the pipeline's subnet.
- vcnCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcnId string
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
- compartment_id str
- The OCID of the compartment to create the pipeline in.
- data_prepper_ strconfiguration_ body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- display_name str
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- memory_gb int
- (Updatable) The amount of memory in GB, for each pipeline node.
- node_count int
- (Updatable) The number of nodes configured for the pipeline.
- ocpu_count int
- (Updatable) The number of OCPUs configured for each pipeline node.
- pipeline_configuration_ strbody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- nsg_id str
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- opc_dry_ boolrun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- reverse_connection_ Sequence[Opensearchendpoints Cluster Pipeline Reverse Connection Endpoint Args] 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- subnet_compartment_ strid 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnet_id str
- (Updatable) The OCID of the pipeline's subnet.
- vcn_compartment_ strid 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcn_id str
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
- compartmentId String
- The OCID of the compartment to create the pipeline in.
- dataPrepper StringConfiguration Body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- displayName String
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- memoryGb Number
- (Updatable) The amount of memory in GB, for each pipeline node.
- nodeCount Number
- (Updatable) The number of nodes configured for the pipeline.
- ocpuCount Number
- (Updatable) The number of OCPUs configured for each pipeline node.
- pipelineConfiguration StringBody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- nsgId String
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- opcDry BooleanRun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- reverseConnection List<Property Map>Endpoints 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- subnetCompartment StringId 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnetId String
- (Updatable) The OCID of the pipeline's subnet.
- vcnCompartment StringId 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcnId String
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
Outputs
All input properties are implicitly available as output properties. Additionally, the OpensearchClusterPipeline resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- OpensearchPipeline stringFqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- OpensearchPipeline stringPrivate Ip 
- The pipeline's private IP address.
- PipelineMode string
- The current state of the pipeline.
- State string
- The current state of the cluster backup.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- TimeUpdated string
- The amount of time in milliseconds since the pipeline was updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- OpensearchPipeline stringFqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- OpensearchPipeline stringPrivate Ip 
- The pipeline's private IP address.
- PipelineMode string
- The current state of the pipeline.
- State string
- The current state of the cluster backup.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- TimeUpdated string
- The amount of time in milliseconds since the pipeline was updated.
- id String
- The provider-assigned unique ID for this managed resource.
- opensearchPipeline StringFqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearchPipeline StringPrivate Ip 
- The pipeline's private IP address.
- pipelineMode String
- The current state of the pipeline.
- state String
- The current state of the cluster backup.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- timeUpdated String
- The amount of time in milliseconds since the pipeline was updated.
- id string
- The provider-assigned unique ID for this managed resource.
- opensearchPipeline stringFqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearchPipeline stringPrivate Ip 
- The pipeline's private IP address.
- pipelineMode string
- The current state of the pipeline.
- state string
- The current state of the cluster backup.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- timeUpdated string
- The amount of time in milliseconds since the pipeline was updated.
- id str
- The provider-assigned unique ID for this managed resource.
- opensearch_pipeline_ strfqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearch_pipeline_ strprivate_ ip 
- The pipeline's private IP address.
- pipeline_mode str
- The current state of the pipeline.
- state str
- The current state of the cluster backup.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- time_updated str
- The amount of time in milliseconds since the pipeline was updated.
- id String
- The provider-assigned unique ID for this managed resource.
- opensearchPipeline StringFqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearchPipeline StringPrivate Ip 
- The pipeline's private IP address.
- pipelineMode String
- The current state of the pipeline.
- state String
- The current state of the cluster backup.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- timeUpdated String
- The amount of time in milliseconds since the pipeline was updated.
Look up Existing OpensearchClusterPipeline Resource
Get an existing OpensearchClusterPipeline resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OpensearchClusterPipelineState, opts?: CustomResourceOptions): OpensearchClusterPipeline@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        data_prepper_configuration_body: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        memory_gb: Optional[int] = None,
        node_count: Optional[int] = None,
        nsg_id: Optional[str] = None,
        ocpu_count: Optional[int] = None,
        opc_dry_run: Optional[bool] = None,
        opensearch_pipeline_fqdn: Optional[str] = None,
        opensearch_pipeline_private_ip: Optional[str] = None,
        pipeline_configuration_body: Optional[str] = None,
        pipeline_mode: Optional[str] = None,
        reverse_connection_endpoints: Optional[Sequence[OpensearchClusterPipelineReverseConnectionEndpointArgs]] = None,
        state: Optional[str] = None,
        subnet_compartment_id: Optional[str] = None,
        subnet_id: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None,
        vcn_compartment_id: Optional[str] = None,
        vcn_id: Optional[str] = None) -> OpensearchClusterPipelinefunc GetOpensearchClusterPipeline(ctx *Context, name string, id IDInput, state *OpensearchClusterPipelineState, opts ...ResourceOption) (*OpensearchClusterPipeline, error)public static OpensearchClusterPipeline Get(string name, Input<string> id, OpensearchClusterPipelineState? state, CustomResourceOptions? opts = null)public static OpensearchClusterPipeline get(String name, Output<String> id, OpensearchClusterPipelineState state, CustomResourceOptions options)resources:  _:    type: oci:Opensearch:OpensearchClusterPipeline    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CompartmentId string
- The OCID of the compartment to create the pipeline in.
- DataPrepper stringConfiguration Body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- MemoryGb int
- (Updatable) The amount of memory in GB, for each pipeline node.
- NodeCount int
- (Updatable) The number of nodes configured for the pipeline.
- NsgId string
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- OcpuCount int
- (Updatable) The number of OCPUs configured for each pipeline node.
- OpcDry boolRun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- OpensearchPipeline stringFqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- OpensearchPipeline stringPrivate Ip 
- The pipeline's private IP address.
- PipelineConfiguration stringBody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- PipelineMode string
- The current state of the pipeline.
- ReverseConnection List<OpensearchEndpoints Cluster Pipeline Reverse Connection Endpoint> 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- State string
- The current state of the cluster backup.
- SubnetCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- SubnetId string
- (Updatable) The OCID of the pipeline's subnet.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- TimeUpdated string
- The amount of time in milliseconds since the pipeline was updated.
- VcnCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- VcnId string
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
- CompartmentId string
- The OCID of the compartment to create the pipeline in.
- DataPrepper stringConfiguration Body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- MemoryGb int
- (Updatable) The amount of memory in GB, for each pipeline node.
- NodeCount int
- (Updatable) The number of nodes configured for the pipeline.
- NsgId string
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- OcpuCount int
- (Updatable) The number of OCPUs configured for each pipeline node.
- OpcDry boolRun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- OpensearchPipeline stringFqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- OpensearchPipeline stringPrivate Ip 
- The pipeline's private IP address.
- PipelineConfiguration stringBody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- PipelineMode string
- The current state of the pipeline.
- ReverseConnection []OpensearchEndpoints Cluster Pipeline Reverse Connection Endpoint Args 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- State string
- The current state of the cluster backup.
- SubnetCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- SubnetId string
- (Updatable) The OCID of the pipeline's subnet.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- TimeUpdated string
- The amount of time in milliseconds since the pipeline was updated.
- VcnCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- VcnId string
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
- compartmentId String
- The OCID of the compartment to create the pipeline in.
- dataPrepper StringConfiguration Body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- memoryGb Integer
- (Updatable) The amount of memory in GB, for each pipeline node.
- nodeCount Integer
- (Updatable) The number of nodes configured for the pipeline.
- nsgId String
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpuCount Integer
- (Updatable) The number of OCPUs configured for each pipeline node.
- opcDry BooleanRun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- opensearchPipeline StringFqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearchPipeline StringPrivate Ip 
- The pipeline's private IP address.
- pipelineConfiguration StringBody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- pipelineMode String
- The current state of the pipeline.
- reverseConnection List<ClusterEndpoints Pipeline Reverse Connection Endpoint> 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- state String
- The current state of the cluster backup.
- subnetCompartment StringId 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnetId String
- (Updatable) The OCID of the pipeline's subnet.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- timeUpdated String
- The amount of time in milliseconds since the pipeline was updated.
- vcnCompartment StringId 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcnId String
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
- compartmentId string
- The OCID of the compartment to create the pipeline in.
- dataPrepper stringConfiguration Body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName string
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- memoryGb number
- (Updatable) The amount of memory in GB, for each pipeline node.
- nodeCount number
- (Updatable) The number of nodes configured for the pipeline.
- nsgId string
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpuCount number
- (Updatable) The number of OCPUs configured for each pipeline node.
- opcDry booleanRun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- opensearchPipeline stringFqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearchPipeline stringPrivate Ip 
- The pipeline's private IP address.
- pipelineConfiguration stringBody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- pipelineMode string
- The current state of the pipeline.
- reverseConnection OpensearchEndpoints Cluster Pipeline Reverse Connection Endpoint[] 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- state string
- The current state of the cluster backup.
- subnetCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnetId string
- (Updatable) The OCID of the pipeline's subnet.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- timeUpdated string
- The amount of time in milliseconds since the pipeline was updated.
- vcnCompartment stringId 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcnId string
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
- compartment_id str
- The OCID of the compartment to create the pipeline in.
- data_prepper_ strconfiguration_ body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- display_name str
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- memory_gb int
- (Updatable) The amount of memory in GB, for each pipeline node.
- node_count int
- (Updatable) The number of nodes configured for the pipeline.
- nsg_id str
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpu_count int
- (Updatable) The number of OCPUs configured for each pipeline node.
- opc_dry_ boolrun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- opensearch_pipeline_ strfqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearch_pipeline_ strprivate_ ip 
- The pipeline's private IP address.
- pipeline_configuration_ strbody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- pipeline_mode str
- The current state of the pipeline.
- reverse_connection_ Sequence[Opensearchendpoints Cluster Pipeline Reverse Connection Endpoint Args] 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- state str
- The current state of the cluster backup.
- subnet_compartment_ strid 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnet_id str
- (Updatable) The OCID of the pipeline's subnet.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- time_updated str
- The amount of time in milliseconds since the pipeline was updated.
- vcn_compartment_ strid 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcn_id str
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
- compartmentId String
- The OCID of the compartment to create the pipeline in.
- dataPrepper StringConfiguration Body 
- (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- memoryGb Number
- (Updatable) The amount of memory in GB, for each pipeline node.
- nodeCount Number
- (Updatable) The number of nodes configured for the pipeline.
- nsgId String
- (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpuCount Number
- (Updatable) The number of OCPUs configured for each pipeline node.
- opcDry BooleanRun 
- (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
- opensearchPipeline StringFqdn 
- The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearchPipeline StringPrivate Ip 
- The pipeline's private IP address.
- pipelineConfiguration StringBody 
- (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with .
- pipelineMode String
- The current state of the pipeline.
- reverseConnection List<Property Map>Endpoints 
- (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- state String
- The current state of the cluster backup.
- subnetCompartment StringId 
- (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnetId String
- (Updatable) The OCID of the pipeline's subnet.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the cluster pipeline was created. Format defined by RFC3339.
- timeUpdated String
- The amount of time in milliseconds since the pipeline was updated.
- vcnCompartment StringId 
- (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcnId String
- (Updatable) The OCID of the pipeline's VCN. - ** 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 
Supporting Types
OpensearchClusterPipelineReverseConnectionEndpoint, OpensearchClusterPipelineReverseConnectionEndpointArgs            
- CustomerFqdn string
- (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- CustomerIp string
- (Updatable) The IPv4 address in the customer VCN
- CustomerFqdn string
- (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- CustomerIp string
- (Updatable) The IPv4 address in the customer VCN
- customerFqdn String
- (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- customerIp String
- (Updatable) The IPv4 address in the customer VCN
- customerFqdn string
- (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- customerIp string
- (Updatable) The IPv4 address in the customer VCN
- customer_fqdn str
- (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- customer_ip str
- (Updatable) The IPv4 address in the customer VCN
- customerFqdn String
- (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- customerIp String
- (Updatable) The IPv4 address in the customer VCN
Import
OpensearchClusterPipelines can be imported using the id, e.g.
$ pulumi import oci:Opensearch/opensearchClusterPipeline:OpensearchClusterPipeline test_opensearch_cluster_pipeline "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.