1. Packages
  2. Volcengine
  3. API Docs
  4. rds_mssql
  5. Instances
Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine

volcengine.rds_mssql.Instances

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine

    Use this data source to query detailed information of rds mssql instances

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = Volcengine.Rds_mssql.Instances.Invoke(new()
        {
            InstanceId = "mssql-d2fc5abe****",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rds_mssql"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := rds_mssql.Instances(ctx, &rds_mssql.InstancesArgs{
    			InstanceId: pulumi.StringRef("mssql-d2fc5abe****"),
    		}, nil)
    		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.volcengine.rds_mssql.Rds_mssqlFunctions;
    import com.pulumi.volcengine.rds_mssql.inputs.InstancesArgs;
    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 foo = Rds_mssqlFunctions.Instances(InstancesArgs.builder()
                .instanceId("mssql-d2fc5abe****")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo = volcengine.rds_mssql.instances(instance_id="mssql-d2fc5abe****")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    
    const foo = volcengine.rds_mssql.Instances({
        instanceId: "mssql-d2fc5abe****",
    });
    
    variables:
      foo:
        fn::invoke:
          Function: volcengine:rds_mssql:Instances
          Arguments:
            instanceId: mssql-d2fc5abe****
    

    Using Instances

    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 instances(args: InstancesArgs, opts?: InvokeOptions): Promise<InstancesResult>
    function instancesOutput(args: InstancesOutputArgs, opts?: InvokeOptions): Output<InstancesResult>
    def instances(charge_type: Optional[str] = None,
                  create_time_end: Optional[str] = None,
                  create_time_start: Optional[str] = None,
                  db_engine_version: Optional[str] = None,
                  instance_id: Optional[str] = None,
                  instance_name: Optional[str] = None,
                  instance_status: Optional[str] = None,
                  instance_type: Optional[str] = None,
                  name_regex: Optional[str] = None,
                  output_file: Optional[str] = None,
                  tags: Optional[Sequence[InstancesTag]] = None,
                  zone_id: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> InstancesResult
    def instances_output(charge_type: Optional[pulumi.Input[str]] = None,
                  create_time_end: Optional[pulumi.Input[str]] = None,
                  create_time_start: Optional[pulumi.Input[str]] = None,
                  db_engine_version: Optional[pulumi.Input[str]] = None,
                  instance_id: Optional[pulumi.Input[str]] = None,
                  instance_name: Optional[pulumi.Input[str]] = None,
                  instance_status: Optional[pulumi.Input[str]] = None,
                  instance_type: Optional[pulumi.Input[str]] = None,
                  name_regex: Optional[pulumi.Input[str]] = None,
                  output_file: Optional[pulumi.Input[str]] = None,
                  tags: Optional[pulumi.Input[Sequence[pulumi.Input[InstancesTagArgs]]]] = None,
                  zone_id: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[InstancesResult]
    func Instances(ctx *Context, args *InstancesArgs, opts ...InvokeOption) (*InstancesResult, error)
    func InstancesOutput(ctx *Context, args *InstancesOutputArgs, opts ...InvokeOption) InstancesResultOutput
    public static class Instances 
    {
        public static Task<InstancesResult> InvokeAsync(InstancesArgs args, InvokeOptions? opts = null)
        public static Output<InstancesResult> Invoke(InstancesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<InstancesResult> instances(InstancesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: volcengine:rds_mssql:Instances
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ChargeType string
    The charge type. Valid values: PostPaid, PrePaid.
    CreateTimeEnd string
    The end time of creating the instance, using UTC time format.
    CreateTimeStart string
    The start time of creating the instance, using UTC time format.
    DbEngineVersion string
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    InstanceId string
    Id of the instance.
    InstanceName string
    Name of the instance.
    InstanceStatus string
    Status of the instance.
    InstanceType string
    Instance type. Valid values: HA, Basic, Cluster.
    NameRegex string
    A Name Regex of RDS mssql instance.
    OutputFile string
    File name where to save data source results.
    Tags List<InstancesTag>
    Tags.
    ZoneId string
    The id of the zone.
    ChargeType string
    The charge type. Valid values: PostPaid, PrePaid.
    CreateTimeEnd string
    The end time of creating the instance, using UTC time format.
    CreateTimeStart string
    The start time of creating the instance, using UTC time format.
    DbEngineVersion string
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    InstanceId string
    Id of the instance.
    InstanceName string
    Name of the instance.
    InstanceStatus string
    Status of the instance.
    InstanceType string
    Instance type. Valid values: HA, Basic, Cluster.
    NameRegex string
    A Name Regex of RDS mssql instance.
    OutputFile string
    File name where to save data source results.
    Tags []InstancesTag
    Tags.
    ZoneId string
    The id of the zone.
    chargeType String
    The charge type. Valid values: PostPaid, PrePaid.
    createTimeEnd String
    The end time of creating the instance, using UTC time format.
    createTimeStart String
    The start time of creating the instance, using UTC time format.
    dbEngineVersion String
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    instanceId String
    Id of the instance.
    instanceName String
    Name of the instance.
    instanceStatus String
    Status of the instance.
    instanceType String
    Instance type. Valid values: HA, Basic, Cluster.
    nameRegex String
    A Name Regex of RDS mssql instance.
    outputFile String
    File name where to save data source results.
    tags List<InstancesTag>
    Tags.
    zoneId String
    The id of the zone.
    chargeType string
    The charge type. Valid values: PostPaid, PrePaid.
    createTimeEnd string
    The end time of creating the instance, using UTC time format.
    createTimeStart string
    The start time of creating the instance, using UTC time format.
    dbEngineVersion string
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    instanceId string
    Id of the instance.
    instanceName string
    Name of the instance.
    instanceStatus string
    Status of the instance.
    instanceType string
    Instance type. Valid values: HA, Basic, Cluster.
    nameRegex string
    A Name Regex of RDS mssql instance.
    outputFile string
    File name where to save data source results.
    tags InstancesTag[]
    Tags.
    zoneId string
    The id of the zone.
    charge_type str
    The charge type. Valid values: PostPaid, PrePaid.
    create_time_end str
    The end time of creating the instance, using UTC time format.
    create_time_start str
    The start time of creating the instance, using UTC time format.
    db_engine_version str
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    instance_id str
    Id of the instance.
    instance_name str
    Name of the instance.
    instance_status str
    Status of the instance.
    instance_type str
    Instance type. Valid values: HA, Basic, Cluster.
    name_regex str
    A Name Regex of RDS mssql instance.
    output_file str
    File name where to save data source results.
    tags Sequence[InstancesTag]
    Tags.
    zone_id str
    The id of the zone.
    chargeType String
    The charge type. Valid values: PostPaid, PrePaid.
    createTimeEnd String
    The end time of creating the instance, using UTC time format.
    createTimeStart String
    The start time of creating the instance, using UTC time format.
    dbEngineVersion String
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    instanceId String
    Id of the instance.
    instanceName String
    Name of the instance.
    instanceStatus String
    Status of the instance.
    instanceType String
    Instance type. Valid values: HA, Basic, Cluster.
    nameRegex String
    A Name Regex of RDS mssql instance.
    outputFile String
    File name where to save data source results.
    tags List<Property Map>
    Tags.
    zoneId String
    The id of the zone.

    Instances Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Instances List<InstancesInstance>
    The collection of query.
    TotalCount int
    The total count of query.
    ChargeType string
    The charge type.
    CreateTimeEnd string
    CreateTimeStart string
    DbEngineVersion string
    The db engine version.
    InstanceId string
    Instance ID.
    InstanceName string
    The name of the instance.
    InstanceStatus string
    The status of the instance.
    InstanceType string
    The type of the instance.
    NameRegex string
    OutputFile string
    Tags List<InstancesTag>
    Tags.
    ZoneId string
    The zone id.
    Id string
    The provider-assigned unique ID for this managed resource.
    Instances []InstancesInstance
    The collection of query.
    TotalCount int
    The total count of query.
    ChargeType string
    The charge type.
    CreateTimeEnd string
    CreateTimeStart string
    DbEngineVersion string
    The db engine version.
    InstanceId string
    Instance ID.
    InstanceName string
    The name of the instance.
    InstanceStatus string
    The status of the instance.
    InstanceType string
    The type of the instance.
    NameRegex string
    OutputFile string
    Tags []InstancesTag
    Tags.
    ZoneId string
    The zone id.
    id String
    The provider-assigned unique ID for this managed resource.
    instances List<InstancesInstance>
    The collection of query.
    totalCount Integer
    The total count of query.
    chargeType String
    The charge type.
    createTimeEnd String
    createTimeStart String
    dbEngineVersion String
    The db engine version.
    instanceId String
    Instance ID.
    instanceName String
    The name of the instance.
    instanceStatus String
    The status of the instance.
    instanceType String
    The type of the instance.
    nameRegex String
    outputFile String
    tags List<InstancesTag>
    Tags.
    zoneId String
    The zone id.
    id string
    The provider-assigned unique ID for this managed resource.
    instances InstancesInstance[]
    The collection of query.
    totalCount number
    The total count of query.
    chargeType string
    The charge type.
    createTimeEnd string
    createTimeStart string
    dbEngineVersion string
    The db engine version.
    instanceId string
    Instance ID.
    instanceName string
    The name of the instance.
    instanceStatus string
    The status of the instance.
    instanceType string
    The type of the instance.
    nameRegex string
    outputFile string
    tags InstancesTag[]
    Tags.
    zoneId string
    The zone id.
    id str
    The provider-assigned unique ID for this managed resource.
    instances Sequence[InstancesInstance]
    The collection of query.
    total_count int
    The total count of query.
    charge_type str
    The charge type.
    create_time_end str
    create_time_start str
    db_engine_version str
    The db engine version.
    instance_id str
    Instance ID.
    instance_name str
    The name of the instance.
    instance_status str
    The status of the instance.
    instance_type str
    The type of the instance.
    name_regex str
    output_file str
    tags Sequence[InstancesTag]
    Tags.
    zone_id str
    The zone id.
    id String
    The provider-assigned unique ID for this managed resource.
    instances List<Property Map>
    The collection of query.
    totalCount Number
    The total count of query.
    chargeType String
    The charge type.
    createTimeEnd String
    createTimeStart String
    dbEngineVersion String
    The db engine version.
    instanceId String
    Instance ID.
    instanceName String
    The name of the instance.
    instanceStatus String
    The status of the instance.
    instanceType String
    The type of the instance.
    nameRegex String
    outputFile String
    tags List<Property Map>
    Tags.
    zoneId String
    The zone id.

    Supporting Types

    InstancesInstance

    BackupUse double
    The used backup space of the instance. Unit: GiB.
    ChargeDetails List<InstancesInstanceChargeDetail>
    The charge detail.
    ConnectionInfos List<InstancesInstanceConnectionInfo>
    The connection info of the instance.
    CreateTime string
    Node creation time.
    DbEngineVersion string
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    Id string
    The id of the instance.
    InnerVersion string
    The inner version of the instance.
    InstanceCategory string
    The instance category.
    InstanceId string
    Id of the instance.
    InstanceName string
    Name of the instance.
    InstanceStatus string
    Status of the instance.
    InstanceType string
    Instance type. Valid values: HA, Basic, Cluster.
    Memory int
    The Memory.
    NodeDetailInfos List<InstancesInstanceNodeDetailInfo>
    Node detail information.
    NodeSpec string
    The node spec.
    ParameterCount int
    The count of instance parameters.
    Parameters List<InstancesInstanceParameter>
    The list of instance parameters.
    Port string
    The port of the instance.
    PrimaryInstanceId string
    The id of the primary instance.
    ProjectName string
    The project name.
    ReadOnlyNumber int
    The number of read only instance.
    RegionId string
    The region id.
    ServerCollation string
    Server sorting rules.
    SlowQueryEnable bool
    Whether to enable slow query function.
    SlowQueryTime string
    The slow query time. Unit: second.
    StorageSpace int
    The storage space.
    StorageType string
    The storage type.
    StorageUse double
    The used storage space.
    SubnetId string
    The subnet id.
    Tags List<InstancesInstanceTag>
    Tags.
    TimeZone string
    The time zone.
    UpdateTime string
    The update time of the instance.
    VCpu int
    The CPU size of the instance. For example: 1 represents 1U.
    VpcId string
    The vpc id.
    ZoneId string
    The id of the zone.
    BackupUse float64
    The used backup space of the instance. Unit: GiB.
    ChargeDetails []InstancesInstanceChargeDetail
    The charge detail.
    ConnectionInfos []InstancesInstanceConnectionInfo
    The connection info of the instance.
    CreateTime string
    Node creation time.
    DbEngineVersion string
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    Id string
    The id of the instance.
    InnerVersion string
    The inner version of the instance.
    InstanceCategory string
    The instance category.
    InstanceId string
    Id of the instance.
    InstanceName string
    Name of the instance.
    InstanceStatus string
    Status of the instance.
    InstanceType string
    Instance type. Valid values: HA, Basic, Cluster.
    Memory int
    The Memory.
    NodeDetailInfos []InstancesInstanceNodeDetailInfo
    Node detail information.
    NodeSpec string
    The node spec.
    ParameterCount int
    The count of instance parameters.
    Parameters []InstancesInstanceParameter
    The list of instance parameters.
    Port string
    The port of the instance.
    PrimaryInstanceId string
    The id of the primary instance.
    ProjectName string
    The project name.
    ReadOnlyNumber int
    The number of read only instance.
    RegionId string
    The region id.
    ServerCollation string
    Server sorting rules.
    SlowQueryEnable bool
    Whether to enable slow query function.
    SlowQueryTime string
    The slow query time. Unit: second.
    StorageSpace int
    The storage space.
    StorageType string
    The storage type.
    StorageUse float64
    The used storage space.
    SubnetId string
    The subnet id.
    Tags []InstancesInstanceTag
    Tags.
    TimeZone string
    The time zone.
    UpdateTime string
    The update time of the instance.
    VCpu int
    The CPU size of the instance. For example: 1 represents 1U.
    VpcId string
    The vpc id.
    ZoneId string
    The id of the zone.
    backupUse Double
    The used backup space of the instance. Unit: GiB.
    chargeDetails List<InstancesInstanceChargeDetail>
    The charge detail.
    connectionInfos List<InstancesInstanceConnectionInfo>
    The connection info of the instance.
    createTime String
    Node creation time.
    dbEngineVersion String
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    id String
    The id of the instance.
    innerVersion String
    The inner version of the instance.
    instanceCategory String
    The instance category.
    instanceId String
    Id of the instance.
    instanceName String
    Name of the instance.
    instanceStatus String
    Status of the instance.
    instanceType String
    Instance type. Valid values: HA, Basic, Cluster.
    memory Integer
    The Memory.
    nodeDetailInfos List<InstancesInstanceNodeDetailInfo>
    Node detail information.
    nodeSpec String
    The node spec.
    parameterCount Integer
    The count of instance parameters.
    parameters List<InstancesInstanceParameter>
    The list of instance parameters.
    port String
    The port of the instance.
    primaryInstanceId String
    The id of the primary instance.
    projectName String
    The project name.
    readOnlyNumber Integer
    The number of read only instance.
    regionId String
    The region id.
    serverCollation String
    Server sorting rules.
    slowQueryEnable Boolean
    Whether to enable slow query function.
    slowQueryTime String
    The slow query time. Unit: second.
    storageSpace Integer
    The storage space.
    storageType String
    The storage type.
    storageUse Double
    The used storage space.
    subnetId String
    The subnet id.
    tags List<InstancesInstanceTag>
    Tags.
    timeZone String
    The time zone.
    updateTime String
    The update time of the instance.
    vCpu Integer
    The CPU size of the instance. For example: 1 represents 1U.
    vpcId String
    The vpc id.
    zoneId String
    The id of the zone.
    backupUse number
    The used backup space of the instance. Unit: GiB.
    chargeDetails InstancesInstanceChargeDetail[]
    The charge detail.
    connectionInfos InstancesInstanceConnectionInfo[]
    The connection info of the instance.
    createTime string
    Node creation time.
    dbEngineVersion string
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    id string
    The id of the instance.
    innerVersion string
    The inner version of the instance.
    instanceCategory string
    The instance category.
    instanceId string
    Id of the instance.
    instanceName string
    Name of the instance.
    instanceStatus string
    Status of the instance.
    instanceType string
    Instance type. Valid values: HA, Basic, Cluster.
    memory number
    The Memory.
    nodeDetailInfos InstancesInstanceNodeDetailInfo[]
    Node detail information.
    nodeSpec string
    The node spec.
    parameterCount number
    The count of instance parameters.
    parameters InstancesInstanceParameter[]
    The list of instance parameters.
    port string
    The port of the instance.
    primaryInstanceId string
    The id of the primary instance.
    projectName string
    The project name.
    readOnlyNumber number
    The number of read only instance.
    regionId string
    The region id.
    serverCollation string
    Server sorting rules.
    slowQueryEnable boolean
    Whether to enable slow query function.
    slowQueryTime string
    The slow query time. Unit: second.
    storageSpace number
    The storage space.
    storageType string
    The storage type.
    storageUse number
    The used storage space.
    subnetId string
    The subnet id.
    tags InstancesInstanceTag[]
    Tags.
    timeZone string
    The time zone.
    updateTime string
    The update time of the instance.
    vCpu number
    The CPU size of the instance. For example: 1 represents 1U.
    vpcId string
    The vpc id.
    zoneId string
    The id of the zone.
    backup_use float
    The used backup space of the instance. Unit: GiB.
    charge_details Sequence[InstancesInstanceChargeDetail]
    The charge detail.
    connection_infos Sequence[InstancesInstanceConnectionInfo]
    The connection info of the instance.
    create_time str
    Node creation time.
    db_engine_version str
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    id str
    The id of the instance.
    inner_version str
    The inner version of the instance.
    instance_category str
    The instance category.
    instance_id str
    Id of the instance.
    instance_name str
    Name of the instance.
    instance_status str
    Status of the instance.
    instance_type str
    Instance type. Valid values: HA, Basic, Cluster.
    memory int
    The Memory.
    node_detail_infos Sequence[InstancesInstanceNodeDetailInfo]
    Node detail information.
    node_spec str
    The node spec.
    parameter_count int
    The count of instance parameters.
    parameters Sequence[InstancesInstanceParameter]
    The list of instance parameters.
    port str
    The port of the instance.
    primary_instance_id str
    The id of the primary instance.
    project_name str
    The project name.
    read_only_number int
    The number of read only instance.
    region_id str
    The region id.
    server_collation str
    Server sorting rules.
    slow_query_enable bool
    Whether to enable slow query function.
    slow_query_time str
    The slow query time. Unit: second.
    storage_space int
    The storage space.
    storage_type str
    The storage type.
    storage_use float
    The used storage space.
    subnet_id str
    The subnet id.
    tags Sequence[InstancesInstanceTag]
    Tags.
    time_zone str
    The time zone.
    update_time str
    The update time of the instance.
    v_cpu int
    The CPU size of the instance. For example: 1 represents 1U.
    vpc_id str
    The vpc id.
    zone_id str
    The id of the zone.
    backupUse Number
    The used backup space of the instance. Unit: GiB.
    chargeDetails List<Property Map>
    The charge detail.
    connectionInfos List<Property Map>
    The connection info of the instance.
    createTime String
    Node creation time.
    dbEngineVersion String
    Compatible version. Valid values: SQLServer_2019_Std, SQLServer_2019_Web, SQLServer_2019_Ent.
    id String
    The id of the instance.
    innerVersion String
    The inner version of the instance.
    instanceCategory String
    The instance category.
    instanceId String
    Id of the instance.
    instanceName String
    Name of the instance.
    instanceStatus String
    Status of the instance.
    instanceType String
    Instance type. Valid values: HA, Basic, Cluster.
    memory Number
    The Memory.
    nodeDetailInfos List<Property Map>
    Node detail information.
    nodeSpec String
    The node spec.
    parameterCount Number
    The count of instance parameters.
    parameters List<Property Map>
    The list of instance parameters.
    port String
    The port of the instance.
    primaryInstanceId String
    The id of the primary instance.
    projectName String
    The project name.
    readOnlyNumber Number
    The number of read only instance.
    regionId String
    The region id.
    serverCollation String
    Server sorting rules.
    slowQueryEnable Boolean
    Whether to enable slow query function.
    slowQueryTime String
    The slow query time. Unit: second.
    storageSpace Number
    The storage space.
    storageType String
    The storage type.
    storageUse Number
    The used storage space.
    subnetId String
    The subnet id.
    tags List<Property Map>
    Tags.
    timeZone String
    The time zone.
    updateTime String
    The update time of the instance.
    vCpu Number
    The CPU size of the instance. For example: 1 represents 1U.
    vpcId String
    The vpc id.
    zoneId String
    The id of the zone.

    InstancesInstanceChargeDetail

    AutoRenew bool
    Whether to enable automatic renewal in the prepaid scenario. This parameter can be set when ChargeType is Prepaid.
    ChargeEndTime string
    Charge end time.
    ChargeStartTime string
    Charge start time.
    ChargeStatus string
    The charge status.
    ChargeType string
    The charge type. Valid values: PostPaid, PrePaid.
    OverdueReclaimTime string
    Expected release time when overdue fees are shut down.
    OverdueTime string
    Time for Disconnection due to Unpaid Fees.
    Period int
    Purchase duration in a prepaid scenario.
    PeriodUnit string
    Purchase cycle in prepaid scenarios. This parameter can be set when ChargeType is Prepaid.
    AutoRenew bool
    Whether to enable automatic renewal in the prepaid scenario. This parameter can be set when ChargeType is Prepaid.
    ChargeEndTime string
    Charge end time.
    ChargeStartTime string
    Charge start time.
    ChargeStatus string
    The charge status.
    ChargeType string
    The charge type. Valid values: PostPaid, PrePaid.
    OverdueReclaimTime string
    Expected release time when overdue fees are shut down.
    OverdueTime string
    Time for Disconnection due to Unpaid Fees.
    Period int
    Purchase duration in a prepaid scenario.
    PeriodUnit string
    Purchase cycle in prepaid scenarios. This parameter can be set when ChargeType is Prepaid.
    autoRenew Boolean
    Whether to enable automatic renewal in the prepaid scenario. This parameter can be set when ChargeType is Prepaid.
    chargeEndTime String
    Charge end time.
    chargeStartTime String
    Charge start time.
    chargeStatus String
    The charge status.
    chargeType String
    The charge type. Valid values: PostPaid, PrePaid.
    overdueReclaimTime String
    Expected release time when overdue fees are shut down.
    overdueTime String
    Time for Disconnection due to Unpaid Fees.
    period Integer
    Purchase duration in a prepaid scenario.
    periodUnit String
    Purchase cycle in prepaid scenarios. This parameter can be set when ChargeType is Prepaid.
    autoRenew boolean
    Whether to enable automatic renewal in the prepaid scenario. This parameter can be set when ChargeType is Prepaid.
    chargeEndTime string
    Charge end time.
    chargeStartTime string
    Charge start time.
    chargeStatus string
    The charge status.
    chargeType string
    The charge type. Valid values: PostPaid, PrePaid.
    overdueReclaimTime string
    Expected release time when overdue fees are shut down.
    overdueTime string
    Time for Disconnection due to Unpaid Fees.
    period number
    Purchase duration in a prepaid scenario.
    periodUnit string
    Purchase cycle in prepaid scenarios. This parameter can be set when ChargeType is Prepaid.
    auto_renew bool
    Whether to enable automatic renewal in the prepaid scenario. This parameter can be set when ChargeType is Prepaid.
    charge_end_time str
    Charge end time.
    charge_start_time str
    Charge start time.
    charge_status str
    The charge status.
    charge_type str
    The charge type. Valid values: PostPaid, PrePaid.
    overdue_reclaim_time str
    Expected release time when overdue fees are shut down.
    overdue_time str
    Time for Disconnection due to Unpaid Fees.
    period int
    Purchase duration in a prepaid scenario.
    period_unit str
    Purchase cycle in prepaid scenarios. This parameter can be set when ChargeType is Prepaid.
    autoRenew Boolean
    Whether to enable automatic renewal in the prepaid scenario. This parameter can be set when ChargeType is Prepaid.
    chargeEndTime String
    Charge end time.
    chargeStartTime String
    Charge start time.
    chargeStatus String
    The charge status.
    chargeType String
    The charge type. Valid values: PostPaid, PrePaid.
    overdueReclaimTime String
    Expected release time when overdue fees are shut down.
    overdueTime String
    Time for Disconnection due to Unpaid Fees.
    period Number
    Purchase duration in a prepaid scenario.
    periodUnit String
    Purchase cycle in prepaid scenarios. This parameter can be set when ChargeType is Prepaid.

    InstancesInstanceConnectionInfo

    Addresses List<InstancesInstanceConnectionInfoAddress>
    The address info.
    Description string
    The description.
    EndpointId string
    The endpoint id.
    EndpointName string
    The endpoint name.
    EndpointType string
    The endpoint type.
    Addresses []InstancesInstanceConnectionInfoAddress
    The address info.
    Description string
    The description.
    EndpointId string
    The endpoint id.
    EndpointName string
    The endpoint name.
    EndpointType string
    The endpoint type.
    addresses List<InstancesInstanceConnectionInfoAddress>
    The address info.
    description String
    The description.
    endpointId String
    The endpoint id.
    endpointName String
    The endpoint name.
    endpointType String
    The endpoint type.
    addresses InstancesInstanceConnectionInfoAddress[]
    The address info.
    description string
    The description.
    endpointId string
    The endpoint id.
    endpointName string
    The endpoint name.
    endpointType string
    The endpoint type.
    addresses Sequence[InstancesInstanceConnectionInfoAddress]
    The address info.
    description str
    The description.
    endpoint_id str
    The endpoint id.
    endpoint_name str
    The endpoint name.
    endpoint_type str
    The endpoint type.
    addresses List<Property Map>
    The address info.
    description String
    The description.
    endpointId String
    The endpoint id.
    endpointName String
    The endpoint name.
    endpointType String
    The endpoint type.

    InstancesInstanceConnectionInfoAddress

    DnsVisibility bool
    Whether to enable private to public network resolution.
    Domain string
    The domain.
    EipId string
    The eip id for public address.
    IpAddress string
    The ip address.
    NetworkType string
    The network type.
    Port string
    The port of the instance.
    SubnetId string
    The subnet id.
    DnsVisibility bool
    Whether to enable private to public network resolution.
    Domain string
    The domain.
    EipId string
    The eip id for public address.
    IpAddress string
    The ip address.
    NetworkType string
    The network type.
    Port string
    The port of the instance.
    SubnetId string
    The subnet id.
    dnsVisibility Boolean
    Whether to enable private to public network resolution.
    domain String
    The domain.
    eipId String
    The eip id for public address.
    ipAddress String
    The ip address.
    networkType String
    The network type.
    port String
    The port of the instance.
    subnetId String
    The subnet id.
    dnsVisibility boolean
    Whether to enable private to public network resolution.
    domain string
    The domain.
    eipId string
    The eip id for public address.
    ipAddress string
    The ip address.
    networkType string
    The network type.
    port string
    The port of the instance.
    subnetId string
    The subnet id.
    dns_visibility bool
    Whether to enable private to public network resolution.
    domain str
    The domain.
    eip_id str
    The eip id for public address.
    ip_address str
    The ip address.
    network_type str
    The network type.
    port str
    The port of the instance.
    subnet_id str
    The subnet id.
    dnsVisibility Boolean
    Whether to enable private to public network resolution.
    domain String
    The domain.
    eipId String
    The eip id for public address.
    ipAddress String
    The ip address.
    networkType String
    The network type.
    port String
    The port of the instance.
    subnetId String
    The subnet id.

    InstancesInstanceNodeDetailInfo

    CreateTime string
    Node creation time.
    InstanceId string
    Id of the instance.
    Memory int
    The Memory.
    NodeId string
    The Node ID.
    NodeIp string
    The node ip.
    NodeSpec string
    The node spec.
    NodeStatus string
    The node status.
    NodeType string
    The node type.
    RegionId string
    The region id.
    UpdateTime string
    The update time of the instance.
    VCpu int
    The CPU size of the instance. For example: 1 represents 1U.
    ZoneId string
    The id of the zone.
    CreateTime string
    Node creation time.
    InstanceId string
    Id of the instance.
    Memory int
    The Memory.
    NodeId string
    The Node ID.
    NodeIp string
    The node ip.
    NodeSpec string
    The node spec.
    NodeStatus string
    The node status.
    NodeType string
    The node type.
    RegionId string
    The region id.
    UpdateTime string
    The update time of the instance.
    VCpu int
    The CPU size of the instance. For example: 1 represents 1U.
    ZoneId string
    The id of the zone.
    createTime String
    Node creation time.
    instanceId String
    Id of the instance.
    memory Integer
    The Memory.
    nodeId String
    The Node ID.
    nodeIp String
    The node ip.
    nodeSpec String
    The node spec.
    nodeStatus String
    The node status.
    nodeType String
    The node type.
    regionId String
    The region id.
    updateTime String
    The update time of the instance.
    vCpu Integer
    The CPU size of the instance. For example: 1 represents 1U.
    zoneId String
    The id of the zone.
    createTime string
    Node creation time.
    instanceId string
    Id of the instance.
    memory number
    The Memory.
    nodeId string
    The Node ID.
    nodeIp string
    The node ip.
    nodeSpec string
    The node spec.
    nodeStatus string
    The node status.
    nodeType string
    The node type.
    regionId string
    The region id.
    updateTime string
    The update time of the instance.
    vCpu number
    The CPU size of the instance. For example: 1 represents 1U.
    zoneId string
    The id of the zone.
    create_time str
    Node creation time.
    instance_id str
    Id of the instance.
    memory int
    The Memory.
    node_id str
    The Node ID.
    node_ip str
    The node ip.
    node_spec str
    The node spec.
    node_status str
    The node status.
    node_type str
    The node type.
    region_id str
    The region id.
    update_time str
    The update time of the instance.
    v_cpu int
    The CPU size of the instance. For example: 1 represents 1U.
    zone_id str
    The id of the zone.
    createTime String
    Node creation time.
    instanceId String
    Id of the instance.
    memory Number
    The Memory.
    nodeId String
    The Node ID.
    nodeIp String
    The node ip.
    nodeSpec String
    The node spec.
    nodeStatus String
    The node status.
    nodeType String
    The node type.
    regionId String
    The region id.
    updateTime String
    The update time of the instance.
    vCpu Number
    The CPU size of the instance. For example: 1 represents 1U.
    zoneId String
    The id of the zone.

    InstancesInstanceParameter

    CheckingCode string
    The valid value range of the parameter.
    ForceModify bool
    Indicates whether the parameter running value can be modified.
    ForceRestart bool
    Indicates whether the instance needs to be restarted to take effect after modifying the running value of the parameter.
    ParameterDefaultValue string
    The default value of the parameter.
    ParameterDescription string
    The description of the parameter.
    ParameterName string
    The name of the parameter.
    ParameterType string
    The type of the parameter.
    ParameterValue string
    The value of the parameter.
    CheckingCode string
    The valid value range of the parameter.
    ForceModify bool
    Indicates whether the parameter running value can be modified.
    ForceRestart bool
    Indicates whether the instance needs to be restarted to take effect after modifying the running value of the parameter.
    ParameterDefaultValue string
    The default value of the parameter.
    ParameterDescription string
    The description of the parameter.
    ParameterName string
    The name of the parameter.
    ParameterType string
    The type of the parameter.
    ParameterValue string
    The value of the parameter.
    checkingCode String
    The valid value range of the parameter.
    forceModify Boolean
    Indicates whether the parameter running value can be modified.
    forceRestart Boolean
    Indicates whether the instance needs to be restarted to take effect after modifying the running value of the parameter.
    parameterDefaultValue String
    The default value of the parameter.
    parameterDescription String
    The description of the parameter.
    parameterName String
    The name of the parameter.
    parameterType String
    The type of the parameter.
    parameterValue String
    The value of the parameter.
    checkingCode string
    The valid value range of the parameter.
    forceModify boolean
    Indicates whether the parameter running value can be modified.
    forceRestart boolean
    Indicates whether the instance needs to be restarted to take effect after modifying the running value of the parameter.
    parameterDefaultValue string
    The default value of the parameter.
    parameterDescription string
    The description of the parameter.
    parameterName string
    The name of the parameter.
    parameterType string
    The type of the parameter.
    parameterValue string
    The value of the parameter.
    checking_code str
    The valid value range of the parameter.
    force_modify bool
    Indicates whether the parameter running value can be modified.
    force_restart bool
    Indicates whether the instance needs to be restarted to take effect after modifying the running value of the parameter.
    parameter_default_value str
    The default value of the parameter.
    parameter_description str
    The description of the parameter.
    parameter_name str
    The name of the parameter.
    parameter_type str
    The type of the parameter.
    parameter_value str
    The value of the parameter.
    checkingCode String
    The valid value range of the parameter.
    forceModify Boolean
    Indicates whether the parameter running value can be modified.
    forceRestart Boolean
    Indicates whether the instance needs to be restarted to take effect after modifying the running value of the parameter.
    parameterDefaultValue String
    The default value of the parameter.
    parameterDescription String
    The description of the parameter.
    parameterName String
    The name of the parameter.
    parameterType String
    The type of the parameter.
    parameterValue String
    The value of the parameter.

    InstancesInstanceTag

    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.
    key string
    The Key of Tags.
    value string
    The Value of Tags.
    key str
    The Key of Tags.
    value str
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.

    InstancesTag

    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.
    key string
    The Key of Tags.
    value string
    The Value of Tags.
    key str
    The Key of Tags.
    value str
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine