1. Packages
  2. Packages
  3. Qdrant-Cloud Provider
  4. API Docs
  5. AccountsCluster
Viewing docs for qdrant-cloud 1.28.0
published on Wednesday, Jul 22, 2026 by qdrant
Viewing docs for qdrant-cloud 1.28.0
published on Wednesday, Jul 22, 2026 by qdrant

    Account Cluster Resource

    Create AccountsCluster Resource

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

    Constructor syntax

    new AccountsCluster(name: string, args: AccountsClusterArgs, opts?: CustomResourceOptions);
    @overload
    def AccountsCluster(resource_name: str,
                        args: AccountsClusterArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def AccountsCluster(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        cloud_provider: Optional[str] = None,
                        cloud_region: Optional[str] = None,
                        configuration: Optional[AccountsClusterConfigurationArgs] = None,
                        account_id: Optional[str] = None,
                        delete_backups_on_destroy: Optional[bool] = None,
                        labels: Optional[Sequence[AccountsClusterLabelArgs]] = None,
                        name: Optional[str] = None,
                        private_region_id: Optional[str] = None,
                        timeouts: Optional[AccountsClusterTimeoutsArgs] = None)
    func NewAccountsCluster(ctx *Context, name string, args AccountsClusterArgs, opts ...ResourceOption) (*AccountsCluster, error)
    public AccountsCluster(string name, AccountsClusterArgs args, CustomResourceOptions? opts = null)
    public AccountsCluster(String name, AccountsClusterArgs args)
    public AccountsCluster(String name, AccountsClusterArgs args, CustomResourceOptions options)
    
    type: qdrant-cloud:AccountsCluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "qdrant-cloud_accounts_cluster" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args AccountsClusterArgs
    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 AccountsClusterArgs
    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 AccountsClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountsClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountsClusterArgs
    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 accountsClusterResource = new QdrantCloud.AccountsCluster("accountsClusterResource", new()
    {
        CloudProvider = "string",
        CloudRegion = "string",
        Configuration = new QdrantCloud.Inputs.AccountsClusterConfigurationArgs
        {
            NodeConfiguration = new QdrantCloud.Inputs.AccountsClusterConfigurationNodeConfigurationArgs
            {
                PackageId = "string",
                ResourceConfigurations = new[]
                {
                    new QdrantCloud.Inputs.AccountsClusterConfigurationNodeConfigurationResourceConfigurationArgs
                    {
                        Amount = 0,
                        ResourceType = "string",
                        ResourceUnit = "string",
                    },
                },
            },
            NumberOfNodes = 0,
            GpuType = "string",
            ReservedCpuPercentage = 0,
            AllowedIpSourceRanges = new[]
            {
                "string",
            },
            LastModifiedAt = "string",
            ClusterStorageConfiguration = new QdrantCloud.Inputs.AccountsClusterConfigurationClusterStorageConfigurationArgs
            {
                DatabaseStorageClass = "string",
                SnapshotStorageClass = "string",
                StorageTierType = "string",
                VolumeSnapshotClass = "string",
            },
            NodeSelectors = new[]
            {
                new QdrantCloud.Inputs.AccountsClusterConfigurationNodeSelectorArgs
                {
                    Key = "string",
                    Value = "string",
                },
            },
            Annotations = new[]
            {
                new QdrantCloud.Inputs.AccountsClusterConfigurationAnnotationArgs
                {
                    Key = "string",
                    Value = "string",
                },
            },
            PodLabels = new[]
            {
                new QdrantCloud.Inputs.AccountsClusterConfigurationPodLabelArgs
                {
                    Key = "string",
                    Value = "string",
                },
            },
            RebalanceStrategy = "string",
            DatabaseConfiguration = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationArgs
            {
                AuditLogging = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationAuditLoggingArgs
                {
                    Enabled = false,
                    MaxLogFiles = 0,
                    Rotation = "string",
                    TrustForwardedHeaders = false,
                },
                Collection = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationCollectionArgs
                {
                    ReplicationFactor = 0,
                    Vectors = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationCollectionVectorsArgs
                    {
                        OnDisk = false,
                    },
                    WriteConsistencyFactor = 0,
                },
                Inference = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationInferenceArgs
                {
                    Enabled = false,
                },
                LogLevel = "string",
                Service = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationServiceArgs
                {
                    ApiKey = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationServiceApiKeyArgs
                    {
                        SecretKey = "string",
                        SecretName = "string",
                    },
                    EnableTls = false,
                    JwtRbac = false,
                    ReadOnlyApiKey = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationServiceReadOnlyApiKeyArgs
                    {
                        SecretKey = "string",
                        SecretName = "string",
                    },
                },
                Storage = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationStorageArgs
                {
                    Performance = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationStoragePerformanceArgs
                    {
                        AsyncScorer = false,
                        OptimizerCpuBudget = 0,
                    },
                },
                Tls = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationTlsArgs
                {
                    Cert = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationTlsCertArgs
                    {
                        SecretKey = "string",
                        SecretName = "string",
                    },
                    Key = new QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationTlsKeyArgs
                    {
                        SecretKey = "string",
                        SecretName = "string",
                    },
                },
            },
            ReservedMemoryPercentage = 0,
            RestartPolicy = "string",
            ServiceAnnotations = new[]
            {
                new QdrantCloud.Inputs.AccountsClusterConfigurationServiceAnnotationArgs
                {
                    Key = "string",
                    Value = "string",
                },
            },
            ServiceType = "string",
            Tolerations = new[]
            {
                new QdrantCloud.Inputs.AccountsClusterConfigurationTolerationArgs
                {
                    Effect = "string",
                    Key = "string",
                    Operator = "string",
                    TolerationSeconds = 0,
                    Value = "string",
                },
            },
            TopologySpreadConstraints = new[]
            {
                new QdrantCloud.Inputs.AccountsClusterConfigurationTopologySpreadConstraintArgs
                {
                    MaxSkew = 0,
                    TopologyKey = "string",
                    WhenUnsatisfiable = "string",
                },
            },
            Version = "string",
        },
        AccountId = "string",
        DeleteBackupsOnDestroy = false,
        Labels = new[]
        {
            new QdrantCloud.Inputs.AccountsClusterLabelArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        Name = "string",
        Timeouts = new QdrantCloud.Inputs.AccountsClusterTimeoutsArgs
        {
            Create = "string",
        },
    });
    
    example, err := qdrantcloud.NewAccountsCluster(ctx, "accountsClusterResource", &qdrantcloud.AccountsClusterArgs{
    	CloudProvider: pulumi.String("string"),
    	CloudRegion:   pulumi.String("string"),
    	Configuration: &qdrantcloud.AccountsClusterConfigurationArgs{
    		NodeConfiguration: &qdrantcloud.AccountsClusterConfigurationNodeConfigurationArgs{
    			PackageId: pulumi.String("string"),
    			ResourceConfigurations: qdrantcloud.AccountsClusterConfigurationNodeConfigurationResourceConfigurationArray{
    				&qdrantcloud.AccountsClusterConfigurationNodeConfigurationResourceConfigurationArgs{
    					Amount:       pulumi.Float64(0),
    					ResourceType: pulumi.String("string"),
    					ResourceUnit: pulumi.String("string"),
    				},
    			},
    		},
    		NumberOfNodes:         pulumi.Float64(0),
    		GpuType:               pulumi.String("string"),
    		ReservedCpuPercentage: pulumi.Float64(0),
    		AllowedIpSourceRanges: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		LastModifiedAt: pulumi.String("string"),
    		ClusterStorageConfiguration: &qdrantcloud.AccountsClusterConfigurationClusterStorageConfigurationArgs{
    			DatabaseStorageClass: pulumi.String("string"),
    			SnapshotStorageClass: pulumi.String("string"),
    			StorageTierType:      pulumi.String("string"),
    			VolumeSnapshotClass:  pulumi.String("string"),
    		},
    		NodeSelectors: qdrantcloud.AccountsClusterConfigurationNodeSelectorArray{
    			&qdrantcloud.AccountsClusterConfigurationNodeSelectorArgs{
    				Key:   pulumi.String("string"),
    				Value: pulumi.String("string"),
    			},
    		},
    		Annotations: qdrantcloud.AccountsClusterConfigurationAnnotationArray{
    			&qdrantcloud.AccountsClusterConfigurationAnnotationArgs{
    				Key:   pulumi.String("string"),
    				Value: pulumi.String("string"),
    			},
    		},
    		PodLabels: qdrantcloud.AccountsClusterConfigurationPodLabelArray{
    			&qdrantcloud.AccountsClusterConfigurationPodLabelArgs{
    				Key:   pulumi.String("string"),
    				Value: pulumi.String("string"),
    			},
    		},
    		RebalanceStrategy: pulumi.String("string"),
    		DatabaseConfiguration: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationArgs{
    			AuditLogging: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationAuditLoggingArgs{
    				Enabled:               pulumi.Bool(false),
    				MaxLogFiles:           pulumi.Float64(0),
    				Rotation:              pulumi.String("string"),
    				TrustForwardedHeaders: pulumi.Bool(false),
    			},
    			Collection: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationCollectionArgs{
    				ReplicationFactor: pulumi.Float64(0),
    				Vectors: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationCollectionVectorsArgs{
    					OnDisk: pulumi.Bool(false),
    				},
    				WriteConsistencyFactor: pulumi.Float64(0),
    			},
    			Inference: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationInferenceArgs{
    				Enabled: pulumi.Bool(false),
    			},
    			LogLevel: pulumi.String("string"),
    			Service: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationServiceArgs{
    				ApiKey: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationServiceApiKeyArgs{
    					SecretKey:  pulumi.String("string"),
    					SecretName: pulumi.String("string"),
    				},
    				EnableTls: pulumi.Bool(false),
    				JwtRbac:   pulumi.Bool(false),
    				ReadOnlyApiKey: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationServiceReadOnlyApiKeyArgs{
    					SecretKey:  pulumi.String("string"),
    					SecretName: pulumi.String("string"),
    				},
    			},
    			Storage: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationStorageArgs{
    				Performance: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationStoragePerformanceArgs{
    					AsyncScorer:        pulumi.Bool(false),
    					OptimizerCpuBudget: pulumi.Float64(0),
    				},
    			},
    			Tls: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationTlsArgs{
    				Cert: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationTlsCertArgs{
    					SecretKey:  pulumi.String("string"),
    					SecretName: pulumi.String("string"),
    				},
    				Key: &qdrantcloud.AccountsClusterConfigurationDatabaseConfigurationTlsKeyArgs{
    					SecretKey:  pulumi.String("string"),
    					SecretName: pulumi.String("string"),
    				},
    			},
    		},
    		ReservedMemoryPercentage: pulumi.Float64(0),
    		RestartPolicy:            pulumi.String("string"),
    		ServiceAnnotations: qdrantcloud.AccountsClusterConfigurationServiceAnnotationArray{
    			&qdrantcloud.AccountsClusterConfigurationServiceAnnotationArgs{
    				Key:   pulumi.String("string"),
    				Value: pulumi.String("string"),
    			},
    		},
    		ServiceType: pulumi.String("string"),
    		Tolerations: qdrantcloud.AccountsClusterConfigurationTolerationArray{
    			&qdrantcloud.AccountsClusterConfigurationTolerationArgs{
    				Effect:            pulumi.String("string"),
    				Key:               pulumi.String("string"),
    				Operator:          pulumi.String("string"),
    				TolerationSeconds: pulumi.Float64(0),
    				Value:             pulumi.String("string"),
    			},
    		},
    		TopologySpreadConstraints: qdrantcloud.AccountsClusterConfigurationTopologySpreadConstraintArray{
    			&qdrantcloud.AccountsClusterConfigurationTopologySpreadConstraintArgs{
    				MaxSkew:           pulumi.Float64(0),
    				TopologyKey:       pulumi.String("string"),
    				WhenUnsatisfiable: pulumi.String("string"),
    			},
    		},
    		Version: pulumi.String("string"),
    	},
    	AccountId:              pulumi.String("string"),
    	DeleteBackupsOnDestroy: pulumi.Bool(false),
    	Labels: qdrantcloud.AccountsClusterLabelArray{
    		&qdrantcloud.AccountsClusterLabelArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	Timeouts: &qdrantcloud.AccountsClusterTimeoutsArgs{
    		Create: pulumi.String("string"),
    	},
    })
    
    resource "qdrant-cloud_accounts_cluster" "accountsClusterResource" {
      lifecycle {
        create_before_destroy = true
      }
      cloud_provider = "string"
      cloud_region   = "string"
      configuration = {
        node_configuration = {
          package_id = "string"
          resource_configurations = [{
            amount        = 0
            resource_type = "string"
            resource_unit = "string"
          }]
        }
        number_of_nodes          = 0
        gpu_type                 = "string"
        reserved_cpu_percentage  = 0
        allowed_ip_source_ranges = ["string"]
        last_modified_at         = "string"
        cluster_storage_configuration = {
          database_storage_class = "string"
          snapshot_storage_class = "string"
          storage_tier_type      = "string"
          volume_snapshot_class  = "string"
        }
        node_selectors = [{
          key   = "string"
          value = "string"
        }]
        annotations = [{
          key   = "string"
          value = "string"
        }]
        pod_labels = [{
          key   = "string"
          value = "string"
        }]
        rebalance_strategy = "string"
        database_configuration = {
          audit_logging = {
            enabled                 = false
            max_log_files           = 0
            rotation                = "string"
            trust_forwarded_headers = false
          }
          collection = {
            replication_factor = 0
            vectors = {
              on_disk = false
            }
            write_consistency_factor = 0
          }
          inference = {
            enabled = false
          }
          log_level = "string"
          service = {
            api_key = {
              secret_key  = "string"
              secret_name = "string"
            }
            enable_tls = false
            jwt_rbac   = false
            read_only_api_key = {
              secret_key  = "string"
              secret_name = "string"
            }
          }
          storage = {
            performance = {
              async_scorer         = false
              optimizer_cpu_budget = 0
            }
          }
          tls = {
            cert = {
              secret_key  = "string"
              secret_name = "string"
            }
            key = {
              secret_key  = "string"
              secret_name = "string"
            }
          }
        }
        reserved_memory_percentage = 0
        restart_policy             = "string"
        service_annotations = [{
          key   = "string"
          value = "string"
        }]
        service_type = "string"
        tolerations = [{
          effect             = "string"
          key                = "string"
          operator           = "string"
          toleration_seconds = 0
          value              = "string"
        }]
        topology_spread_constraints = [{
          max_skew           = 0
          topology_key       = "string"
          when_unsatisfiable = "string"
        }]
        version = "string"
      }
      account_id                = "string"
      delete_backups_on_destroy = false
      labels {
        key   = "string"
        value = "string"
      }
      name = "string"
      timeouts = {
        create = "string"
      }
    }
    
    var accountsClusterResource = new AccountsCluster("accountsClusterResource", AccountsClusterArgs.builder()
        .cloudProvider("string")
        .cloudRegion("string")
        .configuration(AccountsClusterConfigurationArgs.builder()
            .nodeConfiguration(AccountsClusterConfigurationNodeConfigurationArgs.builder()
                .packageId("string")
                .resourceConfigurations(AccountsClusterConfigurationNodeConfigurationResourceConfigurationArgs.builder()
                    .amount(0.0)
                    .resourceType("string")
                    .resourceUnit("string")
                    .build())
                .build())
            .numberOfNodes(0.0)
            .gpuType("string")
            .reservedCpuPercentage(0.0)
            .allowedIpSourceRanges("string")
            .lastModifiedAt("string")
            .clusterStorageConfiguration(AccountsClusterConfigurationClusterStorageConfigurationArgs.builder()
                .databaseStorageClass("string")
                .snapshotStorageClass("string")
                .storageTierType("string")
                .volumeSnapshotClass("string")
                .build())
            .nodeSelectors(AccountsClusterConfigurationNodeSelectorArgs.builder()
                .key("string")
                .value("string")
                .build())
            .annotations(AccountsClusterConfigurationAnnotationArgs.builder()
                .key("string")
                .value("string")
                .build())
            .podLabels(AccountsClusterConfigurationPodLabelArgs.builder()
                .key("string")
                .value("string")
                .build())
            .rebalanceStrategy("string")
            .databaseConfiguration(AccountsClusterConfigurationDatabaseConfigurationArgs.builder()
                .auditLogging(AccountsClusterConfigurationDatabaseConfigurationAuditLoggingArgs.builder()
                    .enabled(false)
                    .maxLogFiles(0.0)
                    .rotation("string")
                    .trustForwardedHeaders(false)
                    .build())
                .collection(AccountsClusterConfigurationDatabaseConfigurationCollectionArgs.builder()
                    .replicationFactor(0.0)
                    .vectors(AccountsClusterConfigurationDatabaseConfigurationCollectionVectorsArgs.builder()
                        .onDisk(false)
                        .build())
                    .writeConsistencyFactor(0.0)
                    .build())
                .inference(AccountsClusterConfigurationDatabaseConfigurationInferenceArgs.builder()
                    .enabled(false)
                    .build())
                .logLevel("string")
                .service(AccountsClusterConfigurationDatabaseConfigurationServiceArgs.builder()
                    .apiKey(AccountsClusterConfigurationDatabaseConfigurationServiceApiKeyArgs.builder()
                        .secretKey("string")
                        .secretName("string")
                        .build())
                    .enableTls(false)
                    .jwtRbac(false)
                    .readOnlyApiKey(AccountsClusterConfigurationDatabaseConfigurationServiceReadOnlyApiKeyArgs.builder()
                        .secretKey("string")
                        .secretName("string")
                        .build())
                    .build())
                .storage(AccountsClusterConfigurationDatabaseConfigurationStorageArgs.builder()
                    .performance(AccountsClusterConfigurationDatabaseConfigurationStoragePerformanceArgs.builder()
                        .asyncScorer(false)
                        .optimizerCpuBudget(0.0)
                        .build())
                    .build())
                .tls(AccountsClusterConfigurationDatabaseConfigurationTlsArgs.builder()
                    .cert(AccountsClusterConfigurationDatabaseConfigurationTlsCertArgs.builder()
                        .secretKey("string")
                        .secretName("string")
                        .build())
                    .key(AccountsClusterConfigurationDatabaseConfigurationTlsKeyArgs.builder()
                        .secretKey("string")
                        .secretName("string")
                        .build())
                    .build())
                .build())
            .reservedMemoryPercentage(0.0)
            .restartPolicy("string")
            .serviceAnnotations(AccountsClusterConfigurationServiceAnnotationArgs.builder()
                .key("string")
                .value("string")
                .build())
            .serviceType("string")
            .tolerations(AccountsClusterConfigurationTolerationArgs.builder()
                .effect("string")
                .key("string")
                .operator("string")
                .tolerationSeconds(0.0)
                .value("string")
                .build())
            .topologySpreadConstraints(AccountsClusterConfigurationTopologySpreadConstraintArgs.builder()
                .maxSkew(0.0)
                .topologyKey("string")
                .whenUnsatisfiable("string")
                .build())
            .version("string")
            .build())
        .accountId("string")
        .deleteBackupsOnDestroy(false)
        .labels(AccountsClusterLabelArgs.builder()
            .key("string")
            .value("string")
            .build())
        .name("string")
        .timeouts(AccountsClusterTimeoutsArgs.builder()
            .create("string")
            .build())
        .build());
    
    accounts_cluster_resource = qdrant_cloud.AccountsCluster("accountsClusterResource",
        cloud_provider="string",
        cloud_region="string",
        configuration={
            "node_configuration": {
                "package_id": "string",
                "resource_configurations": [{
                    "amount": float(0),
                    "resource_type": "string",
                    "resource_unit": "string",
                }],
            },
            "number_of_nodes": float(0),
            "gpu_type": "string",
            "reserved_cpu_percentage": float(0),
            "allowed_ip_source_ranges": ["string"],
            "last_modified_at": "string",
            "cluster_storage_configuration": {
                "database_storage_class": "string",
                "snapshot_storage_class": "string",
                "storage_tier_type": "string",
                "volume_snapshot_class": "string",
            },
            "node_selectors": [{
                "key": "string",
                "value": "string",
            }],
            "annotations": [{
                "key": "string",
                "value": "string",
            }],
            "pod_labels": [{
                "key": "string",
                "value": "string",
            }],
            "rebalance_strategy": "string",
            "database_configuration": {
                "audit_logging": {
                    "enabled": False,
                    "max_log_files": float(0),
                    "rotation": "string",
                    "trust_forwarded_headers": False,
                },
                "collection": {
                    "replication_factor": float(0),
                    "vectors": {
                        "on_disk": False,
                    },
                    "write_consistency_factor": float(0),
                },
                "inference": {
                    "enabled": False,
                },
                "log_level": "string",
                "service": {
                    "api_key": {
                        "secret_key": "string",
                        "secret_name": "string",
                    },
                    "enable_tls": False,
                    "jwt_rbac": False,
                    "read_only_api_key": {
                        "secret_key": "string",
                        "secret_name": "string",
                    },
                },
                "storage": {
                    "performance": {
                        "async_scorer": False,
                        "optimizer_cpu_budget": float(0),
                    },
                },
                "tls": {
                    "cert": {
                        "secret_key": "string",
                        "secret_name": "string",
                    },
                    "key": {
                        "secret_key": "string",
                        "secret_name": "string",
                    },
                },
            },
            "reserved_memory_percentage": float(0),
            "restart_policy": "string",
            "service_annotations": [{
                "key": "string",
                "value": "string",
            }],
            "service_type": "string",
            "tolerations": [{
                "effect": "string",
                "key": "string",
                "operator": "string",
                "toleration_seconds": float(0),
                "value": "string",
            }],
            "topology_spread_constraints": [{
                "max_skew": float(0),
                "topology_key": "string",
                "when_unsatisfiable": "string",
            }],
            "version": "string",
        },
        account_id="string",
        delete_backups_on_destroy=False,
        labels=[{
            "key": "string",
            "value": "string",
        }],
        name="string",
        timeouts={
            "create": "string",
        })
    
    const accountsClusterResource = new qdrant_cloud.AccountsCluster("accountsClusterResource", {
        cloudProvider: "string",
        cloudRegion: "string",
        configuration: {
            nodeConfiguration: {
                packageId: "string",
                resourceConfigurations: [{
                    amount: 0,
                    resourceType: "string",
                    resourceUnit: "string",
                }],
            },
            numberOfNodes: 0,
            gpuType: "string",
            reservedCpuPercentage: 0,
            allowedIpSourceRanges: ["string"],
            lastModifiedAt: "string",
            clusterStorageConfiguration: {
                databaseStorageClass: "string",
                snapshotStorageClass: "string",
                storageTierType: "string",
                volumeSnapshotClass: "string",
            },
            nodeSelectors: [{
                key: "string",
                value: "string",
            }],
            annotations: [{
                key: "string",
                value: "string",
            }],
            podLabels: [{
                key: "string",
                value: "string",
            }],
            rebalanceStrategy: "string",
            databaseConfiguration: {
                auditLogging: {
                    enabled: false,
                    maxLogFiles: 0,
                    rotation: "string",
                    trustForwardedHeaders: false,
                },
                collection: {
                    replicationFactor: 0,
                    vectors: {
                        onDisk: false,
                    },
                    writeConsistencyFactor: 0,
                },
                inference: {
                    enabled: false,
                },
                logLevel: "string",
                service: {
                    apiKey: {
                        secretKey: "string",
                        secretName: "string",
                    },
                    enableTls: false,
                    jwtRbac: false,
                    readOnlyApiKey: {
                        secretKey: "string",
                        secretName: "string",
                    },
                },
                storage: {
                    performance: {
                        asyncScorer: false,
                        optimizerCpuBudget: 0,
                    },
                },
                tls: {
                    cert: {
                        secretKey: "string",
                        secretName: "string",
                    },
                    key: {
                        secretKey: "string",
                        secretName: "string",
                    },
                },
            },
            reservedMemoryPercentage: 0,
            restartPolicy: "string",
            serviceAnnotations: [{
                key: "string",
                value: "string",
            }],
            serviceType: "string",
            tolerations: [{
                effect: "string",
                key: "string",
                operator: "string",
                tolerationSeconds: 0,
                value: "string",
            }],
            topologySpreadConstraints: [{
                maxSkew: 0,
                topologyKey: "string",
                whenUnsatisfiable: "string",
            }],
            version: "string",
        },
        accountId: "string",
        deleteBackupsOnDestroy: false,
        labels: [{
            key: "string",
            value: "string",
        }],
        name: "string",
        timeouts: {
            create: "string",
        },
    });
    
    type: qdrant-cloud:AccountsCluster
    properties:
        accountId: string
        cloudProvider: string
        cloudRegion: string
        configuration:
            allowedIpSourceRanges:
                - string
            annotations:
                - key: string
                  value: string
            clusterStorageConfiguration:
                databaseStorageClass: string
                snapshotStorageClass: string
                storageTierType: string
                volumeSnapshotClass: string
            databaseConfiguration:
                auditLogging:
                    enabled: false
                    maxLogFiles: 0
                    rotation: string
                    trustForwardedHeaders: false
                collection:
                    replicationFactor: 0
                    vectors:
                        onDisk: false
                    writeConsistencyFactor: 0
                inference:
                    enabled: false
                logLevel: string
                service:
                    apiKey:
                        secretKey: string
                        secretName: string
                    enableTls: false
                    jwtRbac: false
                    readOnlyApiKey:
                        secretKey: string
                        secretName: string
                storage:
                    performance:
                        asyncScorer: false
                        optimizerCpuBudget: 0
                tls:
                    cert:
                        secretKey: string
                        secretName: string
                    key:
                        secretKey: string
                        secretName: string
            gpuType: string
            lastModifiedAt: string
            nodeConfiguration:
                packageId: string
                resourceConfigurations:
                    - amount: 0
                      resourceType: string
                      resourceUnit: string
            nodeSelectors:
                - key: string
                  value: string
            numberOfNodes: 0
            podLabels:
                - key: string
                  value: string
            rebalanceStrategy: string
            reservedCpuPercentage: 0
            reservedMemoryPercentage: 0
            restartPolicy: string
            serviceAnnotations:
                - key: string
                  value: string
            serviceType: string
            tolerations:
                - effect: string
                  key: string
                  operator: string
                  tolerationSeconds: 0
                  value: string
            topologySpreadConstraints:
                - maxSkew: 0
                  topologyKey: string
                  whenUnsatisfiable: string
            version: string
        deleteBackupsOnDestroy: false
        labels:
            - key: string
              value: string
        name: string
        timeouts:
            create: string
    

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

    CloudProvider string
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    CloudRegion string
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    Configuration Pulumi.QdrantCloud.Inputs.AccountsClusterConfiguration
    Cluster Schema The configuration options of a cluster field
    AccountId string
    Cluster Schema Identifier of the account field
    DeleteBackupsOnDestroy bool
    Whether to delete backups when the cluster is destroyed.
    Labels List<Pulumi.QdrantCloud.Inputs.AccountsClusterLabel>
    Cluster Schema List of labels associated with the cluster field
    Name string
    Cluster Schema Name of the cluster field
    PrivateRegionId string
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    Timeouts Pulumi.QdrantCloud.Inputs.AccountsClusterTimeouts
    CloudProvider string
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    CloudRegion string
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    Configuration AccountsClusterConfigurationArgs
    Cluster Schema The configuration options of a cluster field
    AccountId string
    Cluster Schema Identifier of the account field
    DeleteBackupsOnDestroy bool
    Whether to delete backups when the cluster is destroyed.
    Labels []AccountsClusterLabelArgs
    Cluster Schema List of labels associated with the cluster field
    Name string
    Cluster Schema Name of the cluster field
    PrivateRegionId string
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    Timeouts AccountsClusterTimeoutsArgs
    cloud_provider string
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    cloud_region string
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    configuration object
    Cluster Schema The configuration options of a cluster field
    account_id string
    Cluster Schema Identifier of the account field
    delete_backups_on_destroy bool
    Whether to delete backups when the cluster is destroyed.
    labels list(object)
    Cluster Schema List of labels associated with the cluster field
    name string
    Cluster Schema Name of the cluster field
    private_region_id string
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    timeouts object
    cloudProvider String
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    cloudRegion String
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    configuration AccountsClusterConfiguration
    Cluster Schema The configuration options of a cluster field
    accountId String
    Cluster Schema Identifier of the account field
    deleteBackupsOnDestroy Boolean
    Whether to delete backups when the cluster is destroyed.
    labels List<AccountsClusterLabel>
    Cluster Schema List of labels associated with the cluster field
    name String
    Cluster Schema Name of the cluster field
    privateRegionId String
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    timeouts AccountsClusterTimeouts
    cloudProvider string
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    cloudRegion string
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    configuration AccountsClusterConfiguration
    Cluster Schema The configuration options of a cluster field
    accountId string
    Cluster Schema Identifier of the account field
    deleteBackupsOnDestroy boolean
    Whether to delete backups when the cluster is destroyed.
    labels AccountsClusterLabel[]
    Cluster Schema List of labels associated with the cluster field
    name string
    Cluster Schema Name of the cluster field
    privateRegionId string
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    timeouts AccountsClusterTimeouts
    cloud_provider str
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    cloud_region str
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    configuration AccountsClusterConfigurationArgs
    Cluster Schema The configuration options of a cluster field
    account_id str
    Cluster Schema Identifier of the account field
    delete_backups_on_destroy bool
    Whether to delete backups when the cluster is destroyed.
    labels Sequence[AccountsClusterLabelArgs]
    Cluster Schema List of labels associated with the cluster field
    name str
    Cluster Schema Name of the cluster field
    private_region_id str
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    timeouts AccountsClusterTimeoutsArgs
    cloudProvider String
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    cloudRegion String
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    configuration Property Map
    Cluster Schema The configuration options of a cluster field
    accountId String
    Cluster Schema Identifier of the account field
    deleteBackupsOnDestroy Boolean
    Whether to delete backups when the cluster is destroyed.
    labels List<Property Map>
    Cluster Schema List of labels associated with the cluster field
    name String
    Cluster Schema Name of the cluster field
    privateRegionId String
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    timeouts Property Map

    Outputs

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

    CreatedAt string
    Cluster Schema Timestamp when the cluster is created field
    Id string
    The provider-assigned unique ID for this managed resource.
    MarkedForDeletionAt string
    Cluster Schema Timestamp when this cluster was marked for deletion field
    Statuses List<Pulumi.QdrantCloud.Outputs.AccountsClusterStatus>
    Cluster Schema The status of the cluster field
    Url string
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    CreatedAt string
    Cluster Schema Timestamp when the cluster is created field
    Id string
    The provider-assigned unique ID for this managed resource.
    MarkedForDeletionAt string
    Cluster Schema Timestamp when this cluster was marked for deletion field
    Statuses []AccountsClusterStatus
    Cluster Schema The status of the cluster field
    Url string
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    created_at string
    Cluster Schema Timestamp when the cluster is created field
    id string
    The provider-assigned unique ID for this managed resource.
    marked_for_deletion_at string
    Cluster Schema Timestamp when this cluster was marked for deletion field
    statuses list(object)
    Cluster Schema The status of the cluster field
    url string
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    createdAt String
    Cluster Schema Timestamp when the cluster is created field
    id String
    The provider-assigned unique ID for this managed resource.
    markedForDeletionAt String
    Cluster Schema Timestamp when this cluster was marked for deletion field
    statuses List<AccountsClusterStatus>
    Cluster Schema The status of the cluster field
    url String
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    createdAt string
    Cluster Schema Timestamp when the cluster is created field
    id string
    The provider-assigned unique ID for this managed resource.
    markedForDeletionAt string
    Cluster Schema Timestamp when this cluster was marked for deletion field
    statuses AccountsClusterStatus[]
    Cluster Schema The status of the cluster field
    url string
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    created_at str
    Cluster Schema Timestamp when the cluster is created field
    id str
    The provider-assigned unique ID for this managed resource.
    marked_for_deletion_at str
    Cluster Schema Timestamp when this cluster was marked for deletion field
    statuses Sequence[AccountsClusterStatus]
    Cluster Schema The status of the cluster field
    url str
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    createdAt String
    Cluster Schema Timestamp when the cluster is created field
    id String
    The provider-assigned unique ID for this managed resource.
    markedForDeletionAt String
    Cluster Schema Timestamp when this cluster was marked for deletion field
    statuses List<Property Map>
    Cluster Schema The status of the cluster field
    url String
    Cluster Schema The URL of the endpoint of the Qdrant cluster field

    Look up Existing AccountsCluster Resource

    Get an existing AccountsCluster 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?: AccountsClusterState, opts?: CustomResourceOptions): AccountsCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            cloud_provider: Optional[str] = None,
            cloud_region: Optional[str] = None,
            configuration: Optional[AccountsClusterConfigurationArgs] = None,
            created_at: Optional[str] = None,
            delete_backups_on_destroy: Optional[bool] = None,
            labels: Optional[Sequence[AccountsClusterLabelArgs]] = None,
            marked_for_deletion_at: Optional[str] = None,
            name: Optional[str] = None,
            private_region_id: Optional[str] = None,
            statuses: Optional[Sequence[AccountsClusterStatusArgs]] = None,
            timeouts: Optional[AccountsClusterTimeoutsArgs] = None,
            url: Optional[str] = None) -> AccountsCluster
    func GetAccountsCluster(ctx *Context, name string, id IDInput, state *AccountsClusterState, opts ...ResourceOption) (*AccountsCluster, error)
    public static AccountsCluster Get(string name, Input<string> id, AccountsClusterState? state, CustomResourceOptions? opts = null)
    public static AccountsCluster get(String name, Output<String> id, AccountsClusterState state, CustomResourceOptions options)
    resources:  _:    type: qdrant-cloud:AccountsCluster    get:      id: ${id}
    import {
      to = qdrant-cloud_accounts_cluster.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccountId string
    Cluster Schema Identifier of the account field
    CloudProvider string
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    CloudRegion string
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    Configuration Pulumi.QdrantCloud.Inputs.AccountsClusterConfiguration
    Cluster Schema The configuration options of a cluster field
    CreatedAt string
    Cluster Schema Timestamp when the cluster is created field
    DeleteBackupsOnDestroy bool
    Whether to delete backups when the cluster is destroyed.
    Labels List<Pulumi.QdrantCloud.Inputs.AccountsClusterLabel>
    Cluster Schema List of labels associated with the cluster field
    MarkedForDeletionAt string
    Cluster Schema Timestamp when this cluster was marked for deletion field
    Name string
    Cluster Schema Name of the cluster field
    PrivateRegionId string
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    Statuses List<Pulumi.QdrantCloud.Inputs.AccountsClusterStatus>
    Cluster Schema The status of the cluster field
    Timeouts Pulumi.QdrantCloud.Inputs.AccountsClusterTimeouts
    Url string
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    AccountId string
    Cluster Schema Identifier of the account field
    CloudProvider string
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    CloudRegion string
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    Configuration AccountsClusterConfigurationArgs
    Cluster Schema The configuration options of a cluster field
    CreatedAt string
    Cluster Schema Timestamp when the cluster is created field
    DeleteBackupsOnDestroy bool
    Whether to delete backups when the cluster is destroyed.
    Labels []AccountsClusterLabelArgs
    Cluster Schema List of labels associated with the cluster field
    MarkedForDeletionAt string
    Cluster Schema Timestamp when this cluster was marked for deletion field
    Name string
    Cluster Schema Name of the cluster field
    PrivateRegionId string
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    Statuses []AccountsClusterStatusArgs
    Cluster Schema The status of the cluster field
    Timeouts AccountsClusterTimeoutsArgs
    Url string
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    account_id string
    Cluster Schema Identifier of the account field
    cloud_provider string
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    cloud_region string
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    configuration object
    Cluster Schema The configuration options of a cluster field
    created_at string
    Cluster Schema Timestamp when the cluster is created field
    delete_backups_on_destroy bool
    Whether to delete backups when the cluster is destroyed.
    labels list(object)
    Cluster Schema List of labels associated with the cluster field
    marked_for_deletion_at string
    Cluster Schema Timestamp when this cluster was marked for deletion field
    name string
    Cluster Schema Name of the cluster field
    private_region_id string
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    statuses list(object)
    Cluster Schema The status of the cluster field
    timeouts object
    url string
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    accountId String
    Cluster Schema Identifier of the account field
    cloudProvider String
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    cloudRegion String
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    configuration AccountsClusterConfiguration
    Cluster Schema The configuration options of a cluster field
    createdAt String
    Cluster Schema Timestamp when the cluster is created field
    deleteBackupsOnDestroy Boolean
    Whether to delete backups when the cluster is destroyed.
    labels List<AccountsClusterLabel>
    Cluster Schema List of labels associated with the cluster field
    markedForDeletionAt String
    Cluster Schema Timestamp when this cluster was marked for deletion field
    name String
    Cluster Schema Name of the cluster field
    privateRegionId String
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    statuses List<AccountsClusterStatus>
    Cluster Schema The status of the cluster field
    timeouts AccountsClusterTimeouts
    url String
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    accountId string
    Cluster Schema Identifier of the account field
    cloudProvider string
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    cloudRegion string
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    configuration AccountsClusterConfiguration
    Cluster Schema The configuration options of a cluster field
    createdAt string
    Cluster Schema Timestamp when the cluster is created field
    deleteBackupsOnDestroy boolean
    Whether to delete backups when the cluster is destroyed.
    labels AccountsClusterLabel[]
    Cluster Schema List of labels associated with the cluster field
    markedForDeletionAt string
    Cluster Schema Timestamp when this cluster was marked for deletion field
    name string
    Cluster Schema Name of the cluster field
    privateRegionId string
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    statuses AccountsClusterStatus[]
    Cluster Schema The status of the cluster field
    timeouts AccountsClusterTimeouts
    url string
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    account_id str
    Cluster Schema Identifier of the account field
    cloud_provider str
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    cloud_region str
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    configuration AccountsClusterConfigurationArgs
    Cluster Schema The configuration options of a cluster field
    created_at str
    Cluster Schema Timestamp when the cluster is created field
    delete_backups_on_destroy bool
    Whether to delete backups when the cluster is destroyed.
    labels Sequence[AccountsClusterLabelArgs]
    Cluster Schema List of labels associated with the cluster field
    marked_for_deletion_at str
    Cluster Schema Timestamp when this cluster was marked for deletion field
    name str
    Cluster Schema Name of the cluster field
    private_region_id str
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    statuses Sequence[AccountsClusterStatusArgs]
    Cluster Schema The status of the cluster field
    timeouts AccountsClusterTimeoutsArgs
    url str
    Cluster Schema The URL of the endpoint of the Qdrant cluster field
    accountId String
    Cluster Schema Identifier of the account field
    cloudProvider String
    Cluster Schema Cloud provider where the cluster is hosted. Must match one of the provider IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviders" method. For Hybrid cloud this should be "hybrid". field
    cloudRegion String
    Cluster Schema Cloud provider region where the cluster is hosted. Must match one of the region IDs returned by the "qdrant.cloud.platform.v1.PlatformService.ListCloudProviderRegions" method. For hybrid this should be the hybrid cloud environment ID. field
    configuration Property Map
    Cluster Schema The configuration options of a cluster field
    createdAt String
    Cluster Schema Timestamp when the cluster is created field
    deleteBackupsOnDestroy Boolean
    Whether to delete backups when the cluster is destroyed.
    labels List<Property Map>
    Cluster Schema List of labels associated with the cluster field
    markedForDeletionAt String
    Cluster Schema Timestamp when this cluster was marked for deletion field
    name String
    Cluster Schema Name of the cluster field
    privateRegionId String
    Cluster Schema Identifier of the Hybrid cloud region field

    Deprecated: Deprecated

    statuses List<Property Map>
    Cluster Schema The status of the cluster field
    timeouts Property Map
    url String
    Cluster Schema The URL of the endpoint of the Qdrant cluster field

    Supporting Types

    AccountsClusterConfiguration, AccountsClusterConfigurationArgs

    NodeConfiguration Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationNodeConfiguration
    Cluster Schema The node configuration options of a cluster field
    NumberOfNodes double
    Cluster Schema The number of nodes in the cluster field
    AllowedIpSourceRanges List<string>
    List of allowed IP source ranges for this cluster. On Hybrid Cloud, this will configure the loadBalancerSourceRanges of a LoadBalancer Service.
    Annotations List<Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationAnnotation>
    List of annotations for this cluster in a hybrid cloud environment.
    ClusterStorageConfiguration Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationClusterStorageConfiguration
    Configuration for cluster storage settings.
    DatabaseConfiguration Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfiguration
    Configuration for the Qdrant database engine, primarily for hybrid cloud setups.
    GpuType string
    The GPU type that should be used for the database. Must be one of: CLUSTERCONFIGURATIONGPUTYPEAMD, CLUSTERCONFIGURATIONGPUTYPENVIDIA.
    LastModifiedAt string
    Cluster Schema Timestamp when the cluster configuration was last updated field
    NodeSelectors List<Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationNodeSelector>
    The node selector for this cluster in a hybrid cloud environment.
    PodLabels List<Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationPodLabel>
    List of labels applied to the pods of this cluster in a hybrid cloud environment.
    RebalanceStrategy string
    The automatic shard rebalancing strategy for the database. Must be one of: CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNT, CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNTANDSIZE, CLUSTERCONFIGURATIONREBALANCESTRATEGYBY_SIZE.
    ReservedCpuPercentage double
    The percentage of CPU resources reserved for system components.
    ReservedMemoryPercentage double
    The percentage of RAM resources reserved for system components.
    RestartPolicy string
    The restart policy for the database. Must be one of: CLUSTERCONFIGURATIONRESTARTPOLICYAUTOMATIC, CLUSTERCONFIGURATIONRESTARTPOLICYPARALLEL, CLUSTERCONFIGURATIONRESTARTPOLICYROLLING.
    ServiceAnnotations List<Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationServiceAnnotation>
    List of annotations applied to the service of this cluster in a hybrid cloud environment.
    ServiceType string
    The type of service to use for this cluster in a hybrid cloud environment. Must be one of: CLUSTERSERVICETYPECLUSTERIP, CLUSTERSERVICETYPELOADBALANCER, CLUSTERSERVICETYPENODEPORT.
    Tolerations List<Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationToleration>
    List of tolerations for this cluster in a hybrid cloud environment.
    TopologySpreadConstraints List<Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationTopologySpreadConstraint>
    List of topology spread constraints for this cluster in a hybrid cloud environment.
    Version string
    Cluster Schema Version of the Qdrant cluster field
    NodeConfiguration AccountsClusterConfigurationNodeConfiguration
    Cluster Schema The node configuration options of a cluster field
    NumberOfNodes float64
    Cluster Schema The number of nodes in the cluster field
    AllowedIpSourceRanges []string
    List of allowed IP source ranges for this cluster. On Hybrid Cloud, this will configure the loadBalancerSourceRanges of a LoadBalancer Service.
    Annotations []AccountsClusterConfigurationAnnotation
    List of annotations for this cluster in a hybrid cloud environment.
    ClusterStorageConfiguration AccountsClusterConfigurationClusterStorageConfiguration
    Configuration for cluster storage settings.
    DatabaseConfiguration AccountsClusterConfigurationDatabaseConfiguration
    Configuration for the Qdrant database engine, primarily for hybrid cloud setups.
    GpuType string
    The GPU type that should be used for the database. Must be one of: CLUSTERCONFIGURATIONGPUTYPEAMD, CLUSTERCONFIGURATIONGPUTYPENVIDIA.
    LastModifiedAt string
    Cluster Schema Timestamp when the cluster configuration was last updated field
    NodeSelectors []AccountsClusterConfigurationNodeSelector
    The node selector for this cluster in a hybrid cloud environment.
    PodLabels []AccountsClusterConfigurationPodLabel
    List of labels applied to the pods of this cluster in a hybrid cloud environment.
    RebalanceStrategy string
    The automatic shard rebalancing strategy for the database. Must be one of: CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNT, CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNTANDSIZE, CLUSTERCONFIGURATIONREBALANCESTRATEGYBY_SIZE.
    ReservedCpuPercentage float64
    The percentage of CPU resources reserved for system components.
    ReservedMemoryPercentage float64
    The percentage of RAM resources reserved for system components.
    RestartPolicy string
    The restart policy for the database. Must be one of: CLUSTERCONFIGURATIONRESTARTPOLICYAUTOMATIC, CLUSTERCONFIGURATIONRESTARTPOLICYPARALLEL, CLUSTERCONFIGURATIONRESTARTPOLICYROLLING.
    ServiceAnnotations []AccountsClusterConfigurationServiceAnnotation
    List of annotations applied to the service of this cluster in a hybrid cloud environment.
    ServiceType string
    The type of service to use for this cluster in a hybrid cloud environment. Must be one of: CLUSTERSERVICETYPECLUSTERIP, CLUSTERSERVICETYPELOADBALANCER, CLUSTERSERVICETYPENODEPORT.
    Tolerations []AccountsClusterConfigurationToleration
    List of tolerations for this cluster in a hybrid cloud environment.
    TopologySpreadConstraints []AccountsClusterConfigurationTopologySpreadConstraint
    List of topology spread constraints for this cluster in a hybrid cloud environment.
    Version string
    Cluster Schema Version of the Qdrant cluster field
    node_configuration object
    Cluster Schema The node configuration options of a cluster field
    number_of_nodes number
    Cluster Schema The number of nodes in the cluster field
    allowed_ip_source_ranges list(string)
    List of allowed IP source ranges for this cluster. On Hybrid Cloud, this will configure the loadBalancerSourceRanges of a LoadBalancer Service.
    annotations list(object)
    List of annotations for this cluster in a hybrid cloud environment.
    cluster_storage_configuration object
    Configuration for cluster storage settings.
    database_configuration object
    Configuration for the Qdrant database engine, primarily for hybrid cloud setups.
    gpu_type string
    The GPU type that should be used for the database. Must be one of: CLUSTERCONFIGURATIONGPUTYPEAMD, CLUSTERCONFIGURATIONGPUTYPENVIDIA.
    last_modified_at string
    Cluster Schema Timestamp when the cluster configuration was last updated field
    node_selectors list(object)
    The node selector for this cluster in a hybrid cloud environment.
    pod_labels list(object)
    List of labels applied to the pods of this cluster in a hybrid cloud environment.
    rebalance_strategy string
    The automatic shard rebalancing strategy for the database. Must be one of: CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNT, CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNTANDSIZE, CLUSTERCONFIGURATIONREBALANCESTRATEGYBY_SIZE.
    reserved_cpu_percentage number
    The percentage of CPU resources reserved for system components.
    reserved_memory_percentage number
    The percentage of RAM resources reserved for system components.
    restart_policy string
    The restart policy for the database. Must be one of: CLUSTERCONFIGURATIONRESTARTPOLICYAUTOMATIC, CLUSTERCONFIGURATIONRESTARTPOLICYPARALLEL, CLUSTERCONFIGURATIONRESTARTPOLICYROLLING.
    service_annotations list(object)
    List of annotations applied to the service of this cluster in a hybrid cloud environment.
    service_type string
    The type of service to use for this cluster in a hybrid cloud environment. Must be one of: CLUSTERSERVICETYPECLUSTERIP, CLUSTERSERVICETYPELOADBALANCER, CLUSTERSERVICETYPENODEPORT.
    tolerations list(object)
    List of tolerations for this cluster in a hybrid cloud environment.
    topology_spread_constraints list(object)
    List of topology spread constraints for this cluster in a hybrid cloud environment.
    version string
    Cluster Schema Version of the Qdrant cluster field
    nodeConfiguration AccountsClusterConfigurationNodeConfiguration
    Cluster Schema The node configuration options of a cluster field
    numberOfNodes Double
    Cluster Schema The number of nodes in the cluster field
    allowedIpSourceRanges List<String>
    List of allowed IP source ranges for this cluster. On Hybrid Cloud, this will configure the loadBalancerSourceRanges of a LoadBalancer Service.
    annotations List<AccountsClusterConfigurationAnnotation>
    List of annotations for this cluster in a hybrid cloud environment.
    clusterStorageConfiguration AccountsClusterConfigurationClusterStorageConfiguration
    Configuration for cluster storage settings.
    databaseConfiguration AccountsClusterConfigurationDatabaseConfiguration
    Configuration for the Qdrant database engine, primarily for hybrid cloud setups.
    gpuType String
    The GPU type that should be used for the database. Must be one of: CLUSTERCONFIGURATIONGPUTYPEAMD, CLUSTERCONFIGURATIONGPUTYPENVIDIA.
    lastModifiedAt String
    Cluster Schema Timestamp when the cluster configuration was last updated field
    nodeSelectors List<AccountsClusterConfigurationNodeSelector>
    The node selector for this cluster in a hybrid cloud environment.
    podLabels List<AccountsClusterConfigurationPodLabel>
    List of labels applied to the pods of this cluster in a hybrid cloud environment.
    rebalanceStrategy String
    The automatic shard rebalancing strategy for the database. Must be one of: CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNT, CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNTANDSIZE, CLUSTERCONFIGURATIONREBALANCESTRATEGYBY_SIZE.
    reservedCpuPercentage Double
    The percentage of CPU resources reserved for system components.
    reservedMemoryPercentage Double
    The percentage of RAM resources reserved for system components.
    restartPolicy String
    The restart policy for the database. Must be one of: CLUSTERCONFIGURATIONRESTARTPOLICYAUTOMATIC, CLUSTERCONFIGURATIONRESTARTPOLICYPARALLEL, CLUSTERCONFIGURATIONRESTARTPOLICYROLLING.
    serviceAnnotations List<AccountsClusterConfigurationServiceAnnotation>
    List of annotations applied to the service of this cluster in a hybrid cloud environment.
    serviceType String
    The type of service to use for this cluster in a hybrid cloud environment. Must be one of: CLUSTERSERVICETYPECLUSTERIP, CLUSTERSERVICETYPELOADBALANCER, CLUSTERSERVICETYPENODEPORT.
    tolerations List<AccountsClusterConfigurationToleration>
    List of tolerations for this cluster in a hybrid cloud environment.
    topologySpreadConstraints List<AccountsClusterConfigurationTopologySpreadConstraint>
    List of topology spread constraints for this cluster in a hybrid cloud environment.
    version String
    Cluster Schema Version of the Qdrant cluster field
    nodeConfiguration AccountsClusterConfigurationNodeConfiguration
    Cluster Schema The node configuration options of a cluster field
    numberOfNodes number
    Cluster Schema The number of nodes in the cluster field
    allowedIpSourceRanges string[]
    List of allowed IP source ranges for this cluster. On Hybrid Cloud, this will configure the loadBalancerSourceRanges of a LoadBalancer Service.
    annotations AccountsClusterConfigurationAnnotation[]
    List of annotations for this cluster in a hybrid cloud environment.
    clusterStorageConfiguration AccountsClusterConfigurationClusterStorageConfiguration
    Configuration for cluster storage settings.
    databaseConfiguration AccountsClusterConfigurationDatabaseConfiguration
    Configuration for the Qdrant database engine, primarily for hybrid cloud setups.
    gpuType string
    The GPU type that should be used for the database. Must be one of: CLUSTERCONFIGURATIONGPUTYPEAMD, CLUSTERCONFIGURATIONGPUTYPENVIDIA.
    lastModifiedAt string
    Cluster Schema Timestamp when the cluster configuration was last updated field
    nodeSelectors AccountsClusterConfigurationNodeSelector[]
    The node selector for this cluster in a hybrid cloud environment.
    podLabels AccountsClusterConfigurationPodLabel[]
    List of labels applied to the pods of this cluster in a hybrid cloud environment.
    rebalanceStrategy string
    The automatic shard rebalancing strategy for the database. Must be one of: CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNT, CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNTANDSIZE, CLUSTERCONFIGURATIONREBALANCESTRATEGYBY_SIZE.
    reservedCpuPercentage number
    The percentage of CPU resources reserved for system components.
    reservedMemoryPercentage number
    The percentage of RAM resources reserved for system components.
    restartPolicy string
    The restart policy for the database. Must be one of: CLUSTERCONFIGURATIONRESTARTPOLICYAUTOMATIC, CLUSTERCONFIGURATIONRESTARTPOLICYPARALLEL, CLUSTERCONFIGURATIONRESTARTPOLICYROLLING.
    serviceAnnotations AccountsClusterConfigurationServiceAnnotation[]
    List of annotations applied to the service of this cluster in a hybrid cloud environment.
    serviceType string
    The type of service to use for this cluster in a hybrid cloud environment. Must be one of: CLUSTERSERVICETYPECLUSTERIP, CLUSTERSERVICETYPELOADBALANCER, CLUSTERSERVICETYPENODEPORT.
    tolerations AccountsClusterConfigurationToleration[]
    List of tolerations for this cluster in a hybrid cloud environment.
    topologySpreadConstraints AccountsClusterConfigurationTopologySpreadConstraint[]
    List of topology spread constraints for this cluster in a hybrid cloud environment.
    version string
    Cluster Schema Version of the Qdrant cluster field
    node_configuration AccountsClusterConfigurationNodeConfiguration
    Cluster Schema The node configuration options of a cluster field
    number_of_nodes float
    Cluster Schema The number of nodes in the cluster field
    allowed_ip_source_ranges Sequence[str]
    List of allowed IP source ranges for this cluster. On Hybrid Cloud, this will configure the loadBalancerSourceRanges of a LoadBalancer Service.
    annotations Sequence[AccountsClusterConfigurationAnnotation]
    List of annotations for this cluster in a hybrid cloud environment.
    cluster_storage_configuration AccountsClusterConfigurationClusterStorageConfiguration
    Configuration for cluster storage settings.
    database_configuration AccountsClusterConfigurationDatabaseConfiguration
    Configuration for the Qdrant database engine, primarily for hybrid cloud setups.
    gpu_type str
    The GPU type that should be used for the database. Must be one of: CLUSTERCONFIGURATIONGPUTYPEAMD, CLUSTERCONFIGURATIONGPUTYPENVIDIA.
    last_modified_at str
    Cluster Schema Timestamp when the cluster configuration was last updated field
    node_selectors Sequence[AccountsClusterConfigurationNodeSelector]
    The node selector for this cluster in a hybrid cloud environment.
    pod_labels Sequence[AccountsClusterConfigurationPodLabel]
    List of labels applied to the pods of this cluster in a hybrid cloud environment.
    rebalance_strategy str
    The automatic shard rebalancing strategy for the database. Must be one of: CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNT, CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNTANDSIZE, CLUSTERCONFIGURATIONREBALANCESTRATEGYBY_SIZE.
    reserved_cpu_percentage float
    The percentage of CPU resources reserved for system components.
    reserved_memory_percentage float
    The percentage of RAM resources reserved for system components.
    restart_policy str
    The restart policy for the database. Must be one of: CLUSTERCONFIGURATIONRESTARTPOLICYAUTOMATIC, CLUSTERCONFIGURATIONRESTARTPOLICYPARALLEL, CLUSTERCONFIGURATIONRESTARTPOLICYROLLING.
    service_annotations Sequence[AccountsClusterConfigurationServiceAnnotation]
    List of annotations applied to the service of this cluster in a hybrid cloud environment.
    service_type str
    The type of service to use for this cluster in a hybrid cloud environment. Must be one of: CLUSTERSERVICETYPECLUSTERIP, CLUSTERSERVICETYPELOADBALANCER, CLUSTERSERVICETYPENODEPORT.
    tolerations Sequence[AccountsClusterConfigurationToleration]
    List of tolerations for this cluster in a hybrid cloud environment.
    topology_spread_constraints Sequence[AccountsClusterConfigurationTopologySpreadConstraint]
    List of topology spread constraints for this cluster in a hybrid cloud environment.
    version str
    Cluster Schema Version of the Qdrant cluster field
    nodeConfiguration Property Map
    Cluster Schema The node configuration options of a cluster field
    numberOfNodes Number
    Cluster Schema The number of nodes in the cluster field
    allowedIpSourceRanges List<String>
    List of allowed IP source ranges for this cluster. On Hybrid Cloud, this will configure the loadBalancerSourceRanges of a LoadBalancer Service.
    annotations List<Property Map>
    List of annotations for this cluster in a hybrid cloud environment.
    clusterStorageConfiguration Property Map
    Configuration for cluster storage settings.
    databaseConfiguration Property Map
    Configuration for the Qdrant database engine, primarily for hybrid cloud setups.
    gpuType String
    The GPU type that should be used for the database. Must be one of: CLUSTERCONFIGURATIONGPUTYPEAMD, CLUSTERCONFIGURATIONGPUTYPENVIDIA.
    lastModifiedAt String
    Cluster Schema Timestamp when the cluster configuration was last updated field
    nodeSelectors List<Property Map>
    The node selector for this cluster in a hybrid cloud environment.
    podLabels List<Property Map>
    List of labels applied to the pods of this cluster in a hybrid cloud environment.
    rebalanceStrategy String
    The automatic shard rebalancing strategy for the database. Must be one of: CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNT, CLUSTERCONFIGURATIONREBALANCESTRATEGYBYCOUNTANDSIZE, CLUSTERCONFIGURATIONREBALANCESTRATEGYBY_SIZE.
    reservedCpuPercentage Number
    The percentage of CPU resources reserved for system components.
    reservedMemoryPercentage Number
    The percentage of RAM resources reserved for system components.
    restartPolicy String
    The restart policy for the database. Must be one of: CLUSTERCONFIGURATIONRESTARTPOLICYAUTOMATIC, CLUSTERCONFIGURATIONRESTARTPOLICYPARALLEL, CLUSTERCONFIGURATIONRESTARTPOLICYROLLING.
    serviceAnnotations List<Property Map>
    List of annotations applied to the service of this cluster in a hybrid cloud environment.
    serviceType String
    The type of service to use for this cluster in a hybrid cloud environment. Must be one of: CLUSTERSERVICETYPECLUSTERIP, CLUSTERSERVICETYPELOADBALANCER, CLUSTERSERVICETYPENODEPORT.
    tolerations List<Property Map>
    List of tolerations for this cluster in a hybrid cloud environment.
    topologySpreadConstraints List<Property Map>
    List of topology spread constraints for this cluster in a hybrid cloud environment.
    version String
    Cluster Schema Version of the Qdrant cluster field

    AccountsClusterConfigurationAnnotation, AccountsClusterConfigurationAnnotationArgs

    Key string
    Value string
    Key string
    Value string
    key string
    value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    AccountsClusterConfigurationClusterStorageConfiguration, AccountsClusterConfigurationClusterStorageConfigurationArgs

    DatabaseStorageClass string
    The storage class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    SnapshotStorageClass string
    The storage class to use for the snapshot storage, if different from the environment default. Hybrid cloud clusters only.
    StorageTierType string
    The storage performance tier for the cluster. Must be one of: STORAGETIERTYPEBALANCED, STORAGETIERTYPECOSTOPTIMISED, STORAGETIERTYPEPERFORMANCE.
    VolumeSnapshotClass string
    The volume snapshot class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    DatabaseStorageClass string
    The storage class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    SnapshotStorageClass string
    The storage class to use for the snapshot storage, if different from the environment default. Hybrid cloud clusters only.
    StorageTierType string
    The storage performance tier for the cluster. Must be one of: STORAGETIERTYPEBALANCED, STORAGETIERTYPECOSTOPTIMISED, STORAGETIERTYPEPERFORMANCE.
    VolumeSnapshotClass string
    The volume snapshot class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    database_storage_class string
    The storage class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    snapshot_storage_class string
    The storage class to use for the snapshot storage, if different from the environment default. Hybrid cloud clusters only.
    storage_tier_type string
    The storage performance tier for the cluster. Must be one of: STORAGETIERTYPEBALANCED, STORAGETIERTYPECOSTOPTIMISED, STORAGETIERTYPEPERFORMANCE.
    volume_snapshot_class string
    The volume snapshot class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    databaseStorageClass String
    The storage class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    snapshotStorageClass String
    The storage class to use for the snapshot storage, if different from the environment default. Hybrid cloud clusters only.
    storageTierType String
    The storage performance tier for the cluster. Must be one of: STORAGETIERTYPEBALANCED, STORAGETIERTYPECOSTOPTIMISED, STORAGETIERTYPEPERFORMANCE.
    volumeSnapshotClass String
    The volume snapshot class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    databaseStorageClass string
    The storage class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    snapshotStorageClass string
    The storage class to use for the snapshot storage, if different from the environment default. Hybrid cloud clusters only.
    storageTierType string
    The storage performance tier for the cluster. Must be one of: STORAGETIERTYPEBALANCED, STORAGETIERTYPECOSTOPTIMISED, STORAGETIERTYPEPERFORMANCE.
    volumeSnapshotClass string
    The volume snapshot class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    database_storage_class str
    The storage class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    snapshot_storage_class str
    The storage class to use for the snapshot storage, if different from the environment default. Hybrid cloud clusters only.
    storage_tier_type str
    The storage performance tier for the cluster. Must be one of: STORAGETIERTYPEBALANCED, STORAGETIERTYPECOSTOPTIMISED, STORAGETIERTYPEPERFORMANCE.
    volume_snapshot_class str
    The volume snapshot class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    databaseStorageClass String
    The storage class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.
    snapshotStorageClass String
    The storage class to use for the snapshot storage, if different from the environment default. Hybrid cloud clusters only.
    storageTierType String
    The storage performance tier for the cluster. Must be one of: STORAGETIERTYPEBALANCED, STORAGETIERTYPECOSTOPTIMISED, STORAGETIERTYPEPERFORMANCE.
    volumeSnapshotClass String
    The volume snapshot class to use for the database storage, if different from the environment default. Hybrid cloud clusters only.

    AccountsClusterConfigurationDatabaseConfiguration, AccountsClusterConfigurationDatabaseConfigurationArgs

    AuditLogging Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationAuditLogging
    Audit logging configuration for the Qdrant database.
    Collection Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationCollection
    Default collection parameters.
    Inference Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationInference
    Inference service configuration.
    LogLevel string
    Logging level for the database. Must be one of: DATABASECONFIGURATIONLOGLEVELDEBUG, DATABASECONFIGURATIONLOGLEVELERROR, DATABASECONFIGURATIONLOGLEVELINFO, DATABASECONFIGURATIONLOGLEVELOFF, DATABASECONFIGURATIONLOGLEVELTRACE, DATABASECONFIGURATIONLOGLEVELWARN.
    Service Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationService
    Service-related configuration.
    Storage Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationStorage
    Storage-related configuration.
    Tls Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationDatabaseConfigurationTls
    TLS configuration for the database.
    AuditLogging AccountsClusterConfigurationDatabaseConfigurationAuditLogging
    Audit logging configuration for the Qdrant database.
    Collection AccountsClusterConfigurationDatabaseConfigurationCollection
    Default collection parameters.
    Inference AccountsClusterConfigurationDatabaseConfigurationInference
    Inference service configuration.
    LogLevel string
    Logging level for the database. Must be one of: DATABASECONFIGURATIONLOGLEVELDEBUG, DATABASECONFIGURATIONLOGLEVELERROR, DATABASECONFIGURATIONLOGLEVELINFO, DATABASECONFIGURATIONLOGLEVELOFF, DATABASECONFIGURATIONLOGLEVELTRACE, DATABASECONFIGURATIONLOGLEVELWARN.
    Service AccountsClusterConfigurationDatabaseConfigurationService
    Service-related configuration.
    Storage AccountsClusterConfigurationDatabaseConfigurationStorage
    Storage-related configuration.
    Tls AccountsClusterConfigurationDatabaseConfigurationTls
    TLS configuration for the database.
    audit_logging object
    Audit logging configuration for the Qdrant database.
    collection object
    Default collection parameters.
    inference object
    Inference service configuration.
    log_level string
    Logging level for the database. Must be one of: DATABASECONFIGURATIONLOGLEVELDEBUG, DATABASECONFIGURATIONLOGLEVELERROR, DATABASECONFIGURATIONLOGLEVELINFO, DATABASECONFIGURATIONLOGLEVELOFF, DATABASECONFIGURATIONLOGLEVELTRACE, DATABASECONFIGURATIONLOGLEVELWARN.
    service object
    Service-related configuration.
    storage object
    Storage-related configuration.
    tls object
    TLS configuration for the database.
    auditLogging AccountsClusterConfigurationDatabaseConfigurationAuditLogging
    Audit logging configuration for the Qdrant database.
    collection AccountsClusterConfigurationDatabaseConfigurationCollection
    Default collection parameters.
    inference AccountsClusterConfigurationDatabaseConfigurationInference
    Inference service configuration.
    logLevel String
    Logging level for the database. Must be one of: DATABASECONFIGURATIONLOGLEVELDEBUG, DATABASECONFIGURATIONLOGLEVELERROR, DATABASECONFIGURATIONLOGLEVELINFO, DATABASECONFIGURATIONLOGLEVELOFF, DATABASECONFIGURATIONLOGLEVELTRACE, DATABASECONFIGURATIONLOGLEVELWARN.
    service AccountsClusterConfigurationDatabaseConfigurationService
    Service-related configuration.
    storage AccountsClusterConfigurationDatabaseConfigurationStorage
    Storage-related configuration.
    tls AccountsClusterConfigurationDatabaseConfigurationTls
    TLS configuration for the database.
    auditLogging AccountsClusterConfigurationDatabaseConfigurationAuditLogging
    Audit logging configuration for the Qdrant database.
    collection AccountsClusterConfigurationDatabaseConfigurationCollection
    Default collection parameters.
    inference AccountsClusterConfigurationDatabaseConfigurationInference
    Inference service configuration.
    logLevel string
    Logging level for the database. Must be one of: DATABASECONFIGURATIONLOGLEVELDEBUG, DATABASECONFIGURATIONLOGLEVELERROR, DATABASECONFIGURATIONLOGLEVELINFO, DATABASECONFIGURATIONLOGLEVELOFF, DATABASECONFIGURATIONLOGLEVELTRACE, DATABASECONFIGURATIONLOGLEVELWARN.
    service AccountsClusterConfigurationDatabaseConfigurationService
    Service-related configuration.
    storage AccountsClusterConfigurationDatabaseConfigurationStorage
    Storage-related configuration.
    tls AccountsClusterConfigurationDatabaseConfigurationTls
    TLS configuration for the database.
    audit_logging AccountsClusterConfigurationDatabaseConfigurationAuditLogging
    Audit logging configuration for the Qdrant database.
    collection AccountsClusterConfigurationDatabaseConfigurationCollection
    Default collection parameters.
    inference AccountsClusterConfigurationDatabaseConfigurationInference
    Inference service configuration.
    log_level str
    Logging level for the database. Must be one of: DATABASECONFIGURATIONLOGLEVELDEBUG, DATABASECONFIGURATIONLOGLEVELERROR, DATABASECONFIGURATIONLOGLEVELINFO, DATABASECONFIGURATIONLOGLEVELOFF, DATABASECONFIGURATIONLOGLEVELTRACE, DATABASECONFIGURATIONLOGLEVELWARN.
    service AccountsClusterConfigurationDatabaseConfigurationService
    Service-related configuration.
    storage AccountsClusterConfigurationDatabaseConfigurationStorage
    Storage-related configuration.
    tls AccountsClusterConfigurationDatabaseConfigurationTls
    TLS configuration for the database.
    auditLogging Property Map
    Audit logging configuration for the Qdrant database.
    collection Property Map
    Default collection parameters.
    inference Property Map
    Inference service configuration.
    logLevel String
    Logging level for the database. Must be one of: DATABASECONFIGURATIONLOGLEVELDEBUG, DATABASECONFIGURATIONLOGLEVELERROR, DATABASECONFIGURATIONLOGLEVELINFO, DATABASECONFIGURATIONLOGLEVELOFF, DATABASECONFIGURATIONLOGLEVELTRACE, DATABASECONFIGURATIONLOGLEVELWARN.
    service Property Map
    Service-related configuration.
    storage Property Map
    Storage-related configuration.
    tls Property Map
    TLS configuration for the database.

    AccountsClusterConfigurationDatabaseConfigurationAuditLogging, AccountsClusterConfigurationDatabaseConfigurationAuditLoggingArgs

    Enabled bool
    If true, the cluster is configured to use audit logging.
    MaxLogFiles double
    Maximum number of rotated audit log files to keep. Default is 7.
    Rotation string
    Rotation interval for audit logs. Must be one of: AUDITLOGROTATIONDAILY, AUDITLOGROTATIONHOURLY.
    TrustForwardedHeaders bool
    Whether to use the X-Forwarded-For header to determine the client address in audit log entries. Relevant for hybrid cloud clusters only.
    Enabled bool
    If true, the cluster is configured to use audit logging.
    MaxLogFiles float64
    Maximum number of rotated audit log files to keep. Default is 7.
    Rotation string
    Rotation interval for audit logs. Must be one of: AUDITLOGROTATIONDAILY, AUDITLOGROTATIONHOURLY.
    TrustForwardedHeaders bool
    Whether to use the X-Forwarded-For header to determine the client address in audit log entries. Relevant for hybrid cloud clusters only.
    enabled bool
    If true, the cluster is configured to use audit logging.
    max_log_files number
    Maximum number of rotated audit log files to keep. Default is 7.
    rotation string
    Rotation interval for audit logs. Must be one of: AUDITLOGROTATIONDAILY, AUDITLOGROTATIONHOURLY.
    trust_forwarded_headers bool
    Whether to use the X-Forwarded-For header to determine the client address in audit log entries. Relevant for hybrid cloud clusters only.
    enabled Boolean
    If true, the cluster is configured to use audit logging.
    maxLogFiles Double
    Maximum number of rotated audit log files to keep. Default is 7.
    rotation String
    Rotation interval for audit logs. Must be one of: AUDITLOGROTATIONDAILY, AUDITLOGROTATIONHOURLY.
    trustForwardedHeaders Boolean
    Whether to use the X-Forwarded-For header to determine the client address in audit log entries. Relevant for hybrid cloud clusters only.
    enabled boolean
    If true, the cluster is configured to use audit logging.
    maxLogFiles number
    Maximum number of rotated audit log files to keep. Default is 7.
    rotation string
    Rotation interval for audit logs. Must be one of: AUDITLOGROTATIONDAILY, AUDITLOGROTATIONHOURLY.
    trustForwardedHeaders boolean
    Whether to use the X-Forwarded-For header to determine the client address in audit log entries. Relevant for hybrid cloud clusters only.
    enabled bool
    If true, the cluster is configured to use audit logging.
    max_log_files float
    Maximum number of rotated audit log files to keep. Default is 7.
    rotation str
    Rotation interval for audit logs. Must be one of: AUDITLOGROTATIONDAILY, AUDITLOGROTATIONHOURLY.
    trust_forwarded_headers bool
    Whether to use the X-Forwarded-For header to determine the client address in audit log entries. Relevant for hybrid cloud clusters only.
    enabled Boolean
    If true, the cluster is configured to use audit logging.
    maxLogFiles Number
    Maximum number of rotated audit log files to keep. Default is 7.
    rotation String
    Rotation interval for audit logs. Must be one of: AUDITLOGROTATIONDAILY, AUDITLOGROTATIONHOURLY.
    trustForwardedHeaders Boolean
    Whether to use the X-Forwarded-For header to determine the client address in audit log entries. Relevant for hybrid cloud clusters only.

    AccountsClusterConfigurationDatabaseConfigurationCollection, AccountsClusterConfigurationDatabaseConfigurationCollectionArgs

    AccountsClusterConfigurationDatabaseConfigurationCollectionVectors, AccountsClusterConfigurationDatabaseConfigurationCollectionVectorsArgs

    OnDisk bool
    OnDisk bool
    on_disk bool
    onDisk Boolean
    onDisk boolean
    on_disk bool
    onDisk Boolean

    AccountsClusterConfigurationDatabaseConfigurationInference, AccountsClusterConfigurationDatabaseConfigurationInferenceArgs

    Enabled bool
    Enabled bool
    enabled bool
    enabled Boolean
    enabled boolean
    enabled bool
    enabled Boolean

    AccountsClusterConfigurationDatabaseConfigurationService, AccountsClusterConfigurationDatabaseConfigurationServiceArgs

    api_key object
    Secret to use for the main API key.
    enable_tls bool
    force_include_jwt_rbac bool

    Deprecated: Deprecated

    jwt_rbac bool
    read_only_api_key object
    Secret to use for the read-only API key.
    apiKey Property Map
    Secret to use for the main API key.
    enableTls Boolean
    forceIncludeJwtRbac Boolean

    Deprecated: Deprecated

    jwtRbac Boolean
    readOnlyApiKey Property Map
    Secret to use for the read-only API key.

    AccountsClusterConfigurationDatabaseConfigurationServiceApiKey, AccountsClusterConfigurationDatabaseConfigurationServiceApiKeyArgs

    SecretKey string
    The key within the secret.
    SecretName string
    The name of the secret.
    SecretKey string
    The key within the secret.
    SecretName string
    The name of the secret.
    secret_key string
    The key within the secret.
    secret_name string
    The name of the secret.
    secretKey String
    The key within the secret.
    secretName String
    The name of the secret.
    secretKey string
    The key within the secret.
    secretName string
    The name of the secret.
    secret_key str
    The key within the secret.
    secret_name str
    The name of the secret.
    secretKey String
    The key within the secret.
    secretName String
    The name of the secret.

    AccountsClusterConfigurationDatabaseConfigurationServiceReadOnlyApiKey, AccountsClusterConfigurationDatabaseConfigurationServiceReadOnlyApiKeyArgs

    SecretKey string
    The key within the secret.
    SecretName string
    The name of the secret.
    SecretKey string
    The key within the secret.
    SecretName string
    The name of the secret.
    secret_key string
    The key within the secret.
    secret_name string
    The name of the secret.
    secretKey String
    The key within the secret.
    secretName String
    The name of the secret.
    secretKey string
    The key within the secret.
    secretName string
    The name of the secret.
    secret_key str
    The key within the secret.
    secret_name str
    The name of the secret.
    secretKey String
    The key within the secret.
    secretName String
    The name of the secret.

    AccountsClusterConfigurationDatabaseConfigurationStorage, AccountsClusterConfigurationDatabaseConfigurationStorageArgs

    AccountsClusterConfigurationDatabaseConfigurationStoragePerformance, AccountsClusterConfigurationDatabaseConfigurationStoragePerformanceArgs

    AccountsClusterConfigurationDatabaseConfigurationTls, AccountsClusterConfigurationDatabaseConfigurationTlsArgs

    cert object
    Secret to use for the certificate.
    key object
    Secret to use for the private key.
    cert Property Map
    Secret to use for the certificate.
    key Property Map
    Secret to use for the private key.

    AccountsClusterConfigurationDatabaseConfigurationTlsCert, AccountsClusterConfigurationDatabaseConfigurationTlsCertArgs

    SecretKey string
    The key within the secret.
    SecretName string
    The name of the secret.
    SecretKey string
    The key within the secret.
    SecretName string
    The name of the secret.
    secret_key string
    The key within the secret.
    secret_name string
    The name of the secret.
    secretKey String
    The key within the secret.
    secretName String
    The name of the secret.
    secretKey string
    The key within the secret.
    secretName string
    The name of the secret.
    secret_key str
    The key within the secret.
    secret_name str
    The name of the secret.
    secretKey String
    The key within the secret.
    secretName String
    The name of the secret.

    AccountsClusterConfigurationDatabaseConfigurationTlsKey, AccountsClusterConfigurationDatabaseConfigurationTlsKeyArgs

    SecretKey string
    The key within the secret.
    SecretName string
    The name of the secret.
    SecretKey string
    The key within the secret.
    SecretName string
    The name of the secret.
    secret_key string
    The key within the secret.
    secret_name string
    The name of the secret.
    secretKey String
    The key within the secret.
    secretName String
    The name of the secret.
    secretKey string
    The key within the secret.
    secretName string
    The name of the secret.
    secret_key str
    The key within the secret.
    secret_name str
    The name of the secret.
    secretKey String
    The key within the secret.
    secretName String
    The name of the secret.

    AccountsClusterConfigurationNodeConfiguration, AccountsClusterConfigurationNodeConfigurationArgs

    PackageId string
    Cluster Schema The package identifier (specifying: CPU, Memory, and disk size) field
    ResourceConfigurations List<Pulumi.QdrantCloud.Inputs.AccountsClusterConfigurationNodeConfigurationResourceConfiguration>
    The resource configuration of the package
    PackageId string
    Cluster Schema The package identifier (specifying: CPU, Memory, and disk size) field
    ResourceConfigurations []AccountsClusterConfigurationNodeConfigurationResourceConfiguration
    The resource configuration of the package
    package_id string
    Cluster Schema The package identifier (specifying: CPU, Memory, and disk size) field
    resource_configurations list(object)
    The resource configuration of the package
    packageId String
    Cluster Schema The package identifier (specifying: CPU, Memory, and disk size) field
    resourceConfigurations List<AccountsClusterConfigurationNodeConfigurationResourceConfiguration>
    The resource configuration of the package
    packageId string
    Cluster Schema The package identifier (specifying: CPU, Memory, and disk size) field
    resourceConfigurations AccountsClusterConfigurationNodeConfigurationResourceConfiguration[]
    The resource configuration of the package
    package_id str
    Cluster Schema The package identifier (specifying: CPU, Memory, and disk size) field
    resource_configurations Sequence[AccountsClusterConfigurationNodeConfigurationResourceConfiguration]
    The resource configuration of the package
    packageId String
    Cluster Schema The package identifier (specifying: CPU, Memory, and disk size) field
    resourceConfigurations List<Property Map>
    The resource configuration of the package

    AccountsClusterConfigurationNodeConfigurationResourceConfiguration, AccountsClusterConfigurationNodeConfigurationResourceConfigurationArgs

    Amount double
    The amount of the resource
    ResourceType string
    The type of the resource
    ResourceUnit string
    The unit of the resource
    Amount float64
    The amount of the resource
    ResourceType string
    The type of the resource
    ResourceUnit string
    The unit of the resource
    amount number
    The amount of the resource
    resource_type string
    The type of the resource
    resource_unit string
    The unit of the resource
    amount Double
    The amount of the resource
    resourceType String
    The type of the resource
    resourceUnit String
    The unit of the resource
    amount number
    The amount of the resource
    resourceType string
    The type of the resource
    resourceUnit string
    The unit of the resource
    amount float
    The amount of the resource
    resource_type str
    The type of the resource
    resource_unit str
    The unit of the resource
    amount Number
    The amount of the resource
    resourceType String
    The type of the resource
    resourceUnit String
    The unit of the resource

    AccountsClusterConfigurationNodeSelector, AccountsClusterConfigurationNodeSelectorArgs

    Key string
    Value string
    Key string
    Value string
    key string
    value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    AccountsClusterConfigurationPodLabel, AccountsClusterConfigurationPodLabelArgs

    Key string
    Value string
    Key string
    Value string
    key string
    value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    AccountsClusterConfigurationServiceAnnotation, AccountsClusterConfigurationServiceAnnotationArgs

    Key string
    Value string
    Key string
    Value string
    key string
    value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    AccountsClusterConfigurationToleration, AccountsClusterConfigurationTolerationArgs

    Effect string
    The toleration effect. Must be one of: TOLERATIONEFFECTNOEXECUTE, TOLERATIONEFFECTNOSCHEDULE, TOLERATIONEFFECTPREFERNOSCHEDULE.
    Key string
    Operator string
    The toleration operator. Must be one of: TOLERATIONOPERATOREQUAL, TOLERATIONOPERATOREXISTS.
    TolerationSeconds double
    Value string
    Effect string
    The toleration effect. Must be one of: TOLERATIONEFFECTNOEXECUTE, TOLERATIONEFFECTNOSCHEDULE, TOLERATIONEFFECTPREFERNOSCHEDULE.
    Key string
    Operator string
    The toleration operator. Must be one of: TOLERATIONOPERATOREQUAL, TOLERATIONOPERATOREXISTS.
    TolerationSeconds float64
    Value string
    effect string
    The toleration effect. Must be one of: TOLERATIONEFFECTNOEXECUTE, TOLERATIONEFFECTNOSCHEDULE, TOLERATIONEFFECTPREFERNOSCHEDULE.
    key string
    operator string
    The toleration operator. Must be one of: TOLERATIONOPERATOREQUAL, TOLERATIONOPERATOREXISTS.
    toleration_seconds number
    value string
    effect String
    The toleration effect. Must be one of: TOLERATIONEFFECTNOEXECUTE, TOLERATIONEFFECTNOSCHEDULE, TOLERATIONEFFECTPREFERNOSCHEDULE.
    key String
    operator String
    The toleration operator. Must be one of: TOLERATIONOPERATOREQUAL, TOLERATIONOPERATOREXISTS.
    tolerationSeconds Double
    value String
    effect string
    The toleration effect. Must be one of: TOLERATIONEFFECTNOEXECUTE, TOLERATIONEFFECTNOSCHEDULE, TOLERATIONEFFECTPREFERNOSCHEDULE.
    key string
    operator string
    The toleration operator. Must be one of: TOLERATIONOPERATOREQUAL, TOLERATIONOPERATOREXISTS.
    tolerationSeconds number
    value string
    effect str
    The toleration effect. Must be one of: TOLERATIONEFFECTNOEXECUTE, TOLERATIONEFFECTNOSCHEDULE, TOLERATIONEFFECTPREFERNOSCHEDULE.
    key str
    operator str
    The toleration operator. Must be one of: TOLERATIONOPERATOREQUAL, TOLERATIONOPERATOREXISTS.
    toleration_seconds float
    value str
    effect String
    The toleration effect. Must be one of: TOLERATIONEFFECTNOEXECUTE, TOLERATIONEFFECTNOSCHEDULE, TOLERATIONEFFECTPREFERNOSCHEDULE.
    key String
    operator String
    The toleration operator. Must be one of: TOLERATIONOPERATOREQUAL, TOLERATIONOPERATOREXISTS.
    tolerationSeconds Number
    value String

    AccountsClusterConfigurationTopologySpreadConstraint, AccountsClusterConfigurationTopologySpreadConstraintArgs

    MaxSkew double
    TopologyKey string
    WhenUnsatisfiable string
    Action to take when the topology spread constraint cannot be satisfied. Must be one of: TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLEDONOTSCHEDULE, TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLESCHEDULE_ANYWAY.
    MaxSkew float64
    TopologyKey string
    WhenUnsatisfiable string
    Action to take when the topology spread constraint cannot be satisfied. Must be one of: TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLEDONOTSCHEDULE, TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLESCHEDULE_ANYWAY.
    max_skew number
    topology_key string
    when_unsatisfiable string
    Action to take when the topology spread constraint cannot be satisfied. Must be one of: TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLEDONOTSCHEDULE, TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLESCHEDULE_ANYWAY.
    maxSkew Double
    topologyKey String
    whenUnsatisfiable String
    Action to take when the topology spread constraint cannot be satisfied. Must be one of: TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLEDONOTSCHEDULE, TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLESCHEDULE_ANYWAY.
    maxSkew number
    topologyKey string
    whenUnsatisfiable string
    Action to take when the topology spread constraint cannot be satisfied. Must be one of: TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLEDONOTSCHEDULE, TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLESCHEDULE_ANYWAY.
    max_skew float
    topology_key str
    when_unsatisfiable str
    Action to take when the topology spread constraint cannot be satisfied. Must be one of: TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLEDONOTSCHEDULE, TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLESCHEDULE_ANYWAY.
    maxSkew Number
    topologyKey String
    whenUnsatisfiable String
    Action to take when the topology spread constraint cannot be satisfied. Must be one of: TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLEDONOTSCHEDULE, TOPOLOGYSPREADCONSTRAINTWHENUNSATISFIABLESCHEDULE_ANYWAY.

    AccountsClusterLabel, AccountsClusterLabelArgs

    Key string
    Value string
    Key string
    Value string
    key string
    value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    AccountsClusterStatus, AccountsClusterStatusArgs

    AccountsClusterStatusCapability, AccountsClusterStatusCapabilityArgs

    AccountsClusterStatusCapabilityBackup, AccountsClusterStatusCapabilityBackupArgs

    Reason string
    Status string
    Reason string
    Status string
    reason string
    status string
    reason String
    status String
    reason string
    status string
    reason str
    status str
    reason String
    status String

    AccountsClusterStatusCapabilityDiskExpansion, AccountsClusterStatusCapabilityDiskExpansionArgs

    Reason string
    Status string
    Reason string
    Status string
    reason string
    status string
    reason String
    status String
    reason string
    status string
    reason str
    status str
    reason String
    status String

    AccountsClusterStatusCapabilityScalabilityInfo, AccountsClusterStatusCapabilityScalabilityInfoArgs

    Reason string
    Status string
    Reason string
    Status string
    reason string
    status string
    reason String
    status String
    reason string
    status string
    reason str
    status str
    reason String
    status String

    AccountsClusterStatusResource, AccountsClusterStatusResourceArgs

    AccountsClusterStatusResourceCpus, AccountsClusterStatusResourceCpusArgs

    Additional double
    Available double
    Base double
    Complimentary double
    Reserved double
    Additional float64
    Available float64
    Base float64
    Complimentary float64
    Reserved float64
    additional number
    available number
    base number
    complimentary number
    reserved number
    additional Double
    available Double
    base Double
    complimentary Double
    reserved Double
    additional number
    available number
    base number
    complimentary number
    reserved number
    additional float
    available float
    base float
    complimentary float
    reserved float
    additional Number
    available Number
    base Number
    complimentary Number
    reserved Number

    AccountsClusterStatusResourceDisk, AccountsClusterStatusResourceDiskArgs

    Additional double
    Available double
    Base double
    Complimentary double
    Reserved double
    Additional float64
    Available float64
    Base float64
    Complimentary float64
    Reserved float64
    additional number
    available number
    base number
    complimentary number
    reserved number
    additional Double
    available Double
    base Double
    complimentary Double
    reserved Double
    additional number
    available number
    base number
    complimentary number
    reserved number
    additional float
    available float
    base float
    complimentary float
    reserved float
    additional Number
    available Number
    base Number
    complimentary Number
    reserved Number

    AccountsClusterStatusResourceRam, AccountsClusterStatusResourceRamArgs

    Additional double
    Available double
    Base double
    Complimentary double
    Reserved double
    Additional float64
    Available float64
    Base float64
    Complimentary float64
    Reserved float64
    additional number
    available number
    base number
    complimentary number
    reserved number
    additional Double
    available Double
    base Double
    complimentary Double
    reserved Double
    additional number
    available number
    base number
    complimentary number
    reserved number
    additional float
    available float
    base float
    complimentary float
    reserved float
    additional Number
    available Number
    base Number
    complimentary Number
    reserved Number

    AccountsClusterStatusScalabilityInfo, AccountsClusterStatusScalabilityInfoArgs

    Reason string
    Status string
    Reason string
    Status string
    reason string
    status string
    reason String
    status String
    reason string
    status string
    reason str
    status str
    reason String
    status String

    AccountsClusterTimeouts, AccountsClusterTimeoutsArgs

    Create string
    Create string
    create string
    create String
    create string
    create str
    create String

    Import

    qdrant-cloud_accounts_cluster can be imported using the cluster ID, e.g.

    $ pulumi import qdrant-cloud:index/accountsCluster:AccountsCluster example 12345678-0000-0000-0000-1234567890ab
    

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

    Package Details

    Repository
    qdrant-cloud qdrant/terraform-provider-qdrant-cloud
    License
    Notes
    This Pulumi package is based on the qdrant-cloud Terraform Provider.
    Viewing docs for qdrant-cloud 1.28.0
    published on Wednesday, Jul 22, 2026 by qdrant

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial