1. Packages
  2. Packages
  3. Aiven Provider
  4. API Docs
  5. OpenSearch
Viewing docs for Aiven v5.6.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
aiven logo
Viewing docs for Aiven v5.6.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    The Opensearch resource allows the creation and management of Aiven Opensearch services.

    Example Usage

    using System.Collections.Generic;
    using Pulumi;
    using Aiven = Pulumi.Aiven;
    
    return await Deployment.RunAsync(() => 
    {
        var os1 = new Aiven.OpenSearch("os1", new()
        {
            Project = data.Aiven_project.Pr1.Project,
            CloudName = "google-europe-west1",
            Plan = "startup-4",
            ServiceName = "my-os1",
            MaintenanceWindowDow = "monday",
            MaintenanceWindowTime = "10:00:00",
            OpensearchUserConfig = new Aiven.Inputs.OpenSearchOpensearchUserConfigArgs
            {
                OpensearchVersion = "1",
                OpensearchDashboards = new Aiven.Inputs.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs
                {
                    Enabled = "true",
                    OpensearchRequestTimeout = "30000",
                },
                PublicAccess = new Aiven.Inputs.OpenSearchOpensearchUserConfigPublicAccessArgs
                {
                    Opensearch = "true",
                    OpensearchDashboards = "true",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aiven/sdk/v5/go/aiven"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := aiven.NewOpenSearch(ctx, "os1", &aiven.OpenSearchArgs{
    			Project:               pulumi.Any(data.Aiven_project.Pr1.Project),
    			CloudName:             pulumi.String("google-europe-west1"),
    			Plan:                  pulumi.String("startup-4"),
    			ServiceName:           pulumi.String("my-os1"),
    			MaintenanceWindowDow:  pulumi.String("monday"),
    			MaintenanceWindowTime: pulumi.String("10:00:00"),
    			OpensearchUserConfig: &aiven.OpenSearchOpensearchUserConfigArgs{
    				OpensearchVersion: pulumi.String("1"),
    				OpensearchDashboards: &aiven.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs{
    					Enabled:                  pulumi.String("true"),
    					OpensearchRequestTimeout: pulumi.String("30000"),
    				},
    				PublicAccess: &aiven.OpenSearchOpensearchUserConfigPublicAccessArgs{
    					Opensearch:           pulumi.String("true"),
    					OpensearchDashboards: pulumi.String("true"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aiven.OpenSearch;
    import com.pulumi.aiven.OpenSearchArgs;
    import com.pulumi.aiven.inputs.OpenSearchOpensearchUserConfigArgs;
    import com.pulumi.aiven.inputs.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs;
    import com.pulumi.aiven.inputs.OpenSearchOpensearchUserConfigPublicAccessArgs;
    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 os1 = new OpenSearch("os1", OpenSearchArgs.builder()        
                .project(data.aiven_project().pr1().project())
                .cloudName("google-europe-west1")
                .plan("startup-4")
                .serviceName("my-os1")
                .maintenanceWindowDow("monday")
                .maintenanceWindowTime("10:00:00")
                .opensearchUserConfig(OpenSearchOpensearchUserConfigArgs.builder()
                    .opensearchVersion(1)
                    .opensearchDashboards(OpenSearchOpensearchUserConfigOpensearchDashboardsArgs.builder()
                        .enabled(true)
                        .opensearchRequestTimeout(30000)
                        .build())
                    .publicAccess(OpenSearchOpensearchUserConfigPublicAccessArgs.builder()
                        .opensearch(true)
                        .opensearchDashboards(true)
                        .build())
                    .build())
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aiven from "@pulumi/aiven";
    
    const os1 = new aiven.OpenSearch("os1", {
        project: data.aiven_project.pr1.project,
        cloudName: "google-europe-west1",
        plan: "startup-4",
        serviceName: "my-os1",
        maintenanceWindowDow: "monday",
        maintenanceWindowTime: "10:00:00",
        opensearchUserConfig: {
            opensearchVersion: "1",
            opensearchDashboards: {
                enabled: "true",
                opensearchRequestTimeout: "30000",
            },
            publicAccess: {
                opensearch: "true",
                opensearchDashboards: "true",
            },
        },
    });
    
    import pulumi
    import pulumi_aiven as aiven
    
    os1 = aiven.OpenSearch("os1",
        project=data["aiven_project"]["pr1"]["project"],
        cloud_name="google-europe-west1",
        plan="startup-4",
        service_name="my-os1",
        maintenance_window_dow="monday",
        maintenance_window_time="10:00:00",
        opensearch_user_config=aiven.OpenSearchOpensearchUserConfigArgs(
            opensearch_version="1",
            opensearch_dashboards=aiven.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs(
                enabled="true",
                opensearch_request_timeout="30000",
            ),
            public_access=aiven.OpenSearchOpensearchUserConfigPublicAccessArgs(
                opensearch="true",
                opensearch_dashboards="true",
            ),
        ))
    
    resources:
      os1:
        type: aiven:OpenSearch
        properties:
          project: ${data.aiven_project.pr1.project}
          cloudName: google-europe-west1
          plan: startup-4
          serviceName: my-os1
          maintenanceWindowDow: monday
          maintenanceWindowTime: 10:00:00
          opensearchUserConfig:
            opensearchVersion: 1
            opensearchDashboards:
              enabled: true
              opensearchRequestTimeout: 30000
            publicAccess:
              opensearch: true
              opensearchDashboards: true
    

    Create OpenSearch Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new OpenSearch(name: string, args: OpenSearchArgs, opts?: CustomResourceOptions);
    @overload
    def OpenSearch(resource_name: str,
                   args: OpenSearchArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def OpenSearch(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   project: Optional[str] = None,
                   service_name: Optional[str] = None,
                   plan: Optional[str] = None,
                   maintenance_window_dow: Optional[str] = None,
                   maintenance_window_time: Optional[str] = None,
                   opensearch_user_config: Optional[OpenSearchOpensearchUserConfigArgs] = None,
                   additional_disk_space: Optional[str] = None,
                   disk_space: Optional[str] = None,
                   project_vpc_id: Optional[str] = None,
                   service_integrations: Optional[Sequence[OpenSearchServiceIntegrationArgs]] = None,
                   cloud_name: Optional[str] = None,
                   static_ips: Optional[Sequence[str]] = None,
                   tags: Optional[Sequence[OpenSearchTagArgs]] = None,
                   termination_protection: Optional[bool] = None)
    func NewOpenSearch(ctx *Context, name string, args OpenSearchArgs, opts ...ResourceOption) (*OpenSearch, error)
    public OpenSearch(string name, OpenSearchArgs args, CustomResourceOptions? opts = null)
    public OpenSearch(String name, OpenSearchArgs args)
    public OpenSearch(String name, OpenSearchArgs args, CustomResourceOptions options)
    
    type: aiven:OpenSearch
    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 OpenSearchArgs
    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 OpenSearchArgs
    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 OpenSearchArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OpenSearchArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OpenSearchArgs
    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 openSearchResource = new Aiven.OpenSearch("openSearchResource", new()
    {
        Project = "string",
        ServiceName = "string",
        Plan = "string",
        MaintenanceWindowDow = "string",
        MaintenanceWindowTime = "string",
        OpensearchUserConfig = new Aiven.Inputs.OpenSearchOpensearchUserConfigArgs
        {
            AdditionalBackupRegions = "string",
            CustomDomain = "string",
            IndexPatterns = new[]
            {
                new Aiven.Inputs.OpenSearchOpensearchUserConfigIndexPatternArgs
                {
                    MaxIndexCount = "string",
                    Pattern = "string",
                    SortingAlgorithm = "string",
                },
            },
            IndexTemplate = new Aiven.Inputs.OpenSearchOpensearchUserConfigIndexTemplateArgs
            {
                MappingNestedObjectsLimit = "string",
                NumberOfReplicas = "string",
                NumberOfShards = "string",
            },
            IpFilterObjects = new[]
            {
                new Aiven.Inputs.OpenSearchOpensearchUserConfigIpFilterObjectArgs
                {
                    Description = "string",
                    Network = "string",
                },
            },
            IpFilters = new[]
            {
                "string",
            },
            KeepIndexRefreshInterval = "string",
            Opensearch = new Aiven.Inputs.OpenSearchOpensearchUserConfigOpensearchArgs
            {
                ActionAutoCreateIndexEnabled = "string",
                ActionDestructiveRequiresName = "string",
                ClusterMaxShardsPerNode = "string",
                ClusterRoutingAllocationNodeConcurrentRecoveries = "string",
                EmailSenderName = "string",
                EmailSenderPassword = "string",
                EmailSenderUsername = "string",
                HttpMaxContentLength = "string",
                HttpMaxHeaderSize = "string",
                HttpMaxInitialLineLength = "string",
                IndicesFielddataCacheSize = "string",
                IndicesMemoryIndexBufferSize = "string",
                IndicesQueriesCacheSize = "string",
                IndicesQueryBoolMaxClauseCount = "string",
                IndicesRecoveryMaxBytesPerSec = "string",
                IndicesRecoveryMaxConcurrentFileChunks = "string",
                OverrideMainResponseVersion = "string",
                ReindexRemoteWhitelists = new[]
                {
                    "string",
                },
                ScriptMaxCompilationsRate = "string",
                SearchMaxBuckets = "string",
                ThreadPoolAnalyzeQueueSize = "string",
                ThreadPoolAnalyzeSize = "string",
                ThreadPoolForceMergeSize = "string",
                ThreadPoolGetQueueSize = "string",
                ThreadPoolGetSize = "string",
                ThreadPoolSearchQueueSize = "string",
                ThreadPoolSearchSize = "string",
                ThreadPoolSearchThrottledQueueSize = "string",
                ThreadPoolSearchThrottledSize = "string",
                ThreadPoolWriteQueueSize = "string",
                ThreadPoolWriteSize = "string",
            },
            OpensearchDashboards = new Aiven.Inputs.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs
            {
                Enabled = "string",
                MaxOldSpaceSize = "string",
                OpensearchRequestTimeout = "string",
            },
            OpensearchVersion = "string",
            PrivateAccess = new Aiven.Inputs.OpenSearchOpensearchUserConfigPrivateAccessArgs
            {
                Opensearch = "string",
                OpensearchDashboards = "string",
                Prometheus = "string",
            },
            PrivatelinkAccess = new Aiven.Inputs.OpenSearchOpensearchUserConfigPrivatelinkAccessArgs
            {
                Opensearch = "string",
                OpensearchDashboards = "string",
                Prometheus = "string",
            },
            ProjectToForkFrom = "string",
            PublicAccess = new Aiven.Inputs.OpenSearchOpensearchUserConfigPublicAccessArgs
            {
                Opensearch = "string",
                OpensearchDashboards = "string",
                Prometheus = "string",
            },
            RecoveryBasebackupName = "string",
            ServiceToForkFrom = "string",
            StaticIps = "string",
        },
        AdditionalDiskSpace = "string",
        DiskSpace = "string",
        ProjectVpcId = "string",
        ServiceIntegrations = new[]
        {
            new Aiven.Inputs.OpenSearchServiceIntegrationArgs
            {
                IntegrationType = "string",
                SourceServiceName = "string",
            },
        },
        CloudName = "string",
        StaticIps = new[]
        {
            "string",
        },
        Tags = new[]
        {
            new Aiven.Inputs.OpenSearchTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        TerminationProtection = false,
    });
    
    example, err := aiven.NewOpenSearch(ctx, "openSearchResource", &aiven.OpenSearchArgs{
    	Project:               pulumi.String("string"),
    	ServiceName:           pulumi.String("string"),
    	Plan:                  pulumi.String("string"),
    	MaintenanceWindowDow:  pulumi.String("string"),
    	MaintenanceWindowTime: pulumi.String("string"),
    	OpensearchUserConfig: &aiven.OpenSearchOpensearchUserConfigArgs{
    		AdditionalBackupRegions: pulumi.String("string"),
    		CustomDomain:            pulumi.String("string"),
    		IndexPatterns: aiven.OpenSearchOpensearchUserConfigIndexPatternArray{
    			&aiven.OpenSearchOpensearchUserConfigIndexPatternArgs{
    				MaxIndexCount:    pulumi.String("string"),
    				Pattern:          pulumi.String("string"),
    				SortingAlgorithm: pulumi.String("string"),
    			},
    		},
    		IndexTemplate: &aiven.OpenSearchOpensearchUserConfigIndexTemplateArgs{
    			MappingNestedObjectsLimit: pulumi.String("string"),
    			NumberOfReplicas:          pulumi.String("string"),
    			NumberOfShards:            pulumi.String("string"),
    		},
    		IpFilterObjects: aiven.OpenSearchOpensearchUserConfigIpFilterObjectArray{
    			&aiven.OpenSearchOpensearchUserConfigIpFilterObjectArgs{
    				Description: pulumi.String("string"),
    				Network:     pulumi.String("string"),
    			},
    		},
    		IpFilters: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		KeepIndexRefreshInterval: pulumi.String("string"),
    		Opensearch: &aiven.OpenSearchOpensearchUserConfigOpensearchArgs{
    			ActionAutoCreateIndexEnabled:                     pulumi.String("string"),
    			ActionDestructiveRequiresName:                    pulumi.String("string"),
    			ClusterMaxShardsPerNode:                          pulumi.String("string"),
    			ClusterRoutingAllocationNodeConcurrentRecoveries: pulumi.String("string"),
    			EmailSenderName:                                  pulumi.String("string"),
    			EmailSenderPassword:                              pulumi.String("string"),
    			EmailSenderUsername:                              pulumi.String("string"),
    			HttpMaxContentLength:                             pulumi.String("string"),
    			HttpMaxHeaderSize:                                pulumi.String("string"),
    			HttpMaxInitialLineLength:                         pulumi.String("string"),
    			IndicesFielddataCacheSize:                        pulumi.String("string"),
    			IndicesMemoryIndexBufferSize:                     pulumi.String("string"),
    			IndicesQueriesCacheSize:                          pulumi.String("string"),
    			IndicesQueryBoolMaxClauseCount:                   pulumi.String("string"),
    			IndicesRecoveryMaxBytesPerSec:                    pulumi.String("string"),
    			IndicesRecoveryMaxConcurrentFileChunks:           pulumi.String("string"),
    			OverrideMainResponseVersion:                      pulumi.String("string"),
    			ReindexRemoteWhitelists: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ScriptMaxCompilationsRate:          pulumi.String("string"),
    			SearchMaxBuckets:                   pulumi.String("string"),
    			ThreadPoolAnalyzeQueueSize:         pulumi.String("string"),
    			ThreadPoolAnalyzeSize:              pulumi.String("string"),
    			ThreadPoolForceMergeSize:           pulumi.String("string"),
    			ThreadPoolGetQueueSize:             pulumi.String("string"),
    			ThreadPoolGetSize:                  pulumi.String("string"),
    			ThreadPoolSearchQueueSize:          pulumi.String("string"),
    			ThreadPoolSearchSize:               pulumi.String("string"),
    			ThreadPoolSearchThrottledQueueSize: pulumi.String("string"),
    			ThreadPoolSearchThrottledSize:      pulumi.String("string"),
    			ThreadPoolWriteQueueSize:           pulumi.String("string"),
    			ThreadPoolWriteSize:                pulumi.String("string"),
    		},
    		OpensearchDashboards: &aiven.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs{
    			Enabled:                  pulumi.String("string"),
    			MaxOldSpaceSize:          pulumi.String("string"),
    			OpensearchRequestTimeout: pulumi.String("string"),
    		},
    		OpensearchVersion: pulumi.String("string"),
    		PrivateAccess: &aiven.OpenSearchOpensearchUserConfigPrivateAccessArgs{
    			Opensearch:           pulumi.String("string"),
    			OpensearchDashboards: pulumi.String("string"),
    			Prometheus:           pulumi.String("string"),
    		},
    		PrivatelinkAccess: &aiven.OpenSearchOpensearchUserConfigPrivatelinkAccessArgs{
    			Opensearch:           pulumi.String("string"),
    			OpensearchDashboards: pulumi.String("string"),
    			Prometheus:           pulumi.String("string"),
    		},
    		ProjectToForkFrom: pulumi.String("string"),
    		PublicAccess: &aiven.OpenSearchOpensearchUserConfigPublicAccessArgs{
    			Opensearch:           pulumi.String("string"),
    			OpensearchDashboards: pulumi.String("string"),
    			Prometheus:           pulumi.String("string"),
    		},
    		RecoveryBasebackupName: pulumi.String("string"),
    		ServiceToForkFrom:      pulumi.String("string"),
    		StaticIps:              pulumi.String("string"),
    	},
    	AdditionalDiskSpace: pulumi.String("string"),
    	DiskSpace:           pulumi.String("string"),
    	ProjectVpcId:        pulumi.String("string"),
    	ServiceIntegrations: aiven.OpenSearchServiceIntegrationArray{
    		&aiven.OpenSearchServiceIntegrationArgs{
    			IntegrationType:   pulumi.String("string"),
    			SourceServiceName: pulumi.String("string"),
    		},
    	},
    	CloudName: pulumi.String("string"),
    	StaticIps: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Tags: aiven.OpenSearchTagArray{
    		&aiven.OpenSearchTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	TerminationProtection: pulumi.Bool(false),
    })
    
    var openSearchResource = new OpenSearch("openSearchResource", OpenSearchArgs.builder()
        .project("string")
        .serviceName("string")
        .plan("string")
        .maintenanceWindowDow("string")
        .maintenanceWindowTime("string")
        .opensearchUserConfig(OpenSearchOpensearchUserConfigArgs.builder()
            .additionalBackupRegions("string")
            .customDomain("string")
            .indexPatterns(OpenSearchOpensearchUserConfigIndexPatternArgs.builder()
                .maxIndexCount("string")
                .pattern("string")
                .sortingAlgorithm("string")
                .build())
            .indexTemplate(OpenSearchOpensearchUserConfigIndexTemplateArgs.builder()
                .mappingNestedObjectsLimit("string")
                .numberOfReplicas("string")
                .numberOfShards("string")
                .build())
            .ipFilterObjects(OpenSearchOpensearchUserConfigIpFilterObjectArgs.builder()
                .description("string")
                .network("string")
                .build())
            .ipFilters("string")
            .keepIndexRefreshInterval("string")
            .opensearch(OpenSearchOpensearchUserConfigOpensearchArgs.builder()
                .actionAutoCreateIndexEnabled("string")
                .actionDestructiveRequiresName("string")
                .clusterMaxShardsPerNode("string")
                .clusterRoutingAllocationNodeConcurrentRecoveries("string")
                .emailSenderName("string")
                .emailSenderPassword("string")
                .emailSenderUsername("string")
                .httpMaxContentLength("string")
                .httpMaxHeaderSize("string")
                .httpMaxInitialLineLength("string")
                .indicesFielddataCacheSize("string")
                .indicesMemoryIndexBufferSize("string")
                .indicesQueriesCacheSize("string")
                .indicesQueryBoolMaxClauseCount("string")
                .indicesRecoveryMaxBytesPerSec("string")
                .indicesRecoveryMaxConcurrentFileChunks("string")
                .overrideMainResponseVersion("string")
                .reindexRemoteWhitelists("string")
                .scriptMaxCompilationsRate("string")
                .searchMaxBuckets("string")
                .threadPoolAnalyzeQueueSize("string")
                .threadPoolAnalyzeSize("string")
                .threadPoolForceMergeSize("string")
                .threadPoolGetQueueSize("string")
                .threadPoolGetSize("string")
                .threadPoolSearchQueueSize("string")
                .threadPoolSearchSize("string")
                .threadPoolSearchThrottledQueueSize("string")
                .threadPoolSearchThrottledSize("string")
                .threadPoolWriteQueueSize("string")
                .threadPoolWriteSize("string")
                .build())
            .opensearchDashboards(OpenSearchOpensearchUserConfigOpensearchDashboardsArgs.builder()
                .enabled("string")
                .maxOldSpaceSize("string")
                .opensearchRequestTimeout("string")
                .build())
            .opensearchVersion("string")
            .privateAccess(OpenSearchOpensearchUserConfigPrivateAccessArgs.builder()
                .opensearch("string")
                .opensearchDashboards("string")
                .prometheus("string")
                .build())
            .privatelinkAccess(OpenSearchOpensearchUserConfigPrivatelinkAccessArgs.builder()
                .opensearch("string")
                .opensearchDashboards("string")
                .prometheus("string")
                .build())
            .projectToForkFrom("string")
            .publicAccess(OpenSearchOpensearchUserConfigPublicAccessArgs.builder()
                .opensearch("string")
                .opensearchDashboards("string")
                .prometheus("string")
                .build())
            .recoveryBasebackupName("string")
            .serviceToForkFrom("string")
            .staticIps("string")
            .build())
        .additionalDiskSpace("string")
        .diskSpace("string")
        .projectVpcId("string")
        .serviceIntegrations(OpenSearchServiceIntegrationArgs.builder()
            .integrationType("string")
            .sourceServiceName("string")
            .build())
        .cloudName("string")
        .staticIps("string")
        .tags(OpenSearchTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .terminationProtection(false)
        .build());
    
    open_search_resource = aiven.OpenSearch("openSearchResource",
        project="string",
        service_name="string",
        plan="string",
        maintenance_window_dow="string",
        maintenance_window_time="string",
        opensearch_user_config={
            "additional_backup_regions": "string",
            "custom_domain": "string",
            "index_patterns": [{
                "max_index_count": "string",
                "pattern": "string",
                "sorting_algorithm": "string",
            }],
            "index_template": {
                "mapping_nested_objects_limit": "string",
                "number_of_replicas": "string",
                "number_of_shards": "string",
            },
            "ip_filter_objects": [{
                "description": "string",
                "network": "string",
            }],
            "ip_filters": ["string"],
            "keep_index_refresh_interval": "string",
            "opensearch": {
                "action_auto_create_index_enabled": "string",
                "action_destructive_requires_name": "string",
                "cluster_max_shards_per_node": "string",
                "cluster_routing_allocation_node_concurrent_recoveries": "string",
                "email_sender_name": "string",
                "email_sender_password": "string",
                "email_sender_username": "string",
                "http_max_content_length": "string",
                "http_max_header_size": "string",
                "http_max_initial_line_length": "string",
                "indices_fielddata_cache_size": "string",
                "indices_memory_index_buffer_size": "string",
                "indices_queries_cache_size": "string",
                "indices_query_bool_max_clause_count": "string",
                "indices_recovery_max_bytes_per_sec": "string",
                "indices_recovery_max_concurrent_file_chunks": "string",
                "override_main_response_version": "string",
                "reindex_remote_whitelists": ["string"],
                "script_max_compilations_rate": "string",
                "search_max_buckets": "string",
                "thread_pool_analyze_queue_size": "string",
                "thread_pool_analyze_size": "string",
                "thread_pool_force_merge_size": "string",
                "thread_pool_get_queue_size": "string",
                "thread_pool_get_size": "string",
                "thread_pool_search_queue_size": "string",
                "thread_pool_search_size": "string",
                "thread_pool_search_throttled_queue_size": "string",
                "thread_pool_search_throttled_size": "string",
                "thread_pool_write_queue_size": "string",
                "thread_pool_write_size": "string",
            },
            "opensearch_dashboards": {
                "enabled": "string",
                "max_old_space_size": "string",
                "opensearch_request_timeout": "string",
            },
            "opensearch_version": "string",
            "private_access": {
                "opensearch": "string",
                "opensearch_dashboards": "string",
                "prometheus": "string",
            },
            "privatelink_access": {
                "opensearch": "string",
                "opensearch_dashboards": "string",
                "prometheus": "string",
            },
            "project_to_fork_from": "string",
            "public_access": {
                "opensearch": "string",
                "opensearch_dashboards": "string",
                "prometheus": "string",
            },
            "recovery_basebackup_name": "string",
            "service_to_fork_from": "string",
            "static_ips": "string",
        },
        additional_disk_space="string",
        disk_space="string",
        project_vpc_id="string",
        service_integrations=[{
            "integration_type": "string",
            "source_service_name": "string",
        }],
        cloud_name="string",
        static_ips=["string"],
        tags=[{
            "key": "string",
            "value": "string",
        }],
        termination_protection=False)
    
    const openSearchResource = new aiven.OpenSearch("openSearchResource", {
        project: "string",
        serviceName: "string",
        plan: "string",
        maintenanceWindowDow: "string",
        maintenanceWindowTime: "string",
        opensearchUserConfig: {
            additionalBackupRegions: "string",
            customDomain: "string",
            indexPatterns: [{
                maxIndexCount: "string",
                pattern: "string",
                sortingAlgorithm: "string",
            }],
            indexTemplate: {
                mappingNestedObjectsLimit: "string",
                numberOfReplicas: "string",
                numberOfShards: "string",
            },
            ipFilterObjects: [{
                description: "string",
                network: "string",
            }],
            ipFilters: ["string"],
            keepIndexRefreshInterval: "string",
            opensearch: {
                actionAutoCreateIndexEnabled: "string",
                actionDestructiveRequiresName: "string",
                clusterMaxShardsPerNode: "string",
                clusterRoutingAllocationNodeConcurrentRecoveries: "string",
                emailSenderName: "string",
                emailSenderPassword: "string",
                emailSenderUsername: "string",
                httpMaxContentLength: "string",
                httpMaxHeaderSize: "string",
                httpMaxInitialLineLength: "string",
                indicesFielddataCacheSize: "string",
                indicesMemoryIndexBufferSize: "string",
                indicesQueriesCacheSize: "string",
                indicesQueryBoolMaxClauseCount: "string",
                indicesRecoveryMaxBytesPerSec: "string",
                indicesRecoveryMaxConcurrentFileChunks: "string",
                overrideMainResponseVersion: "string",
                reindexRemoteWhitelists: ["string"],
                scriptMaxCompilationsRate: "string",
                searchMaxBuckets: "string",
                threadPoolAnalyzeQueueSize: "string",
                threadPoolAnalyzeSize: "string",
                threadPoolForceMergeSize: "string",
                threadPoolGetQueueSize: "string",
                threadPoolGetSize: "string",
                threadPoolSearchQueueSize: "string",
                threadPoolSearchSize: "string",
                threadPoolSearchThrottledQueueSize: "string",
                threadPoolSearchThrottledSize: "string",
                threadPoolWriteQueueSize: "string",
                threadPoolWriteSize: "string",
            },
            opensearchDashboards: {
                enabled: "string",
                maxOldSpaceSize: "string",
                opensearchRequestTimeout: "string",
            },
            opensearchVersion: "string",
            privateAccess: {
                opensearch: "string",
                opensearchDashboards: "string",
                prometheus: "string",
            },
            privatelinkAccess: {
                opensearch: "string",
                opensearchDashboards: "string",
                prometheus: "string",
            },
            projectToForkFrom: "string",
            publicAccess: {
                opensearch: "string",
                opensearchDashboards: "string",
                prometheus: "string",
            },
            recoveryBasebackupName: "string",
            serviceToForkFrom: "string",
            staticIps: "string",
        },
        additionalDiskSpace: "string",
        diskSpace: "string",
        projectVpcId: "string",
        serviceIntegrations: [{
            integrationType: "string",
            sourceServiceName: "string",
        }],
        cloudName: "string",
        staticIps: ["string"],
        tags: [{
            key: "string",
            value: "string",
        }],
        terminationProtection: false,
    });
    
    type: aiven:OpenSearch
    properties:
        additionalDiskSpace: string
        cloudName: string
        diskSpace: string
        maintenanceWindowDow: string
        maintenanceWindowTime: string
        opensearchUserConfig:
            additionalBackupRegions: string
            customDomain: string
            indexPatterns:
                - maxIndexCount: string
                  pattern: string
                  sortingAlgorithm: string
            indexTemplate:
                mappingNestedObjectsLimit: string
                numberOfReplicas: string
                numberOfShards: string
            ipFilterObjects:
                - description: string
                  network: string
            ipFilters:
                - string
            keepIndexRefreshInterval: string
            opensearch:
                actionAutoCreateIndexEnabled: string
                actionDestructiveRequiresName: string
                clusterMaxShardsPerNode: string
                clusterRoutingAllocationNodeConcurrentRecoveries: string
                emailSenderName: string
                emailSenderPassword: string
                emailSenderUsername: string
                httpMaxContentLength: string
                httpMaxHeaderSize: string
                httpMaxInitialLineLength: string
                indicesFielddataCacheSize: string
                indicesMemoryIndexBufferSize: string
                indicesQueriesCacheSize: string
                indicesQueryBoolMaxClauseCount: string
                indicesRecoveryMaxBytesPerSec: string
                indicesRecoveryMaxConcurrentFileChunks: string
                overrideMainResponseVersion: string
                reindexRemoteWhitelists:
                    - string
                scriptMaxCompilationsRate: string
                searchMaxBuckets: string
                threadPoolAnalyzeQueueSize: string
                threadPoolAnalyzeSize: string
                threadPoolForceMergeSize: string
                threadPoolGetQueueSize: string
                threadPoolGetSize: string
                threadPoolSearchQueueSize: string
                threadPoolSearchSize: string
                threadPoolSearchThrottledQueueSize: string
                threadPoolSearchThrottledSize: string
                threadPoolWriteQueueSize: string
                threadPoolWriteSize: string
            opensearchDashboards:
                enabled: string
                maxOldSpaceSize: string
                opensearchRequestTimeout: string
            opensearchVersion: string
            privateAccess:
                opensearch: string
                opensearchDashboards: string
                prometheus: string
            privatelinkAccess:
                opensearch: string
                opensearchDashboards: string
                prometheus: string
            projectToForkFrom: string
            publicAccess:
                opensearch: string
                opensearchDashboards: string
                prometheus: string
            recoveryBasebackupName: string
            serviceToForkFrom: string
            staticIps: string
        plan: string
        project: string
        projectVpcId: string
        serviceIntegrations:
            - integrationType: string
              sourceServiceName: string
        serviceName: string
        staticIps:
            - string
        tags:
            - key: string
              value: string
        terminationProtection: false
    

    OpenSearch 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 OpenSearch resource accepts the following input properties:

    Project string
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    ServiceName string
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    AdditionalDiskSpace string
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    CloudName string
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    DiskSpace string
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    MaintenanceWindowDow string
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    MaintenanceWindowTime string
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    OpensearchUserConfig OpenSearchOpensearchUserConfig
    Opensearch user configurable settings
    Plan string
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    ProjectVpcId string
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    ServiceIntegrations List<OpenSearchServiceIntegration>
    Service integrations to specify when creating a service. Not applied after initial service creation
    StaticIps List<string>
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    Tags List<OpenSearchTag>
    Tags are key-value pairs that allow you to categorize services.
    TerminationProtection bool
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
    Project string
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    ServiceName string
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    AdditionalDiskSpace string
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    CloudName string
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    DiskSpace string
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    MaintenanceWindowDow string
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    MaintenanceWindowTime string
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    OpensearchUserConfig OpenSearchOpensearchUserConfigArgs
    Opensearch user configurable settings
    Plan string
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    ProjectVpcId string
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    ServiceIntegrations []OpenSearchServiceIntegrationArgs
    Service integrations to specify when creating a service. Not applied after initial service creation
    StaticIps []string
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    Tags []OpenSearchTagArgs
    Tags are key-value pairs that allow you to categorize services.
    TerminationProtection bool
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
    project String
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    serviceName String
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    additionalDiskSpace String
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    cloudName String
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    diskSpace String
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    maintenanceWindowDow String
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    maintenanceWindowTime String
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    opensearchUserConfig OpenSearchOpensearchUserConfig
    Opensearch user configurable settings
    plan String
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    projectVpcId String
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    serviceIntegrations List<OpenSearchServiceIntegration>
    Service integrations to specify when creating a service. Not applied after initial service creation
    staticIps List<String>
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    tags List<OpenSearchTag>
    Tags are key-value pairs that allow you to categorize services.
    terminationProtection Boolean
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
    project string
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    serviceName string
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    additionalDiskSpace string
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    cloudName string
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    diskSpace string
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    maintenanceWindowDow string
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    maintenanceWindowTime string
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    opensearchUserConfig OpenSearchOpensearchUserConfig
    Opensearch user configurable settings
    plan string
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    projectVpcId string
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    serviceIntegrations OpenSearchServiceIntegration[]
    Service integrations to specify when creating a service. Not applied after initial service creation
    staticIps string[]
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    tags OpenSearchTag[]
    Tags are key-value pairs that allow you to categorize services.
    terminationProtection boolean
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
    project str
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    service_name str
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    additional_disk_space str
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    cloud_name str
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    disk_space str
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    maintenance_window_dow str
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    maintenance_window_time str
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    opensearch_user_config OpenSearchOpensearchUserConfigArgs
    Opensearch user configurable settings
    plan str
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    project_vpc_id str
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    service_integrations Sequence[OpenSearchServiceIntegrationArgs]
    Service integrations to specify when creating a service. Not applied after initial service creation
    static_ips Sequence[str]
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    tags Sequence[OpenSearchTagArgs]
    Tags are key-value pairs that allow you to categorize services.
    termination_protection bool
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
    project String
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    serviceName String
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    additionalDiskSpace String
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    cloudName String
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    diskSpace String
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    maintenanceWindowDow String
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    maintenanceWindowTime String
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    opensearchUserConfig Property Map
    Opensearch user configurable settings
    plan String
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    projectVpcId String
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    serviceIntegrations List<Property Map>
    Service integrations to specify when creating a service. Not applied after initial service creation
    staticIps List<String>
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    tags List<Property Map>
    Tags are key-value pairs that allow you to categorize services.
    terminationProtection Boolean
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the OpenSearch resource produces the following output properties:

    Components List<OpenSearchComponent>
    Service component information objects
    DiskSpaceCap string
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    DiskSpaceDefault string
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    DiskSpaceStep string
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    DiskSpaceUsed string
    Disk space that service is currently using
    Id string
    The provider-assigned unique ID for this managed resource.
    Opensearches List<OpenSearchOpensearch>
    Opensearch server provided values
    ServiceHost string
    The hostname of the service.
    ServicePassword string
    Password used for connecting to the service, if applicable
    ServicePort int
    The port of the service
    ServiceType string
    Aiven internal service type code
    ServiceUri string
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    ServiceUsername string
    Username used for connecting to the service, if applicable
    State string
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    Components []OpenSearchComponent
    Service component information objects
    DiskSpaceCap string
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    DiskSpaceDefault string
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    DiskSpaceStep string
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    DiskSpaceUsed string
    Disk space that service is currently using
    Id string
    The provider-assigned unique ID for this managed resource.
    Opensearches []OpenSearchOpensearch
    Opensearch server provided values
    ServiceHost string
    The hostname of the service.
    ServicePassword string
    Password used for connecting to the service, if applicable
    ServicePort int
    The port of the service
    ServiceType string
    Aiven internal service type code
    ServiceUri string
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    ServiceUsername string
    Username used for connecting to the service, if applicable
    State string
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    components List<OpenSearchComponent>
    Service component information objects
    diskSpaceCap String
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    diskSpaceDefault String
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    diskSpaceStep String
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    diskSpaceUsed String
    Disk space that service is currently using
    id String
    The provider-assigned unique ID for this managed resource.
    opensearches List<OpenSearchOpensearch>
    Opensearch server provided values
    serviceHost String
    The hostname of the service.
    servicePassword String
    Password used for connecting to the service, if applicable
    servicePort Integer
    The port of the service
    serviceType String
    Aiven internal service type code
    serviceUri String
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    serviceUsername String
    Username used for connecting to the service, if applicable
    state String
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    components OpenSearchComponent[]
    Service component information objects
    diskSpaceCap string
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    diskSpaceDefault string
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    diskSpaceStep string
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    diskSpaceUsed string
    Disk space that service is currently using
    id string
    The provider-assigned unique ID for this managed resource.
    opensearches OpenSearchOpensearch[]
    Opensearch server provided values
    serviceHost string
    The hostname of the service.
    servicePassword string
    Password used for connecting to the service, if applicable
    servicePort number
    The port of the service
    serviceType string
    Aiven internal service type code
    serviceUri string
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    serviceUsername string
    Username used for connecting to the service, if applicable
    state string
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    components Sequence[OpenSearchComponent]
    Service component information objects
    disk_space_cap str
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    disk_space_default str
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    disk_space_step str
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    disk_space_used str
    Disk space that service is currently using
    id str
    The provider-assigned unique ID for this managed resource.
    opensearches Sequence[OpenSearchOpensearch]
    Opensearch server provided values
    service_host str
    The hostname of the service.
    service_password str
    Password used for connecting to the service, if applicable
    service_port int
    The port of the service
    service_type str
    Aiven internal service type code
    service_uri str
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    service_username str
    Username used for connecting to the service, if applicable
    state str
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    components List<Property Map>
    Service component information objects
    diskSpaceCap String
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    diskSpaceDefault String
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    diskSpaceStep String
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    diskSpaceUsed String
    Disk space that service is currently using
    id String
    The provider-assigned unique ID for this managed resource.
    opensearches List<Property Map>
    Opensearch server provided values
    serviceHost String
    The hostname of the service.
    servicePassword String
    Password used for connecting to the service, if applicable
    servicePort Number
    The port of the service
    serviceType String
    Aiven internal service type code
    serviceUri String
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    serviceUsername String
    Username used for connecting to the service, if applicable
    state String
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING

    Look up Existing OpenSearch Resource

    Get an existing OpenSearch 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?: OpenSearchState, opts?: CustomResourceOptions): OpenSearch
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            additional_disk_space: Optional[str] = None,
            cloud_name: Optional[str] = None,
            components: Optional[Sequence[OpenSearchComponentArgs]] = None,
            disk_space: Optional[str] = None,
            disk_space_cap: Optional[str] = None,
            disk_space_default: Optional[str] = None,
            disk_space_step: Optional[str] = None,
            disk_space_used: Optional[str] = None,
            maintenance_window_dow: Optional[str] = None,
            maintenance_window_time: Optional[str] = None,
            opensearch_user_config: Optional[OpenSearchOpensearchUserConfigArgs] = None,
            opensearches: Optional[Sequence[OpenSearchOpensearchArgs]] = None,
            plan: Optional[str] = None,
            project: Optional[str] = None,
            project_vpc_id: Optional[str] = None,
            service_host: Optional[str] = None,
            service_integrations: Optional[Sequence[OpenSearchServiceIntegrationArgs]] = None,
            service_name: Optional[str] = None,
            service_password: Optional[str] = None,
            service_port: Optional[int] = None,
            service_type: Optional[str] = None,
            service_uri: Optional[str] = None,
            service_username: Optional[str] = None,
            state: Optional[str] = None,
            static_ips: Optional[Sequence[str]] = None,
            tags: Optional[Sequence[OpenSearchTagArgs]] = None,
            termination_protection: Optional[bool] = None) -> OpenSearch
    func GetOpenSearch(ctx *Context, name string, id IDInput, state *OpenSearchState, opts ...ResourceOption) (*OpenSearch, error)
    public static OpenSearch Get(string name, Input<string> id, OpenSearchState? state, CustomResourceOptions? opts = null)
    public static OpenSearch get(String name, Output<String> id, OpenSearchState state, CustomResourceOptions options)
    resources:  _:    type: aiven:OpenSearch    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.
    The following state arguments are supported:
    AdditionalDiskSpace string
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    CloudName string
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    Components List<OpenSearchComponent>
    Service component information objects
    DiskSpace string
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    DiskSpaceCap string
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    DiskSpaceDefault string
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    DiskSpaceStep string
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    DiskSpaceUsed string
    Disk space that service is currently using
    MaintenanceWindowDow string
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    MaintenanceWindowTime string
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    OpensearchUserConfig OpenSearchOpensearchUserConfig
    Opensearch user configurable settings
    Opensearches List<OpenSearchOpensearch>
    Opensearch server provided values
    Plan string
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    Project string
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    ProjectVpcId string
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    ServiceHost string
    The hostname of the service.
    ServiceIntegrations List<OpenSearchServiceIntegration>
    Service integrations to specify when creating a service. Not applied after initial service creation
    ServiceName string
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    ServicePassword string
    Password used for connecting to the service, if applicable
    ServicePort int
    The port of the service
    ServiceType string
    Aiven internal service type code
    ServiceUri string
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    ServiceUsername string
    Username used for connecting to the service, if applicable
    State string
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    StaticIps List<string>
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    Tags List<OpenSearchTag>
    Tags are key-value pairs that allow you to categorize services.
    TerminationProtection bool
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
    AdditionalDiskSpace string
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    CloudName string
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    Components []OpenSearchComponentArgs
    Service component information objects
    DiskSpace string
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    DiskSpaceCap string
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    DiskSpaceDefault string
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    DiskSpaceStep string
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    DiskSpaceUsed string
    Disk space that service is currently using
    MaintenanceWindowDow string
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    MaintenanceWindowTime string
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    OpensearchUserConfig OpenSearchOpensearchUserConfigArgs
    Opensearch user configurable settings
    Opensearches []OpenSearchOpensearchArgs
    Opensearch server provided values
    Plan string
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    Project string
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    ProjectVpcId string
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    ServiceHost string
    The hostname of the service.
    ServiceIntegrations []OpenSearchServiceIntegrationArgs
    Service integrations to specify when creating a service. Not applied after initial service creation
    ServiceName string
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    ServicePassword string
    Password used for connecting to the service, if applicable
    ServicePort int
    The port of the service
    ServiceType string
    Aiven internal service type code
    ServiceUri string
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    ServiceUsername string
    Username used for connecting to the service, if applicable
    State string
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    StaticIps []string
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    Tags []OpenSearchTagArgs
    Tags are key-value pairs that allow you to categorize services.
    TerminationProtection bool
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
    additionalDiskSpace String
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    cloudName String
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    components List<OpenSearchComponent>
    Service component information objects
    diskSpace String
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    diskSpaceCap String
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    diskSpaceDefault String
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    diskSpaceStep String
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    diskSpaceUsed String
    Disk space that service is currently using
    maintenanceWindowDow String
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    maintenanceWindowTime String
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    opensearchUserConfig OpenSearchOpensearchUserConfig
    Opensearch user configurable settings
    opensearches List<OpenSearchOpensearch>
    Opensearch server provided values
    plan String
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    project String
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    projectVpcId String
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    serviceHost String
    The hostname of the service.
    serviceIntegrations List<OpenSearchServiceIntegration>
    Service integrations to specify when creating a service. Not applied after initial service creation
    serviceName String
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    servicePassword String
    Password used for connecting to the service, if applicable
    servicePort Integer
    The port of the service
    serviceType String
    Aiven internal service type code
    serviceUri String
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    serviceUsername String
    Username used for connecting to the service, if applicable
    state String
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    staticIps List<String>
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    tags List<OpenSearchTag>
    Tags are key-value pairs that allow you to categorize services.
    terminationProtection Boolean
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
    additionalDiskSpace string
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    cloudName string
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    components OpenSearchComponent[]
    Service component information objects
    diskSpace string
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    diskSpaceCap string
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    diskSpaceDefault string
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    diskSpaceStep string
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    diskSpaceUsed string
    Disk space that service is currently using
    maintenanceWindowDow string
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    maintenanceWindowTime string
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    opensearchUserConfig OpenSearchOpensearchUserConfig
    Opensearch user configurable settings
    opensearches OpenSearchOpensearch[]
    Opensearch server provided values
    plan string
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    project string
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    projectVpcId string
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    serviceHost string
    The hostname of the service.
    serviceIntegrations OpenSearchServiceIntegration[]
    Service integrations to specify when creating a service. Not applied after initial service creation
    serviceName string
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    servicePassword string
    Password used for connecting to the service, if applicable
    servicePort number
    The port of the service
    serviceType string
    Aiven internal service type code
    serviceUri string
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    serviceUsername string
    Username used for connecting to the service, if applicable
    state string
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    staticIps string[]
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    tags OpenSearchTag[]
    Tags are key-value pairs that allow you to categorize services.
    terminationProtection boolean
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
    additional_disk_space str
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    cloud_name str
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    components Sequence[OpenSearchComponentArgs]
    Service component information objects
    disk_space str
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    disk_space_cap str
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    disk_space_default str
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    disk_space_step str
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    disk_space_used str
    Disk space that service is currently using
    maintenance_window_dow str
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    maintenance_window_time str
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    opensearch_user_config OpenSearchOpensearchUserConfigArgs
    Opensearch user configurable settings
    opensearches Sequence[OpenSearchOpensearchArgs]
    Opensearch server provided values
    plan str
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    project str
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    project_vpc_id str
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    service_host str
    The hostname of the service.
    service_integrations Sequence[OpenSearchServiceIntegrationArgs]
    Service integrations to specify when creating a service. Not applied after initial service creation
    service_name str
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    service_password str
    Password used for connecting to the service, if applicable
    service_port int
    The port of the service
    service_type str
    Aiven internal service type code
    service_uri str
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    service_username str
    Username used for connecting to the service, if applicable
    state str
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    static_ips Sequence[str]
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    tags Sequence[OpenSearchTagArgs]
    Tags are key-value pairs that allow you to categorize services.
    termination_protection bool
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
    additionalDiskSpace String
    Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    cloudName String
    Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (aws, azure, do google, upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS.
    components List<Property Map>
    Service component information objects
    diskSpace String
    Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
    diskSpaceCap String
    The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
    diskSpaceDefault String
    The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for disk_space
    diskSpaceStep String
    The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_space needs to increment from disk_space_default by increments of this size.
    diskSpaceUsed String
    Disk space that service is currently using
    maintenanceWindowDow String
    Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
    maintenanceWindowTime String
    Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
    opensearchUserConfig Property Map
    Opensearch user configurable settings
    opensearches List<Property Map>
    Opensearch server provided values
    plan String
    Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are hobbyist, startup-x, business-x and premium-x where x is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page.
    project String
    Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
    projectVpcId String
    Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
    serviceHost String
    The hostname of the service.
    serviceIntegrations List<Property Map>
    Service integrations to specify when creating a service. Not applied after initial service creation
    serviceName String
    Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
    servicePassword String
    Password used for connecting to the service, if applicable
    servicePort Number
    The port of the service
    serviceType String
    Aiven internal service type code
    serviceUri String
    URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
    serviceUsername String
    Username used for connecting to the service, if applicable
    state String
    Service state. One of POWEROFF, REBALANCING, REBUILDING or RUNNING
    staticIps List<String>
    Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
    tags List<Property Map>
    Tags are key-value pairs that allow you to categorize services.
    terminationProtection Boolean
    Prevents the service from being deleted. It is recommended to set this to true for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.

    Supporting Types

    OpenSearchComponent, OpenSearchComponentArgs

    Component string
    Host string
    KafkaAuthenticationMethod string
    Port int
    Route string
    Ssl bool
    Usage string
    Component string
    Host string
    KafkaAuthenticationMethod string
    Port int
    Route string
    Ssl bool
    Usage string
    component String
    host String
    kafkaAuthenticationMethod String
    port Integer
    route String
    ssl Boolean
    usage String
    component string
    host string
    kafkaAuthenticationMethod string
    port number
    route string
    ssl boolean
    usage string
    component String
    host String
    kafkaAuthenticationMethod String
    port Number
    route String
    ssl Boolean
    usage String

    OpenSearchOpensearch, OpenSearchOpensearchArgs

    OpenSearchOpensearchUserConfig, OpenSearchOpensearchUserConfigArgs

    AdditionalBackupRegions string
    Additional Cloud Regions for Backup Replication
    CustomDomain string
    Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
    DisableReplicationFactorAdjustment string

    Deprecated: DEPRECATED: Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: Due to potential data loss in case of losing a service node, this setting can no longer be activated.

    IndexPatterns List<OpenSearchOpensearchUserConfigIndexPattern>
    Index patterns
    IndexTemplate OpenSearchOpensearchUserConfigIndexTemplate
    Template settings for all new indexes
    IpFilterObjects List<OpenSearchOpensearchUserConfigIpFilterObject>
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    IpFilters List<string>
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    KeepIndexRefreshInterval string
    Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
    MaxIndexCount string

    Deprecated: DEPRECATED: use index_patterns instead

    Opensearch OpenSearchOpensearchUserConfigOpensearch
    OpenSearch settings
    OpensearchDashboards OpenSearchOpensearchUserConfigOpensearchDashboards
    OpenSearch Dashboards settings
    OpensearchVersion string
    OpenSearch major version
    PrivateAccess OpenSearchOpensearchUserConfigPrivateAccess
    Allow access to selected service ports from private networks
    PrivatelinkAccess OpenSearchOpensearchUserConfigPrivatelinkAccess
    Allow access to selected service components through Privatelink
    ProjectToForkFrom string
    Name of another project to fork a service from. This has effect only when a new service is being created.
    PublicAccess OpenSearchOpensearchUserConfigPublicAccess
    Allow access to selected service ports from the public Internet
    RecoveryBasebackupName string
    Name of the basebackup to restore in forked service
    ServiceToForkFrom string
    Name of another service to fork from. This has effect only when a new service is being created.
    StaticIps string
    Use static public IP addresses
    AdditionalBackupRegions string
    Additional Cloud Regions for Backup Replication
    CustomDomain string
    Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
    DisableReplicationFactorAdjustment string

    Deprecated: DEPRECATED: Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: Due to potential data loss in case of losing a service node, this setting can no longer be activated.

    IndexPatterns []OpenSearchOpensearchUserConfigIndexPattern
    Index patterns
    IndexTemplate OpenSearchOpensearchUserConfigIndexTemplate
    Template settings for all new indexes
    IpFilterObjects []OpenSearchOpensearchUserConfigIpFilterObject
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    IpFilters []string
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    KeepIndexRefreshInterval string
    Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
    MaxIndexCount string

    Deprecated: DEPRECATED: use index_patterns instead

    Opensearch OpenSearchOpensearchUserConfigOpensearch
    OpenSearch settings
    OpensearchDashboards OpenSearchOpensearchUserConfigOpensearchDashboards
    OpenSearch Dashboards settings
    OpensearchVersion string
    OpenSearch major version
    PrivateAccess OpenSearchOpensearchUserConfigPrivateAccess
    Allow access to selected service ports from private networks
    PrivatelinkAccess OpenSearchOpensearchUserConfigPrivatelinkAccess
    Allow access to selected service components through Privatelink
    ProjectToForkFrom string
    Name of another project to fork a service from. This has effect only when a new service is being created.
    PublicAccess OpenSearchOpensearchUserConfigPublicAccess
    Allow access to selected service ports from the public Internet
    RecoveryBasebackupName string
    Name of the basebackup to restore in forked service
    ServiceToForkFrom string
    Name of another service to fork from. This has effect only when a new service is being created.
    StaticIps string
    Use static public IP addresses
    additionalBackupRegions String
    Additional Cloud Regions for Backup Replication
    customDomain String
    Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
    disableReplicationFactorAdjustment String

    Deprecated: DEPRECATED: Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: Due to potential data loss in case of losing a service node, this setting can no longer be activated.

    indexPatterns List<OpenSearchOpensearchUserConfigIndexPattern>
    Index patterns
    indexTemplate OpenSearchOpensearchUserConfigIndexTemplate
    Template settings for all new indexes
    ipFilterObjects List<OpenSearchOpensearchUserConfigIpFilterObject>
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    ipFilters List<String>
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    keepIndexRefreshInterval String
    Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
    maxIndexCount String

    Deprecated: DEPRECATED: use index_patterns instead

    opensearch OpenSearchOpensearchUserConfigOpensearch
    OpenSearch settings
    opensearchDashboards OpenSearchOpensearchUserConfigOpensearchDashboards
    OpenSearch Dashboards settings
    opensearchVersion String
    OpenSearch major version
    privateAccess OpenSearchOpensearchUserConfigPrivateAccess
    Allow access to selected service ports from private networks
    privatelinkAccess OpenSearchOpensearchUserConfigPrivatelinkAccess
    Allow access to selected service components through Privatelink
    projectToForkFrom String
    Name of another project to fork a service from. This has effect only when a new service is being created.
    publicAccess OpenSearchOpensearchUserConfigPublicAccess
    Allow access to selected service ports from the public Internet
    recoveryBasebackupName String
    Name of the basebackup to restore in forked service
    serviceToForkFrom String
    Name of another service to fork from. This has effect only when a new service is being created.
    staticIps String
    Use static public IP addresses
    additionalBackupRegions string
    Additional Cloud Regions for Backup Replication
    customDomain string
    Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
    disableReplicationFactorAdjustment string

    Deprecated: DEPRECATED: Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: Due to potential data loss in case of losing a service node, this setting can no longer be activated.

    indexPatterns OpenSearchOpensearchUserConfigIndexPattern[]
    Index patterns
    indexTemplate OpenSearchOpensearchUserConfigIndexTemplate
    Template settings for all new indexes
    ipFilterObjects OpenSearchOpensearchUserConfigIpFilterObject[]
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    ipFilters string[]
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    keepIndexRefreshInterval string
    Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
    maxIndexCount string

    Deprecated: DEPRECATED: use index_patterns instead

    opensearch OpenSearchOpensearchUserConfigOpensearch
    OpenSearch settings
    opensearchDashboards OpenSearchOpensearchUserConfigOpensearchDashboards
    OpenSearch Dashboards settings
    opensearchVersion string
    OpenSearch major version
    privateAccess OpenSearchOpensearchUserConfigPrivateAccess
    Allow access to selected service ports from private networks
    privatelinkAccess OpenSearchOpensearchUserConfigPrivatelinkAccess
    Allow access to selected service components through Privatelink
    projectToForkFrom string
    Name of another project to fork a service from. This has effect only when a new service is being created.
    publicAccess OpenSearchOpensearchUserConfigPublicAccess
    Allow access to selected service ports from the public Internet
    recoveryBasebackupName string
    Name of the basebackup to restore in forked service
    serviceToForkFrom string
    Name of another service to fork from. This has effect only when a new service is being created.
    staticIps string
    Use static public IP addresses
    additional_backup_regions str
    Additional Cloud Regions for Backup Replication
    custom_domain str
    Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
    disable_replication_factor_adjustment str

    Deprecated: DEPRECATED: Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: Due to potential data loss in case of losing a service node, this setting can no longer be activated.

    index_patterns Sequence[OpenSearchOpensearchUserConfigIndexPattern]
    Index patterns
    index_template OpenSearchOpensearchUserConfigIndexTemplate
    Template settings for all new indexes
    ip_filter_objects Sequence[OpenSearchOpensearchUserConfigIpFilterObject]
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    ip_filters Sequence[str]
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    keep_index_refresh_interval str
    Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
    max_index_count str

    Deprecated: DEPRECATED: use index_patterns instead

    opensearch OpenSearchOpensearchUserConfigOpensearch
    OpenSearch settings
    opensearch_dashboards OpenSearchOpensearchUserConfigOpensearchDashboards
    OpenSearch Dashboards settings
    opensearch_version str
    OpenSearch major version
    private_access OpenSearchOpensearchUserConfigPrivateAccess
    Allow access to selected service ports from private networks
    privatelink_access OpenSearchOpensearchUserConfigPrivatelinkAccess
    Allow access to selected service components through Privatelink
    project_to_fork_from str
    Name of another project to fork a service from. This has effect only when a new service is being created.
    public_access OpenSearchOpensearchUserConfigPublicAccess
    Allow access to selected service ports from the public Internet
    recovery_basebackup_name str
    Name of the basebackup to restore in forked service
    service_to_fork_from str
    Name of another service to fork from. This has effect only when a new service is being created.
    static_ips str
    Use static public IP addresses
    additionalBackupRegions String
    Additional Cloud Regions for Backup Replication
    customDomain String
    Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
    disableReplicationFactorAdjustment String

    Deprecated: DEPRECATED: Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: Due to potential data loss in case of losing a service node, this setting can no longer be activated.

    indexPatterns List<Property Map>
    Index patterns
    indexTemplate Property Map
    Template settings for all new indexes
    ipFilterObjects List<Property Map>
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    ipFilters List<String>
    Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
    keepIndexRefreshInterval String
    Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
    maxIndexCount String

    Deprecated: DEPRECATED: use index_patterns instead

    opensearch Property Map
    OpenSearch settings
    opensearchDashboards Property Map
    OpenSearch Dashboards settings
    opensearchVersion String
    OpenSearch major version
    privateAccess Property Map
    Allow access to selected service ports from private networks
    privatelinkAccess Property Map
    Allow access to selected service components through Privatelink
    projectToForkFrom String
    Name of another project to fork a service from. This has effect only when a new service is being created.
    publicAccess Property Map
    Allow access to selected service ports from the public Internet
    recoveryBasebackupName String
    Name of the basebackup to restore in forked service
    serviceToForkFrom String
    Name of another service to fork from. This has effect only when a new service is being created.
    staticIps String
    Use static public IP addresses

    OpenSearchOpensearchUserConfigIndexPattern, OpenSearchOpensearchUserConfigIndexPatternArgs

    OpenSearchOpensearchUserConfigIndexTemplate, OpenSearchOpensearchUserConfigIndexTemplateArgs

    OpenSearchOpensearchUserConfigIpFilterObject, OpenSearchOpensearchUserConfigIpFilterObjectArgs

    Description string
    Network string
    Description string
    Network string
    description String
    network String
    description string
    network string
    description String
    network String

    OpenSearchOpensearchUserConfigOpensearch, OpenSearchOpensearchUserConfigOpensearchArgs

    ActionAutoCreateIndexEnabled string
    ActionDestructiveRequiresName string
    ClusterMaxShardsPerNode string
    ClusterRoutingAllocationNodeConcurrentRecoveries string
    EmailSenderName string
    EmailSenderPassword string
    EmailSenderUsername string
    HttpMaxContentLength string
    HttpMaxHeaderSize string
    HttpMaxInitialLineLength string
    IndicesFielddataCacheSize string
    IndicesMemoryIndexBufferSize string
    IndicesQueriesCacheSize string
    IndicesQueryBoolMaxClauseCount string
    IndicesRecoveryMaxBytesPerSec string
    IndicesRecoveryMaxConcurrentFileChunks string
    OverrideMainResponseVersion string
    ReindexRemoteWhitelists List<string>
    ScriptMaxCompilationsRate string
    SearchMaxBuckets string
    ThreadPoolAnalyzeQueueSize string
    ThreadPoolAnalyzeSize string
    ThreadPoolForceMergeSize string
    ThreadPoolGetQueueSize string
    ThreadPoolGetSize string
    ThreadPoolSearchQueueSize string
    ThreadPoolSearchSize string
    ThreadPoolSearchThrottledQueueSize string
    ThreadPoolSearchThrottledSize string
    ThreadPoolWriteQueueSize string
    ThreadPoolWriteSize string
    ActionAutoCreateIndexEnabled string
    ActionDestructiveRequiresName string
    ClusterMaxShardsPerNode string
    ClusterRoutingAllocationNodeConcurrentRecoveries string
    EmailSenderName string
    EmailSenderPassword string
    EmailSenderUsername string
    HttpMaxContentLength string
    HttpMaxHeaderSize string
    HttpMaxInitialLineLength string
    IndicesFielddataCacheSize string
    IndicesMemoryIndexBufferSize string
    IndicesQueriesCacheSize string
    IndicesQueryBoolMaxClauseCount string
    IndicesRecoveryMaxBytesPerSec string
    IndicesRecoveryMaxConcurrentFileChunks string
    OverrideMainResponseVersion string
    ReindexRemoteWhitelists []string
    ScriptMaxCompilationsRate string
    SearchMaxBuckets string
    ThreadPoolAnalyzeQueueSize string
    ThreadPoolAnalyzeSize string
    ThreadPoolForceMergeSize string
    ThreadPoolGetQueueSize string
    ThreadPoolGetSize string
    ThreadPoolSearchQueueSize string
    ThreadPoolSearchSize string
    ThreadPoolSearchThrottledQueueSize string
    ThreadPoolSearchThrottledSize string
    ThreadPoolWriteQueueSize string
    ThreadPoolWriteSize string
    actionAutoCreateIndexEnabled String
    actionDestructiveRequiresName String
    clusterMaxShardsPerNode String
    clusterRoutingAllocationNodeConcurrentRecoveries String
    emailSenderName String
    emailSenderPassword String
    emailSenderUsername String
    httpMaxContentLength String
    httpMaxHeaderSize String
    httpMaxInitialLineLength String
    indicesFielddataCacheSize String
    indicesMemoryIndexBufferSize String
    indicesQueriesCacheSize String
    indicesQueryBoolMaxClauseCount String
    indicesRecoveryMaxBytesPerSec String
    indicesRecoveryMaxConcurrentFileChunks String
    overrideMainResponseVersion String
    reindexRemoteWhitelists List<String>
    scriptMaxCompilationsRate String
    searchMaxBuckets String
    threadPoolAnalyzeQueueSize String
    threadPoolAnalyzeSize String
    threadPoolForceMergeSize String
    threadPoolGetQueueSize String
    threadPoolGetSize String
    threadPoolSearchQueueSize String
    threadPoolSearchSize String
    threadPoolSearchThrottledQueueSize String
    threadPoolSearchThrottledSize String
    threadPoolWriteQueueSize String
    threadPoolWriteSize String
    actionAutoCreateIndexEnabled string
    actionDestructiveRequiresName string
    clusterMaxShardsPerNode string
    clusterRoutingAllocationNodeConcurrentRecoveries string
    emailSenderName string
    emailSenderPassword string
    emailSenderUsername string
    httpMaxContentLength string
    httpMaxHeaderSize string
    httpMaxInitialLineLength string
    indicesFielddataCacheSize string
    indicesMemoryIndexBufferSize string
    indicesQueriesCacheSize string
    indicesQueryBoolMaxClauseCount string
    indicesRecoveryMaxBytesPerSec string
    indicesRecoveryMaxConcurrentFileChunks string
    overrideMainResponseVersion string
    reindexRemoteWhitelists string[]
    scriptMaxCompilationsRate string
    searchMaxBuckets string
    threadPoolAnalyzeQueueSize string
    threadPoolAnalyzeSize string
    threadPoolForceMergeSize string
    threadPoolGetQueueSize string
    threadPoolGetSize string
    threadPoolSearchQueueSize string
    threadPoolSearchSize string
    threadPoolSearchThrottledQueueSize string
    threadPoolSearchThrottledSize string
    threadPoolWriteQueueSize string
    threadPoolWriteSize string
    action_auto_create_index_enabled str
    action_destructive_requires_name str
    cluster_max_shards_per_node str
    cluster_routing_allocation_node_concurrent_recoveries str
    email_sender_name str
    email_sender_password str
    email_sender_username str
    http_max_content_length str
    http_max_header_size str
    http_max_initial_line_length str
    indices_fielddata_cache_size str
    indices_memory_index_buffer_size str
    indices_queries_cache_size str
    indices_query_bool_max_clause_count str
    indices_recovery_max_bytes_per_sec str
    indices_recovery_max_concurrent_file_chunks str
    override_main_response_version str
    reindex_remote_whitelists Sequence[str]
    script_max_compilations_rate str
    search_max_buckets str
    thread_pool_analyze_queue_size str
    thread_pool_analyze_size str
    thread_pool_force_merge_size str
    thread_pool_get_queue_size str
    thread_pool_get_size str
    thread_pool_search_queue_size str
    thread_pool_search_size str
    thread_pool_search_throttled_queue_size str
    thread_pool_search_throttled_size str
    thread_pool_write_queue_size str
    thread_pool_write_size str
    actionAutoCreateIndexEnabled String
    actionDestructiveRequiresName String
    clusterMaxShardsPerNode String
    clusterRoutingAllocationNodeConcurrentRecoveries String
    emailSenderName String
    emailSenderPassword String
    emailSenderUsername String
    httpMaxContentLength String
    httpMaxHeaderSize String
    httpMaxInitialLineLength String
    indicesFielddataCacheSize String
    indicesMemoryIndexBufferSize String
    indicesQueriesCacheSize String
    indicesQueryBoolMaxClauseCount String
    indicesRecoveryMaxBytesPerSec String
    indicesRecoveryMaxConcurrentFileChunks String
    overrideMainResponseVersion String
    reindexRemoteWhitelists List<String>
    scriptMaxCompilationsRate String
    searchMaxBuckets String
    threadPoolAnalyzeQueueSize String
    threadPoolAnalyzeSize String
    threadPoolForceMergeSize String
    threadPoolGetQueueSize String
    threadPoolGetSize String
    threadPoolSearchQueueSize String
    threadPoolSearchSize String
    threadPoolSearchThrottledQueueSize String
    threadPoolSearchThrottledSize String
    threadPoolWriteQueueSize String
    threadPoolWriteSize String

    OpenSearchOpensearchUserConfigOpensearchDashboards, OpenSearchOpensearchUserConfigOpensearchDashboardsArgs

    OpenSearchOpensearchUserConfigPrivateAccess, OpenSearchOpensearchUserConfigPrivateAccessArgs

    Opensearch string
    Opensearch server provided values
    OpensearchDashboards string
    Prometheus string
    Opensearch string
    Opensearch server provided values
    OpensearchDashboards string
    Prometheus string
    opensearch String
    Opensearch server provided values
    opensearchDashboards String
    prometheus String
    opensearch string
    Opensearch server provided values
    opensearchDashboards string
    prometheus string
    opensearch str
    Opensearch server provided values
    opensearch_dashboards str
    prometheus str
    opensearch String
    Opensearch server provided values
    opensearchDashboards String
    prometheus String

    OpenSearchOpensearchUserConfigPrivatelinkAccess, OpenSearchOpensearchUserConfigPrivatelinkAccessArgs

    Opensearch string
    Opensearch server provided values
    OpensearchDashboards string
    Prometheus string
    Opensearch string
    Opensearch server provided values
    OpensearchDashboards string
    Prometheus string
    opensearch String
    Opensearch server provided values
    opensearchDashboards String
    prometheus String
    opensearch string
    Opensearch server provided values
    opensearchDashboards string
    prometheus string
    opensearch str
    Opensearch server provided values
    opensearch_dashboards str
    prometheus str
    opensearch String
    Opensearch server provided values
    opensearchDashboards String
    prometheus String

    OpenSearchOpensearchUserConfigPublicAccess, OpenSearchOpensearchUserConfigPublicAccessArgs

    Opensearch string
    Opensearch server provided values
    OpensearchDashboards string
    Prometheus string
    Opensearch string
    Opensearch server provided values
    OpensearchDashboards string
    Prometheus string
    opensearch String
    Opensearch server provided values
    opensearchDashboards String
    prometheus String
    opensearch string
    Opensearch server provided values
    opensearchDashboards string
    prometheus string
    opensearch str
    Opensearch server provided values
    opensearch_dashboards str
    prometheus str
    opensearch String
    Opensearch server provided values
    opensearchDashboards String
    prometheus String

    OpenSearchServiceIntegration, OpenSearchServiceIntegrationArgs

    IntegrationType string
    Type of the service integration. The only supported value at the moment is read_replica
    SourceServiceName string
    Name of the source service
    IntegrationType string
    Type of the service integration. The only supported value at the moment is read_replica
    SourceServiceName string
    Name of the source service
    integrationType String
    Type of the service integration. The only supported value at the moment is read_replica
    sourceServiceName String
    Name of the source service
    integrationType string
    Type of the service integration. The only supported value at the moment is read_replica
    sourceServiceName string
    Name of the source service
    integration_type str
    Type of the service integration. The only supported value at the moment is read_replica
    source_service_name str
    Name of the source service
    integrationType String
    Type of the service integration. The only supported value at the moment is read_replica
    sourceServiceName String
    Name of the source service

    OpenSearchTag, OpenSearchTagArgs

    Key string
    Service tag key
    Value string
    Service tag value
    Key string
    Service tag key
    Value string
    Service tag value
    key String
    Service tag key
    value String
    Service tag value
    key string
    Service tag key
    value string
    Service tag value
    key str
    Service tag key
    value str
    Service tag value
    key String
    Service tag key
    value String
    Service tag value

    Import

     $ pulumi import aiven:index/openSearch:OpenSearch os1 project/service_name
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Aiven pulumi/pulumi-aiven
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aiven Terraform Provider.
    aiven logo
    Viewing docs for Aiven v5.6.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.