Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine
volcengine.mongodb.InstanceParameters
Explore with Pulumi AI
Use this data source to query detailed information of mongodb instance parameters
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooZones = volcengine.ecs.Zones({});
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
    vpcName: "acc-test-vpc",
    cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
    subnetName: "acc-test-subnet",
    cidrBlock: "172.16.0.0/24",
    zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
    vpcId: fooVpc.id,
});
const fooInstance = new volcengine.mongodb.Instance("fooInstance", {
    dbEngineVersion: "MongoDB_4_0",
    instanceType: "ReplicaSet",
    superAccountPassword: "@acc-test-123",
    nodeSpec: "mongo.2c4g",
    mongosNodeSpec: "mongo.mongos.2c4g",
    instanceName: "acc-test-mongo-replica",
    chargeType: "PostPaid",
    projectName: "default",
    mongosNodeNumber: 32,
    shardNumber: 3,
    storageSpaceGb: 20,
    subnetId: fooSubnet.id,
    zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
    tags: [{
        key: "k1",
        value: "v1",
    }],
});
const fooInstanceParameter = new volcengine.mongodb.InstanceParameter("fooInstanceParameter", {
    instanceId: fooInstance.id,
    parameterName: "cursorTimeoutMillis",
    parameterRole: "Node",
    parameterValue: "600111",
});
const fooInstanceParameters = volcengine.mongodb.InstanceParametersOutput({
    instanceId: fooInstance.id,
    parameterNames: "cursorTimeoutMillis",
    parameterRole: "Node",
});
import pulumi
import pulumi_volcengine as volcengine
foo_zones = volcengine.ecs.zones()
foo_vpc = volcengine.vpc.Vpc("fooVpc",
    vpc_name="acc-test-vpc",
    cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
    subnet_name="acc-test-subnet",
    cidr_block="172.16.0.0/24",
    zone_id=foo_zones.zones[0].id,
    vpc_id=foo_vpc.id)
foo_instance = volcengine.mongodb.Instance("fooInstance",
    db_engine_version="MongoDB_4_0",
    instance_type="ReplicaSet",
    super_account_password="@acc-test-123",
    node_spec="mongo.2c4g",
    mongos_node_spec="mongo.mongos.2c4g",
    instance_name="acc-test-mongo-replica",
    charge_type="PostPaid",
    project_name="default",
    mongos_node_number=32,
    shard_number=3,
    storage_space_gb=20,
    subnet_id=foo_subnet.id,
    zone_id=foo_zones.zones[0].id,
    tags=[volcengine.mongodb.InstanceTagArgs(
        key="k1",
        value="v1",
    )])
foo_instance_parameter = volcengine.mongodb.InstanceParameter("fooInstanceParameter",
    instance_id=foo_instance.id,
    parameter_name="cursorTimeoutMillis",
    parameter_role="Node",
    parameter_value="600111")
foo_instance_parameters = volcengine.mongodb.instance_parameters_output(instance_id=foo_instance.id,
    parameter_names="cursorTimeoutMillis",
    parameter_role="Node")
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/mongodb"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		fooZones, err := ecs.Zones(ctx, nil, nil)
		if err != nil {
			return err
		}
		fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
			VpcName:   pulumi.String("acc-test-vpc"),
			CidrBlock: pulumi.String("172.16.0.0/16"),
		})
		if err != nil {
			return err
		}
		fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
			SubnetName: pulumi.String("acc-test-subnet"),
			CidrBlock:  pulumi.String("172.16.0.0/24"),
			ZoneId:     pulumi.String(fooZones.Zones[0].Id),
			VpcId:      fooVpc.ID(),
		})
		if err != nil {
			return err
		}
		fooInstance, err := mongodb.NewInstance(ctx, "fooInstance", &mongodb.InstanceArgs{
			DbEngineVersion:      pulumi.String("MongoDB_4_0"),
			InstanceType:         pulumi.String("ReplicaSet"),
			SuperAccountPassword: pulumi.String("@acc-test-123"),
			NodeSpec:             pulumi.String("mongo.2c4g"),
			MongosNodeSpec:       pulumi.String("mongo.mongos.2c4g"),
			InstanceName:         pulumi.String("acc-test-mongo-replica"),
			ChargeType:           pulumi.String("PostPaid"),
			ProjectName:          pulumi.String("default"),
			MongosNodeNumber:     pulumi.Int(32),
			ShardNumber:          pulumi.Int(3),
			StorageSpaceGb:       pulumi.Int(20),
			SubnetId:             fooSubnet.ID(),
			ZoneId:               pulumi.String(fooZones.Zones[0].Id),
			Tags: mongodb.InstanceTagArray{
				&mongodb.InstanceTagArgs{
					Key:   pulumi.String("k1"),
					Value: pulumi.String("v1"),
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = mongodb.NewInstanceParameter(ctx, "fooInstanceParameter", &mongodb.InstanceParameterArgs{
			InstanceId:     fooInstance.ID(),
			ParameterName:  pulumi.String("cursorTimeoutMillis"),
			ParameterRole:  pulumi.String("Node"),
			ParameterValue: pulumi.String("600111"),
		})
		if err != nil {
			return err
		}
		_ = mongodb.InstanceParametersOutput(ctx, mongodb.InstanceParametersOutputArgs{
			InstanceId:     fooInstance.ID(),
			ParameterNames: pulumi.String("cursorTimeoutMillis"),
			ParameterRole:  pulumi.String("Node"),
		}, nil)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() => 
{
    var fooZones = Volcengine.Ecs.Zones.Invoke();
    var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
    {
        VpcName = "acc-test-vpc",
        CidrBlock = "172.16.0.0/16",
    });
    var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
    {
        SubnetName = "acc-test-subnet",
        CidrBlock = "172.16.0.0/24",
        ZoneId = fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
        VpcId = fooVpc.Id,
    });
    var fooInstance = new Volcengine.Mongodb.Instance("fooInstance", new()
    {
        DbEngineVersion = "MongoDB_4_0",
        InstanceType = "ReplicaSet",
        SuperAccountPassword = "@acc-test-123",
        NodeSpec = "mongo.2c4g",
        MongosNodeSpec = "mongo.mongos.2c4g",
        InstanceName = "acc-test-mongo-replica",
        ChargeType = "PostPaid",
        ProjectName = "default",
        MongosNodeNumber = 32,
        ShardNumber = 3,
        StorageSpaceGb = 20,
        SubnetId = fooSubnet.Id,
        ZoneId = fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
        Tags = new[]
        {
            new Volcengine.Mongodb.Inputs.InstanceTagArgs
            {
                Key = "k1",
                Value = "v1",
            },
        },
    });
    var fooInstanceParameter = new Volcengine.Mongodb.InstanceParameter("fooInstanceParameter", new()
    {
        InstanceId = fooInstance.Id,
        ParameterName = "cursorTimeoutMillis",
        ParameterRole = "Node",
        ParameterValue = "600111",
    });
    var fooInstanceParameters = Volcengine.Mongodb.InstanceParameters.Invoke(new()
    {
        InstanceId = fooInstance.Id,
        ParameterNames = "cursorTimeoutMillis",
        ParameterRole = "Node",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.ecs.EcsFunctions;
import com.pulumi.volcengine.ecs.inputs.ZonesArgs;
import com.pulumi.volcengine.vpc.Vpc;
import com.pulumi.volcengine.vpc.VpcArgs;
import com.pulumi.volcengine.vpc.Subnet;
import com.pulumi.volcengine.vpc.SubnetArgs;
import com.pulumi.volcengine.mongodb.Instance;
import com.pulumi.volcengine.mongodb.InstanceArgs;
import com.pulumi.volcengine.mongodb.inputs.InstanceTagArgs;
import com.pulumi.volcengine.mongodb.InstanceParameter;
import com.pulumi.volcengine.mongodb.InstanceParameterArgs;
import com.pulumi.volcengine.mongodb.MongodbFunctions;
import com.pulumi.volcengine.mongodb.inputs.InstanceParametersArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var fooZones = EcsFunctions.Zones();
        var fooVpc = new Vpc("fooVpc", VpcArgs.builder()        
            .vpcName("acc-test-vpc")
            .cidrBlock("172.16.0.0/16")
            .build());
        var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()        
            .subnetName("acc-test-subnet")
            .cidrBlock("172.16.0.0/24")
            .zoneId(fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()))
            .vpcId(fooVpc.id())
            .build());
        var fooInstance = new Instance("fooInstance", InstanceArgs.builder()        
            .dbEngineVersion("MongoDB_4_0")
            .instanceType("ReplicaSet")
            .superAccountPassword("@acc-test-123")
            .nodeSpec("mongo.2c4g")
            .mongosNodeSpec("mongo.mongos.2c4g")
            .instanceName("acc-test-mongo-replica")
            .chargeType("PostPaid")
            .projectName("default")
            .mongosNodeNumber(32)
            .shardNumber(3)
            .storageSpaceGb(20)
            .subnetId(fooSubnet.id())
            .zoneId(fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()))
            .tags(InstanceTagArgs.builder()
                .key("k1")
                .value("v1")
                .build())
            .build());
        var fooInstanceParameter = new InstanceParameter("fooInstanceParameter", InstanceParameterArgs.builder()        
            .instanceId(fooInstance.id())
            .parameterName("cursorTimeoutMillis")
            .parameterRole("Node")
            .parameterValue("600111")
            .build());
        final var fooInstanceParameters = MongodbFunctions.InstanceParameters(InstanceParametersArgs.builder()
            .instanceId(fooInstance.id())
            .parameterNames("cursorTimeoutMillis")
            .parameterRole("Node")
            .build());
    }
}
resources:
  fooVpc:
    type: volcengine:vpc:Vpc
    properties:
      vpcName: acc-test-vpc
      cidrBlock: 172.16.0.0/16
  fooSubnet:
    type: volcengine:vpc:Subnet
    properties:
      subnetName: acc-test-subnet
      cidrBlock: 172.16.0.0/24
      zoneId: ${fooZones.zones[0].id}
      vpcId: ${fooVpc.id}
  fooInstance:
    type: volcengine:mongodb:Instance
    properties:
      dbEngineVersion: MongoDB_4_0
      instanceType: ReplicaSet
      superAccountPassword: '@acc-test-123'
      nodeSpec: mongo.2c4g
      mongosNodeSpec: mongo.mongos.2c4g
      instanceName: acc-test-mongo-replica
      chargeType: PostPaid
      projectName: default
      mongosNodeNumber: 32
      shardNumber: 3
      storageSpaceGb: 20
      subnetId: ${fooSubnet.id}
      zoneId: ${fooZones.zones[0].id}
      tags:
        - key: k1
          value: v1
  fooInstanceParameter:
    type: volcengine:mongodb:InstanceParameter
    properties:
      instanceId: ${fooInstance.id}
      parameterName: cursorTimeoutMillis
      parameterRole: Node
      parameterValue: '600111'
variables:
  fooZones:
    fn::invoke:
      Function: volcengine:ecs:Zones
      Arguments: {}
  fooInstanceParameters:
    fn::invoke:
      Function: volcengine:mongodb:InstanceParameters
      Arguments:
        instanceId: ${fooInstance.id}
        parameterNames: cursorTimeoutMillis
        parameterRole: Node
Using InstanceParameters
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function instanceParameters(args: InstanceParametersArgs, opts?: InvokeOptions): Promise<InstanceParametersResult>
function instanceParametersOutput(args: InstanceParametersOutputArgs, opts?: InvokeOptions): Output<InstanceParametersResult>def instance_parameters(instance_id: Optional[str] = None,
                        output_file: Optional[str] = None,
                        parameter_names: Optional[str] = None,
                        parameter_role: Optional[str] = None,
                        opts: Optional[InvokeOptions] = None) -> InstanceParametersResult
def instance_parameters_output(instance_id: Optional[pulumi.Input[str]] = None,
                        output_file: Optional[pulumi.Input[str]] = None,
                        parameter_names: Optional[pulumi.Input[str]] = None,
                        parameter_role: Optional[pulumi.Input[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[InstanceParametersResult]func InstanceParameters(ctx *Context, args *InstanceParametersArgs, opts ...InvokeOption) (*InstanceParametersResult, error)
func InstanceParametersOutput(ctx *Context, args *InstanceParametersOutputArgs, opts ...InvokeOption) InstanceParametersResultOutputpublic static class InstanceParameters 
{
    public static Task<InstanceParametersResult> InvokeAsync(InstanceParametersArgs args, InvokeOptions? opts = null)
    public static Output<InstanceParametersResult> Invoke(InstanceParametersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<InstanceParametersResult> instanceParameters(InstanceParametersArgs args, InvokeOptions options)
public static Output<InstanceParametersResult> instanceParameters(InstanceParametersArgs args, InvokeOptions options)
fn::invoke:
  function: volcengine:mongodb:InstanceParameters
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Instance
Id string - The instance ID to query.
 - Output
File string - File name where to save data source results.
 - Parameter
Names string - The parameter names, support fuzzy query, case insensitive.
 - Parameter
Role string - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. 
- Instance
Id string - The instance ID to query.
 - Output
File string - File name where to save data source results.
 - Parameter
Names string - The parameter names, support fuzzy query, case insensitive.
 - Parameter
Role string - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. 
- instance
Id String - The instance ID to query.
 - output
File String - File name where to save data source results.
 - parameter
Names String - The parameter names, support fuzzy query, case insensitive.
 - parameter
Role String - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. 
- instance
Id string - The instance ID to query.
 - output
File string - File name where to save data source results.
 - parameter
Names string - The parameter names, support fuzzy query, case insensitive.
 - parameter
Role string - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. 
- instance_
id str - The instance ID to query.
 - output_
file str - File name where to save data source results.
 - parameter_
names str - The parameter names, support fuzzy query, case insensitive.
 - parameter_
role str - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. 
- instance
Id String - The instance ID to query.
 - output
File String - File name where to save data source results.
 - parameter
Names String - The parameter names, support fuzzy query, case insensitive.
 - parameter
Role String - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. 
InstanceParameters Result
The following output properties are available:
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Instance
Id string - The instance ID.
 - Instance
Parameters List<InstanceParameters Instance Parameter>  - The list of parameters.
 - Parameters
List<Instance
Parameters Parameter>  - (Deprecated) This field has been deprecated and it is recommended to use instance_parameters. The collection of parameter query.
 - Total
Count int - The total count of mongodb instance parameter query.
 - Output
File string - Parameter
Names string - Parameter
Role string - The node type to which the parameter belongs.
 
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Instance
Id string - The instance ID.
 - Instance
Parameters []InstanceParameters Instance Parameter  - The list of parameters.
 - Parameters
[]Instance
Parameters Parameter  - (Deprecated) This field has been deprecated and it is recommended to use instance_parameters. The collection of parameter query.
 - Total
Count int - The total count of mongodb instance parameter query.
 - Output
File string - Parameter
Names string - Parameter
Role string - The node type to which the parameter belongs.
 
- id String
 - The provider-assigned unique ID for this managed resource.
 - instance
Id String - The instance ID.
 - instance
Parameters List<InstanceParameters Instance Parameter>  - The list of parameters.
 - parameters
List<Instance
Parameters Parameter>  - (Deprecated) This field has been deprecated and it is recommended to use instance_parameters. The collection of parameter query.
 - total
Count Integer - The total count of mongodb instance parameter query.
 - output
File String - parameter
Names String - parameter
Role String - The node type to which the parameter belongs.
 
- id string
 - The provider-assigned unique ID for this managed resource.
 - instance
Id string - The instance ID.
 - instance
Parameters InstanceParameters Instance Parameter[]  - The list of parameters.
 - parameters
Instance
Parameters Parameter[]  - (Deprecated) This field has been deprecated and it is recommended to use instance_parameters. The collection of parameter query.
 - total
Count number - The total count of mongodb instance parameter query.
 - output
File string - parameter
Names string - parameter
Role string - The node type to which the parameter belongs.
 
- id str
 - The provider-assigned unique ID for this managed resource.
 - instance_
id str - The instance ID.
 - instance_
parameters Sequence[InstanceParameters Instance Parameter]  - The list of parameters.
 - parameters
Sequence[Instance
Parameters Parameter]  - (Deprecated) This field has been deprecated and it is recommended to use instance_parameters. The collection of parameter query.
 - total_
count int - The total count of mongodb instance parameter query.
 - output_
file str - parameter_
names str - parameter_
role str - The node type to which the parameter belongs.
 
- id String
 - The provider-assigned unique ID for this managed resource.
 - instance
Id String - The instance ID.
 - instance
Parameters List<Property Map> - The list of parameters.
 - parameters List<Property Map>
 - (Deprecated) This field has been deprecated and it is recommended to use instance_parameters. The collection of parameter query.
 - total
Count Number - The total count of mongodb instance parameter query.
 - output
File String - parameter
Names String - parameter
Role String - The node type to which the parameter belongs.
 
Supporting Types
InstanceParametersInstanceParameter   
- Checking
Code string - The checking code of parameter.
 - Force
Modify bool - Whether the parameter supports modifying.
 - Force
Restart bool - Does the new parameter value need to restart the instance to take effect after modification.
 - Parameter
Default stringValue  - The default value of parameter.
 - Parameter
Description string - The description of parameter.
 - Parameter
Name string - The name of parameter.
 - Parameter
Role string - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - Parameter
Type string - The type of parameter value.
 - Parameter
Value string - The value of parameter.
 
- Checking
Code string - The checking code of parameter.
 - Force
Modify bool - Whether the parameter supports modifying.
 - Force
Restart bool - Does the new parameter value need to restart the instance to take effect after modification.
 - Parameter
Default stringValue  - The default value of parameter.
 - Parameter
Description string - The description of parameter.
 - Parameter
Name string - The name of parameter.
 - Parameter
Role string - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - Parameter
Type string - The type of parameter value.
 - Parameter
Value string - The value of parameter.
 
- checking
Code String - The checking code of parameter.
 - force
Modify Boolean - Whether the parameter supports modifying.
 - force
Restart Boolean - Does the new parameter value need to restart the instance to take effect after modification.
 - parameter
Default StringValue  - The default value of parameter.
 - parameter
Description String - The description of parameter.
 - parameter
Name String - The name of parameter.
 - parameter
Role String - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - parameter
Type String - The type of parameter value.
 - parameter
Value String - The value of parameter.
 
- checking
Code string - The checking code of parameter.
 - force
Modify boolean - Whether the parameter supports modifying.
 - force
Restart boolean - Does the new parameter value need to restart the instance to take effect after modification.
 - parameter
Default stringValue  - The default value of parameter.
 - parameter
Description string - The description of parameter.
 - parameter
Name string - The name of parameter.
 - parameter
Role string - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - parameter
Type string - The type of parameter value.
 - parameter
Value string - The value of parameter.
 
- checking_
code str - The checking code of parameter.
 - force_
modify bool - Whether the parameter supports modifying.
 - force_
restart bool - Does the new parameter value need to restart the instance to take effect after modification.
 - parameter_
default_ strvalue  - The default value of parameter.
 - parameter_
description str - The description of parameter.
 - parameter_
name str - The name of parameter.
 - parameter_
role str - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - parameter_
type str - The type of parameter value.
 - parameter_
value str - The value of parameter.
 
- checking
Code String - The checking code of parameter.
 - force
Modify Boolean - Whether the parameter supports modifying.
 - force
Restart Boolean - Does the new parameter value need to restart the instance to take effect after modification.
 - parameter
Default StringValue  - The default value of parameter.
 - parameter
Description String - The description of parameter.
 - parameter
Name String - The name of parameter.
 - parameter
Role String - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - parameter
Type String - The type of parameter value.
 - parameter
Value String - The value of parameter.
 
InstanceParametersParameter  
- Db
Engine string - The database engine.
 - Db
Engine stringVersion  - The database engine version.
 - Instance
Id string - The instance ID to query.
 - Instance
Parameters List<InstanceParameters Parameter Instance Parameter>  - The list of parameters.
 - Total string
 - The total parameters queried.
 
- Db
Engine string - The database engine.
 - Db
Engine stringVersion  - The database engine version.
 - Instance
Id string - The instance ID to query.
 - Instance
Parameters []InstanceParameters Parameter Instance Parameter  - The list of parameters.
 - Total string
 - The total parameters queried.
 
- db
Engine String - The database engine.
 - db
Engine StringVersion  - The database engine version.
 - instance
Id String - The instance ID to query.
 - instance
Parameters List<InstanceParameters Parameter Instance Parameter>  - The list of parameters.
 - total String
 - The total parameters queried.
 
- db
Engine string - The database engine.
 - db
Engine stringVersion  - The database engine version.
 - instance
Id string - The instance ID to query.
 - instance
Parameters InstanceParameters Parameter Instance Parameter[]  - The list of parameters.
 - total string
 - The total parameters queried.
 
- db_
engine str - The database engine.
 - db_
engine_ strversion  - The database engine version.
 - instance_
id str - The instance ID to query.
 - instance_
parameters Sequence[InstanceParameters Parameter Instance Parameter]  - The list of parameters.
 - total str
 - The total parameters queried.
 
- db
Engine String - The database engine.
 - db
Engine StringVersion  - The database engine version.
 - instance
Id String - The instance ID to query.
 - instance
Parameters List<Property Map> - The list of parameters.
 - total String
 - The total parameters queried.
 
InstanceParametersParameterInstanceParameter    
- Checking
Code string - The checking code of parameter.
 - Force
Modify bool - Whether the parameter supports modifying.
 - Force
Restart bool - Does the new parameter value need to restart the instance to take effect after modification.
 - Parameter
Default stringValue  - The default value of parameter.
 - Parameter
Description string - The description of parameter.
 - Parameter
Name string - The name of parameter.
 - Parameter
Role string - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - Parameter
Type string - The type of parameter value.
 - Parameter
Value string - The value of parameter.
 
- Checking
Code string - The checking code of parameter.
 - Force
Modify bool - Whether the parameter supports modifying.
 - Force
Restart bool - Does the new parameter value need to restart the instance to take effect after modification.
 - Parameter
Default stringValue  - The default value of parameter.
 - Parameter
Description string - The description of parameter.
 - Parameter
Name string - The name of parameter.
 - Parameter
Role string - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - Parameter
Type string - The type of parameter value.
 - Parameter
Value string - The value of parameter.
 
- checking
Code String - The checking code of parameter.
 - force
Modify Boolean - Whether the parameter supports modifying.
 - force
Restart Boolean - Does the new parameter value need to restart the instance to take effect after modification.
 - parameter
Default StringValue  - The default value of parameter.
 - parameter
Description String - The description of parameter.
 - parameter
Name String - The name of parameter.
 - parameter
Role String - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - parameter
Type String - The type of parameter value.
 - parameter
Value String - The value of parameter.
 
- checking
Code string - The checking code of parameter.
 - force
Modify boolean - Whether the parameter supports modifying.
 - force
Restart boolean - Does the new parameter value need to restart the instance to take effect after modification.
 - parameter
Default stringValue  - The default value of parameter.
 - parameter
Description string - The description of parameter.
 - parameter
Name string - The name of parameter.
 - parameter
Role string - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - parameter
Type string - The type of parameter value.
 - parameter
Value string - The value of parameter.
 
- checking_
code str - The checking code of parameter.
 - force_
modify bool - Whether the parameter supports modifying.
 - force_
restart bool - Does the new parameter value need to restart the instance to take effect after modification.
 - parameter_
default_ strvalue  - The default value of parameter.
 - parameter_
description str - The description of parameter.
 - parameter_
name str - The name of parameter.
 - parameter_
role str - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - parameter_
type str - The type of parameter value.
 - parameter_
value str - The value of parameter.
 
- checking
Code String - The checking code of parameter.
 - force
Modify Boolean - Whether the parameter supports modifying.
 - force
Restart Boolean - Does the new parameter value need to restart the instance to take effect after modification.
 - parameter
Default StringValue  - The default value of parameter.
 - parameter
Description String - The description of parameter.
 - parameter
Name String - The name of parameter.
 - parameter
Role String - The node type of instance parameter, valid value contains 
Node,Shard,ConfigServer,Mongos. - parameter
Type String - The type of parameter value.
 - parameter
Value String - The value of parameter.
 
Package Details
- Repository
 - volcengine volcengine/pulumi-volcengine
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
volcengineTerraform Provider.