aiven.M3Db
Explore with Pulumi AI
Creates and manages an Aiven for M3 service.
!> End of life notice After 30 April 2025 all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible. You cannot create M3DB services in Aiven projects that didn’t have M3DB services before. To avoid interruptions to your service, migrate to Aiven for Thanos Metrics before the end of life date.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const exampleM3db = new aiven.M3Db("example_m3db", {
    project: exampleProject.project,
    cloudName: "google-europe-west1",
    plan: "business-8",
    serviceName: "example-m3db-service",
    maintenanceWindowDow: "monday",
    maintenanceWindowTime: "10:00:00",
    m3dbUserConfig: {
        m3dbVersion: "1.1",
        namespaces: [{
            name: "example-namespace",
            type: "unaggregated",
        }],
    },
});
import pulumi
import pulumi_aiven as aiven
example_m3db = aiven.M3Db("example_m3db",
    project=example_project["project"],
    cloud_name="google-europe-west1",
    plan="business-8",
    service_name="example-m3db-service",
    maintenance_window_dow="monday",
    maintenance_window_time="10:00:00",
    m3db_user_config={
        "m3db_version": "1.1",
        "namespaces": [{
            "name": "example-namespace",
            "type": "unaggregated",
        }],
    })
package main
import (
	"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := aiven.NewM3Db(ctx, "example_m3db", &aiven.M3DbArgs{
			Project:               pulumi.Any(exampleProject.Project),
			CloudName:             pulumi.String("google-europe-west1"),
			Plan:                  pulumi.String("business-8"),
			ServiceName:           pulumi.String("example-m3db-service"),
			MaintenanceWindowDow:  pulumi.String("monday"),
			MaintenanceWindowTime: pulumi.String("10:00:00"),
			M3dbUserConfig: &aiven.M3DbM3dbUserConfigArgs{
				M3dbVersion: pulumi.String("1.1"),
				Namespaces: aiven.M3DbM3dbUserConfigNamespaceArray{
					&aiven.M3DbM3dbUserConfigNamespaceArgs{
						Name: pulumi.String("example-namespace"),
						Type: pulumi.String("unaggregated"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() => 
{
    var exampleM3db = new Aiven.M3Db("example_m3db", new()
    {
        Project = exampleProject.Project,
        CloudName = "google-europe-west1",
        Plan = "business-8",
        ServiceName = "example-m3db-service",
        MaintenanceWindowDow = "monday",
        MaintenanceWindowTime = "10:00:00",
        M3dbUserConfig = new Aiven.Inputs.M3DbM3dbUserConfigArgs
        {
            M3dbVersion = "1.1",
            Namespaces = new[]
            {
                new Aiven.Inputs.M3DbM3dbUserConfigNamespaceArgs
                {
                    Name = "example-namespace",
                    Type = "unaggregated",
                },
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.M3Db;
import com.pulumi.aiven.M3DbArgs;
import com.pulumi.aiven.inputs.M3DbM3dbUserConfigArgs;
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 exampleM3db = new M3Db("exampleM3db", M3DbArgs.builder()
            .project(exampleProject.project())
            .cloudName("google-europe-west1")
            .plan("business-8")
            .serviceName("example-m3db-service")
            .maintenanceWindowDow("monday")
            .maintenanceWindowTime("10:00:00")
            .m3dbUserConfig(M3DbM3dbUserConfigArgs.builder()
                .m3dbVersion("1.1")
                .namespaces(M3DbM3dbUserConfigNamespaceArgs.builder()
                    .name("example-namespace")
                    .type("unaggregated")
                    .build())
                .build())
            .build());
    }
}
resources:
  exampleM3db:
    type: aiven:M3Db
    name: example_m3db
    properties:
      project: ${exampleProject.project}
      cloudName: google-europe-west1
      plan: business-8
      serviceName: example-m3db-service
      maintenanceWindowDow: monday
      maintenanceWindowTime: 10:00:00
      m3dbUserConfig:
        m3dbVersion: 1.1
        namespaces:
          - name: example-namespace
            type: unaggregated
Create M3Db Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new M3Db(name: string, args: M3DbArgs, opts?: CustomResourceOptions);@overload
def M3Db(resource_name: str,
         args: M3DbArgs,
         opts: Optional[ResourceOptions] = None)
@overload
def M3Db(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         plan: Optional[str] = None,
         service_name: Optional[str] = None,
         project: Optional[str] = None,
         m3db_user_config: Optional[M3DbM3dbUserConfigArgs] = None,
         additional_disk_space: Optional[str] = None,
         maintenance_window_dow: Optional[str] = None,
         maintenance_window_time: Optional[str] = None,
         m3db: Optional[M3DbM3dbArgs] = None,
         disk_space: Optional[str] = None,
         project_vpc_id: Optional[str] = None,
         service_integrations: Optional[Sequence[M3DbServiceIntegrationArgs]] = None,
         cloud_name: Optional[str] = None,
         static_ips: Optional[Sequence[str]] = None,
         tags: Optional[Sequence[M3DbTagArgs]] = None,
         tech_emails: Optional[Sequence[M3DbTechEmailArgs]] = None,
         termination_protection: Optional[bool] = None)func NewM3Db(ctx *Context, name string, args M3DbArgs, opts ...ResourceOption) (*M3Db, error)public M3Db(string name, M3DbArgs args, CustomResourceOptions? opts = null)type: aiven:M3Db
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 M3DbArgs
- 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 M3DbArgs
- 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 M3DbArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args M3DbArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args M3DbArgs
- 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 m3dbResource = new Aiven.M3Db("m3dbResource", new()
{
    Plan = "string",
    ServiceName = "string",
    Project = "string",
    M3dbUserConfig = new Aiven.Inputs.M3DbM3dbUserConfigArgs
    {
        AdditionalBackupRegions = "string",
        CustomDomain = "string",
        IpFilterObjects = new[]
        {
            new Aiven.Inputs.M3DbM3dbUserConfigIpFilterObjectArgs
            {
                Network = "string",
                Description = "string",
            },
        },
        IpFilterStrings = new[]
        {
            "string",
        },
        Limits = new Aiven.Inputs.M3DbM3dbUserConfigLimitsArgs
        {
            MaxRecentlyQueriedSeriesBlocks = 0,
            MaxRecentlyQueriedSeriesDiskBytesRead = 0,
            MaxRecentlyQueriedSeriesLookback = "string",
            QueryDocs = 0,
            QueryRequireExhaustive = false,
            QuerySeries = 0,
        },
        M3 = new Aiven.Inputs.M3DbM3dbUserConfigM3Args
        {
            TagOptions = new Aiven.Inputs.M3DbM3dbUserConfigM3TagOptionsArgs
            {
                AllowTagNameDuplicates = false,
                AllowTagValueEmpty = false,
            },
        },
        M3Version = "string",
        M3coordinatorEnableGraphiteCarbonIngest = false,
        M3dbVersion = "string",
        Namespaces = new[]
        {
            new Aiven.Inputs.M3DbM3dbUserConfigNamespaceArgs
            {
                Name = "string",
                Type = "string",
                Options = new Aiven.Inputs.M3DbM3dbUserConfigNamespaceOptionsArgs
                {
                    RetentionOptions = new Aiven.Inputs.M3DbM3dbUserConfigNamespaceOptionsRetentionOptionsArgs
                    {
                        BlockDataExpiryDuration = "string",
                        BlocksizeDuration = "string",
                        BufferFutureDuration = "string",
                        BufferPastDuration = "string",
                        RetentionPeriodDuration = "string",
                    },
                    SnapshotEnabled = false,
                    WritesToCommitlog = false,
                },
                Resolution = "string",
            },
        },
        PrivateAccess = new Aiven.Inputs.M3DbM3dbUserConfigPrivateAccessArgs
        {
            M3coordinator = false,
        },
        ProjectToForkFrom = "string",
        PublicAccess = new Aiven.Inputs.M3DbM3dbUserConfigPublicAccessArgs
        {
            M3coordinator = false,
        },
        Rules = new Aiven.Inputs.M3DbM3dbUserConfigRulesArgs
        {
            Mappings = new[]
            {
                new Aiven.Inputs.M3DbM3dbUserConfigRulesMappingArgs
                {
                    Filter = "string",
                    Aggregations = new[]
                    {
                        "string",
                    },
                    Drop = false,
                    Name = "string",
                    NamespacesObjects = new[]
                    {
                        new Aiven.Inputs.M3DbM3dbUserConfigRulesMappingNamespacesObjectArgs
                        {
                            Resolution = "string",
                            Retention = "string",
                        },
                    },
                    NamespacesStrings = new[]
                    {
                        "string",
                    },
                    Tags = new[]
                    {
                        new Aiven.Inputs.M3DbM3dbUserConfigRulesMappingTagArgs
                        {
                            Name = "string",
                            Value = "string",
                        },
                    },
                },
            },
        },
        ServiceLog = false,
        ServiceToForkFrom = "string",
        StaticIps = false,
    },
    AdditionalDiskSpace = "string",
    MaintenanceWindowDow = "string",
    MaintenanceWindowTime = "string",
    M3db = new Aiven.Inputs.M3DbM3dbArgs
    {
        HttpClusterUri = "string",
        HttpNodeUri = "string",
        InfluxdbUri = "string",
        PrometheusRemoteReadUri = "string",
        PrometheusRemoteWriteUri = "string",
        Uris = new[]
        {
            "string",
        },
    },
    ProjectVpcId = "string",
    ServiceIntegrations = new[]
    {
        new Aiven.Inputs.M3DbServiceIntegrationArgs
        {
            IntegrationType = "string",
            SourceServiceName = "string",
        },
    },
    CloudName = "string",
    StaticIps = new[]
    {
        "string",
    },
    Tags = new[]
    {
        new Aiven.Inputs.M3DbTagArgs
        {
            Key = "string",
            Value = "string",
        },
    },
    TechEmails = new[]
    {
        new Aiven.Inputs.M3DbTechEmailArgs
        {
            Email = "string",
        },
    },
    TerminationProtection = false,
});
example, err := aiven.NewM3Db(ctx, "m3dbResource", &aiven.M3DbArgs{
	Plan:        pulumi.String("string"),
	ServiceName: pulumi.String("string"),
	Project:     pulumi.String("string"),
	M3dbUserConfig: &aiven.M3DbM3dbUserConfigArgs{
		AdditionalBackupRegions: pulumi.String("string"),
		CustomDomain:            pulumi.String("string"),
		IpFilterObjects: aiven.M3DbM3dbUserConfigIpFilterObjectArray{
			&aiven.M3DbM3dbUserConfigIpFilterObjectArgs{
				Network:     pulumi.String("string"),
				Description: pulumi.String("string"),
			},
		},
		IpFilterStrings: pulumi.StringArray{
			pulumi.String("string"),
		},
		Limits: &aiven.M3DbM3dbUserConfigLimitsArgs{
			MaxRecentlyQueriedSeriesBlocks:        pulumi.Int(0),
			MaxRecentlyQueriedSeriesDiskBytesRead: pulumi.Int(0),
			MaxRecentlyQueriedSeriesLookback:      pulumi.String("string"),
			QueryDocs:                             pulumi.Int(0),
			QueryRequireExhaustive:                pulumi.Bool(false),
			QuerySeries:                           pulumi.Int(0),
		},
		M3: &aiven.M3DbM3dbUserConfigM3Args{
			TagOptions: &aiven.M3DbM3dbUserConfigM3TagOptionsArgs{
				AllowTagNameDuplicates: pulumi.Bool(false),
				AllowTagValueEmpty:     pulumi.Bool(false),
			},
		},
		M3Version:                               pulumi.String("string"),
		M3coordinatorEnableGraphiteCarbonIngest: pulumi.Bool(false),
		M3dbVersion:                             pulumi.String("string"),
		Namespaces: aiven.M3DbM3dbUserConfigNamespaceArray{
			&aiven.M3DbM3dbUserConfigNamespaceArgs{
				Name: pulumi.String("string"),
				Type: pulumi.String("string"),
				Options: &aiven.M3DbM3dbUserConfigNamespaceOptionsArgs{
					RetentionOptions: &aiven.M3DbM3dbUserConfigNamespaceOptionsRetentionOptionsArgs{
						BlockDataExpiryDuration: pulumi.String("string"),
						BlocksizeDuration:       pulumi.String("string"),
						BufferFutureDuration:    pulumi.String("string"),
						BufferPastDuration:      pulumi.String("string"),
						RetentionPeriodDuration: pulumi.String("string"),
					},
					SnapshotEnabled:   pulumi.Bool(false),
					WritesToCommitlog: pulumi.Bool(false),
				},
				Resolution: pulumi.String("string"),
			},
		},
		PrivateAccess: &aiven.M3DbM3dbUserConfigPrivateAccessArgs{
			M3coordinator: pulumi.Bool(false),
		},
		ProjectToForkFrom: pulumi.String("string"),
		PublicAccess: &aiven.M3DbM3dbUserConfigPublicAccessArgs{
			M3coordinator: pulumi.Bool(false),
		},
		Rules: &aiven.M3DbM3dbUserConfigRulesArgs{
			Mappings: aiven.M3DbM3dbUserConfigRulesMappingArray{
				&aiven.M3DbM3dbUserConfigRulesMappingArgs{
					Filter: pulumi.String("string"),
					Aggregations: pulumi.StringArray{
						pulumi.String("string"),
					},
					Drop: pulumi.Bool(false),
					Name: pulumi.String("string"),
					NamespacesObjects: aiven.M3DbM3dbUserConfigRulesMappingNamespacesObjectArray{
						&aiven.M3DbM3dbUserConfigRulesMappingNamespacesObjectArgs{
							Resolution: pulumi.String("string"),
							Retention:  pulumi.String("string"),
						},
					},
					NamespacesStrings: pulumi.StringArray{
						pulumi.String("string"),
					},
					Tags: aiven.M3DbM3dbUserConfigRulesMappingTagArray{
						&aiven.M3DbM3dbUserConfigRulesMappingTagArgs{
							Name:  pulumi.String("string"),
							Value: pulumi.String("string"),
						},
					},
				},
			},
		},
		ServiceLog:        pulumi.Bool(false),
		ServiceToForkFrom: pulumi.String("string"),
		StaticIps:         pulumi.Bool(false),
	},
	AdditionalDiskSpace:   pulumi.String("string"),
	MaintenanceWindowDow:  pulumi.String("string"),
	MaintenanceWindowTime: pulumi.String("string"),
	M3db: &aiven.M3DbM3dbArgs{
		HttpClusterUri:           pulumi.String("string"),
		HttpNodeUri:              pulumi.String("string"),
		InfluxdbUri:              pulumi.String("string"),
		PrometheusRemoteReadUri:  pulumi.String("string"),
		PrometheusRemoteWriteUri: pulumi.String("string"),
		Uris: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	ProjectVpcId: pulumi.String("string"),
	ServiceIntegrations: aiven.M3DbServiceIntegrationArray{
		&aiven.M3DbServiceIntegrationArgs{
			IntegrationType:   pulumi.String("string"),
			SourceServiceName: pulumi.String("string"),
		},
	},
	CloudName: pulumi.String("string"),
	StaticIps: pulumi.StringArray{
		pulumi.String("string"),
	},
	Tags: aiven.M3DbTagArray{
		&aiven.M3DbTagArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
	TechEmails: aiven.M3DbTechEmailArray{
		&aiven.M3DbTechEmailArgs{
			Email: pulumi.String("string"),
		},
	},
	TerminationProtection: pulumi.Bool(false),
})
var m3dbResource = new M3Db("m3dbResource", M3DbArgs.builder()
    .plan("string")
    .serviceName("string")
    .project("string")
    .m3dbUserConfig(M3DbM3dbUserConfigArgs.builder()
        .additionalBackupRegions("string")
        .customDomain("string")
        .ipFilterObjects(M3DbM3dbUserConfigIpFilterObjectArgs.builder()
            .network("string")
            .description("string")
            .build())
        .ipFilterStrings("string")
        .limits(M3DbM3dbUserConfigLimitsArgs.builder()
            .maxRecentlyQueriedSeriesBlocks(0)
            .maxRecentlyQueriedSeriesDiskBytesRead(0)
            .maxRecentlyQueriedSeriesLookback("string")
            .queryDocs(0)
            .queryRequireExhaustive(false)
            .querySeries(0)
            .build())
        .m3(M3DbM3dbUserConfigM3Args.builder()
            .tagOptions(M3DbM3dbUserConfigM3TagOptionsArgs.builder()
                .allowTagNameDuplicates(false)
                .allowTagValueEmpty(false)
                .build())
            .build())
        .m3Version("string")
        .m3coordinatorEnableGraphiteCarbonIngest(false)
        .m3dbVersion("string")
        .namespaces(M3DbM3dbUserConfigNamespaceArgs.builder()
            .name("string")
            .type("string")
            .options(M3DbM3dbUserConfigNamespaceOptionsArgs.builder()
                .retentionOptions(M3DbM3dbUserConfigNamespaceOptionsRetentionOptionsArgs.builder()
                    .blockDataExpiryDuration("string")
                    .blocksizeDuration("string")
                    .bufferFutureDuration("string")
                    .bufferPastDuration("string")
                    .retentionPeriodDuration("string")
                    .build())
                .snapshotEnabled(false)
                .writesToCommitlog(false)
                .build())
            .resolution("string")
            .build())
        .privateAccess(M3DbM3dbUserConfigPrivateAccessArgs.builder()
            .m3coordinator(false)
            .build())
        .projectToForkFrom("string")
        .publicAccess(M3DbM3dbUserConfigPublicAccessArgs.builder()
            .m3coordinator(false)
            .build())
        .rules(M3DbM3dbUserConfigRulesArgs.builder()
            .mappings(M3DbM3dbUserConfigRulesMappingArgs.builder()
                .filter("string")
                .aggregations("string")
                .drop(false)
                .name("string")
                .namespacesObjects(M3DbM3dbUserConfigRulesMappingNamespacesObjectArgs.builder()
                    .resolution("string")
                    .retention("string")
                    .build())
                .namespacesStrings("string")
                .tags(M3DbM3dbUserConfigRulesMappingTagArgs.builder()
                    .name("string")
                    .value("string")
                    .build())
                .build())
            .build())
        .serviceLog(false)
        .serviceToForkFrom("string")
        .staticIps(false)
        .build())
    .additionalDiskSpace("string")
    .maintenanceWindowDow("string")
    .maintenanceWindowTime("string")
    .m3db(M3DbM3dbArgs.builder()
        .httpClusterUri("string")
        .httpNodeUri("string")
        .influxdbUri("string")
        .prometheusRemoteReadUri("string")
        .prometheusRemoteWriteUri("string")
        .uris("string")
        .build())
    .projectVpcId("string")
    .serviceIntegrations(M3DbServiceIntegrationArgs.builder()
        .integrationType("string")
        .sourceServiceName("string")
        .build())
    .cloudName("string")
    .staticIps("string")
    .tags(M3DbTagArgs.builder()
        .key("string")
        .value("string")
        .build())
    .techEmails(M3DbTechEmailArgs.builder()
        .email("string")
        .build())
    .terminationProtection(false)
    .build());
m3db_resource = aiven.M3Db("m3dbResource",
    plan="string",
    service_name="string",
    project="string",
    m3db_user_config={
        "additional_backup_regions": "string",
        "custom_domain": "string",
        "ip_filter_objects": [{
            "network": "string",
            "description": "string",
        }],
        "ip_filter_strings": ["string"],
        "limits": {
            "max_recently_queried_series_blocks": 0,
            "max_recently_queried_series_disk_bytes_read": 0,
            "max_recently_queried_series_lookback": "string",
            "query_docs": 0,
            "query_require_exhaustive": False,
            "query_series": 0,
        },
        "m3": {
            "tag_options": {
                "allow_tag_name_duplicates": False,
                "allow_tag_value_empty": False,
            },
        },
        "m3_version": "string",
        "m3coordinator_enable_graphite_carbon_ingest": False,
        "m3db_version": "string",
        "namespaces": [{
            "name": "string",
            "type": "string",
            "options": {
                "retention_options": {
                    "block_data_expiry_duration": "string",
                    "blocksize_duration": "string",
                    "buffer_future_duration": "string",
                    "buffer_past_duration": "string",
                    "retention_period_duration": "string",
                },
                "snapshot_enabled": False,
                "writes_to_commitlog": False,
            },
            "resolution": "string",
        }],
        "private_access": {
            "m3coordinator": False,
        },
        "project_to_fork_from": "string",
        "public_access": {
            "m3coordinator": False,
        },
        "rules": {
            "mappings": [{
                "filter": "string",
                "aggregations": ["string"],
                "drop": False,
                "name": "string",
                "namespaces_objects": [{
                    "resolution": "string",
                    "retention": "string",
                }],
                "namespaces_strings": ["string"],
                "tags": [{
                    "name": "string",
                    "value": "string",
                }],
            }],
        },
        "service_log": False,
        "service_to_fork_from": "string",
        "static_ips": False,
    },
    additional_disk_space="string",
    maintenance_window_dow="string",
    maintenance_window_time="string",
    m3db={
        "http_cluster_uri": "string",
        "http_node_uri": "string",
        "influxdb_uri": "string",
        "prometheus_remote_read_uri": "string",
        "prometheus_remote_write_uri": "string",
        "uris": ["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",
    }],
    tech_emails=[{
        "email": "string",
    }],
    termination_protection=False)
const m3dbResource = new aiven.M3Db("m3dbResource", {
    plan: "string",
    serviceName: "string",
    project: "string",
    m3dbUserConfig: {
        additionalBackupRegions: "string",
        customDomain: "string",
        ipFilterObjects: [{
            network: "string",
            description: "string",
        }],
        ipFilterStrings: ["string"],
        limits: {
            maxRecentlyQueriedSeriesBlocks: 0,
            maxRecentlyQueriedSeriesDiskBytesRead: 0,
            maxRecentlyQueriedSeriesLookback: "string",
            queryDocs: 0,
            queryRequireExhaustive: false,
            querySeries: 0,
        },
        m3: {
            tagOptions: {
                allowTagNameDuplicates: false,
                allowTagValueEmpty: false,
            },
        },
        m3Version: "string",
        m3coordinatorEnableGraphiteCarbonIngest: false,
        m3dbVersion: "string",
        namespaces: [{
            name: "string",
            type: "string",
            options: {
                retentionOptions: {
                    blockDataExpiryDuration: "string",
                    blocksizeDuration: "string",
                    bufferFutureDuration: "string",
                    bufferPastDuration: "string",
                    retentionPeriodDuration: "string",
                },
                snapshotEnabled: false,
                writesToCommitlog: false,
            },
            resolution: "string",
        }],
        privateAccess: {
            m3coordinator: false,
        },
        projectToForkFrom: "string",
        publicAccess: {
            m3coordinator: false,
        },
        rules: {
            mappings: [{
                filter: "string",
                aggregations: ["string"],
                drop: false,
                name: "string",
                namespacesObjects: [{
                    resolution: "string",
                    retention: "string",
                }],
                namespacesStrings: ["string"],
                tags: [{
                    name: "string",
                    value: "string",
                }],
            }],
        },
        serviceLog: false,
        serviceToForkFrom: "string",
        staticIps: false,
    },
    additionalDiskSpace: "string",
    maintenanceWindowDow: "string",
    maintenanceWindowTime: "string",
    m3db: {
        httpClusterUri: "string",
        httpNodeUri: "string",
        influxdbUri: "string",
        prometheusRemoteReadUri: "string",
        prometheusRemoteWriteUri: "string",
        uris: ["string"],
    },
    projectVpcId: "string",
    serviceIntegrations: [{
        integrationType: "string",
        sourceServiceName: "string",
    }],
    cloudName: "string",
    staticIps: ["string"],
    tags: [{
        key: "string",
        value: "string",
    }],
    techEmails: [{
        email: "string",
    }],
    terminationProtection: false,
});
type: aiven:M3Db
properties:
    additionalDiskSpace: string
    cloudName: string
    m3db:
        httpClusterUri: string
        httpNodeUri: string
        influxdbUri: string
        prometheusRemoteReadUri: string
        prometheusRemoteWriteUri: string
        uris:
            - string
    m3dbUserConfig:
        additionalBackupRegions: string
        customDomain: string
        ipFilterObjects:
            - description: string
              network: string
        ipFilterStrings:
            - string
        limits:
            maxRecentlyQueriedSeriesBlocks: 0
            maxRecentlyQueriedSeriesDiskBytesRead: 0
            maxRecentlyQueriedSeriesLookback: string
            queryDocs: 0
            queryRequireExhaustive: false
            querySeries: 0
        m3:
            tagOptions:
                allowTagNameDuplicates: false
                allowTagValueEmpty: false
        m3Version: string
        m3coordinatorEnableGraphiteCarbonIngest: false
        m3dbVersion: string
        namespaces:
            - name: string
              options:
                retentionOptions:
                    blockDataExpiryDuration: string
                    blocksizeDuration: string
                    bufferFutureDuration: string
                    bufferPastDuration: string
                    retentionPeriodDuration: string
                snapshotEnabled: false
                writesToCommitlog: false
              resolution: string
              type: string
        privateAccess:
            m3coordinator: false
        projectToForkFrom: string
        publicAccess:
            m3coordinator: false
        rules:
            mappings:
                - aggregations:
                    - string
                  drop: false
                  filter: string
                  name: string
                  namespacesObjects:
                    - resolution: string
                      retention: string
                  namespacesStrings:
                    - string
                  tags:
                    - name: string
                      value: string
        serviceLog: false
        serviceToForkFrom: string
        staticIps: false
    maintenanceWindowDow: string
    maintenanceWindowTime: string
    plan: string
    project: string
    projectVpcId: string
    serviceIntegrations:
        - integrationType: string
          sourceServiceName: string
    serviceName: string
    staticIps:
        - string
    tags:
        - key: string
          value: string
    techEmails:
        - email: string
    terminationProtection: false
M3Db 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 M3Db resource accepts the following input properties:
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property 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.
- AdditionalDisk stringSpace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- CloudName string
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- 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.
- M3db
M3DbM3db 
- Values provided by the M3DB server.
- M3dbUser M3DbConfig M3db User Config 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- MaintenanceWindow stringDow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- MaintenanceWindow stringTime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- ProjectVpc stringId 
- 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<M3DbService Integration> 
- 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
- 
List<M3DbTag> 
- Tags are key-value pairs that allow you to categorize services.
- TechEmails List<M3DbTech Email> 
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- TerminationProtection bool
- Prevents the service from being deleted. It is recommended to set this to truefor 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.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property 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.
- AdditionalDisk stringSpace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- CloudName string
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- 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.
- M3db
M3DbM3db Args 
- Values provided by the M3DB server.
- M3dbUser M3DbConfig M3db User Config Args 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- MaintenanceWindow stringDow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- MaintenanceWindow stringTime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- ProjectVpc stringId 
- 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 []M3DbService Integration Args 
- 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
- 
[]M3DbTag Args 
- Tags are key-value pairs that allow you to categorize services.
- TechEmails []M3DbTech Email Args 
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- TerminationProtection bool
- Prevents the service from being deleted. It is recommended to set this to truefor 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.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property 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.
- additionalDisk StringSpace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- cloudName String
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- 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.
- m3db
M3DbM3db 
- Values provided by the M3DB server.
- m3dbUser M3DbConfig M3db User Config 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- maintenanceWindow StringDow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenanceWindow StringTime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- projectVpc StringId 
- 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<M3DbService Integration> 
- 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
- 
List<M3DbTag> 
- Tags are key-value pairs that allow you to categorize services.
- techEmails List<M3DbTech Email> 
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- terminationProtection Boolean
- Prevents the service from being deleted. It is recommended to set this to truefor 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.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property 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.
- additionalDisk stringSpace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- cloudName string
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- 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.
- m3db
M3DbM3db 
- Values provided by the M3DB server.
- m3dbUser M3DbConfig M3db User Config 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- maintenanceWindow stringDow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenanceWindow stringTime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- projectVpc stringId 
- 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 M3DbService Integration[] 
- 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
- 
M3DbTag[] 
- Tags are key-value pairs that allow you to categorize services.
- techEmails M3DbTech Email[] 
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- terminationProtection boolean
- Prevents the service from being deleted. It is recommended to set this to truefor 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.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- project str
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property 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_ strspace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- cloud_name str
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- 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.
- m3db
M3DbM3db Args 
- Values provided by the M3DB server.
- m3db_user_ M3Dbconfig M3db User Config Args 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- maintenance_window_ strdow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance_window_ strtime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- project_vpc_ strid 
- 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[M3DbService Integration Args] 
- 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
- 
Sequence[M3DbTag Args] 
- Tags are key-value pairs that allow you to categorize services.
- tech_emails Sequence[M3DbTech Email Args] 
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- termination_protection bool
- Prevents the service from being deleted. It is recommended to set this to truefor 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.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property 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.
- additionalDisk StringSpace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- cloudName String
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- 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.
- m3db Property Map
- Values provided by the M3DB server.
- m3dbUser Property MapConfig 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- maintenanceWindow StringDow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenanceWindow StringTime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- projectVpc StringId 
- 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
- List<Property Map>
- Tags are key-value pairs that allow you to categorize services.
- techEmails List<Property Map>
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- terminationProtection Boolean
- Prevents the service from being deleted. It is recommended to set this to truefor 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 M3Db resource produces the following output properties:
- Components
List<M3DbComponent> 
- Service component information objects
- DiskSpace stringCap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- DiskSpace stringDefault 
- 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
- DiskSpace stringStep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- DiskSpace stringUsed 
- Disk space that service is currently using
- Id string
- The provider-assigned unique ID for this managed resource.
- 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
- Components
[]M3DbComponent 
- Service component information objects
- DiskSpace stringCap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- DiskSpace stringDefault 
- 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
- DiskSpace stringStep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- DiskSpace stringUsed 
- Disk space that service is currently using
- Id string
- The provider-assigned unique ID for this managed resource.
- 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
- components
List<M3DbComponent> 
- Service component information objects
- diskSpace StringCap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- diskSpace StringDefault 
- 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
- diskSpace StringStep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- diskSpace StringUsed 
- Disk space that service is currently using
- id String
- The provider-assigned unique ID for this managed resource.
- 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
- components
M3DbComponent[] 
- Service component information objects
- diskSpace stringCap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- diskSpace stringDefault 
- 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
- diskSpace stringStep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- diskSpace stringUsed 
- Disk space that service is currently using
- id string
- The provider-assigned unique ID for this managed resource.
- 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
- components
Sequence[M3DbComponent] 
- Service component information objects
- disk_space_ strcap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk_space_ strdefault 
- 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_ strstep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- disk_space_ strused 
- Disk space that service is currently using
- id str
- The provider-assigned unique ID for this managed resource.
- 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
- components List<Property Map>
- Service component information objects
- diskSpace StringCap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- diskSpace StringDefault 
- 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
- diskSpace StringStep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- diskSpace StringUsed 
- Disk space that service is currently using
- id String
- The provider-assigned unique ID for this managed resource.
- 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
Look up Existing M3Db Resource
Get an existing M3Db 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?: M3DbState, opts?: CustomResourceOptions): M3Db@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[M3DbComponentArgs]] = 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,
        m3db: Optional[M3DbM3dbArgs] = None,
        m3db_user_config: Optional[M3DbM3dbUserConfigArgs] = None,
        maintenance_window_dow: Optional[str] = None,
        maintenance_window_time: Optional[str] = None,
        plan: Optional[str] = None,
        project: Optional[str] = None,
        project_vpc_id: Optional[str] = None,
        service_host: Optional[str] = None,
        service_integrations: Optional[Sequence[M3DbServiceIntegrationArgs]] = 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[M3DbTagArgs]] = None,
        tech_emails: Optional[Sequence[M3DbTechEmailArgs]] = None,
        termination_protection: Optional[bool] = None) -> M3Dbfunc GetM3Db(ctx *Context, name string, id IDInput, state *M3DbState, opts ...ResourceOption) (*M3Db, error)public static M3Db Get(string name, Input<string> id, M3DbState? state, CustomResourceOptions? opts = null)public static M3Db get(String name, Output<String> id, M3DbState state, CustomResourceOptions options)resources:  _:    type: aiven:M3Db    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.
- AdditionalDisk stringSpace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- CloudName string
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- Components
List<M3DbComponent> 
- 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.
- DiskSpace stringCap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- DiskSpace stringDefault 
- 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
- DiskSpace stringStep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- DiskSpace stringUsed 
- Disk space that service is currently using
- M3db
M3DbM3db 
- Values provided by the M3DB server.
- M3dbUser M3DbConfig M3db User Config 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- MaintenanceWindow stringDow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- MaintenanceWindow stringTime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- ProjectVpc stringId 
- 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<M3DbService Integration> 
- 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
- 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
- 
List<M3DbTag> 
- Tags are key-value pairs that allow you to categorize services.
- TechEmails List<M3DbTech Email> 
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- TerminationProtection bool
- Prevents the service from being deleted. It is recommended to set this to truefor 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.
- AdditionalDisk stringSpace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- CloudName string
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- Components
[]M3DbComponent Args 
- 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.
- DiskSpace stringCap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- DiskSpace stringDefault 
- 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
- DiskSpace stringStep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- DiskSpace stringUsed 
- Disk space that service is currently using
- M3db
M3DbM3db Args 
- Values provided by the M3DB server.
- M3dbUser M3DbConfig M3db User Config Args 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- MaintenanceWindow stringDow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- MaintenanceWindow stringTime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- ProjectVpc stringId 
- 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 []M3DbService Integration Args 
- 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
- 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
- 
[]M3DbTag Args 
- Tags are key-value pairs that allow you to categorize services.
- TechEmails []M3DbTech Email Args 
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- TerminationProtection bool
- Prevents the service from being deleted. It is recommended to set this to truefor 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.
- additionalDisk StringSpace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- cloudName String
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- components
List<M3DbComponent> 
- 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.
- diskSpace StringCap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- diskSpace StringDefault 
- 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
- diskSpace StringStep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- diskSpace StringUsed 
- Disk space that service is currently using
- m3db
M3DbM3db 
- Values provided by the M3DB server.
- m3dbUser M3DbConfig M3db User Config 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- maintenanceWindow StringDow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenanceWindow StringTime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- projectVpc StringId 
- 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<M3DbService Integration> 
- 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
- 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
- 
List<M3DbTag> 
- Tags are key-value pairs that allow you to categorize services.
- techEmails List<M3DbTech Email> 
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- terminationProtection Boolean
- Prevents the service from being deleted. It is recommended to set this to truefor 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.
- additionalDisk stringSpace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- cloudName string
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- components
M3DbComponent[] 
- 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.
- diskSpace stringCap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- diskSpace stringDefault 
- 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
- diskSpace stringStep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- diskSpace stringUsed 
- Disk space that service is currently using
- m3db
M3DbM3db 
- Values provided by the M3DB server.
- m3dbUser M3DbConfig M3db User Config 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- maintenanceWindow stringDow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenanceWindow stringTime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- projectVpc stringId 
- 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 M3DbService Integration[] 
- 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
- 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
- 
M3DbTag[] 
- Tags are key-value pairs that allow you to categorize services.
- techEmails M3DbTech Email[] 
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- terminationProtection boolean
- Prevents the service from being deleted. It is recommended to set this to truefor 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_ strspace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- cloud_name str
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- components
Sequence[M3DbComponent Args] 
- 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_ strcap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk_space_ strdefault 
- 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_ strstep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- disk_space_ strused 
- Disk space that service is currently using
- m3db
M3DbM3db Args 
- Values provided by the M3DB server.
- m3db_user_ M3Dbconfig M3db User Config Args 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- maintenance_window_ strdow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance_window_ strtime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- project str
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- project_vpc_ strid 
- 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[M3DbService Integration Args] 
- 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
- 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
- 
Sequence[M3DbTag Args] 
- Tags are key-value pairs that allow you to categorize services.
- tech_emails Sequence[M3DbTech Email Args] 
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- termination_protection bool
- Prevents the service from being deleted. It is recommended to set this to truefor 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.
- additionalDisk StringSpace 
- Add disk storage in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
- cloudName String
- The cloud provider and region the service is hosted in. The format is provider-region, for example:google-europe-west1. The available cloud regions can differ per project and service. Changing this value migrates the service to another cloud provider or region. The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
- 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.
- diskSpace StringCap 
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- diskSpace StringDefault 
- 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
- diskSpace StringStep 
- The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. disk_spaceneeds to increment fromdisk_space_defaultby increments of this size.
- diskSpace StringUsed 
- Disk space that service is currently using
- m3db Property Map
- Values provided by the M3DB server.
- m3dbUser Property MapConfig 
- M3db user configurable settings. Warning: There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
- maintenanceWindow StringDow 
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenanceWindow StringTime 
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-xandpremium-xwherexis (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 seen from the Aiven pricing page.
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- projectVpc StringId 
- 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
- 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
- List<Property Map>
- Tags are key-value pairs that allow you to categorize services.
- techEmails List<Property Map>
- The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- terminationProtection Boolean
- Prevents the service from being deleted. It is recommended to set this to truefor 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
M3DbComponent, M3DbComponentArgs    
- Component string
- Service component name
- ConnectionUri string
- Connection info for connecting to the service component. This is a combination of host and port.
- Host string
- Host name for connecting to the service component
- KafkaAuthentication stringMethod 
- Kafka authentication method. This is a value specific to the 'kafka' service component
- KafkaSsl stringCa 
- Kafka certificate used. The possible values are letsencryptandproject_ca.
- Port int
- Port number for connecting to the service component
- Route string
- Network access route
- Ssl bool
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- Usage string
- DNS usage name
- Component string
- Service component name
- ConnectionUri string
- Connection info for connecting to the service component. This is a combination of host and port.
- Host string
- Host name for connecting to the service component
- KafkaAuthentication stringMethod 
- Kafka authentication method. This is a value specific to the 'kafka' service component
- KafkaSsl stringCa 
- Kafka certificate used. The possible values are letsencryptandproject_ca.
- Port int
- Port number for connecting to the service component
- Route string
- Network access route
- Ssl bool
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- Usage string
- DNS usage name
- component String
- Service component name
- connectionUri String
- Connection info for connecting to the service component. This is a combination of host and port.
- host String
- Host name for connecting to the service component
- kafkaAuthentication StringMethod 
- Kafka authentication method. This is a value specific to the 'kafka' service component
- kafkaSsl StringCa 
- Kafka certificate used. The possible values are letsencryptandproject_ca.
- port Integer
- Port number for connecting to the service component
- route String
- Network access route
- ssl Boolean
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- usage String
- DNS usage name
- component string
- Service component name
- connectionUri string
- Connection info for connecting to the service component. This is a combination of host and port.
- host string
- Host name for connecting to the service component
- kafkaAuthentication stringMethod 
- Kafka authentication method. This is a value specific to the 'kafka' service component
- kafkaSsl stringCa 
- Kafka certificate used. The possible values are letsencryptandproject_ca.
- port number
- Port number for connecting to the service component
- route string
- Network access route
- ssl boolean
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- usage string
- DNS usage name
- component str
- Service component name
- connection_uri str
- Connection info for connecting to the service component. This is a combination of host and port.
- host str
- Host name for connecting to the service component
- kafka_authentication_ strmethod 
- Kafka authentication method. This is a value specific to the 'kafka' service component
- kafka_ssl_ strca 
- Kafka certificate used. The possible values are letsencryptandproject_ca.
- port int
- Port number for connecting to the service component
- route str
- Network access route
- ssl bool
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- usage str
- DNS usage name
- component String
- Service component name
- connectionUri String
- Connection info for connecting to the service component. This is a combination of host and port.
- host String
- Host name for connecting to the service component
- kafkaAuthentication StringMethod 
- Kafka authentication method. This is a value specific to the 'kafka' service component
- kafkaSsl StringCa 
- Kafka certificate used. The possible values are letsencryptandproject_ca.
- port Number
- Port number for connecting to the service component
- route String
- Network access route
- ssl Boolean
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- usage String
- DNS usage name
M3DbM3db, M3DbM3dbArgs    
- HttpCluster stringUri 
- M3DB cluster URI.
- HttpNode stringUri 
- M3DB node URI.
- InfluxdbUri string
- InfluxDB URI.
- PrometheusRemote stringRead Uri 
- Prometheus remote read URI.
- PrometheusRemote stringWrite Uri 
- Prometheus remote write URI.
- Uris List<string>
- M3DB server URIs.
- HttpCluster stringUri 
- M3DB cluster URI.
- HttpNode stringUri 
- M3DB node URI.
- InfluxdbUri string
- InfluxDB URI.
- PrometheusRemote stringRead Uri 
- Prometheus remote read URI.
- PrometheusRemote stringWrite Uri 
- Prometheus remote write URI.
- Uris []string
- M3DB server URIs.
- httpCluster StringUri 
- M3DB cluster URI.
- httpNode StringUri 
- M3DB node URI.
- influxdbUri String
- InfluxDB URI.
- prometheusRemote StringRead Uri 
- Prometheus remote read URI.
- prometheusRemote StringWrite Uri 
- Prometheus remote write URI.
- uris List<String>
- M3DB server URIs.
- httpCluster stringUri 
- M3DB cluster URI.
- httpNode stringUri 
- M3DB node URI.
- influxdbUri string
- InfluxDB URI.
- prometheusRemote stringRead Uri 
- Prometheus remote read URI.
- prometheusRemote stringWrite Uri 
- Prometheus remote write URI.
- uris string[]
- M3DB server URIs.
- http_cluster_ struri 
- M3DB cluster URI.
- http_node_ struri 
- M3DB node URI.
- influxdb_uri str
- InfluxDB URI.
- prometheus_remote_ strread_ uri 
- Prometheus remote read URI.
- prometheus_remote_ strwrite_ uri 
- Prometheus remote write URI.
- uris Sequence[str]
- M3DB server URIs.
- httpCluster StringUri 
- M3DB cluster URI.
- httpNode StringUri 
- M3DB node URI.
- influxdbUri String
- InfluxDB URI.
- prometheusRemote StringRead Uri 
- Prometheus remote read URI.
- prometheusRemote StringWrite Uri 
- Prometheus remote write URI.
- uris List<String>
- M3DB server URIs.
M3DbM3dbUserConfig, M3DbM3dbUserConfigArgs        
- AdditionalBackup stringRegions 
- Additional Cloud Regions for Backup Replication.
- CustomDomain string
- Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: grafana.example.org.
- IpFilter List<M3DbObjects M3db User Config Ip Filter Object> 
- Allow incoming connections from CIDR address block, e.g. 10.20.0.0/16
- IpFilter List<string>Strings 
- 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.
- Limits
M3DbM3db User Config Limits 
- M3 limits
- M3
M3DbM3db User Config M3 
- M3 specific configuration options
- M3Version string
- Enum: 1.1,1.2,1.5, and newer. M3 major version (deprecated, use m3db_version).
- M3coordinatorEnable boolGraphite Carbon Ingest 
- Enables access to Graphite Carbon plaintext metrics ingestion. It can be enabled only for services inside VPCs. The metrics are written to aggregated namespaces only.
- M3dbVersion string
- Enum: 1.1,1.2,1.5, and newer. M3 major version (the minimum compatible version).
- Namespaces
List<M3DbM3db User Config Namespace> 
- List of M3 namespaces
- PrivateAccess M3DbM3db User Config Private Access 
- Allow access to selected service ports from private networks
- ProjectTo stringFork From 
- Name of another project to fork a service from. This has effect only when a new service is being created. Example: anotherprojectname.
- PublicAccess M3DbM3db User Config Public Access 
- Allow access to selected service ports from the public Internet
- Rules
M3DbM3db User Config Rules 
- M3 rules
- ServiceLog bool
- Store logs for the service so that they are available in the HTTP API and console.
- ServiceTo stringFork From 
- Name of another service to fork from. This has effect only when a new service is being created. Example: anotherservicename.
- StaticIps bool
- Use static public IP addresses.
- AdditionalBackup stringRegions 
- Additional Cloud Regions for Backup Replication.
- CustomDomain string
- Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: grafana.example.org.
- IpFilter []M3DbObjects M3db User Config Ip Filter Object 
- Allow incoming connections from CIDR address block, e.g. 10.20.0.0/16
- IpFilter []stringStrings 
- 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.
- Limits
M3DbM3db User Config Limits 
- M3 limits
- M3
M3DbM3db User Config M3 
- M3 specific configuration options
- M3Version string
- Enum: 1.1,1.2,1.5, and newer. M3 major version (deprecated, use m3db_version).
- M3coordinatorEnable boolGraphite Carbon Ingest 
- Enables access to Graphite Carbon plaintext metrics ingestion. It can be enabled only for services inside VPCs. The metrics are written to aggregated namespaces only.
- M3dbVersion string
- Enum: 1.1,1.2,1.5, and newer. M3 major version (the minimum compatible version).
- Namespaces
[]M3DbM3db User Config Namespace 
- List of M3 namespaces
- PrivateAccess M3DbM3db User Config Private Access 
- Allow access to selected service ports from private networks
- ProjectTo stringFork From 
- Name of another project to fork a service from. This has effect only when a new service is being created. Example: anotherprojectname.
- PublicAccess M3DbM3db User Config Public Access 
- Allow access to selected service ports from the public Internet
- Rules
M3DbM3db User Config Rules 
- M3 rules
- ServiceLog bool
- Store logs for the service so that they are available in the HTTP API and console.
- ServiceTo stringFork From 
- Name of another service to fork from. This has effect only when a new service is being created. Example: anotherservicename.
- StaticIps bool
- Use static public IP addresses.
- additionalBackup StringRegions 
- Additional Cloud Regions for Backup Replication.
- customDomain String
- Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: grafana.example.org.
- ipFilter List<M3DbObjects M3db User Config Ip Filter Object> 
- Allow incoming connections from CIDR address block, e.g. 10.20.0.0/16
- ipFilter List<String>Strings 
- 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.
- limits
M3DbM3db User Config Limits 
- M3 limits
- m3
M3DbM3db User Config M3 
- M3 specific configuration options
- m3Version String
- Enum: 1.1,1.2,1.5, and newer. M3 major version (deprecated, use m3db_version).
- m3coordinatorEnable BooleanGraphite Carbon Ingest 
- Enables access to Graphite Carbon plaintext metrics ingestion. It can be enabled only for services inside VPCs. The metrics are written to aggregated namespaces only.
- m3dbVersion String
- Enum: 1.1,1.2,1.5, and newer. M3 major version (the minimum compatible version).
- namespaces
List<M3DbM3db User Config Namespace> 
- List of M3 namespaces
- privateAccess M3DbM3db User Config Private Access 
- Allow access to selected service ports from private networks
- projectTo StringFork From 
- Name of another project to fork a service from. This has effect only when a new service is being created. Example: anotherprojectname.
- publicAccess M3DbM3db User Config Public Access 
- Allow access to selected service ports from the public Internet
- rules
M3DbM3db User Config Rules 
- M3 rules
- serviceLog Boolean
- Store logs for the service so that they are available in the HTTP API and console.
- serviceTo StringFork From 
- Name of another service to fork from. This has effect only when a new service is being created. Example: anotherservicename.
- staticIps Boolean
- Use static public IP addresses.
- additionalBackup stringRegions 
- Additional Cloud Regions for Backup Replication.
- customDomain string
- Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: grafana.example.org.
- ipFilter M3DbObjects M3db User Config Ip Filter Object[] 
- Allow incoming connections from CIDR address block, e.g. 10.20.0.0/16
- ipFilter string[]Strings 
- 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.
- limits
M3DbM3db User Config Limits 
- M3 limits
- m3
M3DbM3db User Config M3 
- M3 specific configuration options
- m3Version string
- Enum: 1.1,1.2,1.5, and newer. M3 major version (deprecated, use m3db_version).
- m3coordinatorEnable booleanGraphite Carbon Ingest 
- Enables access to Graphite Carbon plaintext metrics ingestion. It can be enabled only for services inside VPCs. The metrics are written to aggregated namespaces only.
- m3dbVersion string
- Enum: 1.1,1.2,1.5, and newer. M3 major version (the minimum compatible version).
- namespaces
M3DbM3db User Config Namespace[] 
- List of M3 namespaces
- privateAccess M3DbM3db User Config Private Access 
- Allow access to selected service ports from private networks
- projectTo stringFork From 
- Name of another project to fork a service from. This has effect only when a new service is being created. Example: anotherprojectname.
- publicAccess M3DbM3db User Config Public Access 
- Allow access to selected service ports from the public Internet
- rules
M3DbM3db User Config Rules 
- M3 rules
- serviceLog boolean
- Store logs for the service so that they are available in the HTTP API and console.
- serviceTo stringFork From 
- Name of another service to fork from. This has effect only when a new service is being created. Example: anotherservicename.
- staticIps boolean
- Use static public IP addresses.
- additional_backup_ strregions 
- Additional Cloud Regions for Backup Replication.
- custom_domain str
- Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: grafana.example.org.
- ip_filter_ Sequence[M3Dbobjects M3db User Config Ip Filter Object] 
- Allow incoming connections from CIDR address block, e.g. 10.20.0.0/16
- ip_filter_ Sequence[str]strings 
- 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.
- limits
M3DbM3db User Config Limits 
- M3 limits
- m3
M3DbM3db User Config M3 
- M3 specific configuration options
- m3_version str
- Enum: 1.1,1.2,1.5, and newer. M3 major version (deprecated, use m3db_version).
- m3coordinator_enable_ boolgraphite_ carbon_ ingest 
- Enables access to Graphite Carbon plaintext metrics ingestion. It can be enabled only for services inside VPCs. The metrics are written to aggregated namespaces only.
- m3db_version str
- Enum: 1.1,1.2,1.5, and newer. M3 major version (the minimum compatible version).
- namespaces
Sequence[M3DbM3db User Config Namespace] 
- List of M3 namespaces
- private_access M3DbM3db User Config Private Access 
- Allow access to selected service ports from private networks
- project_to_ strfork_ from 
- Name of another project to fork a service from. This has effect only when a new service is being created. Example: anotherprojectname.
- public_access M3DbM3db User Config Public Access 
- Allow access to selected service ports from the public Internet
- rules
M3DbM3db User Config Rules 
- M3 rules
- service_log bool
- Store logs for the service so that they are available in the HTTP API and console.
- service_to_ strfork_ from 
- Name of another service to fork from. This has effect only when a new service is being created. Example: anotherservicename.
- static_ips bool
- Use static public IP addresses.
- additionalBackup StringRegions 
- Additional Cloud Regions for Backup Replication.
- customDomain String
- Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: grafana.example.org.
- ipFilter List<Property Map>Objects 
- Allow incoming connections from CIDR address block, e.g. 10.20.0.0/16
- ipFilter List<String>Strings 
- 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.
- limits Property Map
- M3 limits
- m3 Property Map
- M3 specific configuration options
- m3Version String
- Enum: 1.1,1.2,1.5, and newer. M3 major version (deprecated, use m3db_version).
- m3coordinatorEnable BooleanGraphite Carbon Ingest 
- Enables access to Graphite Carbon plaintext metrics ingestion. It can be enabled only for services inside VPCs. The metrics are written to aggregated namespaces only.
- m3dbVersion String
- Enum: 1.1,1.2,1.5, and newer. M3 major version (the minimum compatible version).
- namespaces List<Property Map>
- List of M3 namespaces
- privateAccess Property Map
- Allow access to selected service ports from private networks
- projectTo StringFork From 
- Name of another project to fork a service from. This has effect only when a new service is being created. Example: anotherprojectname.
- publicAccess Property Map
- Allow access to selected service ports from the public Internet
- rules Property Map
- M3 rules
- serviceLog Boolean
- Store logs for the service so that they are available in the HTTP API and console.
- serviceTo StringFork From 
- Name of another service to fork from. This has effect only when a new service is being created. Example: anotherservicename.
- staticIps Boolean
- Use static public IP addresses.
M3DbM3dbUserConfigIpFilterObject, M3DbM3dbUserConfigIpFilterObjectArgs              
- Network string
- CIDR address block. Example: 10.20.0.0/16.
- Description string
- Description for IP filter list entry. Example: Production service IP range.
- Network string
- CIDR address block. Example: 10.20.0.0/16.
- Description string
- Description for IP filter list entry. Example: Production service IP range.
- network String
- CIDR address block. Example: 10.20.0.0/16.
- description String
- Description for IP filter list entry. Example: Production service IP range.
- network string
- CIDR address block. Example: 10.20.0.0/16.
- description string
- Description for IP filter list entry. Example: Production service IP range.
- network str
- CIDR address block. Example: 10.20.0.0/16.
- description str
- Description for IP filter list entry. Example: Production service IP range.
- network String
- CIDR address block. Example: 10.20.0.0/16.
- description String
- Description for IP filter list entry. Example: Production service IP range.
M3DbM3dbUserConfigLimits, M3DbM3dbUserConfigLimitsArgs          
- MaxRecently intQueried Series Blocks 
- The maximum number of blocks that can be read in a given lookback period. Example: 20000.
- MaxRecently intQueried Series Disk Bytes Read 
- The maximum number of disk bytes that can be read in a given lookback period. Example: 104857600.
- MaxRecently stringQueried Series Lookback 
- The lookback period for max_recently_queried_series_blocksandmax_recently_queried_series_disk_bytes_read. Example:15s.
- QueryDocs int
- The maximum number of docs fetched in single query. Example: 100000.
- QueryRequire boolExhaustive 
- When query limits are exceeded, whether to return error or return partial results.
- QuerySeries int
- The maximum number of series fetched in single query. Example: 100000.
- MaxRecently intQueried Series Blocks 
- The maximum number of blocks that can be read in a given lookback period. Example: 20000.
- MaxRecently intQueried Series Disk Bytes Read 
- The maximum number of disk bytes that can be read in a given lookback period. Example: 104857600.
- MaxRecently stringQueried Series Lookback 
- The lookback period for max_recently_queried_series_blocksandmax_recently_queried_series_disk_bytes_read. Example:15s.
- QueryDocs int
- The maximum number of docs fetched in single query. Example: 100000.
- QueryRequire boolExhaustive 
- When query limits are exceeded, whether to return error or return partial results.
- QuerySeries int
- The maximum number of series fetched in single query. Example: 100000.
- maxRecently IntegerQueried Series Blocks 
- The maximum number of blocks that can be read in a given lookback period. Example: 20000.
- maxRecently IntegerQueried Series Disk Bytes Read 
- The maximum number of disk bytes that can be read in a given lookback period. Example: 104857600.
- maxRecently StringQueried Series Lookback 
- The lookback period for max_recently_queried_series_blocksandmax_recently_queried_series_disk_bytes_read. Example:15s.
- queryDocs Integer
- The maximum number of docs fetched in single query. Example: 100000.
- queryRequire BooleanExhaustive 
- When query limits are exceeded, whether to return error or return partial results.
- querySeries Integer
- The maximum number of series fetched in single query. Example: 100000.
- maxRecently numberQueried Series Blocks 
- The maximum number of blocks that can be read in a given lookback period. Example: 20000.
- maxRecently numberQueried Series Disk Bytes Read 
- The maximum number of disk bytes that can be read in a given lookback period. Example: 104857600.
- maxRecently stringQueried Series Lookback 
- The lookback period for max_recently_queried_series_blocksandmax_recently_queried_series_disk_bytes_read. Example:15s.
- queryDocs number
- The maximum number of docs fetched in single query. Example: 100000.
- queryRequire booleanExhaustive 
- When query limits are exceeded, whether to return error or return partial results.
- querySeries number
- The maximum number of series fetched in single query. Example: 100000.
- max_recently_ intqueried_ series_ blocks 
- The maximum number of blocks that can be read in a given lookback period. Example: 20000.
- max_recently_ intqueried_ series_ disk_ bytes_ read 
- The maximum number of disk bytes that can be read in a given lookback period. Example: 104857600.
- max_recently_ strqueried_ series_ lookback 
- The lookback period for max_recently_queried_series_blocksandmax_recently_queried_series_disk_bytes_read. Example:15s.
- query_docs int
- The maximum number of docs fetched in single query. Example: 100000.
- query_require_ boolexhaustive 
- When query limits are exceeded, whether to return error or return partial results.
- query_series int
- The maximum number of series fetched in single query. Example: 100000.
- maxRecently NumberQueried Series Blocks 
- The maximum number of blocks that can be read in a given lookback period. Example: 20000.
- maxRecently NumberQueried Series Disk Bytes Read 
- The maximum number of disk bytes that can be read in a given lookback period. Example: 104857600.
- maxRecently StringQueried Series Lookback 
- The lookback period for max_recently_queried_series_blocksandmax_recently_queried_series_disk_bytes_read. Example:15s.
- queryDocs Number
- The maximum number of docs fetched in single query. Example: 100000.
- queryRequire BooleanExhaustive 
- When query limits are exceeded, whether to return error or return partial results.
- querySeries Number
- The maximum number of series fetched in single query. Example: 100000.
M3DbM3dbUserConfigM3, M3DbM3dbUserConfigM3Args          
- TagOptions M3DbM3db User Config M3Tag Options 
- M3 Tag Options
- TagOptions M3DbM3db User Config M3Tag Options 
- M3 Tag Options
- tagOptions M3DbM3db User Config M3Tag Options 
- M3 Tag Options
- tagOptions M3DbM3db User Config M3Tag Options 
- M3 Tag Options
- tag_options M3DbM3db User Config M3Tag Options 
- M3 Tag Options
- tagOptions Property Map
- M3 Tag Options
M3DbM3dbUserConfigM3TagOptions, M3DbM3dbUserConfigM3TagOptionsArgs            
- AllowTag boolName Duplicates 
- Allows for duplicate tags to appear on series (not allowed by default).
- AllowTag boolValue Empty 
- Allows for empty tags to appear on series (not allowed by default).
- AllowTag boolName Duplicates 
- Allows for duplicate tags to appear on series (not allowed by default).
- AllowTag boolValue Empty 
- Allows for empty tags to appear on series (not allowed by default).
- allowTag BooleanName Duplicates 
- Allows for duplicate tags to appear on series (not allowed by default).
- allowTag BooleanValue Empty 
- Allows for empty tags to appear on series (not allowed by default).
- allowTag booleanName Duplicates 
- Allows for duplicate tags to appear on series (not allowed by default).
- allowTag booleanValue Empty 
- Allows for empty tags to appear on series (not allowed by default).
- allow_tag_ boolname_ duplicates 
- Allows for duplicate tags to appear on series (not allowed by default).
- allow_tag_ boolvalue_ empty 
- Allows for empty tags to appear on series (not allowed by default).
- allowTag BooleanName Duplicates 
- Allows for duplicate tags to appear on series (not allowed by default).
- allowTag BooleanValue Empty 
- Allows for empty tags to appear on series (not allowed by default).
M3DbM3dbUserConfigNamespace, M3DbM3dbUserConfigNamespaceArgs          
- Name string
- The name of the namespace. Example: default.
- Type string
- Enum: aggregated,unaggregated. The type of aggregation (aggregated/unaggregated).
- Options
M3DbM3db User Config Namespace Options 
- Namespace options
- Resolution string
- The resolution for an aggregated namespace. Example: 30s.
- Name string
- The name of the namespace. Example: default.
- Type string
- Enum: aggregated,unaggregated. The type of aggregation (aggregated/unaggregated).
- Options
M3DbM3db User Config Namespace Options 
- Namespace options
- Resolution string
- The resolution for an aggregated namespace. Example: 30s.
- name String
- The name of the namespace. Example: default.
- type String
- Enum: aggregated,unaggregated. The type of aggregation (aggregated/unaggregated).
- options
M3DbM3db User Config Namespace Options 
- Namespace options
- resolution String
- The resolution for an aggregated namespace. Example: 30s.
- name string
- The name of the namespace. Example: default.
- type string
- Enum: aggregated,unaggregated. The type of aggregation (aggregated/unaggregated).
- options
M3DbM3db User Config Namespace Options 
- Namespace options
- resolution string
- The resolution for an aggregated namespace. Example: 30s.
- name str
- The name of the namespace. Example: default.
- type str
- Enum: aggregated,unaggregated. The type of aggregation (aggregated/unaggregated).
- options
M3DbM3db User Config Namespace Options 
- Namespace options
- resolution str
- The resolution for an aggregated namespace. Example: 30s.
- name String
- The name of the namespace. Example: default.
- type String
- Enum: aggregated,unaggregated. The type of aggregation (aggregated/unaggregated).
- options Property Map
- Namespace options
- resolution String
- The resolution for an aggregated namespace. Example: 30s.
M3DbM3dbUserConfigNamespaceOptions, M3DbM3dbUserConfigNamespaceOptionsArgs            
- RetentionOptions M3DbM3db User Config Namespace Options Retention Options 
- Retention options
- SnapshotEnabled bool
- Controls whether M3DB will create snapshot files for this namespace.
- WritesTo boolCommitlog 
- Controls whether M3DB will include writes to this namespace in the commitlog.
- RetentionOptions M3DbM3db User Config Namespace Options Retention Options 
- Retention options
- SnapshotEnabled bool
- Controls whether M3DB will create snapshot files for this namespace.
- WritesTo boolCommitlog 
- Controls whether M3DB will include writes to this namespace in the commitlog.
- retentionOptions M3DbM3db User Config Namespace Options Retention Options 
- Retention options
- snapshotEnabled Boolean
- Controls whether M3DB will create snapshot files for this namespace.
- writesTo BooleanCommitlog 
- Controls whether M3DB will include writes to this namespace in the commitlog.
- retentionOptions M3DbM3db User Config Namespace Options Retention Options 
- Retention options
- snapshotEnabled boolean
- Controls whether M3DB will create snapshot files for this namespace.
- writesTo booleanCommitlog 
- Controls whether M3DB will include writes to this namespace in the commitlog.
- retention_options M3DbM3db User Config Namespace Options Retention Options 
- Retention options
- snapshot_enabled bool
- Controls whether M3DB will create snapshot files for this namespace.
- writes_to_ boolcommitlog 
- Controls whether M3DB will include writes to this namespace in the commitlog.
- retentionOptions Property Map
- Retention options
- snapshotEnabled Boolean
- Controls whether M3DB will create snapshot files for this namespace.
- writesTo BooleanCommitlog 
- Controls whether M3DB will include writes to this namespace in the commitlog.
M3DbM3dbUserConfigNamespaceOptionsRetentionOptions, M3DbM3dbUserConfigNamespaceOptionsRetentionOptionsArgs                
- BlockData stringExpiry Duration 
- Controls how long we wait before expiring stale data. Example: 5m.
- BlocksizeDuration string
- Controls how long to keep a block in memory before flushing to a fileset on disk. Example: 2h.
- BufferFuture stringDuration 
- Controls how far into the future writes to the namespace will be accepted. Example: 10m.
- BufferPast stringDuration 
- Controls how far into the past writes to the namespace will be accepted. Example: 10m.
- RetentionPeriod stringDuration 
- Controls the duration of time that M3DB will retain data for the namespace. Example: 48h.
- BlockData stringExpiry Duration 
- Controls how long we wait before expiring stale data. Example: 5m.
- BlocksizeDuration string
- Controls how long to keep a block in memory before flushing to a fileset on disk. Example: 2h.
- BufferFuture stringDuration 
- Controls how far into the future writes to the namespace will be accepted. Example: 10m.
- BufferPast stringDuration 
- Controls how far into the past writes to the namespace will be accepted. Example: 10m.
- RetentionPeriod stringDuration 
- Controls the duration of time that M3DB will retain data for the namespace. Example: 48h.
- blockData StringExpiry Duration 
- Controls how long we wait before expiring stale data. Example: 5m.
- blocksizeDuration String
- Controls how long to keep a block in memory before flushing to a fileset on disk. Example: 2h.
- bufferFuture StringDuration 
- Controls how far into the future writes to the namespace will be accepted. Example: 10m.
- bufferPast StringDuration 
- Controls how far into the past writes to the namespace will be accepted. Example: 10m.
- retentionPeriod StringDuration 
- Controls the duration of time that M3DB will retain data for the namespace. Example: 48h.
- blockData stringExpiry Duration 
- Controls how long we wait before expiring stale data. Example: 5m.
- blocksizeDuration string
- Controls how long to keep a block in memory before flushing to a fileset on disk. Example: 2h.
- bufferFuture stringDuration 
- Controls how far into the future writes to the namespace will be accepted. Example: 10m.
- bufferPast stringDuration 
- Controls how far into the past writes to the namespace will be accepted. Example: 10m.
- retentionPeriod stringDuration 
- Controls the duration of time that M3DB will retain data for the namespace. Example: 48h.
- block_data_ strexpiry_ duration 
- Controls how long we wait before expiring stale data. Example: 5m.
- blocksize_duration str
- Controls how long to keep a block in memory before flushing to a fileset on disk. Example: 2h.
- buffer_future_ strduration 
- Controls how far into the future writes to the namespace will be accepted. Example: 10m.
- buffer_past_ strduration 
- Controls how far into the past writes to the namespace will be accepted. Example: 10m.
- retention_period_ strduration 
- Controls the duration of time that M3DB will retain data for the namespace. Example: 48h.
- blockData StringExpiry Duration 
- Controls how long we wait before expiring stale data. Example: 5m.
- blocksizeDuration String
- Controls how long to keep a block in memory before flushing to a fileset on disk. Example: 2h.
- bufferFuture StringDuration 
- Controls how far into the future writes to the namespace will be accepted. Example: 10m.
- bufferPast StringDuration 
- Controls how far into the past writes to the namespace will be accepted. Example: 10m.
- retentionPeriod StringDuration 
- Controls the duration of time that M3DB will retain data for the namespace. Example: 48h.
M3DbM3dbUserConfigPrivateAccess, M3DbM3dbUserConfigPrivateAccessArgs            
- M3coordinator bool
- Allow clients to connect to m3coordinator with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
- M3coordinator bool
- Allow clients to connect to m3coordinator with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
- m3coordinator Boolean
- Allow clients to connect to m3coordinator with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
- m3coordinator boolean
- Allow clients to connect to m3coordinator with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
- m3coordinator bool
- Allow clients to connect to m3coordinator with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
- m3coordinator Boolean
- Allow clients to connect to m3coordinator with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
M3DbM3dbUserConfigPublicAccess, M3DbM3dbUserConfigPublicAccessArgs            
- M3coordinator bool
- Allow clients to connect to m3coordinator from the public internet for service nodes that are in a project VPC or another type of private network.
- M3coordinator bool
- Allow clients to connect to m3coordinator from the public internet for service nodes that are in a project VPC or another type of private network.
- m3coordinator Boolean
- Allow clients to connect to m3coordinator from the public internet for service nodes that are in a project VPC or another type of private network.
- m3coordinator boolean
- Allow clients to connect to m3coordinator from the public internet for service nodes that are in a project VPC or another type of private network.
- m3coordinator bool
- Allow clients to connect to m3coordinator from the public internet for service nodes that are in a project VPC or another type of private network.
- m3coordinator Boolean
- Allow clients to connect to m3coordinator from the public internet for service nodes that are in a project VPC or another type of private network.
M3DbM3dbUserConfigRules, M3DbM3dbUserConfigRulesArgs          
- Mappings
List<M3DbM3db User Config Rules Mapping> 
- List of M3 mapping rules
- Mappings
[]M3DbM3db User Config Rules Mapping 
- List of M3 mapping rules
- mappings
List<M3DbM3db User Config Rules Mapping> 
- List of M3 mapping rules
- mappings
M3DbM3db User Config Rules Mapping[] 
- List of M3 mapping rules
- mappings
Sequence[M3DbM3db User Config Rules Mapping] 
- List of M3 mapping rules
- mappings List<Property Map>
- List of M3 mapping rules
M3DbM3dbUserConfigRulesMapping, M3DbM3dbUserConfigRulesMappingArgs            
- Filter string
- Matching metric names with wildcards (using name:wildcard) or matching tags and their (optionally wildcarded) values. For value, ! can be used at start of value for negation, and multiple filters can be supplied using space as separator. Example: __name__:disk_* host:important-42 mount:!*/sda.
- Aggregations List<string>
- List of aggregations to be applied.
- Drop bool
- Only store the derived metric (as specified in the roll-up rules), if any.
- Name string
- The (optional) name of the rule. Example: important disk metrics.
- Namespaces List<string>
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- NamespacesObjects List<M3DbM3db User Config Rules Mapping Namespaces Object> 
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by exact match of retention period and resolution
- NamespacesStrings List<string>
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- 
List<M3DbM3db User Config Rules Mapping Tag> 
- List of tags to be appended to matching metrics
- Filter string
- Matching metric names with wildcards (using name:wildcard) or matching tags and their (optionally wildcarded) values. For value, ! can be used at start of value for negation, and multiple filters can be supplied using space as separator. Example: __name__:disk_* host:important-42 mount:!*/sda.
- Aggregations []string
- List of aggregations to be applied.
- Drop bool
- Only store the derived metric (as specified in the roll-up rules), if any.
- Name string
- The (optional) name of the rule. Example: important disk metrics.
- Namespaces []string
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- NamespacesObjects []M3DbM3db User Config Rules Mapping Namespaces Object 
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by exact match of retention period and resolution
- NamespacesStrings []string
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- 
[]M3DbM3db User Config Rules Mapping Tag 
- List of tags to be appended to matching metrics
- filter String
- Matching metric names with wildcards (using name:wildcard) or matching tags and their (optionally wildcarded) values. For value, ! can be used at start of value for negation, and multiple filters can be supplied using space as separator. Example: __name__:disk_* host:important-42 mount:!*/sda.
- aggregations List<String>
- List of aggregations to be applied.
- drop Boolean
- Only store the derived metric (as specified in the roll-up rules), if any.
- name String
- The (optional) name of the rule. Example: important disk metrics.
- namespaces List<String>
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- namespacesObjects List<M3DbM3db User Config Rules Mapping Namespaces Object> 
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by exact match of retention period and resolution
- namespacesStrings List<String>
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- 
List<M3DbM3db User Config Rules Mapping Tag> 
- List of tags to be appended to matching metrics
- filter string
- Matching metric names with wildcards (using name:wildcard) or matching tags and their (optionally wildcarded) values. For value, ! can be used at start of value for negation, and multiple filters can be supplied using space as separator. Example: __name__:disk_* host:important-42 mount:!*/sda.
- aggregations string[]
- List of aggregations to be applied.
- drop boolean
- Only store the derived metric (as specified in the roll-up rules), if any.
- name string
- The (optional) name of the rule. Example: important disk metrics.
- namespaces string[]
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- namespacesObjects M3DbM3db User Config Rules Mapping Namespaces Object[] 
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by exact match of retention period and resolution
- namespacesStrings string[]
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- 
M3DbM3db User Config Rules Mapping Tag[] 
- List of tags to be appended to matching metrics
- filter str
- Matching metric names with wildcards (using name:wildcard) or matching tags and their (optionally wildcarded) values. For value, ! can be used at start of value for negation, and multiple filters can be supplied using space as separator. Example: __name__:disk_* host:important-42 mount:!*/sda.
- aggregations Sequence[str]
- List of aggregations to be applied.
- drop bool
- Only store the derived metric (as specified in the roll-up rules), if any.
- name str
- The (optional) name of the rule. Example: important disk metrics.
- namespaces Sequence[str]
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- namespaces_objects Sequence[M3DbM3db User Config Rules Mapping Namespaces Object] 
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by exact match of retention period and resolution
- namespaces_strings Sequence[str]
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- 
Sequence[M3DbM3db User Config Rules Mapping Tag] 
- List of tags to be appended to matching metrics
- filter String
- Matching metric names with wildcards (using name:wildcard) or matching tags and their (optionally wildcarded) values. For value, ! can be used at start of value for negation, and multiple filters can be supplied using space as separator. Example: __name__:disk_* host:important-42 mount:!*/sda.
- aggregations List<String>
- List of aggregations to be applied.
- drop Boolean
- Only store the derived metric (as specified in the roll-up rules), if any.
- name String
- The (optional) name of the rule. Example: important disk metrics.
- namespaces List<String>
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- namespacesObjects List<Property Map>
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by exact match of retention period and resolution
- namespacesStrings List<String>
- This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
- List<Property Map>
- List of tags to be appended to matching metrics
M3DbM3dbUserConfigRulesMappingNamespacesObject, M3DbM3dbUserConfigRulesMappingNamespacesObjectArgs                
- Resolution string
- The resolution for the matching namespace. Example: 30s.
- Retention string
- The retention period of the matching namespace. Example: 48h.
- Resolution string
- The resolution for the matching namespace. Example: 30s.
- Retention string
- The retention period of the matching namespace. Example: 48h.
- resolution String
- The resolution for the matching namespace. Example: 30s.
- retention String
- The retention period of the matching namespace. Example: 48h.
- resolution string
- The resolution for the matching namespace. Example: 30s.
- retention string
- The retention period of the matching namespace. Example: 48h.
- resolution str
- The resolution for the matching namespace. Example: 30s.
- retention str
- The retention period of the matching namespace. Example: 48h.
- resolution String
- The resolution for the matching namespace. Example: 30s.
- retention String
- The retention period of the matching namespace. Example: 48h.
M3DbM3dbUserConfigRulesMappingTag, M3DbM3dbUserConfigRulesMappingTagArgs              
M3DbServiceIntegration, M3DbServiceIntegrationArgs      
- IntegrationType string
- Type of the service integration
- SourceService stringName 
- Name of the source service
- IntegrationType string
- Type of the service integration
- SourceService stringName 
- Name of the source service
- integrationType String
- Type of the service integration
- sourceService StringName 
- Name of the source service
- integrationType string
- Type of the service integration
- sourceService stringName 
- Name of the source service
- integration_type str
- Type of the service integration
- source_service_ strname 
- Name of the source service
- integrationType String
- Type of the service integration
- sourceService StringName 
- Name of the source service
M3DbTag, M3DbTagArgs    
M3DbTechEmail, M3DbTechEmailArgs      
- Email string
- An email address to contact for technical issues
- Email string
- An email address to contact for technical issues
- email String
- An email address to contact for technical issues
- email string
- An email address to contact for technical issues
- email str
- An email address to contact for technical issues
- email String
- An email address to contact for technical issues
Import
$ pulumi import aiven:index/m3Db:M3Db example_m3db 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 aivenTerraform Provider.