@volcengine/pulumi-volcenginecc 0.0.34 → 0.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/iam/accesskey.d.ts +23 -23
- package/iam/accesskey.js +1 -1
- package/iam/getAccesskey.d.ts +10 -10
- package/mongodb/getInstance.d.ts +4 -0
- package/mongodb/getInstance.js.map +1 -1
- package/mongodb/instance.d.ts +3 -0
- package/mongodb/instance.js +2 -0
- package/mongodb/instance.js.map +1 -1
- package/package.json +1 -1
- package/privatelink/endpointService.d.ts +12 -0
- package/privatelink/endpointService.js +2 -0
- package/privatelink/endpointService.js.map +1 -1
- package/privatelink/getEndpointService.d.ts +4 -0
- package/privatelink/getEndpointService.js.map +1 -1
- package/privatezone/getPrivateZone.d.ts +85 -0
- package/privatezone/getPrivateZone.js +28 -0
- package/privatezone/getPrivateZone.js.map +1 -0
- package/privatezone/getPrivateZones.d.ts +22 -0
- package/privatezone/getPrivateZones.js +24 -0
- package/privatezone/getPrivateZones.js.map +1 -0
- package/privatezone/index.d.ts +9 -0
- package/privatezone/index.js +12 -1
- package/privatezone/index.js.map +1 -1
- package/privatezone/privateZone.d.ts +153 -0
- package/privatezone/privateZone.js +83 -0
- package/privatezone/privateZone.js.map +1 -0
- package/rdspostgresql/allowList.d.ts +1 -22
- package/rdspostgresql/allowList.js +2 -20
- package/rdspostgresql/allowList.js.map +1 -1
- package/rdspostgresql/backup.d.ts +222 -0
- package/rdspostgresql/backup.js +97 -0
- package/rdspostgresql/backup.js.map +1 -0
- package/rdspostgresql/dbEndpoint.d.ts +36 -18
- package/rdspostgresql/dbEndpoint.js +6 -17
- package/rdspostgresql/dbEndpoint.js.map +1 -1
- package/rdspostgresql/getBackup.d.ts +113 -0
- package/rdspostgresql/getBackup.js +28 -0
- package/rdspostgresql/getBackup.js.map +1 -0
- package/rdspostgresql/getBackups.d.ts +22 -0
- package/rdspostgresql/getBackups.js +24 -0
- package/rdspostgresql/getBackups.js.map +1 -0
- package/rdspostgresql/getDbEndpoint.d.ts +12 -4
- package/rdspostgresql/getDbEndpoint.js.map +1 -1
- package/rdspostgresql/index.d.ts +9 -0
- package/rdspostgresql/index.js +12 -1
- package/rdspostgresql/index.js.map +1 -1
- package/redis/getParameterGroup.d.ts +77 -0
- package/redis/getParameterGroup.js +28 -0
- package/redis/getParameterGroup.js.map +1 -0
- package/redis/getParameterGroups.d.ts +22 -0
- package/redis/getParameterGroups.js +24 -0
- package/redis/getParameterGroups.js.map +1 -0
- package/redis/index.d.ts +9 -0
- package/redis/index.js +12 -1
- package/redis/index.js.map +1 -1
- package/redis/parameterGroup.d.ts +151 -0
- package/redis/parameterGroup.js +108 -0
- package/redis/parameterGroup.js.map +1 -0
- package/tos/bucketCors.d.ts +4 -11
- package/tos/bucketCors.js +4 -11
- package/tos/bucketCors.js.map +1 -1
- package/tos/bucketNotification.d.ts +4 -11
- package/tos/bucketNotification.js +4 -11
- package/tos/bucketNotification.js.map +1 -1
- package/tos/bucketRealtimeLog.d.ts +4 -11
- package/tos/bucketRealtimeLog.js +4 -11
- package/tos/bucketRealtimeLog.js.map +1 -1
- package/types/input.d.ts +237 -9
- package/types/output.d.ts +478 -10
- package/vefaas/function.d.ts +20 -0
- package/vefaas/function.js +4 -0
- package/vefaas/function.js.map +1 -1
- package/vefaas/getFunction.d.ts +8 -0
- package/vefaas/getFunction.js.map +1 -1
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Backup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* RDS PostgreSQL backup resources support both physical and logical backups. Physical backups can be created and queried; logical backups can be created, deleted, downloaded, and queried.
|
|
10
|
+
*
|
|
11
|
+
* ## Import
|
|
12
|
+
*
|
|
13
|
+
* ```sh
|
|
14
|
+
* $ pulumi import volcenginecc:rdspostgresql/backup:Backup example "backup_id|instance_id"
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
class Backup extends pulumi.CustomResource {
|
|
18
|
+
/**
|
|
19
|
+
* Get an existing Backup resource's state with the given name, ID, and optional extra
|
|
20
|
+
* properties used to qualify the lookup.
|
|
21
|
+
*
|
|
22
|
+
* @param name The _unique_ name of the resulting resource.
|
|
23
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
24
|
+
* @param state Any extra arguments used during the lookup.
|
|
25
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
26
|
+
*/
|
|
27
|
+
static get(name, id, state, opts) {
|
|
28
|
+
return new Backup(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of Backup. This is designed to work even
|
|
32
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
33
|
+
*/
|
|
34
|
+
static isInstance(obj) {
|
|
35
|
+
if (obj === undefined || obj === null) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
return obj['__pulumiType'] === Backup.__pulumiType;
|
|
39
|
+
}
|
|
40
|
+
constructor(name, argsOrState, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (opts.id) {
|
|
44
|
+
const state = argsOrState;
|
|
45
|
+
resourceInputs["backupDataSize"] = state ? state.backupDataSize : undefined;
|
|
46
|
+
resourceInputs["backupDescription"] = state ? state.backupDescription : undefined;
|
|
47
|
+
resourceInputs["backupEndTime"] = state ? state.backupEndTime : undefined;
|
|
48
|
+
resourceInputs["backupFileName"] = state ? state.backupFileName : undefined;
|
|
49
|
+
resourceInputs["backupFileSize"] = state ? state.backupFileSize : undefined;
|
|
50
|
+
resourceInputs["backupId"] = state ? state.backupId : undefined;
|
|
51
|
+
resourceInputs["backupMetas"] = state ? state.backupMetas : undefined;
|
|
52
|
+
resourceInputs["backupMethod"] = state ? state.backupMethod : undefined;
|
|
53
|
+
resourceInputs["backupPolicy"] = state ? state.backupPolicy : undefined;
|
|
54
|
+
resourceInputs["backupProgress"] = state ? state.backupProgress : undefined;
|
|
55
|
+
resourceInputs["backupScope"] = state ? state.backupScope : undefined;
|
|
56
|
+
resourceInputs["backupStartTime"] = state ? state.backupStartTime : undefined;
|
|
57
|
+
resourceInputs["backupStatus"] = state ? state.backupStatus : undefined;
|
|
58
|
+
resourceInputs["backupType"] = state ? state.backupType : undefined;
|
|
59
|
+
resourceInputs["createType"] = state ? state.createType : undefined;
|
|
60
|
+
resourceInputs["downloadBackup"] = state ? state.downloadBackup : undefined;
|
|
61
|
+
resourceInputs["downloadProgress"] = state ? state.downloadProgress : undefined;
|
|
62
|
+
resourceInputs["downloadStatus"] = state ? state.downloadStatus : undefined;
|
|
63
|
+
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
const args = argsOrState;
|
|
67
|
+
if ((!args || args.instanceId === undefined) && !opts.urn) {
|
|
68
|
+
throw new Error("Missing required property 'instanceId'");
|
|
69
|
+
}
|
|
70
|
+
resourceInputs["backupDescription"] = args ? args.backupDescription : undefined;
|
|
71
|
+
resourceInputs["backupMetas"] = args ? args.backupMetas : undefined;
|
|
72
|
+
resourceInputs["backupMethod"] = args ? args.backupMethod : undefined;
|
|
73
|
+
resourceInputs["backupPolicy"] = args ? args.backupPolicy : undefined;
|
|
74
|
+
resourceInputs["backupScope"] = args ? args.backupScope : undefined;
|
|
75
|
+
resourceInputs["backupType"] = args ? args.backupType : undefined;
|
|
76
|
+
resourceInputs["downloadBackup"] = args ? args.downloadBackup : undefined;
|
|
77
|
+
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
|
|
78
|
+
resourceInputs["backupDataSize"] = undefined /*out*/;
|
|
79
|
+
resourceInputs["backupEndTime"] = undefined /*out*/;
|
|
80
|
+
resourceInputs["backupFileName"] = undefined /*out*/;
|
|
81
|
+
resourceInputs["backupFileSize"] = undefined /*out*/;
|
|
82
|
+
resourceInputs["backupId"] = undefined /*out*/;
|
|
83
|
+
resourceInputs["backupProgress"] = undefined /*out*/;
|
|
84
|
+
resourceInputs["backupStartTime"] = undefined /*out*/;
|
|
85
|
+
resourceInputs["backupStatus"] = undefined /*out*/;
|
|
86
|
+
resourceInputs["createType"] = undefined /*out*/;
|
|
87
|
+
resourceInputs["downloadProgress"] = undefined /*out*/;
|
|
88
|
+
resourceInputs["downloadStatus"] = undefined /*out*/;
|
|
89
|
+
}
|
|
90
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
91
|
+
super(Backup.__pulumiType, name, resourceInputs, opts);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
exports.Backup = Backup;
|
|
95
|
+
/** @internal */
|
|
96
|
+
Backup.__pulumiType = 'volcenginecc:rdspostgresql/backup:Backup';
|
|
97
|
+
//# sourceMappingURL=backup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"backup.js","sourceRoot":"","sources":["../../rdspostgresql/backup.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,21 +4,6 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* The connection endpoint is a network proxy service positioned between the database and the application, handling all requests from the application to the database. It features high availability, high performance, maintainability, and ease of use, and supports advanced functions such as read/write splitting and load balancing. The PostgreSQL cloud database provides two types of endpoints: default endpoint and custom read-only endpoint.
|
|
6
6
|
*
|
|
7
|
-
* ## Example Usage
|
|
8
|
-
*
|
|
9
|
-
* ```typescript
|
|
10
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
-
* import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
|
|
12
|
-
*
|
|
13
|
-
* const rdsPostgresqlDbEndpointDemo = new volcenginecc.rdspostgresql.DbEndpoint("RdsPostgresqlDbEndpointDemo", {
|
|
14
|
-
* endpointName: "ccapi-test-1",
|
|
15
|
-
* endpointType: "Custom",
|
|
16
|
-
* instanceId: "postgres-9dxxxxxd",
|
|
17
|
-
* nodes: "Primary",
|
|
18
|
-
* readWriteMode: "ReadWrite",
|
|
19
|
-
* });
|
|
20
|
-
* ```
|
|
21
|
-
*
|
|
22
7
|
* ## Import
|
|
23
8
|
*
|
|
24
9
|
* ```sh
|
|
@@ -41,7 +26,6 @@ export declare class DbEndpoint extends pulumi.CustomResource {
|
|
|
41
26
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
42
27
|
*/
|
|
43
28
|
static isInstance(obj: any): obj is DbEndpoint;
|
|
44
|
-
readonly addresses: pulumi.Output<outputs.rdspostgresql.DbEndpointAddress[]>;
|
|
45
29
|
/**
|
|
46
30
|
* When the endpoint type is read/write or read-only, you can configure whether new nodes are automatically added. Values: Enable: Automatically add. Disable: Do not automatically add (default).
|
|
47
31
|
*/
|
|
@@ -70,6 +54,10 @@ export declare class DbEndpoint extends pulumi.CustomResource {
|
|
|
70
54
|
* Endpoint type: Cluster: default endpoint (created by default). Custom: custom endpoint.
|
|
71
55
|
*/
|
|
72
56
|
readonly endpointType: pulumi.Output<string>;
|
|
57
|
+
/**
|
|
58
|
+
* Public service zone connection address
|
|
59
|
+
*/
|
|
60
|
+
readonly innerAddresses: pulumi.Output<outputs.rdspostgresql.DbEndpointInnerAddresses>;
|
|
73
61
|
/**
|
|
74
62
|
* Instance ID.
|
|
75
63
|
*/
|
|
@@ -78,6 +66,14 @@ export declare class DbEndpoint extends pulumi.CustomResource {
|
|
|
78
66
|
* List of nodes configured for the connection endpoint. Note: Required when EndpointType is Custom. The primary node does not require a node ID; use the string 'Primary'.
|
|
79
67
|
*/
|
|
80
68
|
readonly nodes: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* Private network connection address
|
|
71
|
+
*/
|
|
72
|
+
readonly privateAddresses: pulumi.Output<outputs.rdspostgresql.DbEndpointPrivateAddresses>;
|
|
73
|
+
/**
|
|
74
|
+
* Public network connection address
|
|
75
|
+
*/
|
|
76
|
+
readonly publicAddresses: pulumi.Output<outputs.rdspostgresql.DbEndpointPublicAddresses>;
|
|
81
77
|
/**
|
|
82
78
|
* Read-only weight allocation mode. Values: Default: standard weight allocation (default). Custom: custom weight allocation.
|
|
83
79
|
*/
|
|
@@ -112,7 +108,6 @@ export declare class DbEndpoint extends pulumi.CustomResource {
|
|
|
112
108
|
* Input properties used for looking up and filtering DbEndpoint resources.
|
|
113
109
|
*/
|
|
114
110
|
export interface DbEndpointState {
|
|
115
|
-
addresses?: pulumi.Input<pulumi.Input<inputs.rdspostgresql.DbEndpointAddress>[]>;
|
|
116
111
|
/**
|
|
117
112
|
* When the endpoint type is read/write or read-only, you can configure whether new nodes are automatically added. Values: Enable: Automatically add. Disable: Do not automatically add (default).
|
|
118
113
|
*/
|
|
@@ -141,6 +136,10 @@ export interface DbEndpointState {
|
|
|
141
136
|
* Endpoint type: Cluster: default endpoint (created by default). Custom: custom endpoint.
|
|
142
137
|
*/
|
|
143
138
|
endpointType?: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* Public service zone connection address
|
|
141
|
+
*/
|
|
142
|
+
innerAddresses?: pulumi.Input<inputs.rdspostgresql.DbEndpointInnerAddresses>;
|
|
144
143
|
/**
|
|
145
144
|
* Instance ID.
|
|
146
145
|
*/
|
|
@@ -149,6 +148,14 @@ export interface DbEndpointState {
|
|
|
149
148
|
* List of nodes configured for the connection endpoint. Note: Required when EndpointType is Custom. The primary node does not require a node ID; use the string 'Primary'.
|
|
150
149
|
*/
|
|
151
150
|
nodes?: pulumi.Input<string>;
|
|
151
|
+
/**
|
|
152
|
+
* Private network connection address
|
|
153
|
+
*/
|
|
154
|
+
privateAddresses?: pulumi.Input<inputs.rdspostgresql.DbEndpointPrivateAddresses>;
|
|
155
|
+
/**
|
|
156
|
+
* Public network connection address
|
|
157
|
+
*/
|
|
158
|
+
publicAddresses?: pulumi.Input<inputs.rdspostgresql.DbEndpointPublicAddresses>;
|
|
152
159
|
/**
|
|
153
160
|
* Read-only weight allocation mode. Values: Default: standard weight allocation (default). Custom: custom weight allocation.
|
|
154
161
|
*/
|
|
@@ -175,7 +182,6 @@ export interface DbEndpointState {
|
|
|
175
182
|
* The set of arguments for constructing a DbEndpoint resource.
|
|
176
183
|
*/
|
|
177
184
|
export interface DbEndpointArgs {
|
|
178
|
-
addresses?: pulumi.Input<pulumi.Input<inputs.rdspostgresql.DbEndpointAddress>[]>;
|
|
179
185
|
/**
|
|
180
186
|
* Whether read/write splitting is enabled. Values: Enable: Enabled. Disable: Not enabled.
|
|
181
187
|
*/
|
|
@@ -188,6 +194,10 @@ export interface DbEndpointArgs {
|
|
|
188
194
|
* Endpoint type: Cluster: default endpoint (created by default). Custom: custom endpoint.
|
|
189
195
|
*/
|
|
190
196
|
endpointType?: pulumi.Input<string>;
|
|
197
|
+
/**
|
|
198
|
+
* Public service zone connection address
|
|
199
|
+
*/
|
|
200
|
+
innerAddresses?: pulumi.Input<inputs.rdspostgresql.DbEndpointInnerAddresses>;
|
|
191
201
|
/**
|
|
192
202
|
* Instance ID.
|
|
193
203
|
*/
|
|
@@ -196,6 +206,14 @@ export interface DbEndpointArgs {
|
|
|
196
206
|
* List of nodes configured for the connection endpoint. Note: Required when EndpointType is Custom. The primary node does not require a node ID; use the string 'Primary'.
|
|
197
207
|
*/
|
|
198
208
|
nodes?: pulumi.Input<string>;
|
|
209
|
+
/**
|
|
210
|
+
* Private network connection address
|
|
211
|
+
*/
|
|
212
|
+
privateAddresses?: pulumi.Input<inputs.rdspostgresql.DbEndpointPrivateAddresses>;
|
|
213
|
+
/**
|
|
214
|
+
* Public network connection address
|
|
215
|
+
*/
|
|
216
|
+
publicAddresses?: pulumi.Input<inputs.rdspostgresql.DbEndpointPublicAddresses>;
|
|
199
217
|
/**
|
|
200
218
|
* Read-only weight allocation mode. Values: Default: standard weight allocation (default). Custom: custom weight allocation.
|
|
201
219
|
*/
|
|
@@ -8,21 +8,6 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The connection endpoint is a network proxy service positioned between the database and the application, handling all requests from the application to the database. It features high availability, high performance, maintainability, and ease of use, and supports advanced functions such as read/write splitting and load balancing. The PostgreSQL cloud database provides two types of endpoints: default endpoint and custom read-only endpoint.
|
|
10
10
|
*
|
|
11
|
-
* ## Example Usage
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
|
|
16
|
-
*
|
|
17
|
-
* const rdsPostgresqlDbEndpointDemo = new volcenginecc.rdspostgresql.DbEndpoint("RdsPostgresqlDbEndpointDemo", {
|
|
18
|
-
* endpointName: "ccapi-test-1",
|
|
19
|
-
* endpointType: "Custom",
|
|
20
|
-
* instanceId: "postgres-9dxxxxxd",
|
|
21
|
-
* nodes: "Primary",
|
|
22
|
-
* readWriteMode: "ReadWrite",
|
|
23
|
-
* });
|
|
24
|
-
* ```
|
|
25
|
-
*
|
|
26
11
|
* ## Import
|
|
27
12
|
*
|
|
28
13
|
* ```sh
|
|
@@ -57,7 +42,6 @@ class DbEndpoint extends pulumi.CustomResource {
|
|
|
57
42
|
opts = opts || {};
|
|
58
43
|
if (opts.id) {
|
|
59
44
|
const state = argsOrState;
|
|
60
|
-
resourceInputs["addresses"] = state ? state.addresses : undefined;
|
|
61
45
|
resourceInputs["autoAddNewNodes"] = state ? state.autoAddNewNodes : undefined;
|
|
62
46
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
63
47
|
resourceInputs["enableReadOnly"] = state ? state.enableReadOnly : undefined;
|
|
@@ -65,8 +49,11 @@ class DbEndpoint extends pulumi.CustomResource {
|
|
|
65
49
|
resourceInputs["endpointId"] = state ? state.endpointId : undefined;
|
|
66
50
|
resourceInputs["endpointName"] = state ? state.endpointName : undefined;
|
|
67
51
|
resourceInputs["endpointType"] = state ? state.endpointType : undefined;
|
|
52
|
+
resourceInputs["innerAddresses"] = state ? state.innerAddresses : undefined;
|
|
68
53
|
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
|
|
69
54
|
resourceInputs["nodes"] = state ? state.nodes : undefined;
|
|
55
|
+
resourceInputs["privateAddresses"] = state ? state.privateAddresses : undefined;
|
|
56
|
+
resourceInputs["publicAddresses"] = state ? state.publicAddresses : undefined;
|
|
70
57
|
resourceInputs["readOnlyNodeDistributionType"] = state ? state.readOnlyNodeDistributionType : undefined;
|
|
71
58
|
resourceInputs["readOnlyNodeMaxDelayTime"] = state ? state.readOnlyNodeMaxDelayTime : undefined;
|
|
72
59
|
resourceInputs["readOnlyNodeWeights"] = state ? state.readOnlyNodeWeights : undefined;
|
|
@@ -76,12 +63,14 @@ class DbEndpoint extends pulumi.CustomResource {
|
|
|
76
63
|
}
|
|
77
64
|
else {
|
|
78
65
|
const args = argsOrState;
|
|
79
|
-
resourceInputs["addresses"] = args ? args.addresses : undefined;
|
|
80
66
|
resourceInputs["enableReadWriteSplitting"] = args ? args.enableReadWriteSplitting : undefined;
|
|
81
67
|
resourceInputs["endpointName"] = args ? args.endpointName : undefined;
|
|
82
68
|
resourceInputs["endpointType"] = args ? args.endpointType : undefined;
|
|
69
|
+
resourceInputs["innerAddresses"] = args ? args.innerAddresses : undefined;
|
|
83
70
|
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
|
|
84
71
|
resourceInputs["nodes"] = args ? args.nodes : undefined;
|
|
72
|
+
resourceInputs["privateAddresses"] = args ? args.privateAddresses : undefined;
|
|
73
|
+
resourceInputs["publicAddresses"] = args ? args.publicAddresses : undefined;
|
|
85
74
|
resourceInputs["readOnlyNodeDistributionType"] = args ? args.readOnlyNodeDistributionType : undefined;
|
|
86
75
|
resourceInputs["readOnlyNodeMaxDelayTime"] = args ? args.readOnlyNodeMaxDelayTime : undefined;
|
|
87
76
|
resourceInputs["readOnlyNodeWeights"] = args ? args.readOnlyNodeWeights : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dbEndpoint.js","sourceRoot":"","sources":["../../rdspostgresql/dbEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"dbEndpoint.js","sourceRoot":"","sources":["../../rdspostgresql/dbEndpoint.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Volcengine::RDSPostgreSQL::Backup
|
|
5
|
+
*/
|
|
6
|
+
export declare function getBackup(args: GetBackupArgs, opts?: pulumi.InvokeOptions): Promise<GetBackupResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getBackup.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetBackupArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getBackup.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetBackupResult {
|
|
20
|
+
/**
|
|
21
|
+
* Backup data size (bytes).
|
|
22
|
+
*/
|
|
23
|
+
readonly backupDataSize: number;
|
|
24
|
+
/**
|
|
25
|
+
* Backup description.
|
|
26
|
+
*/
|
|
27
|
+
readonly backupDescription: string;
|
|
28
|
+
/**
|
|
29
|
+
* Backup end time.
|
|
30
|
+
*/
|
|
31
|
+
readonly backupEndTime: string;
|
|
32
|
+
/**
|
|
33
|
+
* Backup file name.
|
|
34
|
+
*/
|
|
35
|
+
readonly backupFileName: string;
|
|
36
|
+
/**
|
|
37
|
+
* Backup file size (bytes).
|
|
38
|
+
*/
|
|
39
|
+
readonly backupFileSize: number;
|
|
40
|
+
/**
|
|
41
|
+
* Backup ID.
|
|
42
|
+
*/
|
|
43
|
+
readonly backupId: string;
|
|
44
|
+
/**
|
|
45
|
+
* Backup metadata, used to specify the database list for logical backups.
|
|
46
|
+
*/
|
|
47
|
+
readonly backupMetas: outputs.rdspostgresql.GetBackupBackupMeta[];
|
|
48
|
+
/**
|
|
49
|
+
* Backup method: Physical for physical backup, Logical for logical backup.
|
|
50
|
+
*/
|
|
51
|
+
readonly backupMethod: string;
|
|
52
|
+
/**
|
|
53
|
+
* Backup policy configuration information.
|
|
54
|
+
*/
|
|
55
|
+
readonly backupPolicy: outputs.rdspostgresql.GetBackupBackupPolicy;
|
|
56
|
+
/**
|
|
57
|
+
* Backup progress percentage.
|
|
58
|
+
*/
|
|
59
|
+
readonly backupProgress: number;
|
|
60
|
+
/**
|
|
61
|
+
* Backup scope: Instance for instance-level backup, Database for database-level backup.
|
|
62
|
+
*/
|
|
63
|
+
readonly backupScope: string;
|
|
64
|
+
/**
|
|
65
|
+
* Backup start time.
|
|
66
|
+
*/
|
|
67
|
+
readonly backupStartTime: string;
|
|
68
|
+
/**
|
|
69
|
+
* Backup status, such as Success, Running, Failed.
|
|
70
|
+
*/
|
|
71
|
+
readonly backupStatus: string;
|
|
72
|
+
/**
|
|
73
|
+
* Backup type: Full for full backup, Increment for incremental backup.
|
|
74
|
+
*/
|
|
75
|
+
readonly backupType: string;
|
|
76
|
+
/**
|
|
77
|
+
* Creation method: Manual for manual creation, Automated for automatic creation.
|
|
78
|
+
*/
|
|
79
|
+
readonly createType: string;
|
|
80
|
+
/**
|
|
81
|
+
* Download logical backup file after creation. Only valid for logical backups.
|
|
82
|
+
*/
|
|
83
|
+
readonly downloadBackup: boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Download preparation progress percentage.
|
|
86
|
+
*/
|
|
87
|
+
readonly downloadProgress: number;
|
|
88
|
+
/**
|
|
89
|
+
* Download status.
|
|
90
|
+
*/
|
|
91
|
+
readonly downloadStatus: string;
|
|
92
|
+
/**
|
|
93
|
+
* Uniquely identifies the resource.
|
|
94
|
+
*/
|
|
95
|
+
readonly id: string;
|
|
96
|
+
/**
|
|
97
|
+
* RDS PostgreSQL instance ID.
|
|
98
|
+
*/
|
|
99
|
+
readonly instanceId: string;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Data Source schema for Volcengine::RDSPostgreSQL::Backup
|
|
103
|
+
*/
|
|
104
|
+
export declare function getBackupOutput(args: GetBackupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBackupResult>;
|
|
105
|
+
/**
|
|
106
|
+
* A collection of arguments for invoking getBackup.
|
|
107
|
+
*/
|
|
108
|
+
export interface GetBackupOutputArgs {
|
|
109
|
+
/**
|
|
110
|
+
* Uniquely identifies the resource.
|
|
111
|
+
*/
|
|
112
|
+
id: pulumi.Input<string>;
|
|
113
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getBackupOutput = exports.getBackup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::RDSPostgreSQL::Backup
|
|
10
|
+
*/
|
|
11
|
+
function getBackup(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:rdspostgresql/getBackup:getBackup", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getBackup = getBackup;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::RDSPostgreSQL::Backup
|
|
20
|
+
*/
|
|
21
|
+
function getBackupOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:rdspostgresql/getBackup:getBackup", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getBackupOutput = getBackupOutput;
|
|
28
|
+
//# sourceMappingURL=getBackup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getBackup.js","sourceRoot":"","sources":["../../rdspostgresql/getBackup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE;QAC3E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8BAKC;AAiGD;;GAEG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAAiC;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gDAAgD,EAAE;QACjF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0CAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Volcengine::RDSPostgreSQL::Backup
|
|
4
|
+
*/
|
|
5
|
+
export declare function getBackups(opts?: pulumi.InvokeOptions): Promise<GetBackupsResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getBackups.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetBackupsResult {
|
|
10
|
+
/**
|
|
11
|
+
* Uniquely identifies the data source.
|
|
12
|
+
*/
|
|
13
|
+
readonly id: string;
|
|
14
|
+
/**
|
|
15
|
+
* Set of Resource Identifiers.
|
|
16
|
+
*/
|
|
17
|
+
readonly ids: string[];
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Plural Data Source schema for Volcengine::RDSPostgreSQL::Backup
|
|
21
|
+
*/
|
|
22
|
+
export declare function getBackupsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBackupsResult>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getBackupsOutput = exports.getBackups = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Volcengine::RDSPostgreSQL::Backup
|
|
10
|
+
*/
|
|
11
|
+
function getBackups(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:rdspostgresql/getBackups:getBackups", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getBackups = getBackups;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Volcengine::RDSPostgreSQL::Backup
|
|
18
|
+
*/
|
|
19
|
+
function getBackupsOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("volcenginecc:rdspostgresql/getBackups:getBackups", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getBackupsOutput = getBackupsOutput;
|
|
24
|
+
//# sourceMappingURL=getBackups.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getBackups.js","sourceRoot":"","sources":["../../rdspostgresql/getBackups.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,UAAU,CAAC,IAA2B;IAClD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE,EAChF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,gCAIC;AAeD;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAAiC;IAC9D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kDAAkD,EAAE,EACtF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,4CAIC"}
|
|
@@ -17,10 +17,6 @@ export interface GetDbEndpointArgs {
|
|
|
17
17
|
* A collection of values returned by getDbEndpoint.
|
|
18
18
|
*/
|
|
19
19
|
export interface GetDbEndpointResult {
|
|
20
|
-
/**
|
|
21
|
-
* Address list.
|
|
22
|
-
*/
|
|
23
|
-
readonly addresses: outputs.rdspostgresql.GetDbEndpointAddress[];
|
|
24
20
|
/**
|
|
25
21
|
* When the endpoint type is read/write or read-only, you can configure whether new nodes are automatically added. Values: Enable: Automatically add. Disable: Do not automatically add (default).
|
|
26
22
|
*/
|
|
@@ -53,6 +49,10 @@ export interface GetDbEndpointResult {
|
|
|
53
49
|
* Uniquely identifies the resource.
|
|
54
50
|
*/
|
|
55
51
|
readonly id: string;
|
|
52
|
+
/**
|
|
53
|
+
* Public service zone connection address
|
|
54
|
+
*/
|
|
55
|
+
readonly innerAddresses: outputs.rdspostgresql.GetDbEndpointInnerAddresses;
|
|
56
56
|
/**
|
|
57
57
|
* Instance ID.
|
|
58
58
|
*/
|
|
@@ -61,6 +61,14 @@ export interface GetDbEndpointResult {
|
|
|
61
61
|
* List of nodes configured for the connection endpoint. Note: Required when EndpointType is Custom. The primary node does not require a node ID; use the string 'Primary'.
|
|
62
62
|
*/
|
|
63
63
|
readonly nodes: string;
|
|
64
|
+
/**
|
|
65
|
+
* Private network connection address
|
|
66
|
+
*/
|
|
67
|
+
readonly privateAddresses: outputs.rdspostgresql.GetDbEndpointPrivateAddresses;
|
|
68
|
+
/**
|
|
69
|
+
* Public network connection address
|
|
70
|
+
*/
|
|
71
|
+
readonly publicAddresses: outputs.rdspostgresql.GetDbEndpointPublicAddresses;
|
|
64
72
|
/**
|
|
65
73
|
* Read-only weight allocation mode. Values: Default: standard weight allocation (default). Custom: custom weight allocation.
|
|
66
74
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDbEndpoint.js","sourceRoot":"","sources":["../../rdspostgresql/getDbEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC;
|
|
1
|
+
{"version":3,"file":"getDbEndpoint.js","sourceRoot":"","sources":["../../rdspostgresql/getDbEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC;AA6FD;;GAEG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAAiC;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wDAAwD,EAAE;QACzF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC"}
|
package/rdspostgresql/index.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export { AllowListArgs, AllowListState } from "./allowList";
|
|
2
2
|
export type AllowList = import("./allowList").AllowList;
|
|
3
3
|
export declare const AllowList: typeof import("./allowList").AllowList;
|
|
4
|
+
export { BackupArgs, BackupState } from "./backup";
|
|
5
|
+
export type Backup = import("./backup").Backup;
|
|
6
|
+
export declare const Backup: typeof import("./backup").Backup;
|
|
4
7
|
export { DatabaseArgs, DatabaseState } from "./database";
|
|
5
8
|
export type Database = import("./database").Database;
|
|
6
9
|
export declare const Database: typeof import("./database").Database;
|
|
@@ -16,6 +19,12 @@ export declare const getAllowListOutput: typeof import("./getAllowList").getAllo
|
|
|
16
19
|
export { GetAllowListsResult } from "./getAllowLists";
|
|
17
20
|
export declare const getAllowLists: typeof import("./getAllowLists").getAllowLists;
|
|
18
21
|
export declare const getAllowListsOutput: typeof import("./getAllowLists").getAllowListsOutput;
|
|
22
|
+
export { GetBackupArgs, GetBackupResult, GetBackupOutputArgs } from "./getBackup";
|
|
23
|
+
export declare const getBackup: typeof import("./getBackup").getBackup;
|
|
24
|
+
export declare const getBackupOutput: typeof import("./getBackup").getBackupOutput;
|
|
25
|
+
export { GetBackupsResult } from "./getBackups";
|
|
26
|
+
export declare const getBackups: typeof import("./getBackups").getBackups;
|
|
27
|
+
export declare const getBackupsOutput: typeof import("./getBackups").getBackupsOutput;
|
|
19
28
|
export { GetDatabaseArgs, GetDatabaseResult, GetDatabaseOutputArgs } from "./getDatabase";
|
|
20
29
|
export declare const getDatabase: typeof import("./getDatabase").getDatabase;
|
|
21
30
|
export declare const getDatabaseOutput: typeof import("./getDatabase").getDatabaseOutput;
|
package/rdspostgresql/index.js
CHANGED
|
@@ -2,11 +2,13 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.Schema = exports.Instance = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaOutput = exports.getSchema = exports.getInstancesOutput = exports.getInstances = exports.getInstanceOutput = exports.getInstance = exports.getDbEndpointsOutput = exports.getDbEndpoints = exports.getDbEndpointOutput = exports.getDbEndpoint = exports.getDbAccountsOutput = exports.getDbAccounts = exports.getDbAccountOutput = exports.getDbAccount = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabaseOutput = exports.getDatabase = exports.getAllowListsOutput = exports.getAllowLists = exports.getAllowListOutput = exports.getAllowList = exports.DbEndpoint = exports.DbAccount = exports.Database = exports.AllowList = void 0;
|
|
5
|
+
exports.Schema = exports.Instance = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaOutput = exports.getSchema = exports.getInstancesOutput = exports.getInstances = exports.getInstanceOutput = exports.getInstance = exports.getDbEndpointsOutput = exports.getDbEndpoints = exports.getDbEndpointOutput = exports.getDbEndpoint = exports.getDbAccountsOutput = exports.getDbAccounts = exports.getDbAccountOutput = exports.getDbAccount = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabaseOutput = exports.getDatabase = exports.getBackupsOutput = exports.getBackups = exports.getBackupOutput = exports.getBackup = exports.getAllowListsOutput = exports.getAllowLists = exports.getAllowListOutput = exports.getAllowList = exports.DbEndpoint = exports.DbAccount = exports.Database = exports.Backup = exports.AllowList = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.AllowList = null;
|
|
9
9
|
utilities.lazyLoad(exports, ["AllowList"], () => require("./allowList"));
|
|
10
|
+
exports.Backup = null;
|
|
11
|
+
utilities.lazyLoad(exports, ["Backup"], () => require("./backup"));
|
|
10
12
|
exports.Database = null;
|
|
11
13
|
utilities.lazyLoad(exports, ["Database"], () => require("./database"));
|
|
12
14
|
exports.DbAccount = null;
|
|
@@ -19,6 +21,12 @@ utilities.lazyLoad(exports, ["getAllowList", "getAllowListOutput"], () => requir
|
|
|
19
21
|
exports.getAllowLists = null;
|
|
20
22
|
exports.getAllowListsOutput = null;
|
|
21
23
|
utilities.lazyLoad(exports, ["getAllowLists", "getAllowListsOutput"], () => require("./getAllowLists"));
|
|
24
|
+
exports.getBackup = null;
|
|
25
|
+
exports.getBackupOutput = null;
|
|
26
|
+
utilities.lazyLoad(exports, ["getBackup", "getBackupOutput"], () => require("./getBackup"));
|
|
27
|
+
exports.getBackups = null;
|
|
28
|
+
exports.getBackupsOutput = null;
|
|
29
|
+
utilities.lazyLoad(exports, ["getBackups", "getBackupsOutput"], () => require("./getBackups"));
|
|
22
30
|
exports.getDatabase = null;
|
|
23
31
|
exports.getDatabaseOutput = null;
|
|
24
32
|
utilities.lazyLoad(exports, ["getDatabase", "getDatabaseOutput"], () => require("./getDatabase"));
|
|
@@ -59,6 +67,8 @@ const _module = {
|
|
|
59
67
|
switch (type) {
|
|
60
68
|
case "volcenginecc:rdspostgresql/allowList:AllowList":
|
|
61
69
|
return new exports.AllowList(name, undefined, { urn });
|
|
70
|
+
case "volcenginecc:rdspostgresql/backup:Backup":
|
|
71
|
+
return new exports.Backup(name, undefined, { urn });
|
|
62
72
|
case "volcenginecc:rdspostgresql/database:Database":
|
|
63
73
|
return new exports.Database(name, undefined, { urn });
|
|
64
74
|
case "volcenginecc:rdspostgresql/dbAccount:DbAccount":
|
|
@@ -75,6 +85,7 @@ const _module = {
|
|
|
75
85
|
},
|
|
76
86
|
};
|
|
77
87
|
pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/allowList", _module);
|
|
88
|
+
pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/backup", _module);
|
|
78
89
|
pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/database", _module);
|
|
79
90
|
pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/dbAccount", _module);
|
|
80
91
|
pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/dbEndpoint", _module);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../rdspostgresql/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../rdspostgresql/index.ts"],"names":[],"mappings":"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"}
|