oci.Opensearch.getOpensearchClusters
Explore with Pulumi AI
This data source provides the list of Opensearch Clusters in Oracle Cloud Infrastructure Opensearch service.
Returns a list of OpensearchClusters.
Prerequisites
The below policies must be created in compartment before creating OpensearchCluster
{Compartment-Name} - Name of your compartment
Allow service opensearch to manage vnics in compartment {Compartment-Name}
Allow service opensearch to use subnets in compartment {Compartment-Name}
Allow service opensearch to use network-security-groups in compartment {Compartment-Name}
Allow service opensearch to manage vcns in compartment {Compartment-Name}
For latest documentation on OpenSearch use please refer to https://docs.oracle.com/en-us/iaas/Content/search-opensearch/home.htm
Required permissions: https://docs.oracle.com/en-us/iaas/Content/search-opensearch/Concepts/ocisearchpermissions.htm
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOpensearchClusters = oci.Opensearch.getOpensearchClusters({
    compartmentId: compartmentId,
    displayName: opensearchClusterDisplayName,
    id: opensearchClusterId,
    state: opensearchClusterState,
});
import pulumi
import pulumi_oci as oci
test_opensearch_clusters = oci.Opensearch.get_opensearch_clusters(compartment_id=compartment_id,
    display_name=opensearch_cluster_display_name,
    id=opensearch_cluster_id,
    state=opensearch_cluster_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/go/oci/Opensearch"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := Opensearch.GetOpensearchClusters(ctx, &opensearch.GetOpensearchClustersArgs{
			CompartmentId: compartmentId,
			DisplayName:   pulumi.StringRef(opensearchClusterDisplayName),
			Id:            pulumi.StringRef(opensearchClusterId),
			State:         pulumi.StringRef(opensearchClusterState),
		}, 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 testOpensearchClusters = Oci.Opensearch.GetOpensearchClusters.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = opensearchClusterDisplayName,
        Id = opensearchClusterId,
        State = opensearchClusterState,
    });
});
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.GetOpensearchClustersArgs;
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 testOpensearchClusters = OpensearchFunctions.getOpensearchClusters(GetOpensearchClustersArgs.builder()
            .compartmentId(compartmentId)
            .displayName(opensearchClusterDisplayName)
            .id(opensearchClusterId)
            .state(opensearchClusterState)
            .build());
    }
}
variables:
  testOpensearchClusters:
    fn::invoke:
      Function: oci:Opensearch:getOpensearchClusters
      Arguments:
        compartmentId: ${compartmentId}
        displayName: ${opensearchClusterDisplayName}
        id: ${opensearchClusterId}
        state: ${opensearchClusterState}
Using getOpensearchClusters
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 getOpensearchClusters(args: GetOpensearchClustersArgs, opts?: InvokeOptions): Promise<GetOpensearchClustersResult>
function getOpensearchClustersOutput(args: GetOpensearchClustersOutputArgs, opts?: InvokeOptions): Output<GetOpensearchClustersResult>def get_opensearch_clusters(compartment_id: Optional[str] = None,
                            display_name: Optional[str] = None,
                            filters: Optional[Sequence[_opensearch.GetOpensearchClustersFilter]] = None,
                            id: Optional[str] = None,
                            state: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetOpensearchClustersResult
def get_opensearch_clusters_output(compartment_id: Optional[pulumi.Input[str]] = None,
                            display_name: Optional[pulumi.Input[str]] = None,
                            filters: Optional[pulumi.Input[Sequence[pulumi.Input[_opensearch.GetOpensearchClustersFilterArgs]]]] = None,
                            id: Optional[pulumi.Input[str]] = None,
                            state: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetOpensearchClustersResult]func GetOpensearchClusters(ctx *Context, args *GetOpensearchClustersArgs, opts ...InvokeOption) (*GetOpensearchClustersResult, error)
func GetOpensearchClustersOutput(ctx *Context, args *GetOpensearchClustersOutputArgs, opts ...InvokeOption) GetOpensearchClustersResultOutput> Note: This function is named GetOpensearchClusters in the Go SDK.
public static class GetOpensearchClusters 
{
    public static Task<GetOpensearchClustersResult> InvokeAsync(GetOpensearchClustersArgs args, InvokeOptions? opts = null)
    public static Output<GetOpensearchClustersResult> Invoke(GetOpensearchClustersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetOpensearchClustersResult> getOpensearchClusters(GetOpensearchClustersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: oci:Opensearch/getOpensearchClusters:getOpensearchClusters
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The ID of the compartment in which to list resources.
 - Display
Name string - A filter to return only resources that match the entire display name given.
 - Filters
List<Get
Opensearch Clusters Filter>  - Id string
 - unique OpensearchCluster identifier
 - State string
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 
- Compartment
Id string - The ID of the compartment in which to list resources.
 - Display
Name string - A filter to return only resources that match the entire display name given.
 - Filters
[]Get
Opensearch Clusters Filter  - Id string
 - unique OpensearchCluster identifier
 - State string
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 
- compartment
Id String - The ID of the compartment in which to list resources.
 - display
Name String - A filter to return only resources that match the entire display name given.
 - filters
List<Get
Clusters Filter>  - id String
 - unique OpensearchCluster identifier
 - state String
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 
- compartment
Id string - The ID of the compartment in which to list resources.
 - display
Name string - A filter to return only resources that match the entire display name given.
 - filters
Get
Opensearch Clusters Filter[]  - id string
 - unique OpensearchCluster identifier
 - state string
 - A filter to return only OpensearchClusters 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[opensearch.
Get Opensearch Clusters Filter]  - id str
 - unique OpensearchCluster identifier
 - state str
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 
- compartment
Id String - The ID of the compartment in which to list resources.
 - display
Name String - A filter to return only resources that match the entire display name given.
 - filters List<Property Map>
 - id String
 - unique OpensearchCluster identifier
 - state String
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 
getOpensearchClusters Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment where the cluster is located.
 - Opensearch
Cluster List<GetCollections Opensearch Clusters Opensearch Cluster Collection>  - The list of opensearch_cluster_collection.
 - Display
Name string - The name of the cluster. Avoid entering confidential information.
 - Filters
List<Get
Opensearch Clusters Filter>  - Id string
 - The OCID of the cluster.
 - State string
 - The current state of the cluster.
 
- Compartment
Id string - The OCID of the compartment where the cluster is located.
 - Opensearch
Cluster []GetCollections Opensearch Clusters Opensearch Cluster Collection  - The list of opensearch_cluster_collection.
 - Display
Name string - The name of the cluster. Avoid entering confidential information.
 - Filters
[]Get
Opensearch Clusters Filter  - Id string
 - The OCID of the cluster.
 - State string
 - The current state of the cluster.
 
- compartment
Id String - The OCID of the compartment where the cluster is located.
 - opensearch
Cluster List<GetCollections Clusters Cluster Collection>  - The list of opensearch_cluster_collection.
 - display
Name String - The name of the cluster. Avoid entering confidential information.
 - filters
List<Get
Clusters Filter>  - id String
 - The OCID of the cluster.
 - state String
 - The current state of the cluster.
 
- compartment
Id string - The OCID of the compartment where the cluster is located.
 - opensearch
Cluster GetCollections Opensearch Clusters Opensearch Cluster Collection[]  - The list of opensearch_cluster_collection.
 - display
Name string - The name of the cluster. Avoid entering confidential information.
 - filters
Get
Opensearch Clusters Filter[]  - id string
 - The OCID of the cluster.
 - state string
 - The current state of the cluster.
 
- compartment_
id str - The OCID of the compartment where the cluster is located.
 - opensearch_
cluster_ Sequence[opensearch.collections Get Opensearch Clusters Opensearch Cluster Collection]  - The list of opensearch_cluster_collection.
 - display_
name str - The name of the cluster. Avoid entering confidential information.
 - filters
Sequence[opensearch.
Get Opensearch Clusters Filter]  - id str
 - The OCID of the cluster.
 - state str
 - The current state of the cluster.
 
- compartment
Id String - The OCID of the compartment where the cluster is located.
 - opensearch
Cluster List<Property Map>Collections  - The list of opensearch_cluster_collection.
 - display
Name String - The name of the cluster. Avoid entering confidential information.
 - filters List<Property Map>
 - id String
 - The OCID of the cluster.
 - state String
 - The current state of the cluster.
 
Supporting Types
GetOpensearchClustersFilter   
GetOpensearchClustersOpensearchClusterCollection     
GetOpensearchClustersOpensearchClusterCollectionItem      
- Availability
Domains List<string> - The availability domains to distribute the cluser nodes across.
 - Compartment
Id string - The ID of the compartment in which to list resources.
 - Data
Node intCount  - The number of data nodes configured for the cluster.
 - Data
Node stringHost Bare Metal Shape  - The bare metal shape for the cluster's data nodes.
 - Data
Node intHost Memory Gb  - The amount of memory in GB, for the cluster's data nodes.
 - Data
Node intHost Ocpu Count  - The number of OCPUs configured for the cluster's data nodes.
 - Data
Node stringHost Type  - The instance type for the cluster's data nodes.
 - Data
Node intStorage Gb  - The amount of storage in GB, to configure per node for the cluster's data nodes.
 - Dictionary<string, object>
 - Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: 
{"foo-namespace.bar-key": "value"} - Display
Name string - A filter to return only resources that match the entire display name given.
 - Fqdn string
 - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - Dictionary<string, object>
 - 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 OpensearchCluster identifier
 - Lifecycle
Details string - Additional information about the current lifecycle state of the cluster.
 - Master
Node intCount  - The number of master nodes configured for the cluster.
 - Master
Node stringHost Bare Metal Shape  - The bare metal shape for the cluster's master nodes.
 - Master
Node intHost Memory Gb  - The amount of memory in GB, for the cluster's master nodes.
 - Master
Node intHost Ocpu Count  - The number of OCPUs configured for cluster's master nodes.
 - Master
Node stringHost Type  - The instance type for the cluster's master nodes.
 - Opendashboard
Fqdn string - The fully qualified domain name (FQDN) for the cluster's OpenSearch Dashboard API endpoint.
 - Opendashboard
Node intCount  - The number of OpenSearch Dashboard nodes configured for the cluster.
 - Opendashboard
Node intHost Memory Gb  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - Opendashboard
Node intHost Ocpu Count  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - Opendashboard
Private stringIp  - The private IP address for the cluster's OpenSearch Dashboard.
 - Opensearch
Fqdn string - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - Opensearch
Private stringIp  - The cluster's private IP address.
 - Security
Master stringUser Name  - The name of the master user that are used to manage security config
 - Security
Master stringUser Password Hash  - The password hash of the master user that are used to manage security config
 - Security
Mode string - The security mode of the cluster.
 - Software
Version string - The software version the cluster is running.
 - State string
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 - Subnet
Compartment stringId  - The OCID for the compartment where the cluster's subnet is located.
 - Subnet
Id string - The OCID of the cluster's subnet.
 - Dictionary<string, object>
 - Usage of system tag keys. These predefined keys are scoped to namespaces. Example: 
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The amount of time in milliseconds since the cluster was created.
 - Time
Deleted string - The amount of time in milliseconds since the cluster was updated.
 - Time
Updated string - The amount of time in milliseconds since the cluster was updated.
 - Total
Storage intGb  - The size in GB of the cluster's total storage.
 - Vcn
Compartment stringId  - The OCID for the compartment where the cluster's VCN is located.
 - Vcn
Id string - The OCID of the cluster's VCN.
 
- Availability
Domains []string - The availability domains to distribute the cluser nodes across.
 - Compartment
Id string - The ID of the compartment in which to list resources.
 - Data
Node intCount  - The number of data nodes configured for the cluster.
 - Data
Node stringHost Bare Metal Shape  - The bare metal shape for the cluster's data nodes.
 - Data
Node intHost Memory Gb  - The amount of memory in GB, for the cluster's data nodes.
 - Data
Node intHost Ocpu Count  - The number of OCPUs configured for the cluster's data nodes.
 - Data
Node stringHost Type  - The instance type for the cluster's data nodes.
 - Data
Node intStorage Gb  - The amount of storage in GB, to configure per node for the cluster's data nodes.
 - map[string]interface{}
 - Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: 
{"foo-namespace.bar-key": "value"} - Display
Name string - A filter to return only resources that match the entire display name given.
 - Fqdn string
 - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - map[string]interface{}
 - 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 OpensearchCluster identifier
 - Lifecycle
Details string - Additional information about the current lifecycle state of the cluster.
 - Master
Node intCount  - The number of master nodes configured for the cluster.
 - Master
Node stringHost Bare Metal Shape  - The bare metal shape for the cluster's master nodes.
 - Master
Node intHost Memory Gb  - The amount of memory in GB, for the cluster's master nodes.
 - Master
Node intHost Ocpu Count  - The number of OCPUs configured for cluster's master nodes.
 - Master
Node stringHost Type  - The instance type for the cluster's master nodes.
 - Opendashboard
Fqdn string - The fully qualified domain name (FQDN) for the cluster's OpenSearch Dashboard API endpoint.
 - Opendashboard
Node intCount  - The number of OpenSearch Dashboard nodes configured for the cluster.
 - Opendashboard
Node intHost Memory Gb  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - Opendashboard
Node intHost Ocpu Count  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - Opendashboard
Private stringIp  - The private IP address for the cluster's OpenSearch Dashboard.
 - Opensearch
Fqdn string - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - Opensearch
Private stringIp  - The cluster's private IP address.
 - Security
Master stringUser Name  - The name of the master user that are used to manage security config
 - Security
Master stringUser Password Hash  - The password hash of the master user that are used to manage security config
 - Security
Mode string - The security mode of the cluster.
 - Software
Version string - The software version the cluster is running.
 - State string
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 - Subnet
Compartment stringId  - The OCID for the compartment where the cluster's subnet is located.
 - Subnet
Id string - The OCID of the cluster's subnet.
 - map[string]interface{}
 - Usage of system tag keys. These predefined keys are scoped to namespaces. Example: 
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The amount of time in milliseconds since the cluster was created.
 - Time
Deleted string - The amount of time in milliseconds since the cluster was updated.
 - Time
Updated string - The amount of time in milliseconds since the cluster was updated.
 - Total
Storage intGb  - The size in GB of the cluster's total storage.
 - Vcn
Compartment stringId  - The OCID for the compartment where the cluster's VCN is located.
 - Vcn
Id string - The OCID of the cluster's VCN.
 
- availability
Domains List<String> - The availability domains to distribute the cluser nodes across.
 - compartment
Id String - The ID of the compartment in which to list resources.
 - data
Node IntegerCount  - The number of data nodes configured for the cluster.
 - data
Node StringHost Bare Metal Shape  - The bare metal shape for the cluster's data nodes.
 - data
Node IntegerHost Memory Gb  - The amount of memory in GB, for the cluster's data nodes.
 - data
Node IntegerHost Ocpu Count  - The number of OCPUs configured for the cluster's data nodes.
 - data
Node StringHost Type  - The instance type for the cluster's data nodes.
 - data
Node IntegerStorage Gb  - The amount of storage in GB, to configure per node for the cluster's data nodes.
 - Map<String,Object>
 - Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: 
{"foo-namespace.bar-key": "value"} - display
Name String - A filter to return only resources that match the entire display name given.
 - fqdn String
 - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - Map<String,Object>
 - 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 OpensearchCluster identifier
 - lifecycle
Details String - Additional information about the current lifecycle state of the cluster.
 - master
Node IntegerCount  - The number of master nodes configured for the cluster.
 - master
Node StringHost Bare Metal Shape  - The bare metal shape for the cluster's master nodes.
 - master
Node IntegerHost Memory Gb  - The amount of memory in GB, for the cluster's master nodes.
 - master
Node IntegerHost Ocpu Count  - The number of OCPUs configured for cluster's master nodes.
 - master
Node StringHost Type  - The instance type for the cluster's master nodes.
 - opendashboard
Fqdn String - The fully qualified domain name (FQDN) for the cluster's OpenSearch Dashboard API endpoint.
 - opendashboard
Node IntegerCount  - The number of OpenSearch Dashboard nodes configured for the cluster.
 - opendashboard
Node IntegerHost Memory Gb  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - opendashboard
Node IntegerHost Ocpu Count  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - opendashboard
Private StringIp  - The private IP address for the cluster's OpenSearch Dashboard.
 - opensearch
Fqdn String - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - opensearch
Private StringIp  - The cluster's private IP address.
 - security
Master StringUser Name  - The name of the master user that are used to manage security config
 - security
Master StringUser Password Hash  - The password hash of the master user that are used to manage security config
 - security
Mode String - The security mode of the cluster.
 - software
Version String - The software version the cluster is running.
 - state String
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 - subnet
Compartment StringId  - The OCID for the compartment where the cluster's subnet is located.
 - subnet
Id String - The OCID of the cluster's subnet.
 - Map<String,Object>
 - Usage of system tag keys. These predefined keys are scoped to namespaces. Example: 
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The amount of time in milliseconds since the cluster was created.
 - time
Deleted String - The amount of time in milliseconds since the cluster was updated.
 - time
Updated String - The amount of time in milliseconds since the cluster was updated.
 - total
Storage IntegerGb  - The size in GB of the cluster's total storage.
 - vcn
Compartment StringId  - The OCID for the compartment where the cluster's VCN is located.
 - vcn
Id String - The OCID of the cluster's VCN.
 
- availability
Domains string[] - The availability domains to distribute the cluser nodes across.
 - compartment
Id string - The ID of the compartment in which to list resources.
 - data
Node numberCount  - The number of data nodes configured for the cluster.
 - data
Node stringHost Bare Metal Shape  - The bare metal shape for the cluster's data nodes.
 - data
Node numberHost Memory Gb  - The amount of memory in GB, for the cluster's data nodes.
 - data
Node numberHost Ocpu Count  - The number of OCPUs configured for the cluster's data nodes.
 - data
Node stringHost Type  - The instance type for the cluster's data nodes.
 - data
Node numberStorage Gb  - The amount of storage in GB, to configure per node for the cluster's data nodes.
 - {[key: string]: any}
 - Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: 
{"foo-namespace.bar-key": "value"} - display
Name string - A filter to return only resources that match the entire display name given.
 - fqdn string
 - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - {[key: string]: any}
 - 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 OpensearchCluster identifier
 - lifecycle
Details string - Additional information about the current lifecycle state of the cluster.
 - master
Node numberCount  - The number of master nodes configured for the cluster.
 - master
Node stringHost Bare Metal Shape  - The bare metal shape for the cluster's master nodes.
 - master
Node numberHost Memory Gb  - The amount of memory in GB, for the cluster's master nodes.
 - master
Node numberHost Ocpu Count  - The number of OCPUs configured for cluster's master nodes.
 - master
Node stringHost Type  - The instance type for the cluster's master nodes.
 - opendashboard
Fqdn string - The fully qualified domain name (FQDN) for the cluster's OpenSearch Dashboard API endpoint.
 - opendashboard
Node numberCount  - The number of OpenSearch Dashboard nodes configured for the cluster.
 - opendashboard
Node numberHost Memory Gb  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - opendashboard
Node numberHost Ocpu Count  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - opendashboard
Private stringIp  - The private IP address for the cluster's OpenSearch Dashboard.
 - opensearch
Fqdn string - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - opensearch
Private stringIp  - The cluster's private IP address.
 - security
Master stringUser Name  - The name of the master user that are used to manage security config
 - security
Master stringUser Password Hash  - The password hash of the master user that are used to manage security config
 - security
Mode string - The security mode of the cluster.
 - software
Version string - The software version the cluster is running.
 - state string
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 - subnet
Compartment stringId  - The OCID for the compartment where the cluster's subnet is located.
 - subnet
Id string - The OCID of the cluster's subnet.
 - {[key: string]: any}
 - Usage of system tag keys. These predefined keys are scoped to namespaces. Example: 
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The amount of time in milliseconds since the cluster was created.
 - time
Deleted string - The amount of time in milliseconds since the cluster was updated.
 - time
Updated string - The amount of time in milliseconds since the cluster was updated.
 - total
Storage numberGb  - The size in GB of the cluster's total storage.
 - vcn
Compartment stringId  - The OCID for the compartment where the cluster's VCN is located.
 - vcn
Id string - The OCID of the cluster's VCN.
 
- availability_
domains Sequence[str] - The availability domains to distribute the cluser nodes across.
 - compartment_
id str - The ID of the compartment in which to list resources.
 - data_
node_ intcount  - The number of data nodes configured for the cluster.
 - data_
node_ strhost_ bare_ metal_ shape  - The bare metal shape for the cluster's data nodes.
 - data_
node_ inthost_ memory_ gb  - The amount of memory in GB, for the cluster's data nodes.
 - data_
node_ inthost_ ocpu_ count  - The number of OCPUs configured for the cluster's data nodes.
 - data_
node_ strhost_ type  - The instance type for the cluster's data nodes.
 - data_
node_ intstorage_ gb  - The amount of storage in GB, to configure per node for the cluster's data nodes.
 - Mapping[str, Any]
 - 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.
 - fqdn str
 - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - Mapping[str, Any]
 - 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 OpensearchCluster identifier
 - lifecycle_
details str - Additional information about the current lifecycle state of the cluster.
 - master_
node_ intcount  - The number of master nodes configured for the cluster.
 - master_
node_ strhost_ bare_ metal_ shape  - The bare metal shape for the cluster's master nodes.
 - master_
node_ inthost_ memory_ gb  - The amount of memory in GB, for the cluster's master nodes.
 - master_
node_ inthost_ ocpu_ count  - The number of OCPUs configured for cluster's master nodes.
 - master_
node_ strhost_ type  - The instance type for the cluster's master nodes.
 - opendashboard_
fqdn str - The fully qualified domain name (FQDN) for the cluster's OpenSearch Dashboard API endpoint.
 - opendashboard_
node_ intcount  - The number of OpenSearch Dashboard nodes configured for the cluster.
 - opendashboard_
node_ inthost_ memory_ gb  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - opendashboard_
node_ inthost_ ocpu_ count  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - opendashboard_
private_ strip  - The private IP address for the cluster's OpenSearch Dashboard.
 - opensearch_
fqdn str - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - opensearch_
private_ strip  - The cluster's private IP address.
 - security_
master_ struser_ name  - The name of the master user that are used to manage security config
 - security_
master_ struser_ password_ hash  - The password hash of the master user that are used to manage security config
 - security_
mode str - The security mode of the cluster.
 - software_
version str - The software version the cluster is running.
 - state str
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 - subnet_
compartment_ strid  - The OCID for the compartment where the cluster's subnet is located.
 - subnet_
id str - The OCID of the cluster's subnet.
 - Mapping[str, Any]
 - Usage of system tag keys. These predefined keys are scoped to namespaces. Example: 
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The amount of time in milliseconds since the cluster was created.
 - time_
deleted str - The amount of time in milliseconds since the cluster was updated.
 - time_
updated str - The amount of time in milliseconds since the cluster was updated.
 - total_
storage_ intgb  - The size in GB of the cluster's total storage.
 - vcn_
compartment_ strid  - The OCID for the compartment where the cluster's VCN is located.
 - vcn_
id str - The OCID of the cluster's VCN.
 
- availability
Domains List<String> - The availability domains to distribute the cluser nodes across.
 - compartment
Id String - The ID of the compartment in which to list resources.
 - data
Node NumberCount  - The number of data nodes configured for the cluster.
 - data
Node StringHost Bare Metal Shape  - The bare metal shape for the cluster's data nodes.
 - data
Node NumberHost Memory Gb  - The amount of memory in GB, for the cluster's data nodes.
 - data
Node NumberHost Ocpu Count  - The number of OCPUs configured for the cluster's data nodes.
 - data
Node StringHost Type  - The instance type for the cluster's data nodes.
 - data
Node NumberStorage Gb  - The amount of storage in GB, to configure per node for the cluster's data nodes.
 - Map<Any>
 - Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: 
{"foo-namespace.bar-key": "value"} - display
Name String - A filter to return only resources that match the entire display name given.
 - fqdn String
 - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - Map<Any>
 - 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 OpensearchCluster identifier
 - lifecycle
Details String - Additional information about the current lifecycle state of the cluster.
 - master
Node NumberCount  - The number of master nodes configured for the cluster.
 - master
Node StringHost Bare Metal Shape  - The bare metal shape for the cluster's master nodes.
 - master
Node NumberHost Memory Gb  - The amount of memory in GB, for the cluster's master nodes.
 - master
Node NumberHost Ocpu Count  - The number of OCPUs configured for cluster's master nodes.
 - master
Node StringHost Type  - The instance type for the cluster's master nodes.
 - opendashboard
Fqdn String - The fully qualified domain name (FQDN) for the cluster's OpenSearch Dashboard API endpoint.
 - opendashboard
Node NumberCount  - The number of OpenSearch Dashboard nodes configured for the cluster.
 - opendashboard
Node NumberHost Memory Gb  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - opendashboard
Node NumberHost Ocpu Count  - The amount of memory in GB, for the cluster's OpenSearch Dashboard nodes.
 - opendashboard
Private StringIp  - The private IP address for the cluster's OpenSearch Dashboard.
 - opensearch
Fqdn String - The fully qualified domain name (FQDN) for the cluster's API endpoint.
 - opensearch
Private StringIp  - The cluster's private IP address.
 - security
Master StringUser Name  - The name of the master user that are used to manage security config
 - security
Master StringUser Password Hash  - The password hash of the master user that are used to manage security config
 - security
Mode String - The security mode of the cluster.
 - software
Version String - The software version the cluster is running.
 - state String
 - A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
 - subnet
Compartment StringId  - The OCID for the compartment where the cluster's subnet is located.
 - subnet
Id String - The OCID of the cluster's subnet.
 - Map<Any>
 - Usage of system tag keys. These predefined keys are scoped to namespaces. Example: 
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The amount of time in milliseconds since the cluster was created.
 - time
Deleted String - The amount of time in milliseconds since the cluster was updated.
 - time
Updated String - The amount of time in milliseconds since the cluster was updated.
 - total
Storage NumberGb  - The size in GB of the cluster's total storage.
 - vcn
Compartment StringId  - The OCID for the compartment where the cluster's VCN is located.
 - vcn
Id String - The OCID of the cluster's VCN.
 
Package Details
- Repository
 - oci pulumi/pulumi-oci
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
ociTerraform Provider.