alicloud logo
Alibaba Cloud v3.34.0, Mar 17 23

alicloud.graphdatabase.DbInstance

Provides a Graph Database Db Instance resource.

For information about Graph Database Db Instance and how to use it, see What is Db Instance.

NOTE: Available in v1.136.0+.

Example Usage

Basic Usage

using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var example = new AliCloud.GraphDatabase.DbInstance("example", new()
    {
        DbInstanceCategory = "HA",
        DbInstanceDescription = "example_value",
        DbInstanceNetworkType = "vpc",
        DbInstanceStorageType = "cloud_ssd",
        DbNodeClass = "gdb.r.2xlarge",
        DbNodeStorage = "example_value",
        DbVersion = "1.0",
        PaymentType = "PayAsYouGo",
    });

});
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/graphdatabase"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := graphdatabase.NewDbInstance(ctx, "example", &graphdatabase.DbInstanceArgs{
			DbInstanceCategory:    pulumi.String("HA"),
			DbInstanceDescription: pulumi.String("example_value"),
			DbInstanceNetworkType: pulumi.String("vpc"),
			DbInstanceStorageType: pulumi.String("cloud_ssd"),
			DbNodeClass:           pulumi.String("gdb.r.2xlarge"),
			DbNodeStorage:         pulumi.Int("example_value"),
			DbVersion:             pulumi.String("1.0"),
			PaymentType:           pulumi.String("PayAsYouGo"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.graphdatabase.DbInstance;
import com.pulumi.alicloud.graphdatabase.DbInstanceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new DbInstance("example", DbInstanceArgs.builder()        
            .dbInstanceCategory("HA")
            .dbInstanceDescription("example_value")
            .dbInstanceNetworkType("vpc")
            .dbInstanceStorageType("cloud_ssd")
            .dbNodeClass("gdb.r.2xlarge")
            .dbNodeStorage("example_value")
            .dbVersion("1.0")
            .paymentType("PayAsYouGo")
            .build());

    }
}
import pulumi
import pulumi_alicloud as alicloud

example = alicloud.graphdatabase.DbInstance("example",
    db_instance_category="HA",
    db_instance_description="example_value",
    db_instance_network_type="vpc",
    db_instance_storage_type="cloud_ssd",
    db_node_class="gdb.r.2xlarge",
    db_node_storage="example_value",
    db_version="1.0",
    payment_type="PayAsYouGo")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const example = new alicloud.graphdatabase.DbInstance("example", {
    dbInstanceCategory: "HA",
    dbInstanceDescription: "example_value",
    dbInstanceNetworkType: "vpc",
    dbInstanceStorageType: "cloud_ssd",
    dbNodeClass: "gdb.r.2xlarge",
    dbNodeStorage: "example_value",
    dbVersion: "1.0",
    paymentType: "PayAsYouGo",
});
resources:
  example:
    type: alicloud:graphdatabase:DbInstance
    properties:
      dbInstanceCategory: HA
      dbInstanceDescription: example_value
      dbInstanceNetworkType: vpc
      dbInstanceStorageType: cloud_ssd
      dbNodeClass: gdb.r.2xlarge
      dbNodeStorage: example_value
      dbVersion: '1.0'
      paymentType: PayAsYouGo

Create DbInstance Resource

new DbInstance(name: string, args: DbInstanceArgs, opts?: CustomResourceOptions);
@overload
def DbInstance(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               db_instance_category: Optional[str] = None,
               db_instance_description: Optional[str] = None,
               db_instance_ip_arrays: Optional[Sequence[DbInstanceDbInstanceIpArrayArgs]] = None,
               db_instance_network_type: Optional[str] = None,
               db_instance_storage_type: Optional[str] = None,
               db_node_class: Optional[str] = None,
               db_node_storage: Optional[int] = None,
               db_version: Optional[str] = None,
               payment_type: Optional[str] = None,
               vpc_id: Optional[str] = None,
               vswitch_id: Optional[str] = None,
               zone_id: Optional[str] = None)
@overload
def DbInstance(resource_name: str,
               args: DbInstanceArgs,
               opts: Optional[ResourceOptions] = None)
func NewDbInstance(ctx *Context, name string, args DbInstanceArgs, opts ...ResourceOption) (*DbInstance, error)
public DbInstance(string name, DbInstanceArgs args, CustomResourceOptions? opts = null)
public DbInstance(String name, DbInstanceArgs args)
public DbInstance(String name, DbInstanceArgs args, CustomResourceOptions options)
type: alicloud:graphdatabase:DbInstance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args DbInstanceArgs
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 DbInstanceArgs
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 DbInstanceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args DbInstanceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args DbInstanceArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

DbInstance Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The DbInstance resource accepts the following input properties:

DbInstanceCategory string

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

DbInstanceNetworkType string

The network type of the db instance. Valid values: vpc.

DbInstanceStorageType string

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

DbNodeClass string

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

DbNodeStorage int

Instance storage space, which is measured in GB.

DbVersion string

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

PaymentType string

The paymen type of the resource. Valid values: PayAsYouGo.

DbInstanceDescription string

According to the practical example or notes.

DbInstanceIpArrays List<Pulumi.AliCloud.GraphDatabase.Inputs.DbInstanceDbInstanceIpArrayArgs>

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

VpcId string

ID of the VPC.

VswitchId string

The ID of attaching vswitch to instance.

ZoneId string

The zone ID of the resource.

DbInstanceCategory string

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

DbInstanceNetworkType string

The network type of the db instance. Valid values: vpc.

DbInstanceStorageType string

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

DbNodeClass string

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

DbNodeStorage int

Instance storage space, which is measured in GB.

DbVersion string

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

PaymentType string

The paymen type of the resource. Valid values: PayAsYouGo.

DbInstanceDescription string

According to the practical example or notes.

DbInstanceIpArrays []DbInstanceDbInstanceIpArrayArgs

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

VpcId string

ID of the VPC.

VswitchId string

The ID of attaching vswitch to instance.

ZoneId string

The zone ID of the resource.

dbInstanceCategory String

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

dbInstanceNetworkType String

The network type of the db instance. Valid values: vpc.

dbInstanceStorageType String

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

dbNodeClass String

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

dbNodeStorage Integer

Instance storage space, which is measured in GB.

dbVersion String

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

paymentType String

The paymen type of the resource. Valid values: PayAsYouGo.

dbInstanceDescription String

According to the practical example or notes.

dbInstanceIpArrays List<DbInstanceDbInstanceIpArrayArgs>

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

vpcId String

ID of the VPC.

vswitchId String

The ID of attaching vswitch to instance.

zoneId String

The zone ID of the resource.

dbInstanceCategory string

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

dbInstanceNetworkType string

The network type of the db instance. Valid values: vpc.

dbInstanceStorageType string

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

dbNodeClass string

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

dbNodeStorage number

Instance storage space, which is measured in GB.

dbVersion string

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

paymentType string

The paymen type of the resource. Valid values: PayAsYouGo.

dbInstanceDescription string

According to the practical example or notes.

dbInstanceIpArrays DbInstanceDbInstanceIpArrayArgs[]

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

vpcId string

ID of the VPC.

vswitchId string

The ID of attaching vswitch to instance.

zoneId string

The zone ID of the resource.

db_instance_category str

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

db_instance_network_type str

The network type of the db instance. Valid values: vpc.

db_instance_storage_type str

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

db_node_class str

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

db_node_storage int

Instance storage space, which is measured in GB.

db_version str

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

payment_type str

The paymen type of the resource. Valid values: PayAsYouGo.

db_instance_description str

According to the practical example or notes.

db_instance_ip_arrays Sequence[DbInstanceDbInstanceIpArrayArgs]

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

vpc_id str

ID of the VPC.

vswitch_id str

The ID of attaching vswitch to instance.

zone_id str

The zone ID of the resource.

dbInstanceCategory String

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

dbInstanceNetworkType String

The network type of the db instance. Valid values: vpc.

dbInstanceStorageType String

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

dbNodeClass String

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

dbNodeStorage Number

Instance storage space, which is measured in GB.

dbVersion String

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

paymentType String

The paymen type of the resource. Valid values: PayAsYouGo.

dbInstanceDescription String

According to the practical example or notes.

dbInstanceIpArrays List<Property Map>

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

vpcId String

ID of the VPC.

vswitchId String

The ID of attaching vswitch to instance.

zoneId String

The zone ID of the resource.

Outputs

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

ConnectionString string

(Available in 1.196.0+) The connection string of the instance.

Id string

The provider-assigned unique ID for this managed resource.

Port string

(Available in 1.196.0+) The connection port of the instance.

Status string

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

ConnectionString string

(Available in 1.196.0+) The connection string of the instance.

Id string

The provider-assigned unique ID for this managed resource.

Port string

(Available in 1.196.0+) The connection port of the instance.

Status string

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

connectionString String

(Available in 1.196.0+) The connection string of the instance.

id String

The provider-assigned unique ID for this managed resource.

port String

(Available in 1.196.0+) The connection port of the instance.

status String

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

connectionString string

(Available in 1.196.0+) The connection string of the instance.

id string

The provider-assigned unique ID for this managed resource.

port string

(Available in 1.196.0+) The connection port of the instance.

status string

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

connection_string str

(Available in 1.196.0+) The connection string of the instance.

id str

The provider-assigned unique ID for this managed resource.

port str

(Available in 1.196.0+) The connection port of the instance.

status str

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

connectionString String

(Available in 1.196.0+) The connection string of the instance.

id String

The provider-assigned unique ID for this managed resource.

port String

(Available in 1.196.0+) The connection port of the instance.

status String

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

Look up Existing DbInstance Resource

Get an existing DbInstance 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?: DbInstanceState, opts?: CustomResourceOptions): DbInstance
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        connection_string: Optional[str] = None,
        db_instance_category: Optional[str] = None,
        db_instance_description: Optional[str] = None,
        db_instance_ip_arrays: Optional[Sequence[DbInstanceDbInstanceIpArrayArgs]] = None,
        db_instance_network_type: Optional[str] = None,
        db_instance_storage_type: Optional[str] = None,
        db_node_class: Optional[str] = None,
        db_node_storage: Optional[int] = None,
        db_version: Optional[str] = None,
        payment_type: Optional[str] = None,
        port: Optional[str] = None,
        status: Optional[str] = None,
        vpc_id: Optional[str] = None,
        vswitch_id: Optional[str] = None,
        zone_id: Optional[str] = None) -> DbInstance
func GetDbInstance(ctx *Context, name string, id IDInput, state *DbInstanceState, opts ...ResourceOption) (*DbInstance, error)
public static DbInstance Get(string name, Input<string> id, DbInstanceState? state, CustomResourceOptions? opts = null)
public static DbInstance get(String name, Output<String> id, DbInstanceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
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:
ConnectionString string

(Available in 1.196.0+) The connection string of the instance.

DbInstanceCategory string

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

DbInstanceDescription string

According to the practical example or notes.

DbInstanceIpArrays List<Pulumi.AliCloud.GraphDatabase.Inputs.DbInstanceDbInstanceIpArrayArgs>

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

DbInstanceNetworkType string

The network type of the db instance. Valid values: vpc.

DbInstanceStorageType string

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

DbNodeClass string

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

DbNodeStorage int

Instance storage space, which is measured in GB.

DbVersion string

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

PaymentType string

The paymen type of the resource. Valid values: PayAsYouGo.

Port string

(Available in 1.196.0+) The connection port of the instance.

Status string

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

VpcId string

ID of the VPC.

VswitchId string

The ID of attaching vswitch to instance.

ZoneId string

The zone ID of the resource.

ConnectionString string

(Available in 1.196.0+) The connection string of the instance.

DbInstanceCategory string

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

DbInstanceDescription string

According to the practical example or notes.

DbInstanceIpArrays []DbInstanceDbInstanceIpArrayArgs

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

DbInstanceNetworkType string

The network type of the db instance. Valid values: vpc.

DbInstanceStorageType string

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

DbNodeClass string

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

DbNodeStorage int

Instance storage space, which is measured in GB.

DbVersion string

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

PaymentType string

The paymen type of the resource. Valid values: PayAsYouGo.

Port string

(Available in 1.196.0+) The connection port of the instance.

Status string

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

VpcId string

ID of the VPC.

VswitchId string

The ID of attaching vswitch to instance.

ZoneId string

The zone ID of the resource.

connectionString String

(Available in 1.196.0+) The connection string of the instance.

dbInstanceCategory String

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

dbInstanceDescription String

According to the practical example or notes.

dbInstanceIpArrays List<DbInstanceDbInstanceIpArrayArgs>

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

dbInstanceNetworkType String

The network type of the db instance. Valid values: vpc.

dbInstanceStorageType String

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

dbNodeClass String

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

dbNodeStorage Integer

Instance storage space, which is measured in GB.

dbVersion String

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

paymentType String

The paymen type of the resource. Valid values: PayAsYouGo.

port String

(Available in 1.196.0+) The connection port of the instance.

status String

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

vpcId String

ID of the VPC.

vswitchId String

The ID of attaching vswitch to instance.

zoneId String

The zone ID of the resource.

connectionString string

(Available in 1.196.0+) The connection string of the instance.

dbInstanceCategory string

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

dbInstanceDescription string

According to the practical example or notes.

dbInstanceIpArrays DbInstanceDbInstanceIpArrayArgs[]

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

dbInstanceNetworkType string

The network type of the db instance. Valid values: vpc.

dbInstanceStorageType string

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

dbNodeClass string

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

dbNodeStorage number

Instance storage space, which is measured in GB.

dbVersion string

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

paymentType string

The paymen type of the resource. Valid values: PayAsYouGo.

port string

(Available in 1.196.0+) The connection port of the instance.

status string

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

vpcId string

ID of the VPC.

vswitchId string

The ID of attaching vswitch to instance.

zoneId string

The zone ID of the resource.

connection_string str

(Available in 1.196.0+) The connection string of the instance.

db_instance_category str

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

db_instance_description str

According to the practical example or notes.

db_instance_ip_arrays Sequence[DbInstanceDbInstanceIpArrayArgs]

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

db_instance_network_type str

The network type of the db instance. Valid values: vpc.

db_instance_storage_type str

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

db_node_class str

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

db_node_storage int

Instance storage space, which is measured in GB.

db_version str

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

payment_type str

The paymen type of the resource. Valid values: PayAsYouGo.

port str

(Available in 1.196.0+) The connection port of the instance.

status str

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

vpc_id str

ID of the VPC.

vswitch_id str

The ID of attaching vswitch to instance.

zone_id str

The zone ID of the resource.

connectionString String

(Available in 1.196.0+) The connection string of the instance.

dbInstanceCategory String

The category of the db instance. Valid values: HA, SINGLE(Available in 1.173.0+).

dbInstanceDescription String

According to the practical example or notes.

dbInstanceIpArrays List<Property Map>

IP ADDRESS whitelist for the instance group list. See the following Block db_instance_ip_array.

dbInstanceNetworkType String

The network type of the db instance. Valid values: vpc.

dbInstanceStorageType String

Disk storage type. Valid values: cloud_essd, cloud_ssd. Modification is not supported.

dbNodeClass String

The class of the db node. Valid values: gdb.r.xlarge, gdb.r.2xlarge, gdb.r.4xlarge, gdb.r.8xlarge, gdb.r.16xlarge, gdb.r.xlarge_basic, gdb.r.2xlarge_basic, gdb.r.4xlarge_basic, gdb.r.8xlarge_basic, gdb.r.16xlarge_basic.

dbNodeStorage Number

Instance storage space, which is measured in GB.

dbVersion String

Kernel Version. Valid values: 1.0 or 1.0-OpenCypher. 1.0: represented as gremlin, 1.0-OpenCypher: said opencypher.

paymentType String

The paymen type of the resource. Valid values: PayAsYouGo.

port String

(Available in 1.196.0+) The connection port of the instance.

status String

Instance status. Value range: Creating, Running, Deleting, Rebooting, DBInstanceClassChanging, NetAddressCreating and NetAddressDeleting.

vpcId String

ID of the VPC.

vswitchId String

The ID of attaching vswitch to instance.

zoneId String

The zone ID of the resource.

Supporting Types

DbInstanceDbInstanceIpArray

DbInstanceIpArrayAttribute string

The default is empty. To distinguish between the different property console does not display a hidden label grouping.

DbInstanceIpArrayName string

IP ADDRESS whitelist group name.

SecurityIps string

IP ADDRESS whitelist addresses in the IP ADDRESS list, and a maximum of 1000 comma-separated format is as follows: 0.0.0.0/0 and 10.23.12.24(IP) or 10.23.12.24/24(CIDR mode, CIDR (Classless Inter-Domain Routing)/24 represents the address prefixes in the length of the range [1,32]).

DbInstanceIpArrayAttribute string

The default is empty. To distinguish between the different property console does not display a hidden label grouping.

DbInstanceIpArrayName string

IP ADDRESS whitelist group name.

SecurityIps string

IP ADDRESS whitelist addresses in the IP ADDRESS list, and a maximum of 1000 comma-separated format is as follows: 0.0.0.0/0 and 10.23.12.24(IP) or 10.23.12.24/24(CIDR mode, CIDR (Classless Inter-Domain Routing)/24 represents the address prefixes in the length of the range [1,32]).

dbInstanceIpArrayAttribute String

The default is empty. To distinguish between the different property console does not display a hidden label grouping.

dbInstanceIpArrayName String

IP ADDRESS whitelist group name.

securityIps String

IP ADDRESS whitelist addresses in the IP ADDRESS list, and a maximum of 1000 comma-separated format is as follows: 0.0.0.0/0 and 10.23.12.24(IP) or 10.23.12.24/24(CIDR mode, CIDR (Classless Inter-Domain Routing)/24 represents the address prefixes in the length of the range [1,32]).

dbInstanceIpArrayAttribute string

The default is empty. To distinguish between the different property console does not display a hidden label grouping.

dbInstanceIpArrayName string

IP ADDRESS whitelist group name.

securityIps string

IP ADDRESS whitelist addresses in the IP ADDRESS list, and a maximum of 1000 comma-separated format is as follows: 0.0.0.0/0 and 10.23.12.24(IP) or 10.23.12.24/24(CIDR mode, CIDR (Classless Inter-Domain Routing)/24 represents the address prefixes in the length of the range [1,32]).

db_instance_ip_array_attribute str

The default is empty. To distinguish between the different property console does not display a hidden label grouping.

db_instance_ip_array_name str

IP ADDRESS whitelist group name.

security_ips str

IP ADDRESS whitelist addresses in the IP ADDRESS list, and a maximum of 1000 comma-separated format is as follows: 0.0.0.0/0 and 10.23.12.24(IP) or 10.23.12.24/24(CIDR mode, CIDR (Classless Inter-Domain Routing)/24 represents the address prefixes in the length of the range [1,32]).

dbInstanceIpArrayAttribute String

The default is empty. To distinguish between the different property console does not display a hidden label grouping.

dbInstanceIpArrayName String

IP ADDRESS whitelist group name.

securityIps String

IP ADDRESS whitelist addresses in the IP ADDRESS list, and a maximum of 1000 comma-separated format is as follows: 0.0.0.0/0 and 10.23.12.24(IP) or 10.23.12.24/24(CIDR mode, CIDR (Classless Inter-Domain Routing)/24 represents the address prefixes in the length of the range [1,32]).

Import

Graph Database Db Instance can be imported using the id, e.g.

 $ pulumi import alicloud:graphdatabase/dbInstance:DbInstance example <id>

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes

This Pulumi package is based on the alicloud Terraform Provider.