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[_opensearch.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:
- Compartment
Id string - The OCID of the compartment to create the pipeline in.
- Data
Prepper 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 .
- Display
Name string - (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 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"}
- Nsg
Id string - (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 List<OpensearchEndpoints Cluster Pipeline Reverse Connection Endpoint> - (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- Subnet
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- Subnet
Id string - (Updatable) The OCID of the pipeline's subnet.
- Vcn
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- Vcn
Id 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 string - The OCID of the compartment to create the pipeline in.
- Data
Prepper 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 .
- Display
Name string - (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 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"}
- Nsg
Id string - (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 []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 stringId - (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- Subnet
Id string - (Updatable) The OCID of the pipeline's subnet.
- Vcn
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- Vcn
Id 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 String - The OCID of the compartment to create the pipeline in.
- data
Prepper 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 .
- display
Name String - (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- memory
Gb Integer - (Updatable) The amount of memory in GB, for each pipeline node.
- node
Count Integer - (Updatable) The number of nodes configured for the pipeline.
- ocpu
Count Integer - (Updatable) The number of OCPUs configured for each pipeline node.
- pipeline
Configuration 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"}
- nsg
Id String - (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- opc
Dry 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.
- reverse
Connection List<ClusterEndpoints Pipeline Reverse Connection Endpoint> - (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- subnet
Compartment StringId - (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnet
Id String - (Updatable) The OCID of the pipeline's subnet.
- vcn
Compartment StringId - (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcn
Id 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 string - The OCID of the compartment to create the pipeline in.
- data
Prepper 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 .
- display
Name string - (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- memory
Gb number - (Updatable) The amount of memory in GB, for each pipeline node.
- node
Count number - (Updatable) The number of nodes configured for the pipeline.
- ocpu
Count number - (Updatable) The number of OCPUs configured for each pipeline node.
- pipeline
Configuration 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"}
- nsg
Id string - (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- opc
Dry 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.
- reverse
Connection OpensearchEndpoints Cluster Pipeline Reverse Connection Endpoint[] - (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- subnet
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnet
Id string - (Updatable) The OCID of the pipeline's subnet.
- vcn
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcn
Id 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[opensearch.endpoints Opensearch 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
- compartment
Id String - The OCID of the compartment to create the pipeline in.
- data
Prepper 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 .
- display
Name String - (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
- memory
Gb Number - (Updatable) The amount of memory in GB, for each pipeline node.
- node
Count Number - (Updatable) The number of nodes configured for the pipeline.
- ocpu
Count Number - (Updatable) The number of OCPUs configured for each pipeline node.
- pipeline
Configuration 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"}
- nsg
Id String - (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- opc
Dry 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.
- reverse
Connection List<Property Map>Endpoints - (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- subnet
Compartment StringId - (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnet
Id String - (Updatable) The OCID of the pipeline's subnet.
- vcn
Compartment StringId - (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcn
Id 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.
- Opensearch
Pipeline stringFqdn - The fully qualified domain name (FQDN) for the cluster's API endpoint.
- Opensearch
Pipeline stringPrivate Ip - The pipeline's private IP address.
- Pipeline
Mode 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"}
- Time
Created string - The date and time the cluster pipeline was created. Format defined by RFC3339.
- Time
Updated string - The amount of time in milliseconds since the pipeline was updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Opensearch
Pipeline stringFqdn - The fully qualified domain name (FQDN) for the cluster's API endpoint.
- Opensearch
Pipeline stringPrivate Ip - The pipeline's private IP address.
- Pipeline
Mode 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"}
- Time
Created string - The date and time the cluster pipeline was created. Format defined by RFC3339.
- Time
Updated string - The amount of time in milliseconds since the pipeline was updated.
- id String
- The provider-assigned unique ID for this managed resource.
- opensearch
Pipeline StringFqdn - The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearch
Pipeline StringPrivate Ip - The pipeline's private IP address.
- pipeline
Mode 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"}
- time
Created String - The date and time the cluster pipeline was created. Format defined by RFC3339.
- time
Updated String - The amount of time in milliseconds since the pipeline was updated.
- id string
- The provider-assigned unique ID for this managed resource.
- opensearch
Pipeline stringFqdn - The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearch
Pipeline stringPrivate Ip - The pipeline's private IP address.
- pipeline
Mode 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"}
- time
Created string - The date and time the cluster pipeline was created. Format defined by RFC3339.
- time
Updated 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.
- opensearch
Pipeline StringFqdn - The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearch
Pipeline StringPrivate Ip - The pipeline's private IP address.
- pipeline
Mode 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"}
- time
Created String - The date and time the cluster pipeline was created. Format defined by RFC3339.
- time
Updated 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[_opensearch.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) -> OpensearchClusterPipeline
func 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.
- Compartment
Id string - The OCID of the compartment to create the pipeline in.
- Data
Prepper 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"}
- Display
Name 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"}
- 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 string - (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 stringFqdn - The fully qualified domain name (FQDN) for the cluster's API endpoint.
- Opensearch
Pipeline stringPrivate Ip - The pipeline's private IP address.
- Pipeline
Configuration 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 .
- Pipeline
Mode string - The current state of the pipeline.
- Reverse
Connection 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.
- Subnet
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- Subnet
Id 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"}
- Time
Created string - The date and time the cluster pipeline was created. Format defined by RFC3339.
- Time
Updated string - The amount of time in milliseconds since the pipeline was updated.
- Vcn
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- Vcn
Id 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 string - The OCID of the compartment to create the pipeline in.
- Data
Prepper 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"}
- Display
Name 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"}
- 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 string - (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 stringFqdn - The fully qualified domain name (FQDN) for the cluster's API endpoint.
- Opensearch
Pipeline stringPrivate Ip - The pipeline's private IP address.
- Pipeline
Configuration 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 .
- Pipeline
Mode string - The current state of the pipeline.
- Reverse
Connection []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.
- Subnet
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- Subnet
Id 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"}
- Time
Created string - The date and time the cluster pipeline was created. Format defined by RFC3339.
- Time
Updated string - The amount of time in milliseconds since the pipeline was updated.
- Vcn
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- Vcn
Id 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 String - The OCID of the compartment to create the pipeline in.
- data
Prepper 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"}
- display
Name 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"}
- memory
Gb Integer - (Updatable) The amount of memory in GB, for each pipeline node.
- node
Count Integer - (Updatable) The number of nodes configured for the pipeline.
- nsg
Id String - (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpu
Count Integer - (Updatable) The number of OCPUs configured for each pipeline node.
- opc
Dry 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.
- opensearch
Pipeline StringFqdn - The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearch
Pipeline StringPrivate Ip - The pipeline's private IP address.
- pipeline
Configuration 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 .
- pipeline
Mode String - The current state of the pipeline.
- reverse
Connection 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.
- subnet
Compartment StringId - (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnet
Id 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"}
- time
Created String - The date and time the cluster pipeline was created. Format defined by RFC3339.
- time
Updated String - The amount of time in milliseconds since the pipeline was updated.
- vcn
Compartment StringId - (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcn
Id 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 string - The OCID of the compartment to create the pipeline in.
- data
Prepper 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"}
- display
Name 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"}
- memory
Gb number - (Updatable) The amount of memory in GB, for each pipeline node.
- node
Count number - (Updatable) The number of nodes configured for the pipeline.
- nsg
Id string - (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpu
Count number - (Updatable) The number of OCPUs configured for each pipeline node.
- opc
Dry 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.
- opensearch
Pipeline stringFqdn - The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearch
Pipeline stringPrivate Ip - The pipeline's private IP address.
- pipeline
Configuration 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 .
- pipeline
Mode string - The current state of the pipeline.
- reverse
Connection 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.
- subnet
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnet
Id 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"}
- time
Created string - The date and time the cluster pipeline was created. Format defined by RFC3339.
- time
Updated string - The amount of time in milliseconds since the pipeline was updated.
- vcn
Compartment stringId - (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcn
Id 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[opensearch.endpoints Opensearch 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
- compartment
Id String - The OCID of the compartment to create the pipeline in.
- data
Prepper 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"}
- display
Name 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"}
- memory
Gb Number - (Updatable) The amount of memory in GB, for each pipeline node.
- node
Count Number - (Updatable) The number of nodes configured for the pipeline.
- nsg
Id String - (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpu
Count Number - (Updatable) The number of OCPUs configured for each pipeline node.
- opc
Dry 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.
- opensearch
Pipeline StringFqdn - The fully qualified domain name (FQDN) for the cluster's API endpoint.
- opensearch
Pipeline StringPrivate Ip - The pipeline's private IP address.
- pipeline
Configuration 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 .
- pipeline
Mode String - The current state of the pipeline.
- reverse
Connection 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.
- subnet
Compartment StringId - (Updatable) The OCID for the compartment where the pipeline's subnet is located.
- subnet
Id 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"}
- time
Created String - The date and time the cluster pipeline was created. Format defined by RFC3339.
- time
Updated String - The amount of time in milliseconds since the pipeline was updated.
- vcn
Compartment StringId - (Updatable) The OCID for the compartment where the pipeline's VCN is located.
- vcn
Id 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
- Customer
Fqdn string - (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- Customer
Ip string - (Updatable) The IPv4 address in the customer VCN
- Customer
Fqdn string - (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- Customer
Ip string - (Updatable) The IPv4 address in the customer VCN
- customer
Fqdn String - (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- customer
Ip String - (Updatable) The IPv4 address in the customer VCN
- customer
Fqdn string - (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- customer
Ip 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
- customer
Fqdn String - (Updatable) The fully qualified domain name of the customerIp in the customer VCN
- customer
Ip 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
oci
Terraform Provider.