tencentcloud 1.81.191 published on Friday, May 9, 2025 by tencentcloudstack
tencentcloud.getPostgresqlReadonlyGroups
Explore with Pulumi AI
tencentcloud 1.81.191 published on Friday, May 9, 2025 by tencentcloudstack
Use this data source to query detailed information of postgresql read_only_groups
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const group = new tencentcloud.PostgresqlReadonlyGroup("group", {
    masterDbInstanceId: "postgres-gzg9jb2n",
    projectId: 0,
    vpcId: "vpc-86v957zb",
    subnetId: "subnet-enm92y0m",
    replayLagEliminate: 1,
    replayLatencyEliminate: 1,
    maxReplayLag: 100,
    maxReplayLatency: 512,
    minDelayEliminateReserve: 1,
});
const readOnlyGroups = tencentcloud.getPostgresqlReadonlyGroupsOutput({
    filters: [{
        name: "db-master-instance-id",
        values: [group.masterDbInstanceId],
    }],
    orderBy: "CreateTime",
    orderByType: "asc",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
group = tencentcloud.PostgresqlReadonlyGroup("group",
    master_db_instance_id="postgres-gzg9jb2n",
    project_id=0,
    vpc_id="vpc-86v957zb",
    subnet_id="subnet-enm92y0m",
    replay_lag_eliminate=1,
    replay_latency_eliminate=1,
    max_replay_lag=100,
    max_replay_latency=512,
    min_delay_eliminate_reserve=1)
read_only_groups = tencentcloud.get_postgresql_readonly_groups_output(filters=[{
        "name": "db-master-instance-id",
        "values": [group.master_db_instance_id],
    }],
    order_by="CreateTime",
    order_by_type="asc")
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 {
		group, err := tencentcloud.NewPostgresqlReadonlyGroup(ctx, "group", &tencentcloud.PostgresqlReadonlyGroupArgs{
			MasterDbInstanceId:       pulumi.String("postgres-gzg9jb2n"),
			ProjectId:                pulumi.Float64(0),
			VpcId:                    pulumi.String("vpc-86v957zb"),
			SubnetId:                 pulumi.String("subnet-enm92y0m"),
			ReplayLagEliminate:       pulumi.Float64(1),
			ReplayLatencyEliminate:   pulumi.Float64(1),
			MaxReplayLag:             pulumi.Float64(100),
			MaxReplayLatency:         pulumi.Float64(512),
			MinDelayEliminateReserve: pulumi.Float64(1),
		})
		if err != nil {
			return err
		}
		_ = tencentcloud.GetPostgresqlReadonlyGroupsOutput(ctx, tencentcloud.GetPostgresqlReadonlyGroupsOutputArgs{
			Filters: tencentcloud.GetPostgresqlReadonlyGroupsFilterArray{
				&tencentcloud.GetPostgresqlReadonlyGroupsFilterArgs{
					Name: pulumi.String("db-master-instance-id"),
					Values: pulumi.StringArray{
						group.MasterDbInstanceId,
					},
				},
			},
			OrderBy:     pulumi.String("CreateTime"),
			OrderByType: pulumi.String("asc"),
		}, nil)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() => 
{
    var @group = new Tencentcloud.PostgresqlReadonlyGroup("group", new()
    {
        MasterDbInstanceId = "postgres-gzg9jb2n",
        ProjectId = 0,
        VpcId = "vpc-86v957zb",
        SubnetId = "subnet-enm92y0m",
        ReplayLagEliminate = 1,
        ReplayLatencyEliminate = 1,
        MaxReplayLag = 100,
        MaxReplayLatency = 512,
        MinDelayEliminateReserve = 1,
    });
    var readOnlyGroups = Tencentcloud.GetPostgresqlReadonlyGroups.Invoke(new()
    {
        Filters = new[]
        {
            new Tencentcloud.Inputs.GetPostgresqlReadonlyGroupsFilterInputArgs
            {
                Name = "db-master-instance-id",
                Values = new[]
                {
                    @group.MasterDbInstanceId,
                },
            },
        },
        OrderBy = "CreateTime",
        OrderByType = "asc",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.PostgresqlReadonlyGroup;
import com.pulumi.tencentcloud.PostgresqlReadonlyGroupArgs;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetPostgresqlReadonlyGroupsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var group = new PostgresqlReadonlyGroup("group", PostgresqlReadonlyGroupArgs.builder()
            .masterDbInstanceId("postgres-gzg9jb2n")
            .projectId(0)
            .vpcId("vpc-86v957zb")
            .subnetId("subnet-enm92y0m")
            .replayLagEliminate(1)
            .replayLatencyEliminate(1)
            .maxReplayLag(100)
            .maxReplayLatency(512)
            .minDelayEliminateReserve(1)
            .build());
        final var readOnlyGroups = TencentcloudFunctions.getPostgresqlReadonlyGroups(GetPostgresqlReadonlyGroupsArgs.builder()
            .filters(GetPostgresqlReadonlyGroupsFilterArgs.builder()
                .name("db-master-instance-id")
                .values(group.masterDbInstanceId())
                .build())
            .orderBy("CreateTime")
            .orderByType("asc")
            .build());
    }
}
resources:
  group:
    type: tencentcloud:PostgresqlReadonlyGroup
    properties:
      masterDbInstanceId: postgres-gzg9jb2n
      projectId: 0
      vpcId: vpc-86v957zb
      subnetId: subnet-enm92y0m
      replayLagEliminate: 1
      replayLatencyEliminate: 1
      maxReplayLag: 100
      maxReplayLatency: 512
      minDelayEliminateReserve: 1
variables:
  readOnlyGroups:
    fn::invoke:
      function: tencentcloud:getPostgresqlReadonlyGroups
      arguments:
        filters:
          - name: db-master-instance-id
            values:
              - ${group.masterDbInstanceId}
        orderBy: CreateTime
        orderByType: asc
Using getPostgresqlReadonlyGroups
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 getPostgresqlReadonlyGroups(args: GetPostgresqlReadonlyGroupsArgs, opts?: InvokeOptions): Promise<GetPostgresqlReadonlyGroupsResult>
function getPostgresqlReadonlyGroupsOutput(args: GetPostgresqlReadonlyGroupsOutputArgs, opts?: InvokeOptions): Output<GetPostgresqlReadonlyGroupsResult>def get_postgresql_readonly_groups(filters: Optional[Sequence[GetPostgresqlReadonlyGroupsFilter]] = None,
                                   id: Optional[str] = None,
                                   order_by: Optional[str] = None,
                                   order_by_type: Optional[str] = None,
                                   result_output_file: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetPostgresqlReadonlyGroupsResult
def get_postgresql_readonly_groups_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetPostgresqlReadonlyGroupsFilterArgs]]]] = None,
                                   id: Optional[pulumi.Input[str]] = None,
                                   order_by: Optional[pulumi.Input[str]] = None,
                                   order_by_type: Optional[pulumi.Input[str]] = None,
                                   result_output_file: Optional[pulumi.Input[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetPostgresqlReadonlyGroupsResult]func GetPostgresqlReadonlyGroups(ctx *Context, args *GetPostgresqlReadonlyGroupsArgs, opts ...InvokeOption) (*GetPostgresqlReadonlyGroupsResult, error)
func GetPostgresqlReadonlyGroupsOutput(ctx *Context, args *GetPostgresqlReadonlyGroupsOutputArgs, opts ...InvokeOption) GetPostgresqlReadonlyGroupsResultOutput> Note: This function is named GetPostgresqlReadonlyGroups in the Go SDK.
public static class GetPostgresqlReadonlyGroups 
{
    public static Task<GetPostgresqlReadonlyGroupsResult> InvokeAsync(GetPostgresqlReadonlyGroupsArgs args, InvokeOptions? opts = null)
    public static Output<GetPostgresqlReadonlyGroupsResult> Invoke(GetPostgresqlReadonlyGroupsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetPostgresqlReadonlyGroupsResult> getPostgresqlReadonlyGroups(GetPostgresqlReadonlyGroupsArgs args, InvokeOptions options)
public static Output<GetPostgresqlReadonlyGroupsResult> getPostgresqlReadonlyGroups(GetPostgresqlReadonlyGroupsArgs args, InvokeOptions options)
fn::invoke:
  function: tencentcloud:index/getPostgresqlReadonlyGroups:getPostgresqlReadonlyGroups
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Filters
List<GetPostgresql Readonly Groups Filter> 
- Filter condition. The primary ID must be specified in the format of db-master-instance-id to filter results, or else null will be returned.
- Id string
- OrderBy string
- Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- OrderBy stringType 
- Sorting order. Valid values:desc, asc.
- ResultOutput stringFile 
- Used to save results.
- Filters
[]GetPostgresql Readonly Groups Filter 
- Filter condition. The primary ID must be specified in the format of db-master-instance-id to filter results, or else null will be returned.
- Id string
- OrderBy string
- Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- OrderBy stringType 
- Sorting order. Valid values:desc, asc.
- ResultOutput stringFile 
- Used to save results.
- filters
List<GetPostgresql Readonly Groups Filter> 
- Filter condition. The primary ID must be specified in the format of db-master-instance-id to filter results, or else null will be returned.
- id String
- orderBy String
- Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- orderBy StringType 
- Sorting order. Valid values:desc, asc.
- resultOutput StringFile 
- Used to save results.
- filters
GetPostgresql Readonly Groups Filter[] 
- Filter condition. The primary ID must be specified in the format of db-master-instance-id to filter results, or else null will be returned.
- id string
- orderBy string
- Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- orderBy stringType 
- Sorting order. Valid values:desc, asc.
- resultOutput stringFile 
- Used to save results.
- filters
Sequence[GetPostgresql Readonly Groups Filter] 
- Filter condition. The primary ID must be specified in the format of db-master-instance-id to filter results, or else null will be returned.
- id str
- order_by str
- Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- order_by_ strtype 
- Sorting order. Valid values:desc, asc.
- result_output_ strfile 
- Used to save results.
- filters List<Property Map>
- Filter condition. The primary ID must be specified in the format of db-master-instance-id to filter results, or else null will be returned.
- id String
- orderBy String
- Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- orderBy StringType 
- Sorting order. Valid values:desc, asc.
- resultOutput StringFile 
- Used to save results.
getPostgresqlReadonlyGroups Result
The following output properties are available:
- Id string
- ReadOnly List<GetGroup Lists Postgresql Readonly Groups Read Only Group List> 
- list of read-only groups.
- Filters
List<GetPostgresql Readonly Groups Filter> 
- OrderBy string
- OrderBy stringType 
- ResultOutput stringFile 
- Id string
- ReadOnly []GetGroup Lists Postgresql Readonly Groups Read Only Group List 
- list of read-only groups.
- Filters
[]GetPostgresql Readonly Groups Filter 
- OrderBy string
- OrderBy stringType 
- ResultOutput stringFile 
- id String
- readOnly List<GetGroup Lists Postgresql Readonly Groups Read Only Group List> 
- list of read-only groups.
- filters
List<GetPostgresql Readonly Groups Filter> 
- orderBy String
- orderBy StringType 
- resultOutput StringFile 
- id string
- readOnly GetGroup Lists Postgresql Readonly Groups Read Only Group List[] 
- list of read-only groups.
- filters
GetPostgresql Readonly Groups Filter[] 
- orderBy string
- orderBy stringType 
- resultOutput stringFile 
- id str
- read_only_ Sequence[Getgroup_ lists Postgresql Readonly Groups Read Only Group List] 
- list of read-only groups.
- filters
Sequence[GetPostgresql Readonly Groups Filter] 
- order_by str
- order_by_ strtype 
- result_output_ strfile 
- id String
- readOnly List<Property Map>Group Lists 
- list of read-only groups.
- filters List<Property Map>
- orderBy String
- orderBy StringType 
- resultOutput StringFile 
Supporting Types
GetPostgresqlReadonlyGroupsFilter    
GetPostgresqlReadonlyGroupsReadOnlyGroupList       
- DbInstance List<GetNet Infos Postgresql Readonly Groups Read Only Group List Db Instance Net Info> 
- instance network connection information.
- MasterDb stringInstance Id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- MaxReplay doubleLag 
- delay time size threshold.
- MaxReplay doubleLatency 
- delay space size threshold.
- MinDelay doubleEliminate Reserve 
- Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- NetworkAccess List<GetLists Postgresql Readonly Groups Read Only Group List Network Access List> 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- ProjectId double
- project ID.
- ReadOnly List<GetDb Instance Lists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List> 
- instance details.
- ReadOnly stringGroup Id 
- read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- ReadOnly stringGroup Name 
- read-only group nameNote: This field may return null, indicating that no valid value can be obtained.
- Rebalance double
- automatic load balancing switch.
- Region string
- region id.
- ReplayLag doubleEliminate 
- delay time switch.
- ReplayLatency doubleEliminate 
- delay size switch.
- Status string
- state.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- VpcId string
- virtual network id.
- Zone string
- region id.
- DbInstance []GetNet Infos Postgresql Readonly Groups Read Only Group List Db Instance Net Info 
- instance network connection information.
- MasterDb stringInstance Id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- MaxReplay float64Lag 
- delay time size threshold.
- MaxReplay float64Latency 
- delay space size threshold.
- MinDelay float64Eliminate Reserve 
- Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- NetworkAccess []GetLists Postgresql Readonly Groups Read Only Group List Network Access List 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- ProjectId float64
- project ID.
- ReadOnly []GetDb Instance Lists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List 
- instance details.
- ReadOnly stringGroup Id 
- read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- ReadOnly stringGroup Name 
- read-only group nameNote: This field may return null, indicating that no valid value can be obtained.
- Rebalance float64
- automatic load balancing switch.
- Region string
- region id.
- ReplayLag float64Eliminate 
- delay time switch.
- ReplayLatency float64Eliminate 
- delay size switch.
- Status string
- state.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- VpcId string
- virtual network id.
- Zone string
- region id.
- dbInstance List<GetNet Infos Postgresql Readonly Groups Read Only Group List Db Instance Net Info> 
- instance network connection information.
- masterDb StringInstance Id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- maxReplay DoubleLag 
- delay time size threshold.
- maxReplay DoubleLatency 
- delay space size threshold.
- minDelay DoubleEliminate Reserve 
- Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- networkAccess List<GetLists Postgresql Readonly Groups Read Only Group List Network Access List> 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- projectId Double
- project ID.
- readOnly List<GetDb Instance Lists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List> 
- instance details.
- readOnly StringGroup Id 
- read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- readOnly StringGroup Name 
- read-only group nameNote: This field may return null, indicating that no valid value can be obtained.
- rebalance Double
- automatic load balancing switch.
- region String
- region id.
- replayLag DoubleEliminate 
- delay time switch.
- replayLatency DoubleEliminate 
- delay size switch.
- status String
- state.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpcId String
- virtual network id.
- zone String
- region id.
- dbInstance GetNet Infos Postgresql Readonly Groups Read Only Group List Db Instance Net Info[] 
- instance network connection information.
- masterDb stringInstance Id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- maxReplay numberLag 
- delay time size threshold.
- maxReplay numberLatency 
- delay space size threshold.
- minDelay numberEliminate Reserve 
- Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- networkAccess GetLists Postgresql Readonly Groups Read Only Group List Network Access List[] 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- projectId number
- project ID.
- readOnly GetDb Instance Lists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List[] 
- instance details.
- readOnly stringGroup Id 
- read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- readOnly stringGroup Name 
- read-only group nameNote: This field may return null, indicating that no valid value can be obtained.
- rebalance number
- automatic load balancing switch.
- region string
- region id.
- replayLag numberEliminate 
- delay time switch.
- replayLatency numberEliminate 
- delay size switch.
- status string
- state.
- subnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpcId string
- virtual network id.
- zone string
- region id.
- db_instance_ Sequence[Getnet_ infos Postgresql Readonly Groups Read Only Group List Db Instance Net Info] 
- instance network connection information.
- master_db_ strinstance_ id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- max_replay_ floatlag 
- delay time size threshold.
- max_replay_ floatlatency 
- delay space size threshold.
- min_delay_ floateliminate_ reserve 
- Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- network_access_ Sequence[Getlists Postgresql Readonly Groups Read Only Group List Network Access List] 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- project_id float
- project ID.
- read_only_ Sequence[Getdb_ instance_ lists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List] 
- instance details.
- read_only_ strgroup_ id 
- read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- read_only_ strgroup_ name 
- read-only group nameNote: This field may return null, indicating that no valid value can be obtained.
- rebalance float
- automatic load balancing switch.
- region str
- region id.
- replay_lag_ floateliminate 
- delay time switch.
- replay_latency_ floateliminate 
- delay size switch.
- status str
- state.
- subnet_id str
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc_id str
- virtual network id.
- zone str
- region id.
- dbInstance List<Property Map>Net Infos 
- instance network connection information.
- masterDb StringInstance Id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- maxReplay NumberLag 
- delay time size threshold.
- maxReplay NumberLatency 
- delay space size threshold.
- minDelay NumberEliminate Reserve 
- Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- networkAccess List<Property Map>Lists 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- projectId Number
- project ID.
- readOnly List<Property Map>Db Instance Lists 
- instance details.
- readOnly StringGroup Id 
- read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- readOnly StringGroup Name 
- read-only group nameNote: This field may return null, indicating that no valid value can be obtained.
- rebalance Number
- automatic load balancing switch.
- region String
- region id.
- replayLag NumberEliminate 
- delay time switch.
- replayLatency NumberEliminate 
- delay size switch.
- status String
- state.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpcId String
- virtual network id.
- zone String
- region id.
GetPostgresqlReadonlyGroupsReadOnlyGroupListDbInstanceNetInfo           
- Address string
- DNS domain name.
- Ip string
- IP address.
- NetType string
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- Port double
- connection port address.
- ProtocolType string
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- Status string
- state.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- VpcId string
- virtual network id.
- Address string
- DNS domain name.
- Ip string
- IP address.
- NetType string
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- Port float64
- connection port address.
- ProtocolType string
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- Status string
- state.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- VpcId string
- virtual network id.
- address String
- DNS domain name.
- ip String
- IP address.
- netType String
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- port Double
- connection port address.
- protocolType String
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- status String
- state.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpcId String
- virtual network id.
- address string
- DNS domain name.
- ip string
- IP address.
- netType string
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- port number
- connection port address.
- protocolType string
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- status string
- state.
- subnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpcId string
- virtual network id.
- address str
- DNS domain name.
- ip str
- IP address.
- net_type str
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- port float
- connection port address.
- protocol_type str
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- status str
- state.
- subnet_id str
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc_id str
- virtual network id.
- address String
- DNS domain name.
- ip String
- IP address.
- netType String
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- port Number
- connection port address.
- protocolType String
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- status String
- state.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpcId String
- virtual network id.
GetPostgresqlReadonlyGroupsReadOnlyGroupListNetworkAccessList          
- ResourceId string
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- ResourceType double
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Vip string
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- Vip6 string
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- VpcId string
- virtual network id.
- VpcStatus double
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- Vport double
- access portNote: This field may return null, indicating that no valid value can be obtained.
- ResourceId string
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- ResourceType float64
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Vip string
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- Vip6 string
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- VpcId string
- virtual network id.
- VpcStatus float64
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- Vport float64
- access portNote: This field may return null, indicating that no valid value can be obtained.
- resourceId String
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resourceType Double
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vip String
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- vip6 String
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- vpcId String
- virtual network id.
- vpcStatus Double
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- vport Double
- access portNote: This field may return null, indicating that no valid value can be obtained.
- resourceId string
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resourceType number
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vip string
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- vip6 string
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- vpcId string
- virtual network id.
- vpcStatus number
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- vport number
- access portNote: This field may return null, indicating that no valid value can be obtained.
- resource_id str
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resource_type float
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnet_id str
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vip str
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- vip6 str
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- vpc_id str
- virtual network id.
- vpc_status float
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- vport float
- access portNote: This field may return null, indicating that no valid value can be obtained.
- resourceId String
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resourceType Number
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vip String
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- vip6 String
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- vpcId String
- virtual network id.
- vpcStatus Number
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- vport Number
- access portNote: This field may return null, indicating that no valid value can be obtained.
GetPostgresqlReadonlyGroupsReadOnlyGroupListReadOnlyDbInstanceList            
- AppId double
- user's AppId.
- AutoRenew double
- auto-renew, 1: auto-renew, 0: no auto-renew.
- CreateTime string
- instance creation time.
- DbCharset string
- instance DB character set.
- DbEngine string
- Database engine that supports:1. postgresql (cloud database PostgreSQL);2. mssql_compatible (MSSQL compatible - cloud database PostgreSQL);Note: This field may return null, indicating that no valid value can be obtained.
- DbEngine stringConfig 
- Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- DbInstance stringClass 
- sales specification ID.
- DbInstance doubleCpu 
- the number of CPUs allocated by the instance.
- DbInstance stringId 
- instance ID.
- DbInstance doubleMemory 
- the memory size allocated by the instance, unit: GB.
- DbInstance stringName 
- instance name.
- DbInstance List<GetNet Infos Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Instance Net Info> 
- instance network connection information.
- DbInstance stringStatus 
- Instance status, respectively: applying (applying), init (to be initialized), initing (initializing), running (running), limited run (limited run), isolated (isolated), recycling (recycling ), recycled (recycled), job running (task execution), offline (offline), migrating (migration), expanding (expanding), waitSwitch (waiting for switching), switching (switching), readonly (read-only ), restarting (restarting), network changing (network changing), upgrading (kernel version upgrade).
- DbInstance doubleStorage 
- the size of the storage space allocated by the instance, unit: GB.
- DbInstance stringType 
- instance type, the types are: 1. primary (primary instance); 2. readonly (read-only instance); 3. guard (disaster recovery instance); 4. temp (temporary instance).
- DbInstance stringVersion 
- instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- DbKernel stringVersion 
- Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- DbMajor stringVersion 
- PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- DbNode List<GetSets Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Node Set> 
- Instance node informationNote: This field may return null, indicating that no valid value can be obtained.
- DbVersion string
- PostgreSQL version.
- ExpireTime string
- instance expiration time.
- IsSupport doubleTDE 
- Whether the instance supports TDE data encryption 0: not supported, 1: supportedNote: This field may return null, indicating that no valid value can be obtained.
- IsolatedTime string
- instance isolation time.
- MasterDb stringInstance Id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- NetworkAccess List<GetLists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Network Access List> 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- OfflineTime string
- offline timeNote: This field may return null, indicating that no valid value can be obtained.
- PayType string
- billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- ProjectId double
- project ID.
- ReadOnly doubleInstance Num 
- Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- Region string
- region id.
- StatusIn stringReadonly Group 
- Status of the read-only instance in the read-only groupNote: This field may return null, indicating that no valid value can be obtained.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- SupportIpv6 double
- Whether the instance supports Ipv6, 1: support, 0: not support.
- TagLists List<GetPostgresql Readonly Groups Read Only Group List Read Only Db Instance List Tag List> 
- Label information bound to the instanceNote: This field may return null, indicating that no valid value can be obtained.
- Type string
- machine type.
- Uid double
- Uid of the instance.
- UpdateTime string
- The time when the instance performed the last update.
- VpcId string
- virtual network id.
- Zone string
- region id.
- AppId float64
- user's AppId.
- AutoRenew float64
- auto-renew, 1: auto-renew, 0: no auto-renew.
- CreateTime string
- instance creation time.
- DbCharset string
- instance DB character set.
- DbEngine string
- Database engine that supports:1. postgresql (cloud database PostgreSQL);2. mssql_compatible (MSSQL compatible - cloud database PostgreSQL);Note: This field may return null, indicating that no valid value can be obtained.
- DbEngine stringConfig 
- Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- DbInstance stringClass 
- sales specification ID.
- DbInstance float64Cpu 
- the number of CPUs allocated by the instance.
- DbInstance stringId 
- instance ID.
- DbInstance float64Memory 
- the memory size allocated by the instance, unit: GB.
- DbInstance stringName 
- instance name.
- DbInstance []GetNet Infos Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Instance Net Info 
- instance network connection information.
- DbInstance stringStatus 
- Instance status, respectively: applying (applying), init (to be initialized), initing (initializing), running (running), limited run (limited run), isolated (isolated), recycling (recycling ), recycled (recycled), job running (task execution), offline (offline), migrating (migration), expanding (expanding), waitSwitch (waiting for switching), switching (switching), readonly (read-only ), restarting (restarting), network changing (network changing), upgrading (kernel version upgrade).
- DbInstance float64Storage 
- the size of the storage space allocated by the instance, unit: GB.
- DbInstance stringType 
- instance type, the types are: 1. primary (primary instance); 2. readonly (read-only instance); 3. guard (disaster recovery instance); 4. temp (temporary instance).
- DbInstance stringVersion 
- instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- DbKernel stringVersion 
- Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- DbMajor stringVersion 
- PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- DbNode []GetSets Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Node Set 
- Instance node informationNote: This field may return null, indicating that no valid value can be obtained.
- DbVersion string
- PostgreSQL version.
- ExpireTime string
- instance expiration time.
- IsSupport float64TDE 
- Whether the instance supports TDE data encryption 0: not supported, 1: supportedNote: This field may return null, indicating that no valid value can be obtained.
- IsolatedTime string
- instance isolation time.
- MasterDb stringInstance Id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- NetworkAccess []GetLists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Network Access List 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- OfflineTime string
- offline timeNote: This field may return null, indicating that no valid value can be obtained.
- PayType string
- billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- ProjectId float64
- project ID.
- ReadOnly float64Instance Num 
- Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- Region string
- region id.
- StatusIn stringReadonly Group 
- Status of the read-only instance in the read-only groupNote: This field may return null, indicating that no valid value can be obtained.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- SupportIpv6 float64
- Whether the instance supports Ipv6, 1: support, 0: not support.
- TagLists []GetPostgresql Readonly Groups Read Only Group List Read Only Db Instance List Tag List 
- Label information bound to the instanceNote: This field may return null, indicating that no valid value can be obtained.
- Type string
- machine type.
- Uid float64
- Uid of the instance.
- UpdateTime string
- The time when the instance performed the last update.
- VpcId string
- virtual network id.
- Zone string
- region id.
- appId Double
- user's AppId.
- autoRenew Double
- auto-renew, 1: auto-renew, 0: no auto-renew.
- createTime String
- instance creation time.
- dbCharset String
- instance DB character set.
- dbEngine String
- Database engine that supports:1. postgresql (cloud database PostgreSQL);2. mssql_compatible (MSSQL compatible - cloud database PostgreSQL);Note: This field may return null, indicating that no valid value can be obtained.
- dbEngine StringConfig 
- Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- dbInstance StringClass 
- sales specification ID.
- dbInstance DoubleCpu 
- the number of CPUs allocated by the instance.
- dbInstance StringId 
- instance ID.
- dbInstance DoubleMemory 
- the memory size allocated by the instance, unit: GB.
- dbInstance StringName 
- instance name.
- dbInstance List<GetNet Infos Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Instance Net Info> 
- instance network connection information.
- dbInstance StringStatus 
- Instance status, respectively: applying (applying), init (to be initialized), initing (initializing), running (running), limited run (limited run), isolated (isolated), recycling (recycling ), recycled (recycled), job running (task execution), offline (offline), migrating (migration), expanding (expanding), waitSwitch (waiting for switching), switching (switching), readonly (read-only ), restarting (restarting), network changing (network changing), upgrading (kernel version upgrade).
- dbInstance DoubleStorage 
- the size of the storage space allocated by the instance, unit: GB.
- dbInstance StringType 
- instance type, the types are: 1. primary (primary instance); 2. readonly (read-only instance); 3. guard (disaster recovery instance); 4. temp (temporary instance).
- dbInstance StringVersion 
- instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- dbKernel StringVersion 
- Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- dbMajor StringVersion 
- PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- dbNode List<GetSets Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Node Set> 
- Instance node informationNote: This field may return null, indicating that no valid value can be obtained.
- dbVersion String
- PostgreSQL version.
- expireTime String
- instance expiration time.
- isSupport DoubleTDE 
- Whether the instance supports TDE data encryption 0: not supported, 1: supportedNote: This field may return null, indicating that no valid value can be obtained.
- isolatedTime String
- instance isolation time.
- masterDb StringInstance Id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- networkAccess List<GetLists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Network Access List> 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- offlineTime String
- offline timeNote: This field may return null, indicating that no valid value can be obtained.
- payType String
- billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- projectId Double
- project ID.
- readOnly DoubleInstance Num 
- Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- region String
- region id.
- statusIn StringReadonly Group 
- Status of the read-only instance in the read-only groupNote: This field may return null, indicating that no valid value can be obtained.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- supportIpv6 Double
- Whether the instance supports Ipv6, 1: support, 0: not support.
- tagLists List<GetPostgresql Readonly Groups Read Only Group List Read Only Db Instance List Tag List> 
- Label information bound to the instanceNote: This field may return null, indicating that no valid value can be obtained.
- type String
- machine type.
- uid Double
- Uid of the instance.
- updateTime String
- The time when the instance performed the last update.
- vpcId String
- virtual network id.
- zone String
- region id.
- appId number
- user's AppId.
- autoRenew number
- auto-renew, 1: auto-renew, 0: no auto-renew.
- createTime string
- instance creation time.
- dbCharset string
- instance DB character set.
- dbEngine string
- Database engine that supports:1. postgresql (cloud database PostgreSQL);2. mssql_compatible (MSSQL compatible - cloud database PostgreSQL);Note: This field may return null, indicating that no valid value can be obtained.
- dbEngine stringConfig 
- Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- dbInstance stringClass 
- sales specification ID.
- dbInstance numberCpu 
- the number of CPUs allocated by the instance.
- dbInstance stringId 
- instance ID.
- dbInstance numberMemory 
- the memory size allocated by the instance, unit: GB.
- dbInstance stringName 
- instance name.
- dbInstance GetNet Infos Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Instance Net Info[] 
- instance network connection information.
- dbInstance stringStatus 
- Instance status, respectively: applying (applying), init (to be initialized), initing (initializing), running (running), limited run (limited run), isolated (isolated), recycling (recycling ), recycled (recycled), job running (task execution), offline (offline), migrating (migration), expanding (expanding), waitSwitch (waiting for switching), switching (switching), readonly (read-only ), restarting (restarting), network changing (network changing), upgrading (kernel version upgrade).
- dbInstance numberStorage 
- the size of the storage space allocated by the instance, unit: GB.
- dbInstance stringType 
- instance type, the types are: 1. primary (primary instance); 2. readonly (read-only instance); 3. guard (disaster recovery instance); 4. temp (temporary instance).
- dbInstance stringVersion 
- instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- dbKernel stringVersion 
- Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- dbMajor stringVersion 
- PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- dbNode GetSets Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Node Set[] 
- Instance node informationNote: This field may return null, indicating that no valid value can be obtained.
- dbVersion string
- PostgreSQL version.
- expireTime string
- instance expiration time.
- isSupport numberTDE 
- Whether the instance supports TDE data encryption 0: not supported, 1: supportedNote: This field may return null, indicating that no valid value can be obtained.
- isolatedTime string
- instance isolation time.
- masterDb stringInstance Id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- networkAccess GetLists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Network Access List[] 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- offlineTime string
- offline timeNote: This field may return null, indicating that no valid value can be obtained.
- payType string
- billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- projectId number
- project ID.
- readOnly numberInstance Num 
- Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- region string
- region id.
- statusIn stringReadonly Group 
- Status of the read-only instance in the read-only groupNote: This field may return null, indicating that no valid value can be obtained.
- subnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- supportIpv6 number
- Whether the instance supports Ipv6, 1: support, 0: not support.
- tagLists GetPostgresql Readonly Groups Read Only Group List Read Only Db Instance List Tag List[] 
- Label information bound to the instanceNote: This field may return null, indicating that no valid value can be obtained.
- type string
- machine type.
- uid number
- Uid of the instance.
- updateTime string
- The time when the instance performed the last update.
- vpcId string
- virtual network id.
- zone string
- region id.
- app_id float
- user's AppId.
- auto_renew float
- auto-renew, 1: auto-renew, 0: no auto-renew.
- create_time str
- instance creation time.
- db_charset str
- instance DB character set.
- db_engine str
- Database engine that supports:1. postgresql (cloud database PostgreSQL);2. mssql_compatible (MSSQL compatible - cloud database PostgreSQL);Note: This field may return null, indicating that no valid value can be obtained.
- db_engine_ strconfig 
- Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- db_instance_ strclass 
- sales specification ID.
- db_instance_ floatcpu 
- the number of CPUs allocated by the instance.
- db_instance_ strid 
- instance ID.
- db_instance_ floatmemory 
- the memory size allocated by the instance, unit: GB.
- db_instance_ strname 
- instance name.
- db_instance_ Sequence[Getnet_ infos Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Instance Net Info] 
- instance network connection information.
- db_instance_ strstatus 
- Instance status, respectively: applying (applying), init (to be initialized), initing (initializing), running (running), limited run (limited run), isolated (isolated), recycling (recycling ), recycled (recycled), job running (task execution), offline (offline), migrating (migration), expanding (expanding), waitSwitch (waiting for switching), switching (switching), readonly (read-only ), restarting (restarting), network changing (network changing), upgrading (kernel version upgrade).
- db_instance_ floatstorage 
- the size of the storage space allocated by the instance, unit: GB.
- db_instance_ strtype 
- instance type, the types are: 1. primary (primary instance); 2. readonly (read-only instance); 3. guard (disaster recovery instance); 4. temp (temporary instance).
- db_instance_ strversion 
- instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- db_kernel_ strversion 
- Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- db_major_ strversion 
- PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- db_node_ Sequence[Getsets Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Node Set] 
- Instance node informationNote: This field may return null, indicating that no valid value can be obtained.
- db_version str
- PostgreSQL version.
- expire_time str
- instance expiration time.
- is_support_ floattde 
- Whether the instance supports TDE data encryption 0: not supported, 1: supportedNote: This field may return null, indicating that no valid value can be obtained.
- isolated_time str
- instance isolation time.
- master_db_ strinstance_ id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- network_access_ Sequence[Getlists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Network Access List] 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- offline_time str
- offline timeNote: This field may return null, indicating that no valid value can be obtained.
- pay_type str
- billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- project_id float
- project ID.
- read_only_ floatinstance_ num 
- Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- region str
- region id.
- status_in_ strreadonly_ group 
- Status of the read-only instance in the read-only groupNote: This field may return null, indicating that no valid value can be obtained.
- subnet_id str
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- support_ipv6 float
- Whether the instance supports Ipv6, 1: support, 0: not support.
- tag_lists Sequence[GetPostgresql Readonly Groups Read Only Group List Read Only Db Instance List Tag List] 
- Label information bound to the instanceNote: This field may return null, indicating that no valid value can be obtained.
- type str
- machine type.
- uid float
- Uid of the instance.
- update_time str
- The time when the instance performed the last update.
- vpc_id str
- virtual network id.
- zone str
- region id.
- appId Number
- user's AppId.
- autoRenew Number
- auto-renew, 1: auto-renew, 0: no auto-renew.
- createTime String
- instance creation time.
- dbCharset String
- instance DB character set.
- dbEngine String
- Database engine that supports:1. postgresql (cloud database PostgreSQL);2. mssql_compatible (MSSQL compatible - cloud database PostgreSQL);Note: This field may return null, indicating that no valid value can be obtained.
- dbEngine StringConfig 
- Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- dbInstance StringClass 
- sales specification ID.
- dbInstance NumberCpu 
- the number of CPUs allocated by the instance.
- dbInstance StringId 
- instance ID.
- dbInstance NumberMemory 
- the memory size allocated by the instance, unit: GB.
- dbInstance StringName 
- instance name.
- dbInstance List<Property Map>Net Infos 
- instance network connection information.
- dbInstance StringStatus 
- Instance status, respectively: applying (applying), init (to be initialized), initing (initializing), running (running), limited run (limited run), isolated (isolated), recycling (recycling ), recycled (recycled), job running (task execution), offline (offline), migrating (migration), expanding (expanding), waitSwitch (waiting for switching), switching (switching), readonly (read-only ), restarting (restarting), network changing (network changing), upgrading (kernel version upgrade).
- dbInstance NumberStorage 
- the size of the storage space allocated by the instance, unit: GB.
- dbInstance StringType 
- instance type, the types are: 1. primary (primary instance); 2. readonly (read-only instance); 3. guard (disaster recovery instance); 4. temp (temporary instance).
- dbInstance StringVersion 
- instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- dbKernel StringVersion 
- Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- dbMajor StringVersion 
- PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- dbNode List<Property Map>Sets 
- Instance node informationNote: This field may return null, indicating that no valid value can be obtained.
- dbVersion String
- PostgreSQL version.
- expireTime String
- instance expiration time.
- isSupport NumberTDE 
- Whether the instance supports TDE data encryption 0: not supported, 1: supportedNote: This field may return null, indicating that no valid value can be obtained.
- isolatedTime String
- instance isolation time.
- masterDb StringInstance Id 
- Master instance information, only returned when the instance is read-onlyNote: This field may return null, indicating that no valid value can be obtained.
- networkAccess List<Property Map>Lists 
- Instance network information list (this field is obsolete)Note: This field may return null, indicating that no valid value can be obtained.
- offlineTime String
- offline timeNote: This field may return null, indicating that no valid value can be obtained.
- payType String
- billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- projectId Number
- project ID.
- readOnly NumberInstance Num 
- Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- region String
- region id.
- statusIn StringReadonly Group 
- Status of the read-only instance in the read-only groupNote: This field may return null, indicating that no valid value can be obtained.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- supportIpv6 Number
- Whether the instance supports Ipv6, 1: support, 0: not support.
- tagLists List<Property Map>
- Label information bound to the instanceNote: This field may return null, indicating that no valid value can be obtained.
- type String
- machine type.
- uid Number
- Uid of the instance.
- updateTime String
- The time when the instance performed the last update.
- vpcId String
- virtual network id.
- zone String
- region id.
GetPostgresqlReadonlyGroupsReadOnlyGroupListReadOnlyDbInstanceListDbInstanceNetInfo                
- Address string
- DNS domain name.
- Ip string
- IP address.
- NetType string
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- Port double
- connection port address.
- ProtocolType string
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- Status string
- state.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- VpcId string
- virtual network id.
- Address string
- DNS domain name.
- Ip string
- IP address.
- NetType string
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- Port float64
- connection port address.
- ProtocolType string
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- Status string
- state.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- VpcId string
- virtual network id.
- address String
- DNS domain name.
- ip String
- IP address.
- netType String
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- port Double
- connection port address.
- protocolType String
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- status String
- state.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpcId String
- virtual network id.
- address string
- DNS domain name.
- ip string
- IP address.
- netType string
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- port number
- connection port address.
- protocolType string
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- status string
- state.
- subnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpcId string
- virtual network id.
- address str
- DNS domain name.
- ip str
- IP address.
- net_type str
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- port float
- connection port address.
- protocol_type str
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- status str
- state.
- subnet_id str
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc_id str
- virtual network id.
- address String
- DNS domain name.
- ip String
- IP address.
- netType String
- network type, 1. inner (intranet address of the basic network); 2. private (intranet address of the private network); 3. public (extranet address of the basic network or private network);.
- port Number
- connection port address.
- protocolType String
- The protocol type for connecting to the database, currently supported: postgresql, mssql (MSSQL compatible syntax)Note: This field may return null, indicating that no valid value can be obtained.
- status String
- state.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpcId String
- virtual network id.
GetPostgresqlReadonlyGroupsReadOnlyGroupListReadOnlyDbInstanceListDbNodeSet               
GetPostgresqlReadonlyGroupsReadOnlyGroupListReadOnlyDbInstanceListNetworkAccessList               
- ResourceId string
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- ResourceType double
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Vip string
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- Vip6 string
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- VpcId string
- virtual network id.
- VpcStatus double
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- Vport double
- access portNote: This field may return null, indicating that no valid value can be obtained.
- ResourceId string
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- ResourceType float64
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- SubnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Vip string
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- Vip6 string
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- VpcId string
- virtual network id.
- VpcStatus float64
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- Vport float64
- access portNote: This field may return null, indicating that no valid value can be obtained.
- resourceId String
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resourceType Double
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vip String
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- vip6 String
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- vpcId String
- virtual network id.
- vpcStatus Double
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- vport Double
- access portNote: This field may return null, indicating that no valid value can be obtained.
- resourceId string
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resourceType number
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnetId string
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vip string
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- vip6 string
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- vpcId string
- virtual network id.
- vpcStatus number
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- vport number
- access portNote: This field may return null, indicating that no valid value can be obtained.
- resource_id str
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resource_type float
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnet_id str
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vip str
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- vip6 str
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- vpc_id str
- virtual network id.
- vpc_status float
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- vport float
- access portNote: This field may return null, indicating that no valid value can be obtained.
- resourceId String
- Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resourceType Number
- Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnetId String
- subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vip String
- IPV4 addressNote: This field may return null, indicating that no valid value can be obtained.
- vip6 String
- IPV6 addressNote: This field may return null, indicating that no valid value can be obtained.
- vpcId String
- virtual network id.
- vpcStatus Number
- Network status, 1-applying, 2-using, 3-deleting, 4-deletedNote: This field may return null, indicating that no valid value can be obtained.
- vport Number
- access portNote: This field may return null, indicating that no valid value can be obtained.
GetPostgresqlReadonlyGroupsReadOnlyGroupListReadOnlyDbInstanceListTagList              
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the tencentcloudTerraform Provider.
tencentcloud 1.81.191 published on Friday, May 9, 2025 by tencentcloudstack