Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Opensearch.getOpensearchClusterPipelines
Explore with Pulumi AI
This data source provides the list of Opensearch Cluster Pipelines in Oracle Cloud Infrastructure Opensearch service.
Returns a list of OpensearchClusterPipelines.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOpensearchClusterPipelines = oci.Opensearch.getOpensearchClusterPipelines({
    compartmentId: compartmentId,
    displayName: opensearchClusterPipelineDisplayName,
    id: opensearchClusterPipelineId,
    pipelineComponentId: testPipelineComponent.id,
    state: opensearchClusterPipelineState,
});
import pulumi
import pulumi_oci as oci
test_opensearch_cluster_pipelines = oci.Opensearch.get_opensearch_cluster_pipelines(compartment_id=compartment_id,
    display_name=opensearch_cluster_pipeline_display_name,
    id=opensearch_cluster_pipeline_id,
    pipeline_component_id=test_pipeline_component["id"],
    state=opensearch_cluster_pipeline_state)
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.GetOpensearchClusterPipelines(ctx, &opensearch.GetOpensearchClusterPipelinesArgs{
			CompartmentId:       compartmentId,
			DisplayName:         pulumi.StringRef(opensearchClusterPipelineDisplayName),
			Id:                  pulumi.StringRef(opensearchClusterPipelineId),
			PipelineComponentId: pulumi.StringRef(testPipelineComponent.Id),
			State:               pulumi.StringRef(opensearchClusterPipelineState),
		}, nil)
		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 testOpensearchClusterPipelines = Oci.Opensearch.GetOpensearchClusterPipelines.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = opensearchClusterPipelineDisplayName,
        Id = opensearchClusterPipelineId,
        PipelineComponentId = testPipelineComponent.Id,
        State = opensearchClusterPipelineState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Opensearch.OpensearchFunctions;
import com.pulumi.oci.Opensearch.inputs.GetOpensearchClusterPipelinesArgs;
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) {
        final var testOpensearchClusterPipelines = OpensearchFunctions.getOpensearchClusterPipelines(GetOpensearchClusterPipelinesArgs.builder()
            .compartmentId(compartmentId)
            .displayName(opensearchClusterPipelineDisplayName)
            .id(opensearchClusterPipelineId)
            .pipelineComponentId(testPipelineComponent.id())
            .state(opensearchClusterPipelineState)
            .build());
    }
}
variables:
  testOpensearchClusterPipelines:
    fn::invoke:
      function: oci:Opensearch:getOpensearchClusterPipelines
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${opensearchClusterPipelineDisplayName}
        id: ${opensearchClusterPipelineId}
        pipelineComponentId: ${testPipelineComponent.id}
        state: ${opensearchClusterPipelineState}
Using getOpensearchClusterPipelines
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getOpensearchClusterPipelines(args: GetOpensearchClusterPipelinesArgs, opts?: InvokeOptions): Promise<GetOpensearchClusterPipelinesResult>
function getOpensearchClusterPipelinesOutput(args: GetOpensearchClusterPipelinesOutputArgs, opts?: InvokeOptions): Output<GetOpensearchClusterPipelinesResult>def get_opensearch_cluster_pipelines(compartment_id: Optional[str] = None,
                                     display_name: Optional[str] = None,
                                     filters: Optional[Sequence[GetOpensearchClusterPipelinesFilter]] = None,
                                     id: Optional[str] = None,
                                     pipeline_component_id: Optional[str] = None,
                                     state: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetOpensearchClusterPipelinesResult
def get_opensearch_cluster_pipelines_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                     display_name: Optional[pulumi.Input[str]] = None,
                                     filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetOpensearchClusterPipelinesFilterArgs]]]] = None,
                                     id: Optional[pulumi.Input[str]] = None,
                                     pipeline_component_id: Optional[pulumi.Input[str]] = None,
                                     state: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetOpensearchClusterPipelinesResult]func GetOpensearchClusterPipelines(ctx *Context, args *GetOpensearchClusterPipelinesArgs, opts ...InvokeOption) (*GetOpensearchClusterPipelinesResult, error)
func GetOpensearchClusterPipelinesOutput(ctx *Context, args *GetOpensearchClusterPipelinesOutputArgs, opts ...InvokeOption) GetOpensearchClusterPipelinesResultOutput> Note: This function is named GetOpensearchClusterPipelines in the Go SDK.
public static class GetOpensearchClusterPipelines 
{
    public static Task<GetOpensearchClusterPipelinesResult> InvokeAsync(GetOpensearchClusterPipelinesArgs args, InvokeOptions? opts = null)
    public static Output<GetOpensearchClusterPipelinesResult> Invoke(GetOpensearchClusterPipelinesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetOpensearchClusterPipelinesResult> getOpensearchClusterPipelines(GetOpensearchClusterPipelinesArgs args, InvokeOptions options)
public static Output<GetOpensearchClusterPipelinesResult> getOpensearchClusterPipelines(GetOpensearchClusterPipelinesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Opensearch/getOpensearchClusterPipelines:getOpensearchClusterPipelines
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The ID of the compartment in which to list resources.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
List<GetOpensearch Cluster Pipelines Filter> 
- Id string
- unique OpensearchClusterPipeline identifier
- PipelineComponent stringId 
- A filter to return pipelines whose any component has the given pipelineComponentId.
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- CompartmentId string
- The ID of the compartment in which to list resources.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
[]GetOpensearch Cluster Pipelines Filter 
- Id string
- unique OpensearchClusterPipeline identifier
- PipelineComponent stringId 
- A filter to return pipelines whose any component has the given pipelineComponentId.
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartmentId String
- The ID of the compartment in which to list resources.
- displayName String
- A filter to return only resources that match the entire display name given.
- filters
List<GetCluster Pipelines Filter> 
- id String
- unique OpensearchClusterPipeline identifier
- pipelineComponent StringId 
- A filter to return pipelines whose any component has the given pipelineComponentId.
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartmentId string
- The ID of the compartment in which to list resources.
- displayName string
- A filter to return only resources that match the entire display name given.
- filters
GetOpensearch Cluster Pipelines Filter[] 
- id string
- unique OpensearchClusterPipeline identifier
- pipelineComponent stringId 
- A filter to return pipelines whose any component has the given pipelineComponentId.
- state string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartment_id str
- The ID of the compartment in which to list resources.
- display_name str
- A filter to return only resources that match the entire display name given.
- filters
Sequence[GetOpensearch Cluster Pipelines Filter] 
- id str
- unique OpensearchClusterPipeline identifier
- pipeline_component_ strid 
- A filter to return pipelines whose any component has the given pipelineComponentId.
- state str
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartmentId String
- The ID of the compartment in which to list resources.
- displayName String
- A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- id String
- unique OpensearchClusterPipeline identifier
- pipelineComponent StringId 
- A filter to return pipelines whose any component has the given pipelineComponentId.
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
getOpensearchClusterPipelines Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment where the pipeline is located.
- OpensearchCluster List<GetPipeline Collections Opensearch Cluster Pipelines Opensearch Cluster Pipeline Collection> 
- The list of opensearch_cluster_pipeline_collection.
- DisplayName string
- The name of the pipeline. Avoid entering confidential information.
- Filters
List<GetOpensearch Cluster Pipelines Filter> 
- Id string
- The OCID of the cluster pipeline.
- PipelineComponent stringId 
- State string
- The current state of the cluster backup.
- CompartmentId string
- The OCID of the compartment where the pipeline is located.
- OpensearchCluster []GetPipeline Collections Opensearch Cluster Pipelines Opensearch Cluster Pipeline Collection 
- The list of opensearch_cluster_pipeline_collection.
- DisplayName string
- The name of the pipeline. Avoid entering confidential information.
- Filters
[]GetOpensearch Cluster Pipelines Filter 
- Id string
- The OCID of the cluster pipeline.
- PipelineComponent stringId 
- State string
- The current state of the cluster backup.
- compartmentId String
- The OCID of the compartment where the pipeline is located.
- opensearchCluster List<GetPipeline Collections Cluster Pipelines Cluster Pipeline Collection> 
- The list of opensearch_cluster_pipeline_collection.
- displayName String
- The name of the pipeline. Avoid entering confidential information.
- filters
List<GetCluster Pipelines Filter> 
- id String
- The OCID of the cluster pipeline.
- pipelineComponent StringId 
- state String
- The current state of the cluster backup.
- compartmentId string
- The OCID of the compartment where the pipeline is located.
- opensearchCluster GetPipeline Collections Opensearch Cluster Pipelines Opensearch Cluster Pipeline Collection[] 
- The list of opensearch_cluster_pipeline_collection.
- displayName string
- The name of the pipeline. Avoid entering confidential information.
- filters
GetOpensearch Cluster Pipelines Filter[] 
- id string
- The OCID of the cluster pipeline.
- pipelineComponent stringId 
- state string
- The current state of the cluster backup.
- compartment_id str
- The OCID of the compartment where the pipeline is located.
- opensearch_cluster_ Sequence[Getpipeline_ collections Opensearch Cluster Pipelines Opensearch Cluster Pipeline Collection] 
- The list of opensearch_cluster_pipeline_collection.
- display_name str
- The name of the pipeline. Avoid entering confidential information.
- filters
Sequence[GetOpensearch Cluster Pipelines Filter] 
- id str
- The OCID of the cluster pipeline.
- pipeline_component_ strid 
- state str
- The current state of the cluster backup.
- compartmentId String
- The OCID of the compartment where the pipeline is located.
- opensearchCluster List<Property Map>Pipeline Collections 
- The list of opensearch_cluster_pipeline_collection.
- displayName String
- The name of the pipeline. Avoid entering confidential information.
- filters List<Property Map>
- id String
- The OCID of the cluster pipeline.
- pipelineComponent StringId 
- state String
- The current state of the cluster backup.
Supporting Types
GetOpensearchClusterPipelinesFilter    
GetOpensearchClusterPipelinesOpensearchClusterPipelineCollection       
GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItem        
- CompartmentId string
- The ID of the compartment in which to list resources.
- DataPrepper stringConfiguration Body 
- 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>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- unique OpensearchClusterPipeline identifier
- MemoryGb int
- The amount of memory in GB, for each pipeline node.
- NodeCount int
- The number of nodes configured for the pipeline.
- NsgId string
- The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- OcpuCount int
- The number of OCPUs configured for each pipeline node.
- OpcDry boolRun 
- 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 
- 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<GetEndpoints Opensearch Cluster Pipelines Opensearch Cluster Pipeline Collection Item Reverse Connection Endpoint> 
- The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- SubnetCompartment stringId 
- The OCID for the compartment where the pipeline's subnet is located.
- SubnetId string
- 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 
- The OCID for the compartment where the pipeline's VCN is located.
- VcnId string
- The OCID of the pipeline's VCN.
- CompartmentId string
- The ID of the compartment in which to list resources.
- DataPrepper stringConfiguration Body 
- 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
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- A filter to return only resources that match the entire display name given.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- unique OpensearchClusterPipeline identifier
- MemoryGb int
- The amount of memory in GB, for each pipeline node.
- NodeCount int
- The number of nodes configured for the pipeline.
- NsgId string
- The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- OcpuCount int
- The number of OCPUs configured for each pipeline node.
- OpcDry boolRun 
- 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 
- 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 []GetEndpoints Opensearch Cluster Pipelines Opensearch Cluster Pipeline Collection Item Reverse Connection Endpoint 
- The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- SubnetCompartment stringId 
- The OCID for the compartment where the pipeline's subnet is located.
- SubnetId string
- 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 
- The OCID for the compartment where the pipeline's VCN is located.
- VcnId string
- The OCID of the pipeline's VCN.
- compartmentId String
- The ID of the compartment in which to list resources.
- dataPrepper StringConfiguration Body 
- 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>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- A filter to return only resources that match the entire display name given.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- unique OpensearchClusterPipeline identifier
- memoryGb Integer
- The amount of memory in GB, for each pipeline node.
- nodeCount Integer
- The number of nodes configured for the pipeline.
- nsgId String
- The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpuCount Integer
- The number of OCPUs configured for each pipeline node.
- opcDry BooleanRun 
- 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 
- 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<GetEndpoints Cluster Pipelines Cluster Pipeline Collection Item Reverse Connection Endpoint> 
- The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- subnetCompartment StringId 
- The OCID for the compartment where the pipeline's subnet is located.
- subnetId String
- 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 
- The OCID for the compartment where the pipeline's VCN is located.
- vcnId String
- The OCID of the pipeline's VCN.
- compartmentId string
- The ID of the compartment in which to list resources.
- dataPrepper stringConfiguration Body 
- 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}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName string
- A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id string
- unique OpensearchClusterPipeline identifier
- memoryGb number
- The amount of memory in GB, for each pipeline node.
- nodeCount number
- The number of nodes configured for the pipeline.
- nsgId string
- The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpuCount number
- The number of OCPUs configured for each pipeline node.
- opcDry booleanRun 
- 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 
- 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 GetEndpoints Opensearch Cluster Pipelines Opensearch Cluster Pipeline Collection Item Reverse Connection Endpoint[] 
- The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- state string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- subnetCompartment stringId 
- The OCID for the compartment where the pipeline's subnet is located.
- subnetId string
- 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 
- The OCID for the compartment where the pipeline's VCN is located.
- vcnId string
- The OCID of the pipeline's VCN.
- compartment_id str
- The ID of the compartment in which to list resources.
- data_prepper_ strconfiguration_ body 
- 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]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- display_name str
- A filter to return only resources that match the entire display name given.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id str
- unique OpensearchClusterPipeline identifier
- memory_gb int
- The amount of memory in GB, for each pipeline node.
- node_count int
- The number of nodes configured for the pipeline.
- nsg_id str
- The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpu_count int
- The number of OCPUs configured for each pipeline node.
- opc_dry_ boolrun 
- 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 
- 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[Getendpoints Opensearch Cluster Pipelines Opensearch Cluster Pipeline Collection Item Reverse Connection Endpoint] 
- The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- state str
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- subnet_compartment_ strid 
- The OCID for the compartment where the pipeline's subnet is located.
- subnet_id str
- 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 
- The OCID for the compartment where the pipeline's VCN is located.
- vcn_id str
- The OCID of the pipeline's VCN.
- compartmentId String
- The ID of the compartment in which to list resources.
- dataPrepper StringConfiguration Body 
- 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>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- A filter to return only resources that match the entire display name given.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- unique OpensearchClusterPipeline identifier
- memoryGb Number
- The amount of memory in GB, for each pipeline node.
- nodeCount Number
- The number of nodes configured for the pipeline.
- nsgId String
- The OCID of the NSG where the pipeline private endpoint vnic will be attached.
- ocpuCount Number
- The number of OCPUs configured for each pipeline node.
- opcDry BooleanRun 
- 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 
- 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 
- The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- subnetCompartment StringId 
- The OCID for the compartment where the pipeline's subnet is located.
- subnetId String
- 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 
- The OCID for the compartment where the pipeline's VCN is located.
- vcnId String
- The OCID of the pipeline's VCN.
GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpoint           
- CustomerFqdn string
- The fully qualified domain name of the customerIp in the customer VCN
- CustomerIp string
- The IPv4 address in the customer VCN
- CustomerFqdn string
- The fully qualified domain name of the customerIp in the customer VCN
- CustomerIp string
- The IPv4 address in the customer VCN
- customerFqdn String
- The fully qualified domain name of the customerIp in the customer VCN
- customerIp String
- The IPv4 address in the customer VCN
- customerFqdn string
- The fully qualified domain name of the customerIp in the customer VCN
- customerIp string
- The IPv4 address in the customer VCN
- customer_fqdn str
- The fully qualified domain name of the customerIp in the customer VCN
- customer_ip str
- The IPv4 address in the customer VCN
- customerFqdn String
- The fully qualified domain name of the customerIp in the customer VCN
- customerIp String
- The IPv4 address in the customer VCN
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.