tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
tencentcloud.getCynosdbResourcePackageList
Start a Neo task
Explain and create a tencentcloud.getCynosdbResourcePackageList resource
tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
Use this data source to query detailed information of cynosdb resource_package_list
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const resourcePackageList = tencentcloud.getCynosdbResourcePackageList({
packageIds: ["package-hy4d2ppl"],
packageNames: ["keep-package-disk"],
packageTypes: ["DISK"],
packageRegions: ["china"],
statuses: ["using"],
orderBies: ["startTime"],
orderDirection: "DESC",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
resource_package_list = tencentcloud.get_cynosdb_resource_package_list(package_ids=["package-hy4d2ppl"],
package_names=["keep-package-disk"],
package_types=["DISK"],
package_regions=["china"],
statuses=["using"],
order_bies=["startTime"],
order_direction="DESC")
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 {
_, err := tencentcloud.GetCynosdbResourcePackageList(ctx, &tencentcloud.GetCynosdbResourcePackageListArgs{
PackageIds: []string{
"package-hy4d2ppl",
},
PackageNames: []string{
"keep-package-disk",
},
PackageTypes: []string{
"DISK",
},
PackageRegions: []string{
"china",
},
Statuses: []string{
"using",
},
OrderBies: []string{
"startTime",
},
OrderDirection: pulumi.StringRef("DESC"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var resourcePackageList = Tencentcloud.GetCynosdbResourcePackageList.Invoke(new()
{
PackageIds = new[]
{
"package-hy4d2ppl",
},
PackageNames = new[]
{
"keep-package-disk",
},
PackageTypes = new[]
{
"DISK",
},
PackageRegions = new[]
{
"china",
},
Statuses = new[]
{
"using",
},
OrderBies = new[]
{
"startTime",
},
OrderDirection = "DESC",
});
});
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.GetCynosdbResourcePackageListArgs;
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 resourcePackageList = TencentcloudFunctions.getCynosdbResourcePackageList(GetCynosdbResourcePackageListArgs.builder()
.packageIds("package-hy4d2ppl")
.packageNames("keep-package-disk")
.packageTypes("DISK")
.packageRegions("china")
.statuses("using")
.orderBies("startTime")
.orderDirection("DESC")
.build());
}
}
variables:
resourcePackageList:
fn::invoke:
function: tencentcloud:getCynosdbResourcePackageList
arguments:
packageIds:
- package-hy4d2ppl
packageNames:
- keep-package-disk
packageTypes:
- DISK
packageRegions:
- china
statuses:
- using
orderBies:
- startTime
orderDirection: DESC
Using getCynosdbResourcePackageList
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 getCynosdbResourcePackageList(args: GetCynosdbResourcePackageListArgs, opts?: InvokeOptions): Promise<GetCynosdbResourcePackageListResult>
function getCynosdbResourcePackageListOutput(args: GetCynosdbResourcePackageListOutputArgs, opts?: InvokeOptions): Output<GetCynosdbResourcePackageListResult>def get_cynosdb_resource_package_list(id: Optional[str] = None,
order_bies: Optional[Sequence[str]] = None,
order_direction: Optional[str] = None,
package_ids: Optional[Sequence[str]] = None,
package_names: Optional[Sequence[str]] = None,
package_regions: Optional[Sequence[str]] = None,
package_types: Optional[Sequence[str]] = None,
result_output_file: Optional[str] = None,
statuses: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetCynosdbResourcePackageListResult
def get_cynosdb_resource_package_list_output(id: Optional[pulumi.Input[str]] = None,
order_bies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
order_direction: Optional[pulumi.Input[str]] = None,
package_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
package_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
package_regions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
package_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCynosdbResourcePackageListResult]func GetCynosdbResourcePackageList(ctx *Context, args *GetCynosdbResourcePackageListArgs, opts ...InvokeOption) (*GetCynosdbResourcePackageListResult, error)
func GetCynosdbResourcePackageListOutput(ctx *Context, args *GetCynosdbResourcePackageListOutputArgs, opts ...InvokeOption) GetCynosdbResourcePackageListResultOutput> Note: This function is named GetCynosdbResourcePackageList in the Go SDK.
public static class GetCynosdbResourcePackageList
{
public static Task<GetCynosdbResourcePackageListResult> InvokeAsync(GetCynosdbResourcePackageListArgs args, InvokeOptions? opts = null)
public static Output<GetCynosdbResourcePackageListResult> Invoke(GetCynosdbResourcePackageListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetCynosdbResourcePackageListResult> getCynosdbResourcePackageList(GetCynosdbResourcePackageListArgs args, InvokeOptions options)
public static Output<GetCynosdbResourcePackageListResult> getCynosdbResourcePackageList(GetCynosdbResourcePackageListArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getCynosdbResourcePackageList:getCynosdbResourcePackageList
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- Order
Bies List<string> - Sorting conditions supported: startTime - effective time, expireTime - expiration time, packageUsedSpec - usage capacity, and packageTotalSpec - total storage capacity. Arrange in array order;.
- Order
Direction string - Sort by, DESC Descending, ASC Ascending.
- Package
Ids List<string> - Resource Package Unique ID.
- Package
Names List<string> - Resource Package Name.
- Package
Regions List<string> - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- Package
Types List<string> - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- Result
Output stringFile - Used to save results.
- Statuses List<string>
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
- Id string
- Order
Bies []string - Sorting conditions supported: startTime - effective time, expireTime - expiration time, packageUsedSpec - usage capacity, and packageTotalSpec - total storage capacity. Arrange in array order;.
- Order
Direction string - Sort by, DESC Descending, ASC Ascending.
- Package
Ids []string - Resource Package Unique ID.
- Package
Names []string - Resource Package Name.
- Package
Regions []string - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- Package
Types []string - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- Result
Output stringFile - Used to save results.
- Statuses []string
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
- id String
- order
Bies List<String> - Sorting conditions supported: startTime - effective time, expireTime - expiration time, packageUsedSpec - usage capacity, and packageTotalSpec - total storage capacity. Arrange in array order;.
- order
Direction String - Sort by, DESC Descending, ASC Ascending.
- package
Ids List<String> - Resource Package Unique ID.
- package
Names List<String> - Resource Package Name.
- package
Regions List<String> - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- package
Types List<String> - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- result
Output StringFile - Used to save results.
- statuses List<String>
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
- id string
- order
Bies string[] - Sorting conditions supported: startTime - effective time, expireTime - expiration time, packageUsedSpec - usage capacity, and packageTotalSpec - total storage capacity. Arrange in array order;.
- order
Direction string - Sort by, DESC Descending, ASC Ascending.
- package
Ids string[] - Resource Package Unique ID.
- package
Names string[] - Resource Package Name.
- package
Regions string[] - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- package
Types string[] - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- result
Output stringFile - Used to save results.
- statuses string[]
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
- id str
- order_
bies Sequence[str] - Sorting conditions supported: startTime - effective time, expireTime - expiration time, packageUsedSpec - usage capacity, and packageTotalSpec - total storage capacity. Arrange in array order;.
- order_
direction str - Sort by, DESC Descending, ASC Ascending.
- package_
ids Sequence[str] - Resource Package Unique ID.
- package_
names Sequence[str] - Resource Package Name.
- package_
regions Sequence[str] - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- package_
types Sequence[str] - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- result_
output_ strfile - Used to save results.
- statuses Sequence[str]
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
- id String
- order
Bies List<String> - Sorting conditions supported: startTime - effective time, expireTime - expiration time, packageUsedSpec - usage capacity, and packageTotalSpec - total storage capacity. Arrange in array order;.
- order
Direction String - Sort by, DESC Descending, ASC Ascending.
- package
Ids List<String> - Resource Package Unique ID.
- package
Names List<String> - Resource Package Name.
- package
Regions List<String> - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- package
Types List<String> - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- result
Output StringFile - Used to save results.
- statuses List<String>
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
getCynosdbResourcePackageList Result
The following output properties are available:
- Id string
- Resource
Package List<GetLists Cynosdb Resource Package List Resource Package List> - Resource package details note: This field may return null, indicating that a valid value cannot be obtained.
- Order
Bies List<string> - Order
Direction string - Package
Ids List<string> - Resource Package Unique ID Note: This field may return null, indicating that a valid value cannot be obtained.
- Package
Names List<string> - Resource package name note: This field may return null, indicating that a valid value cannot be obtained.
- Package
Regions List<string> - The resource package is used in China, which is commonly used in mainland China, and in overseas, which is commonly used in Hong Kong, Macao, Taiwan, and overseas. Note: This field may return null, indicating that a valid value cannot be obtained.
- Package
Types List<string> - Resource package type CCU - Compute resource package, DISK - Store resource package Note: This field may return null, indicating that a valid value cannot be obtained.
- Result
Output stringFile - Statuses List<string>
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded. Note: This field may return null, indicating that a valid value cannot be obtained.
- Id string
- Resource
Package []GetLists Cynosdb Resource Package List Resource Package List - Resource package details note: This field may return null, indicating that a valid value cannot be obtained.
- Order
Bies []string - Order
Direction string - Package
Ids []string - Resource Package Unique ID Note: This field may return null, indicating that a valid value cannot be obtained.
- Package
Names []string - Resource package name note: This field may return null, indicating that a valid value cannot be obtained.
- Package
Regions []string - The resource package is used in China, which is commonly used in mainland China, and in overseas, which is commonly used in Hong Kong, Macao, Taiwan, and overseas. Note: This field may return null, indicating that a valid value cannot be obtained.
- Package
Types []string - Resource package type CCU - Compute resource package, DISK - Store resource package Note: This field may return null, indicating that a valid value cannot be obtained.
- Result
Output stringFile - Statuses []string
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded. Note: This field may return null, indicating that a valid value cannot be obtained.
- id String
- resource
Package List<GetLists Cynosdb Resource Package List Resource Package List> - Resource package details note: This field may return null, indicating that a valid value cannot be obtained.
- order
Bies List<String> - order
Direction String - package
Ids List<String> - Resource Package Unique ID Note: This field may return null, indicating that a valid value cannot be obtained.
- package
Names List<String> - Resource package name note: This field may return null, indicating that a valid value cannot be obtained.
- package
Regions List<String> - The resource package is used in China, which is commonly used in mainland China, and in overseas, which is commonly used in Hong Kong, Macao, Taiwan, and overseas. Note: This field may return null, indicating that a valid value cannot be obtained.
- package
Types List<String> - Resource package type CCU - Compute resource package, DISK - Store resource package Note: This field may return null, indicating that a valid value cannot be obtained.
- result
Output StringFile - statuses List<String>
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded. Note: This field may return null, indicating that a valid value cannot be obtained.
- id string
- resource
Package GetLists Cynosdb Resource Package List Resource Package List[] - Resource package details note: This field may return null, indicating that a valid value cannot be obtained.
- order
Bies string[] - order
Direction string - package
Ids string[] - Resource Package Unique ID Note: This field may return null, indicating that a valid value cannot be obtained.
- package
Names string[] - Resource package name note: This field may return null, indicating that a valid value cannot be obtained.
- package
Regions string[] - The resource package is used in China, which is commonly used in mainland China, and in overseas, which is commonly used in Hong Kong, Macao, Taiwan, and overseas. Note: This field may return null, indicating that a valid value cannot be obtained.
- package
Types string[] - Resource package type CCU - Compute resource package, DISK - Store resource package Note: This field may return null, indicating that a valid value cannot be obtained.
- result
Output stringFile - statuses string[]
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded. Note: This field may return null, indicating that a valid value cannot be obtained.
- id str
- resource_
package_ Sequence[Getlists Cynosdb Resource Package List Resource Package List] - Resource package details note: This field may return null, indicating that a valid value cannot be obtained.
- order_
bies Sequence[str] - order_
direction str - package_
ids Sequence[str] - Resource Package Unique ID Note: This field may return null, indicating that a valid value cannot be obtained.
- package_
names Sequence[str] - Resource package name note: This field may return null, indicating that a valid value cannot be obtained.
- package_
regions Sequence[str] - The resource package is used in China, which is commonly used in mainland China, and in overseas, which is commonly used in Hong Kong, Macao, Taiwan, and overseas. Note: This field may return null, indicating that a valid value cannot be obtained.
- package_
types Sequence[str] - Resource package type CCU - Compute resource package, DISK - Store resource package Note: This field may return null, indicating that a valid value cannot be obtained.
- result_
output_ strfile - statuses Sequence[str]
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded. Note: This field may return null, indicating that a valid value cannot be obtained.
- id String
- resource
Package List<Property Map>Lists - Resource package details note: This field may return null, indicating that a valid value cannot be obtained.
- order
Bies List<String> - order
Direction String - package
Ids List<String> - Resource Package Unique ID Note: This field may return null, indicating that a valid value cannot be obtained.
- package
Names List<String> - Resource package name note: This field may return null, indicating that a valid value cannot be obtained.
- package
Regions List<String> - The resource package is used in China, which is commonly used in mainland China, and in overseas, which is commonly used in Hong Kong, Macao, Taiwan, and overseas. Note: This field may return null, indicating that a valid value cannot be obtained.
- package
Types List<String> - Resource package type CCU - Compute resource package, DISK - Store resource package Note: This field may return null, indicating that a valid value cannot be obtained.
- result
Output StringFile - statuses List<String>
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded. Note: This field may return null, indicating that a valid value cannot be obtained.
Supporting Types
GetCynosdbResourcePackageListResourcePackageList
- App
Id double - AppID note: This field may return null, indicating that a valid value cannot be obtained.
- Bind
Instance List<GetInfos Cynosdb Resource Package List Resource Package List Bind Instance Info> - Note for binding instance information: This field may return null, indicating that a valid value cannot be obtained.
- Expire
Time string - Expiration time: August 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- Has
Quota bool - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- Package
Id string - Resource Package Unique ID.
- Package
Name string - Resource Package Name.
- Package
Region string - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- Package
Total doubleSpec - Attention to the total amount of resource packages: This field may return null, indicating that a valid value cannot be obtained.
- Package
Type string - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- Package
Used doubleSpec - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- Start
Time string - Effective time: July 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- Status string
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
- App
Id float64 - AppID note: This field may return null, indicating that a valid value cannot be obtained.
- Bind
Instance []GetInfos Cynosdb Resource Package List Resource Package List Bind Instance Info - Note for binding instance information: This field may return null, indicating that a valid value cannot be obtained.
- Expire
Time string - Expiration time: August 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- Has
Quota bool - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- Package
Id string - Resource Package Unique ID.
- Package
Name string - Resource Package Name.
- Package
Region string - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- Package
Total float64Spec - Attention to the total amount of resource packages: This field may return null, indicating that a valid value cannot be obtained.
- Package
Type string - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- Package
Used float64Spec - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- Start
Time string - Effective time: July 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- Status string
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
- app
Id Double - AppID note: This field may return null, indicating that a valid value cannot be obtained.
- bind
Instance List<GetInfos Cynosdb Resource Package List Resource Package List Bind Instance Info> - Note for binding instance information: This field may return null, indicating that a valid value cannot be obtained.
- expire
Time String - Expiration time: August 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- has
Quota Boolean - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- package
Id String - Resource Package Unique ID.
- package
Name String - Resource Package Name.
- package
Region String - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- package
Total DoubleSpec - Attention to the total amount of resource packages: This field may return null, indicating that a valid value cannot be obtained.
- package
Type String - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- package
Used DoubleSpec - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- start
Time String - Effective time: July 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- status String
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
- app
Id number - AppID note: This field may return null, indicating that a valid value cannot be obtained.
- bind
Instance GetInfos Cynosdb Resource Package List Resource Package List Bind Instance Info[] - Note for binding instance information: This field may return null, indicating that a valid value cannot be obtained.
- expire
Time string - Expiration time: August 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- has
Quota boolean - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- package
Id string - Resource Package Unique ID.
- package
Name string - Resource Package Name.
- package
Region string - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- package
Total numberSpec - Attention to the total amount of resource packages: This field may return null, indicating that a valid value cannot be obtained.
- package
Type string - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- package
Used numberSpec - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- start
Time string - Effective time: July 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- status string
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
- app_
id float - AppID note: This field may return null, indicating that a valid value cannot be obtained.
- bind_
instance_ Sequence[Getinfos Cynosdb Resource Package List Resource Package List Bind Instance Info] - Note for binding instance information: This field may return null, indicating that a valid value cannot be obtained.
- expire_
time str - Expiration time: August 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- has_
quota bool - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- package_
id str - Resource Package Unique ID.
- package_
name str - Resource Package Name.
- package_
region str - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- package_
total_ floatspec - Attention to the total amount of resource packages: This field may return null, indicating that a valid value cannot be obtained.
- package_
type str - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- package_
used_ floatspec - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- start_
time str - Effective time: July 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- status str
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
- app
Id Number - AppID note: This field may return null, indicating that a valid value cannot be obtained.
- bind
Instance List<Property Map>Infos - Note for binding instance information: This field may return null, indicating that a valid value cannot be obtained.
- expire
Time String - Expiration time: August 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- has
Quota Boolean - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- package
Id String - Resource Package Unique ID.
- package
Name String - Resource Package Name.
- package
Region String - Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas.
- package
Total NumberSpec - Attention to the total amount of resource packages: This field may return null, indicating that a valid value cannot be obtained.
- package
Type String - Resource package type CCU - Compute resource package, DISK - Storage resource package.
- package
Used NumberSpec - Resource package usage note: This field may return null, indicating that a valid value cannot be obtained.
- start
Time String - Effective time: July 1st, 2022 00:00:00 Attention: This field may return null, indicating that a valid value cannot be obtained.
- status String
- Resource package status creating - creating; Using - In use; Expired - has expired; Normal_ Finish - used up; Apply_ Refund - Applying for a refund; Refund - The fee has been refunded.
GetCynosdbResourcePackageListResourcePackageListBindInstanceInfo
- Instance
Id string - Instance ID.
- Instance
Region string - Region of instance.
- Instance
Type string - Instance type.
- Instance
Id string - Instance ID.
- Instance
Region string - Region of instance.
- Instance
Type string - Instance type.
- instance
Id String - Instance ID.
- instance
Region String - Region of instance.
- instance
Type String - Instance type.
- instance
Id string - Instance ID.
- instance
Region string - Region of instance.
- instance
Type string - Instance type.
- instance_
id str - Instance ID.
- instance_
region str - Region of instance.
- instance_
type str - Instance type.
- instance
Id String - Instance ID.
- instance
Region String - Region of instance.
- instance
Type String - Instance type.
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
