tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
tencentcloud.getSqlserverAccountDbAttachments
Start a Neo task
Explain and create a tencentcloud.getSqlserverAccountDbAttachments resource
tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
Use this data source to query the list of SQL Server account DB privileges.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const zones = tencentcloud.getAvailabilityZones({});
const vpc = new tencentcloud.Vpc("vpc", {
name: "example-vpc",
cidrBlock: "10.0.0.0/16",
});
const subnet = new tencentcloud.Subnet("subnet", {
availabilityZone: zones.then(zones => zones.zones?.[0]?.name),
name: "example-vpc",
vpcId: vpc.vpcId,
cidrBlock: "10.0.0.0/16",
isMulticast: false,
});
const securityGroup = new tencentcloud.SecurityGroup("security_group", {
name: "example-sg",
description: "desc.",
});
const example = new tencentcloud.SqlserverInstance("example", {
name: "tf_example_sql",
availabilityZone: zones.then(zones => zones.zones?.[0]?.name),
chargeType: "POSTPAID_BY_HOUR",
period: 1,
vpcId: vpc.vpcId,
subnetId: subnet.subnetId,
securityGroups: [securityGroup.securityGroupId],
projectId: 0,
memory: 2,
storage: 20,
maintenanceWeekSets: [
1,
2,
3,
],
maintenanceStartTime: "01:00",
maintenanceTimeSpan: 3,
tags: {
createBy: "tfExample",
},
});
const exampleSqlserverDb = new tencentcloud.SqlserverDb("example", {
instanceId: example.sqlserverInstanceId,
name: "tfExampleDb",
charset: "Chinese_PRC_BIN",
remark: "remark desc.",
});
const exampleSqlserverAccount = new tencentcloud.SqlserverAccount("example", {
instanceId: example.sqlserverInstanceId,
name: "tf_example_account",
password: "PassWord@123",
remark: "remark desc.",
});
const exampleSqlserverAccountDbAttachment = new tencentcloud.SqlserverAccountDbAttachment("example", {
instanceId: example.sqlserverInstanceId,
accountName: exampleSqlserverAccount.name,
dbName: exampleSqlserverDb.name,
privilege: "ReadWrite",
});
const test = tencentcloud.getSqlserverAccountDbAttachmentsOutput({
instanceId: example.sqlserverInstanceId,
accountName: exampleSqlserverAccountDbAttachment.accountName,
});
import pulumi
import pulumi_tencentcloud as tencentcloud
zones = tencentcloud.get_availability_zones()
vpc = tencentcloud.Vpc("vpc",
name="example-vpc",
cidr_block="10.0.0.0/16")
subnet = tencentcloud.Subnet("subnet",
availability_zone=zones.zones[0].name,
name="example-vpc",
vpc_id=vpc.vpc_id,
cidr_block="10.0.0.0/16",
is_multicast=False)
security_group = tencentcloud.SecurityGroup("security_group",
name="example-sg",
description="desc.")
example = tencentcloud.SqlserverInstance("example",
name="tf_example_sql",
availability_zone=zones.zones[0].name,
charge_type="POSTPAID_BY_HOUR",
period=1,
vpc_id=vpc.vpc_id,
subnet_id=subnet.subnet_id,
security_groups=[security_group.security_group_id],
project_id=0,
memory=2,
storage=20,
maintenance_week_sets=[
1,
2,
3,
],
maintenance_start_time="01:00",
maintenance_time_span=3,
tags={
"createBy": "tfExample",
})
example_sqlserver_db = tencentcloud.SqlserverDb("example",
instance_id=example.sqlserver_instance_id,
name="tfExampleDb",
charset="Chinese_PRC_BIN",
remark="remark desc.")
example_sqlserver_account = tencentcloud.SqlserverAccount("example",
instance_id=example.sqlserver_instance_id,
name="tf_example_account",
password="PassWord@123",
remark="remark desc.")
example_sqlserver_account_db_attachment = tencentcloud.SqlserverAccountDbAttachment("example",
instance_id=example.sqlserver_instance_id,
account_name=example_sqlserver_account.name,
db_name=example_sqlserver_db.name,
privilege="ReadWrite")
test = tencentcloud.get_sqlserver_account_db_attachments_output(instance_id=example.sqlserver_instance_id,
account_name=example_sqlserver_account_db_attachment.account_name)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
zones, err := tencentcloud.GetAvailabilityZones(ctx, &tencentcloud.GetAvailabilityZonesArgs{}, nil)
if err != nil {
return err
}
vpc, err := tencentcloud.NewVpc(ctx, "vpc", &tencentcloud.VpcArgs{
Name: pulumi.String("example-vpc"),
CidrBlock: pulumi.String("10.0.0.0/16"),
})
if err != nil {
return err
}
subnet, err := tencentcloud.NewSubnet(ctx, "subnet", &tencentcloud.SubnetArgs{
AvailabilityZone: pulumi.String(zones.Zones[0].Name),
Name: pulumi.String("example-vpc"),
VpcId: vpc.VpcId,
CidrBlock: pulumi.String("10.0.0.0/16"),
IsMulticast: pulumi.Bool(false),
})
if err != nil {
return err
}
securityGroup, err := tencentcloud.NewSecurityGroup(ctx, "security_group", &tencentcloud.SecurityGroupArgs{
Name: pulumi.String("example-sg"),
Description: pulumi.String("desc."),
})
if err != nil {
return err
}
example, err := tencentcloud.NewSqlserverInstance(ctx, "example", &tencentcloud.SqlserverInstanceArgs{
Name: pulumi.String("tf_example_sql"),
AvailabilityZone: pulumi.String(zones.Zones[0].Name),
ChargeType: pulumi.String("POSTPAID_BY_HOUR"),
Period: pulumi.Float64(1),
VpcId: vpc.VpcId,
SubnetId: subnet.SubnetId,
SecurityGroups: pulumi.StringArray{
securityGroup.SecurityGroupId,
},
ProjectId: pulumi.Float64(0),
Memory: pulumi.Float64(2),
Storage: pulumi.Float64(20),
MaintenanceWeekSets: pulumi.Float64Array{
pulumi.Float64(1),
pulumi.Float64(2),
pulumi.Float64(3),
},
MaintenanceStartTime: pulumi.String("01:00"),
MaintenanceTimeSpan: pulumi.Float64(3),
Tags: pulumi.StringMap{
"createBy": pulumi.String("tfExample"),
},
})
if err != nil {
return err
}
exampleSqlserverDb, err := tencentcloud.NewSqlserverDb(ctx, "example", &tencentcloud.SqlserverDbArgs{
InstanceId: example.SqlserverInstanceId,
Name: pulumi.String("tfExampleDb"),
Charset: pulumi.String("Chinese_PRC_BIN"),
Remark: pulumi.String("remark desc."),
})
if err != nil {
return err
}
exampleSqlserverAccount, err := tencentcloud.NewSqlserverAccount(ctx, "example", &tencentcloud.SqlserverAccountArgs{
InstanceId: example.SqlserverInstanceId,
Name: pulumi.String("tf_example_account"),
Password: pulumi.String("PassWord@123"),
Remark: pulumi.String("remark desc."),
})
if err != nil {
return err
}
exampleSqlserverAccountDbAttachment, err := tencentcloud.NewSqlserverAccountDbAttachment(ctx, "example", &tencentcloud.SqlserverAccountDbAttachmentArgs{
InstanceId: example.SqlserverInstanceId,
AccountName: exampleSqlserverAccount.Name,
DbName: exampleSqlserverDb.Name,
Privilege: pulumi.String("ReadWrite"),
})
if err != nil {
return err
}
_ = tencentcloud.GetSqlserverAccountDbAttachmentsOutput(ctx, tencentcloud.GetSqlserverAccountDbAttachmentsOutputArgs{
InstanceId: example.SqlserverInstanceId,
AccountName: exampleSqlserverAccountDbAttachment.AccountName,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var zones = Tencentcloud.GetAvailabilityZones.Invoke();
var vpc = new Tencentcloud.Vpc("vpc", new()
{
Name = "example-vpc",
CidrBlock = "10.0.0.0/16",
});
var subnet = new Tencentcloud.Subnet("subnet", new()
{
AvailabilityZone = zones.Apply(getAvailabilityZonesResult => getAvailabilityZonesResult.Zones[0]?.Name),
Name = "example-vpc",
VpcId = vpc.VpcId,
CidrBlock = "10.0.0.0/16",
IsMulticast = false,
});
var securityGroup = new Tencentcloud.SecurityGroup("security_group", new()
{
Name = "example-sg",
Description = "desc.",
});
var example = new Tencentcloud.SqlserverInstance("example", new()
{
Name = "tf_example_sql",
AvailabilityZone = zones.Apply(getAvailabilityZonesResult => getAvailabilityZonesResult.Zones[0]?.Name),
ChargeType = "POSTPAID_BY_HOUR",
Period = 1,
VpcId = vpc.VpcId,
SubnetId = subnet.SubnetId,
SecurityGroups = new[]
{
securityGroup.SecurityGroupId,
},
ProjectId = 0,
Memory = 2,
Storage = 20,
MaintenanceWeekSets = new[]
{
1,
2,
3,
},
MaintenanceStartTime = "01:00",
MaintenanceTimeSpan = 3,
Tags =
{
{ "createBy", "tfExample" },
},
});
var exampleSqlserverDb = new Tencentcloud.SqlserverDb("example", new()
{
InstanceId = example.SqlserverInstanceId,
Name = "tfExampleDb",
Charset = "Chinese_PRC_BIN",
Remark = "remark desc.",
});
var exampleSqlserverAccount = new Tencentcloud.SqlserverAccount("example", new()
{
InstanceId = example.SqlserverInstanceId,
Name = "tf_example_account",
Password = "PassWord@123",
Remark = "remark desc.",
});
var exampleSqlserverAccountDbAttachment = new Tencentcloud.SqlserverAccountDbAttachment("example", new()
{
InstanceId = example.SqlserverInstanceId,
AccountName = exampleSqlserverAccount.Name,
DbName = exampleSqlserverDb.Name,
Privilege = "ReadWrite",
});
var test = Tencentcloud.GetSqlserverAccountDbAttachments.Invoke(new()
{
InstanceId = example.SqlserverInstanceId,
AccountName = exampleSqlserverAccountDbAttachment.AccountName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetAvailabilityZonesArgs;
import com.pulumi.tencentcloud.Vpc;
import com.pulumi.tencentcloud.VpcArgs;
import com.pulumi.tencentcloud.Subnet;
import com.pulumi.tencentcloud.SubnetArgs;
import com.pulumi.tencentcloud.SecurityGroup;
import com.pulumi.tencentcloud.SecurityGroupArgs;
import com.pulumi.tencentcloud.SqlserverInstance;
import com.pulumi.tencentcloud.SqlserverInstanceArgs;
import com.pulumi.tencentcloud.SqlserverDb;
import com.pulumi.tencentcloud.SqlserverDbArgs;
import com.pulumi.tencentcloud.SqlserverAccount;
import com.pulumi.tencentcloud.SqlserverAccountArgs;
import com.pulumi.tencentcloud.SqlserverAccountDbAttachment;
import com.pulumi.tencentcloud.SqlserverAccountDbAttachmentArgs;
import com.pulumi.tencentcloud.inputs.GetSqlserverAccountDbAttachmentsArgs;
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 zones = TencentcloudFunctions.getAvailabilityZones(GetAvailabilityZonesArgs.builder()
.build());
var vpc = new Vpc("vpc", VpcArgs.builder()
.name("example-vpc")
.cidrBlock("10.0.0.0/16")
.build());
var subnet = new Subnet("subnet", SubnetArgs.builder()
.availabilityZone(zones.zones()[0].name())
.name("example-vpc")
.vpcId(vpc.vpcId())
.cidrBlock("10.0.0.0/16")
.isMulticast(false)
.build());
var securityGroup = new SecurityGroup("securityGroup", SecurityGroupArgs.builder()
.name("example-sg")
.description("desc.")
.build());
var example = new SqlserverInstance("example", SqlserverInstanceArgs.builder()
.name("tf_example_sql")
.availabilityZone(zones.zones()[0].name())
.chargeType("POSTPAID_BY_HOUR")
.period(1.0)
.vpcId(vpc.vpcId())
.subnetId(subnet.subnetId())
.securityGroups(securityGroup.securityGroupId())
.projectId(0.0)
.memory(2.0)
.storage(20.0)
.maintenanceWeekSets(
1.0,
2.0,
3.0)
.maintenanceStartTime("01:00")
.maintenanceTimeSpan(3.0)
.tags(Map.of("createBy", "tfExample"))
.build());
var exampleSqlserverDb = new SqlserverDb("exampleSqlserverDb", SqlserverDbArgs.builder()
.instanceId(example.sqlserverInstanceId())
.name("tfExampleDb")
.charset("Chinese_PRC_BIN")
.remark("remark desc.")
.build());
var exampleSqlserverAccount = new SqlserverAccount("exampleSqlserverAccount", SqlserverAccountArgs.builder()
.instanceId(example.sqlserverInstanceId())
.name("tf_example_account")
.password("PassWord@123")
.remark("remark desc.")
.build());
var exampleSqlserverAccountDbAttachment = new SqlserverAccountDbAttachment("exampleSqlserverAccountDbAttachment", SqlserverAccountDbAttachmentArgs.builder()
.instanceId(example.sqlserverInstanceId())
.accountName(exampleSqlserverAccount.name())
.dbName(exampleSqlserverDb.name())
.privilege("ReadWrite")
.build());
final var test = TencentcloudFunctions.getSqlserverAccountDbAttachments(GetSqlserverAccountDbAttachmentsArgs.builder()
.instanceId(example.sqlserverInstanceId())
.accountName(exampleSqlserverAccountDbAttachment.accountName())
.build());
}
}
resources:
vpc:
type: tencentcloud:Vpc
properties:
name: example-vpc
cidrBlock: 10.0.0.0/16
subnet:
type: tencentcloud:Subnet
properties:
availabilityZone: ${zones.zones[0].name}
name: example-vpc
vpcId: ${vpc.vpcId}
cidrBlock: 10.0.0.0/16
isMulticast: false
securityGroup:
type: tencentcloud:SecurityGroup
name: security_group
properties:
name: example-sg
description: desc.
example:
type: tencentcloud:SqlserverInstance
properties:
name: tf_example_sql
availabilityZone: ${zones.zones[0].name}
chargeType: POSTPAID_BY_HOUR
period: 1
vpcId: ${vpc.vpcId}
subnetId: ${subnet.subnetId}
securityGroups:
- ${securityGroup.securityGroupId}
projectId: 0
memory: 2
storage: 20
maintenanceWeekSets:
- 1
- 2
- 3
maintenanceStartTime: 01:00
maintenanceTimeSpan: 3
tags:
createBy: tfExample
exampleSqlserverDb:
type: tencentcloud:SqlserverDb
name: example
properties:
instanceId: ${example.sqlserverInstanceId}
name: tfExampleDb
charset: Chinese_PRC_BIN
remark: remark desc.
exampleSqlserverAccount:
type: tencentcloud:SqlserverAccount
name: example
properties:
instanceId: ${example.sqlserverInstanceId}
name: tf_example_account
password: PassWord@123
remark: remark desc.
exampleSqlserverAccountDbAttachment:
type: tencentcloud:SqlserverAccountDbAttachment
name: example
properties:
instanceId: ${example.sqlserverInstanceId}
accountName: ${exampleSqlserverAccount.name}
dbName: ${exampleSqlserverDb.name}
privilege: ReadWrite
variables:
zones:
fn::invoke:
function: tencentcloud:getAvailabilityZones
arguments: {}
test:
fn::invoke:
function: tencentcloud:getSqlserverAccountDbAttachments
arguments:
instanceId: ${example.sqlserverInstanceId}
accountName: ${exampleSqlserverAccountDbAttachment.accountName}
Using getSqlserverAccountDbAttachments
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 getSqlserverAccountDbAttachments(args: GetSqlserverAccountDbAttachmentsArgs, opts?: InvokeOptions): Promise<GetSqlserverAccountDbAttachmentsResult>
function getSqlserverAccountDbAttachmentsOutput(args: GetSqlserverAccountDbAttachmentsOutputArgs, opts?: InvokeOptions): Output<GetSqlserverAccountDbAttachmentsResult>def get_sqlserver_account_db_attachments(account_name: Optional[str] = None,
db_name: Optional[str] = None,
id: Optional[str] = None,
instance_id: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSqlserverAccountDbAttachmentsResult
def get_sqlserver_account_db_attachments_output(account_name: Optional[pulumi.Input[str]] = None,
db_name: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSqlserverAccountDbAttachmentsResult]func GetSqlserverAccountDbAttachments(ctx *Context, args *GetSqlserverAccountDbAttachmentsArgs, opts ...InvokeOption) (*GetSqlserverAccountDbAttachmentsResult, error)
func GetSqlserverAccountDbAttachmentsOutput(ctx *Context, args *GetSqlserverAccountDbAttachmentsOutputArgs, opts ...InvokeOption) GetSqlserverAccountDbAttachmentsResultOutput> Note: This function is named GetSqlserverAccountDbAttachments in the Go SDK.
public static class GetSqlserverAccountDbAttachments
{
public static Task<GetSqlserverAccountDbAttachmentsResult> InvokeAsync(GetSqlserverAccountDbAttachmentsArgs args, InvokeOptions? opts = null)
public static Output<GetSqlserverAccountDbAttachmentsResult> Invoke(GetSqlserverAccountDbAttachmentsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSqlserverAccountDbAttachmentsResult> getSqlserverAccountDbAttachments(GetSqlserverAccountDbAttachmentsArgs args, InvokeOptions options)
public static Output<GetSqlserverAccountDbAttachmentsResult> getSqlserverAccountDbAttachments(GetSqlserverAccountDbAttachmentsArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getSqlserverAccountDbAttachments:getSqlserverAccountDbAttachments
arguments:
# arguments dictionaryThe following arguments are supported:
- Instance
Id string - SQL Server instance ID that the account belongs to.
- Account
Name string - Name of the SQL Server account to be queried.
- Db
Name string - Name of the DB to be queried.
- Id string
- Result
Output stringFile - Used to store results.
- Instance
Id string - SQL Server instance ID that the account belongs to.
- Account
Name string - Name of the SQL Server account to be queried.
- Db
Name string - Name of the DB to be queried.
- Id string
- Result
Output stringFile - Used to store results.
- instance
Id String - SQL Server instance ID that the account belongs to.
- account
Name String - Name of the SQL Server account to be queried.
- db
Name String - Name of the DB to be queried.
- id String
- result
Output StringFile - Used to store results.
- instance
Id string - SQL Server instance ID that the account belongs to.
- account
Name string - Name of the SQL Server account to be queried.
- db
Name string - Name of the DB to be queried.
- id string
- result
Output stringFile - Used to store results.
- instance_
id str - SQL Server instance ID that the account belongs to.
- account_
name str - Name of the SQL Server account to be queried.
- db_
name str - Name of the DB to be queried.
- id str
- result_
output_ strfile - Used to store results.
- instance
Id String - SQL Server instance ID that the account belongs to.
- account
Name String - Name of the SQL Server account to be queried.
- db
Name String - Name of the DB to be queried.
- id String
- result
Output StringFile - Used to store results.
getSqlserverAccountDbAttachments Result
The following output properties are available:
- Id string
- Instance
Id string - SQL Server instance ID that the account belongs to.
- Lists
List<Get
Sqlserver Account Db Attachments List> - A list of SQL Server account. Each element contains the following attributes:
- Account
Name string - SQL Server account name.
- Db
Name string - SQL Server DB name.
- Result
Output stringFile
- Id string
- Instance
Id string - SQL Server instance ID that the account belongs to.
- Lists
[]Get
Sqlserver Account Db Attachments List - A list of SQL Server account. Each element contains the following attributes:
- Account
Name string - SQL Server account name.
- Db
Name string - SQL Server DB name.
- Result
Output stringFile
- id String
- instance
Id String - SQL Server instance ID that the account belongs to.
- lists
List<Get
Sqlserver Account Db Attachments List> - A list of SQL Server account. Each element contains the following attributes:
- account
Name String - SQL Server account name.
- db
Name String - SQL Server DB name.
- result
Output StringFile
- id string
- instance
Id string - SQL Server instance ID that the account belongs to.
- lists
Get
Sqlserver Account Db Attachments List[] - A list of SQL Server account. Each element contains the following attributes:
- account
Name string - SQL Server account name.
- db
Name string - SQL Server DB name.
- result
Output stringFile
- id str
- instance_
id str - SQL Server instance ID that the account belongs to.
- lists
Sequence[Get
Sqlserver Account Db Attachments List] - A list of SQL Server account. Each element contains the following attributes:
- account_
name str - SQL Server account name.
- db_
name str - SQL Server DB name.
- result_
output_ strfile
- id String
- instance
Id String - SQL Server instance ID that the account belongs to.
- lists List<Property Map>
- A list of SQL Server account. Each element contains the following attributes:
- account
Name String - SQL Server account name.
- db
Name String - SQL Server DB name.
- result
Output StringFile
Supporting Types
GetSqlserverAccountDbAttachmentsList
- Account
Name string - Name of the SQL Server account to be queried.
- Db
Name string - Name of the DB to be queried.
- Instance
Id string - SQL Server instance ID that the account belongs to.
- Privilege string
- Privilege of the account on DB. Valid value are
ReadOnly,ReadWrite.
- Account
Name string - Name of the SQL Server account to be queried.
- Db
Name string - Name of the DB to be queried.
- Instance
Id string - SQL Server instance ID that the account belongs to.
- Privilege string
- Privilege of the account on DB. Valid value are
ReadOnly,ReadWrite.
- account
Name String - Name of the SQL Server account to be queried.
- db
Name String - Name of the DB to be queried.
- instance
Id String - SQL Server instance ID that the account belongs to.
- privilege String
- Privilege of the account on DB. Valid value are
ReadOnly,ReadWrite.
- account
Name string - Name of the SQL Server account to be queried.
- db
Name string - Name of the DB to be queried.
- instance
Id string - SQL Server instance ID that the account belongs to.
- privilege string
- Privilege of the account on DB. Valid value are
ReadOnly,ReadWrite.
- account_
name str - Name of the SQL Server account to be queried.
- db_
name str - Name of the DB to be queried.
- instance_
id str - SQL Server instance ID that the account belongs to.
- privilege str
- Privilege of the account on DB. Valid value are
ReadOnly,ReadWrite.
- account
Name String - Name of the SQL Server account to be queried.
- db
Name String - Name of the DB to be queried.
- instance
Id String - SQL Server instance ID that the account belongs to.
- privilege String
- Privilege of the account on DB. Valid value are
ReadOnly,ReadWrite.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
