tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getPostgresqlReadonlyGroups
Explore with Pulumi AI
tencentcloud 1.81.189 published on Wednesday, Apr 30, 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 dictionary
The following arguments are supported:
- Filters
List<Get
Postgresql 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
- Order
By string - Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- Order
By stringType - Sorting order. Valid values:desc, asc.
- Result
Output stringFile - Used to save results.
- Filters
[]Get
Postgresql 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
- Order
By string - Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- Order
By stringType - Sorting order. Valid values:desc, asc.
- Result
Output stringFile - Used to save results.
- filters
List<Get
Postgresql 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
- order
By String - Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- order
By StringType - Sorting order. Valid values:desc, asc.
- result
Output StringFile - Used to save results.
- filters
Get
Postgresql 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
- order
By string - Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- order
By stringType - Sorting order. Valid values:desc, asc.
- result
Output stringFile - Used to save results.
- filters
Sequence[Get
Postgresql 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
- order
By String - Sorting criterion. Valid values:ROGroupId, CreateTime, Name.
- order
By StringType - Sorting order. Valid values:desc, asc.
- result
Output StringFile - Used to save results.
getPostgresqlReadonlyGroups Result
The following output properties are available:
- Id string
- Read
Only List<GetGroup Lists Postgresql Readonly Groups Read Only Group List> - list of read-only groups.
- Filters
List<Get
Postgresql Readonly Groups Filter> - Order
By string - Order
By stringType - Result
Output stringFile
- Id string
- Read
Only []GetGroup Lists Postgresql Readonly Groups Read Only Group List - list of read-only groups.
- Filters
[]Get
Postgresql Readonly Groups Filter - Order
By string - Order
By stringType - Result
Output stringFile
- id String
- read
Only List<GetGroup Lists Postgresql Readonly Groups Read Only Group List> - list of read-only groups.
- filters
List<Get
Postgresql Readonly Groups Filter> - order
By String - order
By StringType - result
Output StringFile
- id string
- read
Only GetGroup Lists Postgresql Readonly Groups Read Only Group List[] - list of read-only groups.
- filters
Get
Postgresql Readonly Groups Filter[] - order
By string - order
By stringType - result
Output stringFile
- id str
- read_
only_ Sequence[Getgroup_ lists Postgresql Readonly Groups Read Only Group List] - list of read-only groups.
- filters
Sequence[Get
Postgresql Readonly Groups Filter] - order_
by str - order_
by_ strtype - result_
output_ strfile
- id String
- read
Only List<Property Map>Group Lists - list of read-only groups.
- filters List<Property Map>
- order
By String - order
By StringType - result
Output StringFile
Supporting Types
GetPostgresqlReadonlyGroupsFilter
GetPostgresqlReadonlyGroupsReadOnlyGroupList
- Db
Instance List<GetNet Infos Postgresql Readonly Groups Read Only Group List Db Instance Net Info> - instance network connection information.
- Master
Db 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.
- Max
Replay doubleLag - delay time size threshold.
- Max
Replay doubleLatency - delay space size threshold.
- Min
Delay doubleEliminate Reserve - Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- Network
Access 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.
- Project
Id double - project ID.
- Read
Only List<GetDb Instance Lists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List> - instance details.
- Read
Only stringGroup Id - read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- Read
Only 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.
- Replay
Lag doubleEliminate - delay time switch.
- Replay
Latency doubleEliminate - delay size switch.
- Status string
- state.
- Subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Vpc
Id string - virtual network id.
- Zone string
- region id.
- Db
Instance []GetNet Infos Postgresql Readonly Groups Read Only Group List Db Instance Net Info - instance network connection information.
- Master
Db 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.
- Max
Replay float64Lag - delay time size threshold.
- Max
Replay float64Latency - delay space size threshold.
- Min
Delay float64Eliminate Reserve - Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- Network
Access []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 float64 - project ID.
- Read
Only []GetDb Instance Lists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List - instance details.
- Read
Only stringGroup Id - read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- Read
Only 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.
- Replay
Lag float64Eliminate - delay time switch.
- Replay
Latency float64Eliminate - delay size switch.
- Status string
- state.
- Subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Vpc
Id string - virtual network id.
- Zone string
- region id.
- db
Instance List<GetNet Infos Postgresql Readonly Groups Read Only Group List Db Instance Net Info> - instance network connection information.
- master
Db 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.
- max
Replay DoubleLag - delay time size threshold.
- max
Replay DoubleLatency - delay space size threshold.
- min
Delay DoubleEliminate Reserve - Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- network
Access 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.
- project
Id Double - project ID.
- read
Only List<GetDb Instance Lists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List> - instance details.
- read
Only StringGroup Id - read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- read
Only 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.
- replay
Lag DoubleEliminate - delay time switch.
- replay
Latency DoubleEliminate - delay size switch.
- status String
- state.
- subnet
Id String - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc
Id String - virtual network id.
- zone String
- region id.
- db
Instance GetNet Infos Postgresql Readonly Groups Read Only Group List Db Instance Net Info[] - instance network connection information.
- master
Db 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.
- max
Replay numberLag - delay time size threshold.
- max
Replay numberLatency - delay space size threshold.
- min
Delay numberEliminate Reserve - Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- network
Access 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 number - project ID.
- read
Only GetDb Instance Lists Postgresql Readonly Groups Read Only Group List Read Only Db Instance List[] - instance details.
- read
Only stringGroup Id - read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- read
Only 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.
- replay
Lag numberEliminate - delay time switch.
- replay
Latency numberEliminate - delay size switch.
- status string
- state.
- subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc
Id 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.
- db
Instance List<Property Map>Net Infos - instance network connection information.
- master
Db 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.
- max
Replay NumberLag - delay time size threshold.
- max
Replay NumberLatency - delay space size threshold.
- min
Delay NumberEliminate Reserve - Minimum Number of Reserved InstancesNote: This field may return null, indicating that no valid value can be obtained.
- network
Access 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.
- project
Id Number - project ID.
- read
Only List<Property Map>Db Instance Lists - instance details.
- read
Only StringGroup Id - read-only group idNote: This field may return null, indicating that no valid value can be obtained.
- read
Only 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.
- replay
Lag NumberEliminate - delay time switch.
- replay
Latency NumberEliminate - delay size switch.
- status String
- state.
- subnet
Id String - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc
Id String - virtual network id.
- zone String
- region id.
GetPostgresqlReadonlyGroupsReadOnlyGroupListDbInstanceNetInfo
- Address string
- DNS domain name.
- Ip string
- IP address.
- Net
Type 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.
- Protocol
Type 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.
- Subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Vpc
Id string - virtual network id.
- Address string
- DNS domain name.
- Ip string
- IP address.
- Net
Type 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.
- Protocol
Type 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.
- Subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Vpc
Id string - virtual network id.
- address String
- DNS domain name.
- ip String
- IP address.
- net
Type 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.
- protocol
Type 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.
- subnet
Id String - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc
Id String - virtual network id.
- address string
- DNS domain name.
- ip string
- IP address.
- net
Type 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.
- protocol
Type 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.
- subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc
Id 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.
- net
Type 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.
- protocol
Type 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.
- subnet
Id String - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc
Id String - virtual network id.
GetPostgresqlReadonlyGroupsReadOnlyGroupListNetworkAccessList
- Resource
Id string - Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- Resource
Type double - Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- Subnet
Id 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.
- Vpc
Id string - virtual network id.
- Vpc
Status 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.
- Resource
Id string - Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- Resource
Type float64 - Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- Subnet
Id 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.
- Vpc
Id string - virtual network id.
- Vpc
Status 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.
- resource
Id String - Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resource
Type Double - Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnet
Id 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.
- vpc
Id String - virtual network id.
- vpc
Status 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.
- resource
Id string - Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resource
Type number - Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnet
Id 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.
- vpc
Id string - virtual network id.
- vpc
Status 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.
- resource
Id String - Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resource
Type Number - Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnet
Id 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.
- vpc
Id String - virtual network id.
- vpc
Status 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
- App
Id double - user's AppId.
- Auto
Renew double - auto-renew, 1: auto-renew, 0: no auto-renew.
- Create
Time string - instance creation time.
- Db
Charset string - instance DB character set.
- Db
Engine 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.
- Db
Engine stringConfig - Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- Db
Instance stringClass - sales specification ID.
- Db
Instance doubleCpu - the number of CPUs allocated by the instance.
- Db
Instance stringId - instance ID.
- Db
Instance doubleMemory - the memory size allocated by the instance, unit: GB.
- Db
Instance stringName - instance name.
- Db
Instance List<GetNet Infos Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Instance Net Info> - instance network connection information.
- Db
Instance 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).
- Db
Instance doubleStorage - the size of the storage space allocated by the instance, unit: GB.
- Db
Instance stringType - 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 stringVersion - instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- Db
Kernel stringVersion - Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- Db
Major stringVersion - PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- Db
Node 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.
- Db
Version string - PostgreSQL version.
- Expire
Time string - instance expiration time.
- Is
Support 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.
- Isolated
Time string - instance isolation time.
- Master
Db 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.
- Network
Access 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.
- Offline
Time string - offline timeNote: This field may return null, indicating that no valid value can be obtained.
- Pay
Type string - billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- Project
Id double - project ID.
- Read
Only doubleInstance Num - Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- Region string
- region id.
- Status
In 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.
- Subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Support
Ipv6 double - Whether the instance supports Ipv6, 1: support, 0: not support.
- Tag
Lists 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.
- Update
Time string - The time when the instance performed the last update.
- Vpc
Id string - virtual network id.
- Zone string
- region id.
- App
Id float64 - user's AppId.
- Auto
Renew float64 - auto-renew, 1: auto-renew, 0: no auto-renew.
- Create
Time string - instance creation time.
- Db
Charset string - instance DB character set.
- Db
Engine 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.
- Db
Engine stringConfig - Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- Db
Instance stringClass - sales specification ID.
- Db
Instance float64Cpu - the number of CPUs allocated by the instance.
- Db
Instance stringId - instance ID.
- Db
Instance float64Memory - the memory size allocated by the instance, unit: GB.
- Db
Instance stringName - instance name.
- Db
Instance []GetNet Infos Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Instance Net Info - instance network connection information.
- Db
Instance 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).
- Db
Instance float64Storage - the size of the storage space allocated by the instance, unit: GB.
- Db
Instance stringType - 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 stringVersion - instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- Db
Kernel stringVersion - Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- Db
Major stringVersion - PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- Db
Node []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 string - PostgreSQL version.
- Expire
Time string - instance expiration time.
- Is
Support 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.
- Isolated
Time string - instance isolation time.
- Master
Db 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.
- Network
Access []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 string - offline timeNote: This field may return null, indicating that no valid value can be obtained.
- Pay
Type string - billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- Project
Id float64 - project ID.
- Read
Only float64Instance Num - Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- Region string
- region id.
- Status
In 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.
- Subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Support
Ipv6 float64 - Whether the instance supports Ipv6, 1: support, 0: not support.
- Tag
Lists []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.
- Update
Time string - The time when the instance performed the last update.
- Vpc
Id string - virtual network id.
- Zone string
- region id.
- app
Id Double - user's AppId.
- auto
Renew Double - auto-renew, 1: auto-renew, 0: no auto-renew.
- create
Time String - instance creation time.
- db
Charset String - instance DB character set.
- db
Engine 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.
- db
Engine StringConfig - Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- db
Instance StringClass - sales specification ID.
- db
Instance DoubleCpu - the number of CPUs allocated by the instance.
- db
Instance StringId - instance ID.
- db
Instance DoubleMemory - the memory size allocated by the instance, unit: GB.
- db
Instance StringName - instance name.
- db
Instance List<GetNet Infos Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Instance Net Info> - instance network connection information.
- db
Instance 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).
- db
Instance DoubleStorage - the size of the storage space allocated by the instance, unit: GB.
- db
Instance StringType - 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 StringVersion - instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- db
Kernel StringVersion - Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- db
Major StringVersion - PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- db
Node 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.
- db
Version String - PostgreSQL version.
- expire
Time String - instance expiration time.
- is
Support 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.
- isolated
Time String - instance isolation time.
- master
Db 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.
- network
Access 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.
- offline
Time String - offline timeNote: This field may return null, indicating that no valid value can be obtained.
- pay
Type String - billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- project
Id Double - project ID.
- read
Only DoubleInstance Num - Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- region String
- region id.
- status
In 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.
- subnet
Id String - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- support
Ipv6 Double - Whether the instance supports Ipv6, 1: support, 0: not support.
- tag
Lists 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.
- update
Time String - The time when the instance performed the last update.
- vpc
Id String - virtual network id.
- zone String
- region id.
- app
Id number - user's AppId.
- auto
Renew number - auto-renew, 1: auto-renew, 0: no auto-renew.
- create
Time string - instance creation time.
- db
Charset string - instance DB character set.
- db
Engine 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.
- db
Engine stringConfig - Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- db
Instance stringClass - sales specification ID.
- db
Instance numberCpu - the number of CPUs allocated by the instance.
- db
Instance stringId - instance ID.
- db
Instance numberMemory - the memory size allocated by the instance, unit: GB.
- db
Instance stringName - instance name.
- db
Instance GetNet Infos Postgresql Readonly Groups Read Only Group List Read Only Db Instance List Db Instance Net Info[] - instance network connection information.
- db
Instance 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).
- db
Instance numberStorage - the size of the storage space allocated by the instance, unit: GB.
- db
Instance stringType - 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 stringVersion - instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- db
Kernel stringVersion - Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- db
Major stringVersion - PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- db
Node 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 string - PostgreSQL version.
- expire
Time string - instance expiration time.
- is
Support 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.
- isolated
Time string - instance isolation time.
- master
Db 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.
- network
Access 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 string - offline timeNote: This field may return null, indicating that no valid value can be obtained.
- pay
Type string - billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- project
Id number - project ID.
- read
Only numberInstance Num - Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- region string
- region id.
- status
In 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.
- subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- support
Ipv6 number - Whether the instance supports Ipv6, 1: support, 0: not support.
- tag
Lists 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.
- update
Time string - The time when the instance performed the last update.
- vpc
Id 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.
- app
Id Number - user's AppId.
- auto
Renew Number - auto-renew, 1: auto-renew, 0: no auto-renew.
- create
Time String - instance creation time.
- db
Charset String - instance DB character set.
- db
Engine 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.
- db
Engine StringConfig - Configuration information for the database engineNote: This field may return null, indicating that no valid value can be obtained.
- db
Instance StringClass - sales specification ID.
- db
Instance NumberCpu - the number of CPUs allocated by the instance.
- db
Instance StringId - instance ID.
- db
Instance NumberMemory - the memory size allocated by the instance, unit: GB.
- db
Instance StringName - instance name.
- db
Instance List<Property Map>Net Infos - instance network connection information.
- db
Instance 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).
- db
Instance NumberStorage - the size of the storage space allocated by the instance, unit: GB.
- db
Instance StringType - 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 StringVersion - instance version, currently only supports standard (dual machine high availability version, one master and one slave).
- db
Kernel StringVersion - Database kernel versionNote: This field may return null, indicating that no valid value can be obtained.
- db
Major StringVersion - PostgreSQL major versionNote: This field may return null, indicating that no valid value can be obtained.
- db
Node List<Property Map>Sets - Instance node informationNote: This field may return null, indicating that no valid value can be obtained.
- db
Version String - PostgreSQL version.
- expire
Time String - instance expiration time.
- is
Support 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.
- isolated
Time String - instance isolation time.
- master
Db 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.
- network
Access 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.
- offline
Time String - offline timeNote: This field may return null, indicating that no valid value can be obtained.
- pay
Type String - billing mode, 1. prepaid (subscription, prepaid); 2. postpaid (billing by volume, postpaid).
- project
Id Number - project ID.
- read
Only NumberInstance Num - Number of read-only instancesNote: This field may return null, indicating that no valid value can be obtained.
- region String
- region id.
- status
In 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.
- subnet
Id String - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- support
Ipv6 Number - Whether the instance supports Ipv6, 1: support, 0: not support.
- tag
Lists 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.
- update
Time String - The time when the instance performed the last update.
- vpc
Id String - virtual network id.
- zone String
- region id.
GetPostgresqlReadonlyGroupsReadOnlyGroupListReadOnlyDbInstanceListDbInstanceNetInfo
- Address string
- DNS domain name.
- Ip string
- IP address.
- Net
Type 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.
- Protocol
Type 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.
- Subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Vpc
Id string - virtual network id.
- Address string
- DNS domain name.
- Ip string
- IP address.
- Net
Type 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.
- Protocol
Type 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.
- Subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- Vpc
Id string - virtual network id.
- address String
- DNS domain name.
- ip String
- IP address.
- net
Type 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.
- protocol
Type 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.
- subnet
Id String - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc
Id String - virtual network id.
- address string
- DNS domain name.
- ip string
- IP address.
- net
Type 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.
- protocol
Type 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.
- subnet
Id string - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc
Id 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.
- net
Type 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.
- protocol
Type 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.
- subnet
Id String - subnet-idNote: This field may return null, indicating that no valid value can be obtained.
- vpc
Id String - virtual network id.
GetPostgresqlReadonlyGroupsReadOnlyGroupListReadOnlyDbInstanceListDbNodeSet
GetPostgresqlReadonlyGroupsReadOnlyGroupListReadOnlyDbInstanceListNetworkAccessList
- Resource
Id string - Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- Resource
Type double - Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- Subnet
Id 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.
- Vpc
Id string - virtual network id.
- Vpc
Status 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.
- Resource
Id string - Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- Resource
Type float64 - Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- Subnet
Id 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.
- Vpc
Id string - virtual network id.
- Vpc
Status 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.
- resource
Id String - Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resource
Type Double - Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnet
Id 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.
- vpc
Id String - virtual network id.
- vpc
Status 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.
- resource
Id string - Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resource
Type number - Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnet
Id 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.
- vpc
Id string - virtual network id.
- vpc
Status 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.
- resource
Id String - Network resource id, instance id or RO group idNote: This field may return null, indicating that no valid value can be obtained.
- resource
Type Number - Resource type, 1-instance 2-RO groupNote: This field may return null, indicating that no valid value can be obtained.
- subnet
Id 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.
- vpc
Id String - virtual network id.
- vpc
Status 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
tencentcloud
Terraform Provider.
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack