@volcengine/pulumi-volcenginecc 0.0.35 → 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/package.json +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/dbEndpoint.d.ts +36 -18
- package/rdspostgresql/dbEndpoint.js +6 -17
- package/rdspostgresql/dbEndpoint.js.map +1 -1
- package/rdspostgresql/getDbEndpoint.d.ts +12 -4
- package/rdspostgresql/getDbEndpoint.js.map +1 -1
- package/types/input.d.ts +133 -1
- package/types/output.d.ts +246 -2
package/package.json
CHANGED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
5
|
+
*/
|
|
6
|
+
export declare function getPrivateZone(args: GetPrivateZoneArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateZoneResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getPrivateZone.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetPrivateZoneArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getPrivateZone.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetPrivateZoneResult {
|
|
20
|
+
/**
|
|
21
|
+
* Domain creation time
|
|
22
|
+
*/
|
|
23
|
+
readonly createdAt: string;
|
|
24
|
+
/**
|
|
25
|
+
* Uniquely identifies the resource.
|
|
26
|
+
*/
|
|
27
|
+
readonly id: string;
|
|
28
|
+
/**
|
|
29
|
+
* Most recent operator
|
|
30
|
+
*/
|
|
31
|
+
readonly lastOperator: string;
|
|
32
|
+
/**
|
|
33
|
+
* Enable load balancing: 0 to disable, 1 to enable. Default is 0
|
|
34
|
+
*/
|
|
35
|
+
readonly lineMode: number;
|
|
36
|
+
/**
|
|
37
|
+
* Name of the project the domain belongs to. Default is default
|
|
38
|
+
*/
|
|
39
|
+
readonly projectName: string;
|
|
40
|
+
/**
|
|
41
|
+
* Number of DNS records under the domain name
|
|
42
|
+
*/
|
|
43
|
+
readonly recordCount: number;
|
|
44
|
+
/**
|
|
45
|
+
* Enable recursive resolution: true to enable, false to disable. Default is false
|
|
46
|
+
*/
|
|
47
|
+
readonly recursionMode: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Remarks. Default is an empty string
|
|
50
|
+
*/
|
|
51
|
+
readonly remark: string;
|
|
52
|
+
/**
|
|
53
|
+
* One or more tags associated with the domain. A resource can be associated with up to 50 tags
|
|
54
|
+
*/
|
|
55
|
+
readonly tags: outputs.privatezone.GetPrivateZoneTag[];
|
|
56
|
+
/**
|
|
57
|
+
* Most recent update time of the domain
|
|
58
|
+
*/
|
|
59
|
+
readonly updatedAt: string;
|
|
60
|
+
/**
|
|
61
|
+
* One or more VPCs associated with the domain. Domain resolution is only effective within the associated VPCs
|
|
62
|
+
*/
|
|
63
|
+
readonly vpcs: outputs.privatezone.GetPrivateZoneVpc[];
|
|
64
|
+
/**
|
|
65
|
+
* Unique ID identifying the domain name
|
|
66
|
+
*/
|
|
67
|
+
readonly zid: string;
|
|
68
|
+
/**
|
|
69
|
+
* Domain name, can be a second-level or multi-level domain
|
|
70
|
+
*/
|
|
71
|
+
readonly zoneName: string;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
75
|
+
*/
|
|
76
|
+
export declare function getPrivateZoneOutput(args: GetPrivateZoneOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateZoneResult>;
|
|
77
|
+
/**
|
|
78
|
+
* A collection of arguments for invoking getPrivateZone.
|
|
79
|
+
*/
|
|
80
|
+
export interface GetPrivateZoneOutputArgs {
|
|
81
|
+
/**
|
|
82
|
+
* Uniquely identifies the resource.
|
|
83
|
+
*/
|
|
84
|
+
id: pulumi.Input<string>;
|
|
85
|
+
}
|
|
@@ -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.getPrivateZoneOutput = exports.getPrivateZone = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
10
|
+
*/
|
|
11
|
+
function getPrivateZone(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:privatezone/getPrivateZone:getPrivateZone", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getPrivateZone = getPrivateZone;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
20
|
+
*/
|
|
21
|
+
function getPrivateZoneOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:privatezone/getPrivateZone:getPrivateZone", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getPrivateZoneOutput = getPrivateZoneOutput;
|
|
28
|
+
//# sourceMappingURL=getPrivateZone.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPrivateZone.js","sourceRoot":"","sources":["../../privatezone/getPrivateZone.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,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,wCAKC;AAqED;;GAEG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,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,oDAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
4
|
+
*/
|
|
5
|
+
export declare function getPrivateZones(opts?: pulumi.InvokeOptions): Promise<GetPrivateZonesResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getPrivateZones.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetPrivateZonesResult {
|
|
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::PrivateZone::PrivateZone
|
|
21
|
+
*/
|
|
22
|
+
export declare function getPrivateZonesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateZonesResult>;
|
|
@@ -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.getPrivateZonesOutput = exports.getPrivateZones = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
10
|
+
*/
|
|
11
|
+
function getPrivateZones(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:privatezone/getPrivateZones:getPrivateZones", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getPrivateZones = getPrivateZones;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
18
|
+
*/
|
|
19
|
+
function getPrivateZonesOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("volcenginecc:privatezone/getPrivateZones:getPrivateZones", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getPrivateZonesOutput = getPrivateZonesOutput;
|
|
24
|
+
//# sourceMappingURL=getPrivateZones.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPrivateZones.js","sourceRoot":"","sources":["../../privatezone/getPrivateZones.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,eAAe,CAAC,IAA2B;IACvD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE,EACxF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,0CAIC;AAeD;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAAiC;IACnE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0DAA0D,EAAE,EAC9F,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,sDAIC"}
|
package/privatezone/index.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
export { GetPrivateZoneArgs, GetPrivateZoneResult, GetPrivateZoneOutputArgs } from "./getPrivateZone";
|
|
2
|
+
export declare const getPrivateZone: typeof import("./getPrivateZone").getPrivateZone;
|
|
3
|
+
export declare const getPrivateZoneOutput: typeof import("./getPrivateZone").getPrivateZoneOutput;
|
|
4
|
+
export { GetPrivateZonesResult } from "./getPrivateZones";
|
|
5
|
+
export declare const getPrivateZones: typeof import("./getPrivateZones").getPrivateZones;
|
|
6
|
+
export declare const getPrivateZonesOutput: typeof import("./getPrivateZones").getPrivateZonesOutput;
|
|
1
7
|
export { GetRecordArgs, GetRecordResult, GetRecordOutputArgs } from "./getRecord";
|
|
2
8
|
export declare const getRecord: typeof import("./getRecord").getRecord;
|
|
3
9
|
export declare const getRecordOutput: typeof import("./getRecord").getRecordOutput;
|
|
@@ -22,6 +28,9 @@ export declare const getUserVpcAuthorizationOutput: typeof import("./getUserVpcA
|
|
|
22
28
|
export { GetUserVpcAuthorizationsResult } from "./getUserVpcAuthorizations";
|
|
23
29
|
export declare const getUserVpcAuthorizations: typeof import("./getUserVpcAuthorizations").getUserVpcAuthorizations;
|
|
24
30
|
export declare const getUserVpcAuthorizationsOutput: typeof import("./getUserVpcAuthorizations").getUserVpcAuthorizationsOutput;
|
|
31
|
+
export { PrivateZoneArgs, PrivateZoneState } from "./privateZone";
|
|
32
|
+
export type PrivateZone = import("./privateZone").PrivateZone;
|
|
33
|
+
export declare const PrivateZone: typeof import("./privateZone").PrivateZone;
|
|
25
34
|
export { RecordArgs, RecordState } from "./record";
|
|
26
35
|
export type Record = import("./record").Record;
|
|
27
36
|
export declare const Record: typeof import("./record").Record;
|
package/privatezone/index.js
CHANGED
|
@@ -2,9 +2,15 @@
|
|
|
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.UserVpcAuthorization = exports.ResolverRule = exports.ResolverEndpoint = exports.Record = exports.getUserVpcAuthorizationsOutput = exports.getUserVpcAuthorizations = exports.getUserVpcAuthorizationOutput = exports.getUserVpcAuthorization = exports.getResolverRulesOutput = exports.getResolverRules = exports.getResolverRuleOutput = exports.getResolverRule = exports.getResolverEndpointsOutput = exports.getResolverEndpoints = exports.getResolverEndpointOutput = exports.getResolverEndpoint = exports.getRecordsOutput = exports.getRecords = exports.getRecordOutput = exports.getRecord = void 0;
|
|
5
|
+
exports.UserVpcAuthorization = exports.ResolverRule = exports.ResolverEndpoint = exports.Record = exports.PrivateZone = exports.getUserVpcAuthorizationsOutput = exports.getUserVpcAuthorizations = exports.getUserVpcAuthorizationOutput = exports.getUserVpcAuthorization = exports.getResolverRulesOutput = exports.getResolverRules = exports.getResolverRuleOutput = exports.getResolverRule = exports.getResolverEndpointsOutput = exports.getResolverEndpoints = exports.getResolverEndpointOutput = exports.getResolverEndpoint = exports.getRecordsOutput = exports.getRecords = exports.getRecordOutput = exports.getRecord = exports.getPrivateZonesOutput = exports.getPrivateZones = exports.getPrivateZoneOutput = exports.getPrivateZone = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
|
+
exports.getPrivateZone = null;
|
|
9
|
+
exports.getPrivateZoneOutput = null;
|
|
10
|
+
utilities.lazyLoad(exports, ["getPrivateZone", "getPrivateZoneOutput"], () => require("./getPrivateZone"));
|
|
11
|
+
exports.getPrivateZones = null;
|
|
12
|
+
exports.getPrivateZonesOutput = null;
|
|
13
|
+
utilities.lazyLoad(exports, ["getPrivateZones", "getPrivateZonesOutput"], () => require("./getPrivateZones"));
|
|
8
14
|
exports.getRecord = null;
|
|
9
15
|
exports.getRecordOutput = null;
|
|
10
16
|
utilities.lazyLoad(exports, ["getRecord", "getRecordOutput"], () => require("./getRecord"));
|
|
@@ -29,6 +35,8 @@ utilities.lazyLoad(exports, ["getUserVpcAuthorization", "getUserVpcAuthorization
|
|
|
29
35
|
exports.getUserVpcAuthorizations = null;
|
|
30
36
|
exports.getUserVpcAuthorizationsOutput = null;
|
|
31
37
|
utilities.lazyLoad(exports, ["getUserVpcAuthorizations", "getUserVpcAuthorizationsOutput"], () => require("./getUserVpcAuthorizations"));
|
|
38
|
+
exports.PrivateZone = null;
|
|
39
|
+
utilities.lazyLoad(exports, ["PrivateZone"], () => require("./privateZone"));
|
|
32
40
|
exports.Record = null;
|
|
33
41
|
utilities.lazyLoad(exports, ["Record"], () => require("./record"));
|
|
34
42
|
exports.ResolverEndpoint = null;
|
|
@@ -41,6 +49,8 @@ const _module = {
|
|
|
41
49
|
version: utilities.getVersion(),
|
|
42
50
|
construct: (name, type, urn) => {
|
|
43
51
|
switch (type) {
|
|
52
|
+
case "volcenginecc:privatezone/privateZone:PrivateZone":
|
|
53
|
+
return new exports.PrivateZone(name, undefined, { urn });
|
|
44
54
|
case "volcenginecc:privatezone/record:Record":
|
|
45
55
|
return new exports.Record(name, undefined, { urn });
|
|
46
56
|
case "volcenginecc:privatezone/resolverEndpoint:ResolverEndpoint":
|
|
@@ -54,6 +64,7 @@ const _module = {
|
|
|
54
64
|
}
|
|
55
65
|
},
|
|
56
66
|
};
|
|
67
|
+
pulumi.runtime.registerResourceModule("volcenginecc", "privatezone/privateZone", _module);
|
|
57
68
|
pulumi.runtime.registerResourceModule("volcenginecc", "privatezone/record", _module);
|
|
58
69
|
pulumi.runtime.registerResourceModule("volcenginecc", "privatezone/resolverEndpoint", _module);
|
|
59
70
|
pulumi.runtime.registerResourceModule("volcenginecc", "privatezone/resolverRule", _module);
|
package/privatezone/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../privatezone/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../privatezone/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Private network resolution
|
|
6
|
+
*
|
|
7
|
+
* ## Import
|
|
8
|
+
*
|
|
9
|
+
* ```sh
|
|
10
|
+
* $ pulumi import volcenginecc:privatezone/privateZone:PrivateZone example "zid"
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class PrivateZone extends pulumi.CustomResource {
|
|
14
|
+
/**
|
|
15
|
+
* Get an existing PrivateZone resource's state with the given name, ID, and optional extra
|
|
16
|
+
* properties used to qualify the lookup.
|
|
17
|
+
*
|
|
18
|
+
* @param name The _unique_ name of the resulting resource.
|
|
19
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
20
|
+
* @param state Any extra arguments used during the lookup.
|
|
21
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
22
|
+
*/
|
|
23
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: PrivateZoneState, opts?: pulumi.CustomResourceOptions): PrivateZone;
|
|
24
|
+
/**
|
|
25
|
+
* Returns true if the given object is an instance of PrivateZone. This is designed to work even
|
|
26
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
27
|
+
*/
|
|
28
|
+
static isInstance(obj: any): obj is PrivateZone;
|
|
29
|
+
/**
|
|
30
|
+
* Domain creation time
|
|
31
|
+
*/
|
|
32
|
+
readonly createdAt: pulumi.Output<string>;
|
|
33
|
+
/**
|
|
34
|
+
* Most recent operator
|
|
35
|
+
*/
|
|
36
|
+
readonly lastOperator: pulumi.Output<string>;
|
|
37
|
+
/**
|
|
38
|
+
* Enable load balancing: 0 to disable, 1 to enable. Default is 0
|
|
39
|
+
*/
|
|
40
|
+
readonly lineMode: pulumi.Output<number>;
|
|
41
|
+
/**
|
|
42
|
+
* Name of the project the domain belongs to. Default is default
|
|
43
|
+
*/
|
|
44
|
+
readonly projectName: pulumi.Output<string>;
|
|
45
|
+
/**
|
|
46
|
+
* Number of DNS records under the domain name
|
|
47
|
+
*/
|
|
48
|
+
readonly recordCount: pulumi.Output<number>;
|
|
49
|
+
/**
|
|
50
|
+
* Enable recursive resolution: true to enable, false to disable. Default is false
|
|
51
|
+
*/
|
|
52
|
+
readonly recursionMode: pulumi.Output<boolean>;
|
|
53
|
+
/**
|
|
54
|
+
* Remarks. Default is an empty string
|
|
55
|
+
*/
|
|
56
|
+
readonly remark: pulumi.Output<string>;
|
|
57
|
+
readonly tags: pulumi.Output<outputs.privatezone.PrivateZoneTag[]>;
|
|
58
|
+
/**
|
|
59
|
+
* Most recent update time of the domain
|
|
60
|
+
*/
|
|
61
|
+
readonly updatedAt: pulumi.Output<string>;
|
|
62
|
+
readonly vpcs: pulumi.Output<outputs.privatezone.PrivateZoneVpc[]>;
|
|
63
|
+
/**
|
|
64
|
+
* Unique ID identifying the domain name
|
|
65
|
+
*/
|
|
66
|
+
readonly zid: pulumi.Output<string>;
|
|
67
|
+
/**
|
|
68
|
+
* Domain name, can be a second-level or multi-level domain
|
|
69
|
+
*/
|
|
70
|
+
readonly zoneName: pulumi.Output<string>;
|
|
71
|
+
/**
|
|
72
|
+
* Create a PrivateZone resource with the given unique name, arguments, and options.
|
|
73
|
+
*
|
|
74
|
+
* @param name The _unique_ name of the resource.
|
|
75
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
76
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
77
|
+
*/
|
|
78
|
+
constructor(name: string, args: PrivateZoneArgs, opts?: pulumi.CustomResourceOptions);
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* Input properties used for looking up and filtering PrivateZone resources.
|
|
82
|
+
*/
|
|
83
|
+
export interface PrivateZoneState {
|
|
84
|
+
/**
|
|
85
|
+
* Domain creation time
|
|
86
|
+
*/
|
|
87
|
+
createdAt?: pulumi.Input<string>;
|
|
88
|
+
/**
|
|
89
|
+
* Most recent operator
|
|
90
|
+
*/
|
|
91
|
+
lastOperator?: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* Enable load balancing: 0 to disable, 1 to enable. Default is 0
|
|
94
|
+
*/
|
|
95
|
+
lineMode?: pulumi.Input<number>;
|
|
96
|
+
/**
|
|
97
|
+
* Name of the project the domain belongs to. Default is default
|
|
98
|
+
*/
|
|
99
|
+
projectName?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Number of DNS records under the domain name
|
|
102
|
+
*/
|
|
103
|
+
recordCount?: pulumi.Input<number>;
|
|
104
|
+
/**
|
|
105
|
+
* Enable recursive resolution: true to enable, false to disable. Default is false
|
|
106
|
+
*/
|
|
107
|
+
recursionMode?: pulumi.Input<boolean>;
|
|
108
|
+
/**
|
|
109
|
+
* Remarks. Default is an empty string
|
|
110
|
+
*/
|
|
111
|
+
remark?: pulumi.Input<string>;
|
|
112
|
+
tags?: pulumi.Input<pulumi.Input<inputs.privatezone.PrivateZoneTag>[]>;
|
|
113
|
+
/**
|
|
114
|
+
* Most recent update time of the domain
|
|
115
|
+
*/
|
|
116
|
+
updatedAt?: pulumi.Input<string>;
|
|
117
|
+
vpcs?: pulumi.Input<pulumi.Input<inputs.privatezone.PrivateZoneVpc>[]>;
|
|
118
|
+
/**
|
|
119
|
+
* Unique ID identifying the domain name
|
|
120
|
+
*/
|
|
121
|
+
zid?: pulumi.Input<string>;
|
|
122
|
+
/**
|
|
123
|
+
* Domain name, can be a second-level or multi-level domain
|
|
124
|
+
*/
|
|
125
|
+
zoneName?: pulumi.Input<string>;
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* The set of arguments for constructing a PrivateZone resource.
|
|
129
|
+
*/
|
|
130
|
+
export interface PrivateZoneArgs {
|
|
131
|
+
/**
|
|
132
|
+
* Enable load balancing: 0 to disable, 1 to enable. Default is 0
|
|
133
|
+
*/
|
|
134
|
+
lineMode?: pulumi.Input<number>;
|
|
135
|
+
/**
|
|
136
|
+
* Name of the project the domain belongs to. Default is default
|
|
137
|
+
*/
|
|
138
|
+
projectName?: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* Enable recursive resolution: true to enable, false to disable. Default is false
|
|
141
|
+
*/
|
|
142
|
+
recursionMode?: pulumi.Input<boolean>;
|
|
143
|
+
/**
|
|
144
|
+
* Remarks. Default is an empty string
|
|
145
|
+
*/
|
|
146
|
+
remark?: pulumi.Input<string>;
|
|
147
|
+
tags?: pulumi.Input<pulumi.Input<inputs.privatezone.PrivateZoneTag>[]>;
|
|
148
|
+
vpcs?: pulumi.Input<pulumi.Input<inputs.privatezone.PrivateZoneVpc>[]>;
|
|
149
|
+
/**
|
|
150
|
+
* Domain name, can be a second-level or multi-level domain
|
|
151
|
+
*/
|
|
152
|
+
zoneName: pulumi.Input<string>;
|
|
153
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
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.PrivateZone = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Private network resolution
|
|
10
|
+
*
|
|
11
|
+
* ## Import
|
|
12
|
+
*
|
|
13
|
+
* ```sh
|
|
14
|
+
* $ pulumi import volcenginecc:privatezone/privateZone:PrivateZone example "zid"
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
class PrivateZone extends pulumi.CustomResource {
|
|
18
|
+
/**
|
|
19
|
+
* Get an existing PrivateZone 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 PrivateZone(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of PrivateZone. 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'] === PrivateZone.__pulumiType;
|
|
39
|
+
}
|
|
40
|
+
constructor(name, argsOrState, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (opts.id) {
|
|
44
|
+
const state = argsOrState;
|
|
45
|
+
resourceInputs["createdAt"] = state ? state.createdAt : undefined;
|
|
46
|
+
resourceInputs["lastOperator"] = state ? state.lastOperator : undefined;
|
|
47
|
+
resourceInputs["lineMode"] = state ? state.lineMode : undefined;
|
|
48
|
+
resourceInputs["projectName"] = state ? state.projectName : undefined;
|
|
49
|
+
resourceInputs["recordCount"] = state ? state.recordCount : undefined;
|
|
50
|
+
resourceInputs["recursionMode"] = state ? state.recursionMode : undefined;
|
|
51
|
+
resourceInputs["remark"] = state ? state.remark : undefined;
|
|
52
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
53
|
+
resourceInputs["updatedAt"] = state ? state.updatedAt : undefined;
|
|
54
|
+
resourceInputs["vpcs"] = state ? state.vpcs : undefined;
|
|
55
|
+
resourceInputs["zid"] = state ? state.zid : undefined;
|
|
56
|
+
resourceInputs["zoneName"] = state ? state.zoneName : undefined;
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
const args = argsOrState;
|
|
60
|
+
if ((!args || args.zoneName === undefined) && !opts.urn) {
|
|
61
|
+
throw new Error("Missing required property 'zoneName'");
|
|
62
|
+
}
|
|
63
|
+
resourceInputs["lineMode"] = args ? args.lineMode : undefined;
|
|
64
|
+
resourceInputs["projectName"] = args ? args.projectName : undefined;
|
|
65
|
+
resourceInputs["recursionMode"] = args ? args.recursionMode : undefined;
|
|
66
|
+
resourceInputs["remark"] = args ? args.remark : undefined;
|
|
67
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
68
|
+
resourceInputs["vpcs"] = args ? args.vpcs : undefined;
|
|
69
|
+
resourceInputs["zoneName"] = args ? args.zoneName : undefined;
|
|
70
|
+
resourceInputs["createdAt"] = undefined /*out*/;
|
|
71
|
+
resourceInputs["lastOperator"] = undefined /*out*/;
|
|
72
|
+
resourceInputs["recordCount"] = undefined /*out*/;
|
|
73
|
+
resourceInputs["updatedAt"] = undefined /*out*/;
|
|
74
|
+
resourceInputs["zid"] = undefined /*out*/;
|
|
75
|
+
}
|
|
76
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
77
|
+
super(PrivateZone.__pulumiType, name, resourceInputs, opts);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
exports.PrivateZone = PrivateZone;
|
|
81
|
+
/** @internal */
|
|
82
|
+
PrivateZone.__pulumiType = 'volcenginecc:privatezone/privateZone:PrivateZone';
|
|
83
|
+
//# sourceMappingURL=privateZone.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"privateZone.js","sourceRoot":"","sources":["../../privatezone/privateZone.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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"}
|
|
@@ -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/types/input.d.ts
CHANGED
|
@@ -7747,6 +7747,26 @@ export declare namespace privatelink {
|
|
|
7747
7747
|
}
|
|
7748
7748
|
}
|
|
7749
7749
|
export declare namespace privatezone {
|
|
7750
|
+
interface PrivateZoneTag {
|
|
7751
|
+
/**
|
|
7752
|
+
* Tag key
|
|
7753
|
+
*/
|
|
7754
|
+
key?: pulumi.Input<string>;
|
|
7755
|
+
/**
|
|
7756
|
+
* Tag value
|
|
7757
|
+
*/
|
|
7758
|
+
value?: pulumi.Input<string>;
|
|
7759
|
+
}
|
|
7760
|
+
interface PrivateZoneVpc {
|
|
7761
|
+
/**
|
|
7762
|
+
* Region where the VPC is located
|
|
7763
|
+
*/
|
|
7764
|
+
region?: pulumi.Input<string>;
|
|
7765
|
+
/**
|
|
7766
|
+
* VPC ID
|
|
7767
|
+
*/
|
|
7768
|
+
vpcId?: pulumi.Input<string>;
|
|
7769
|
+
}
|
|
7750
7770
|
interface RecordRecordSet {
|
|
7751
7771
|
/**
|
|
7752
7772
|
* Full domain name
|
|
@@ -8676,19 +8696,131 @@ export declare namespace rdspostgresql {
|
|
|
8676
8696
|
*/
|
|
8677
8697
|
walLogSpaceLimitEnable?: pulumi.Input<boolean>;
|
|
8678
8698
|
}
|
|
8679
|
-
interface
|
|
8699
|
+
interface DbEndpointInnerAddresses {
|
|
8700
|
+
/**
|
|
8701
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
8702
|
+
*/
|
|
8703
|
+
crossRegionDomain?: pulumi.Input<string>;
|
|
8704
|
+
/**
|
|
8705
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
8706
|
+
*/
|
|
8707
|
+
dnsVisibility?: pulumi.Input<boolean>;
|
|
8708
|
+
/**
|
|
8709
|
+
* Connection domain name
|
|
8710
|
+
*/
|
|
8711
|
+
domain?: pulumi.Input<string>;
|
|
8712
|
+
/**
|
|
8713
|
+
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
8714
|
+
*/
|
|
8715
|
+
domainPrefix?: pulumi.Input<string>;
|
|
8716
|
+
/**
|
|
8717
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
8718
|
+
*/
|
|
8719
|
+
domainVisibilitySetting?: pulumi.Input<string>;
|
|
8720
|
+
/**
|
|
8721
|
+
* EIP ID, valid only for Public addresses.
|
|
8722
|
+
*/
|
|
8723
|
+
eipId?: pulumi.Input<string>;
|
|
8724
|
+
/**
|
|
8725
|
+
* IP address
|
|
8726
|
+
*/
|
|
8727
|
+
ipAddress?: pulumi.Input<string>;
|
|
8728
|
+
/**
|
|
8729
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
8730
|
+
*/
|
|
8731
|
+
networkType?: pulumi.Input<string>;
|
|
8732
|
+
/**
|
|
8733
|
+
* Port number.
|
|
8734
|
+
*/
|
|
8735
|
+
port?: pulumi.Input<string>;
|
|
8736
|
+
/**
|
|
8737
|
+
* Subnet ID
|
|
8738
|
+
*/
|
|
8739
|
+
subnetId?: pulumi.Input<string>;
|
|
8740
|
+
}
|
|
8741
|
+
interface DbEndpointPrivateAddresses {
|
|
8742
|
+
/**
|
|
8743
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
8744
|
+
*/
|
|
8745
|
+
crossRegionDomain?: pulumi.Input<string>;
|
|
8746
|
+
/**
|
|
8747
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
8748
|
+
*/
|
|
8749
|
+
dnsVisibility?: pulumi.Input<boolean>;
|
|
8750
|
+
/**
|
|
8751
|
+
* Connection domain name
|
|
8752
|
+
*/
|
|
8753
|
+
domain?: pulumi.Input<string>;
|
|
8754
|
+
/**
|
|
8755
|
+
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
8756
|
+
*/
|
|
8757
|
+
domainPrefix?: pulumi.Input<string>;
|
|
8758
|
+
/**
|
|
8759
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
8760
|
+
*/
|
|
8761
|
+
domainVisibilitySetting?: pulumi.Input<string>;
|
|
8762
|
+
/**
|
|
8763
|
+
* EIP ID, valid only for Public addresses.
|
|
8764
|
+
*/
|
|
8765
|
+
eipId?: pulumi.Input<string>;
|
|
8766
|
+
/**
|
|
8767
|
+
* IP address
|
|
8768
|
+
*/
|
|
8769
|
+
ipAddress?: pulumi.Input<string>;
|
|
8770
|
+
/**
|
|
8771
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
8772
|
+
*/
|
|
8773
|
+
networkType?: pulumi.Input<string>;
|
|
8774
|
+
/**
|
|
8775
|
+
* Port number.
|
|
8776
|
+
*/
|
|
8777
|
+
port?: pulumi.Input<string>;
|
|
8778
|
+
/**
|
|
8779
|
+
* Subnet ID
|
|
8780
|
+
*/
|
|
8781
|
+
subnetId?: pulumi.Input<string>;
|
|
8782
|
+
}
|
|
8783
|
+
interface DbEndpointPublicAddresses {
|
|
8784
|
+
/**
|
|
8785
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
8786
|
+
*/
|
|
8787
|
+
crossRegionDomain?: pulumi.Input<string>;
|
|
8680
8788
|
/**
|
|
8681
8789
|
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
8682
8790
|
*/
|
|
8683
8791
|
dnsVisibility?: pulumi.Input<boolean>;
|
|
8792
|
+
/**
|
|
8793
|
+
* Connection domain name
|
|
8794
|
+
*/
|
|
8795
|
+
domain?: pulumi.Input<string>;
|
|
8684
8796
|
/**
|
|
8685
8797
|
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
8686
8798
|
*/
|
|
8687
8799
|
domainPrefix?: pulumi.Input<string>;
|
|
8800
|
+
/**
|
|
8801
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
8802
|
+
*/
|
|
8803
|
+
domainVisibilitySetting?: pulumi.Input<string>;
|
|
8804
|
+
/**
|
|
8805
|
+
* EIP ID, valid only for Public addresses.
|
|
8806
|
+
*/
|
|
8807
|
+
eipId?: pulumi.Input<string>;
|
|
8808
|
+
/**
|
|
8809
|
+
* IP address
|
|
8810
|
+
*/
|
|
8811
|
+
ipAddress?: pulumi.Input<string>;
|
|
8812
|
+
/**
|
|
8813
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
8814
|
+
*/
|
|
8815
|
+
networkType?: pulumi.Input<string>;
|
|
8688
8816
|
/**
|
|
8689
8817
|
* Port number.
|
|
8690
8818
|
*/
|
|
8691
8819
|
port?: pulumi.Input<string>;
|
|
8820
|
+
/**
|
|
8821
|
+
* Subnet ID
|
|
8822
|
+
*/
|
|
8823
|
+
subnetId?: pulumi.Input<string>;
|
|
8692
8824
|
}
|
|
8693
8825
|
interface DbEndpointReadOnlyNodeWeight {
|
|
8694
8826
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -16000,6 +16000,34 @@ export declare namespace privatelink {
|
|
|
16000
16000
|
}
|
|
16001
16001
|
}
|
|
16002
16002
|
export declare namespace privatezone {
|
|
16003
|
+
interface GetPrivateZoneTag {
|
|
16004
|
+
/**
|
|
16005
|
+
* Tag key
|
|
16006
|
+
*/
|
|
16007
|
+
key: string;
|
|
16008
|
+
/**
|
|
16009
|
+
* Tag value
|
|
16010
|
+
*/
|
|
16011
|
+
value: string;
|
|
16012
|
+
}
|
|
16013
|
+
interface GetPrivateZoneVpc {
|
|
16014
|
+
/**
|
|
16015
|
+
* Account ID to which the VPC belongs
|
|
16016
|
+
*/
|
|
16017
|
+
accountId: string;
|
|
16018
|
+
/**
|
|
16019
|
+
* Region where the VPC is located
|
|
16020
|
+
*/
|
|
16021
|
+
region: string;
|
|
16022
|
+
/**
|
|
16023
|
+
* Name of the region where the VPC is located
|
|
16024
|
+
*/
|
|
16025
|
+
regionName: string;
|
|
16026
|
+
/**
|
|
16027
|
+
* VPC ID
|
|
16028
|
+
*/
|
|
16029
|
+
vpcId: string;
|
|
16030
|
+
}
|
|
16003
16031
|
interface GetRecordRecordSet {
|
|
16004
16032
|
/**
|
|
16005
16033
|
* Full domain name
|
|
@@ -16092,6 +16120,26 @@ export declare namespace privatezone {
|
|
|
16092
16120
|
*/
|
|
16093
16121
|
vpcId: string;
|
|
16094
16122
|
}
|
|
16123
|
+
interface PrivateZoneTag {
|
|
16124
|
+
/**
|
|
16125
|
+
* Tag key
|
|
16126
|
+
*/
|
|
16127
|
+
key: string;
|
|
16128
|
+
/**
|
|
16129
|
+
* Tag value
|
|
16130
|
+
*/
|
|
16131
|
+
value: string;
|
|
16132
|
+
}
|
|
16133
|
+
interface PrivateZoneVpc {
|
|
16134
|
+
/**
|
|
16135
|
+
* Region where the VPC is located
|
|
16136
|
+
*/
|
|
16137
|
+
region: string;
|
|
16138
|
+
/**
|
|
16139
|
+
* VPC ID
|
|
16140
|
+
*/
|
|
16141
|
+
vpcId: string;
|
|
16142
|
+
}
|
|
16095
16143
|
interface RecordRecordSet {
|
|
16096
16144
|
/**
|
|
16097
16145
|
* Full domain name
|
|
@@ -17905,19 +17953,131 @@ export declare namespace rdspostgresql {
|
|
|
17905
17953
|
*/
|
|
17906
17954
|
walLogSpaceLimitEnable: boolean;
|
|
17907
17955
|
}
|
|
17908
|
-
interface
|
|
17956
|
+
interface DbEndpointInnerAddresses {
|
|
17957
|
+
/**
|
|
17958
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
17959
|
+
*/
|
|
17960
|
+
crossRegionDomain: string;
|
|
17961
|
+
/**
|
|
17962
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
17963
|
+
*/
|
|
17964
|
+
dnsVisibility: boolean;
|
|
17965
|
+
/**
|
|
17966
|
+
* Connection domain name
|
|
17967
|
+
*/
|
|
17968
|
+
domain: string;
|
|
17969
|
+
/**
|
|
17970
|
+
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
17971
|
+
*/
|
|
17972
|
+
domainPrefix: string;
|
|
17973
|
+
/**
|
|
17974
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
17975
|
+
*/
|
|
17976
|
+
domainVisibilitySetting: string;
|
|
17977
|
+
/**
|
|
17978
|
+
* EIP ID, valid only for Public addresses.
|
|
17979
|
+
*/
|
|
17980
|
+
eipId: string;
|
|
17981
|
+
/**
|
|
17982
|
+
* IP address
|
|
17983
|
+
*/
|
|
17984
|
+
ipAddress: string;
|
|
17985
|
+
/**
|
|
17986
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
17987
|
+
*/
|
|
17988
|
+
networkType: string;
|
|
17989
|
+
/**
|
|
17990
|
+
* Port number.
|
|
17991
|
+
*/
|
|
17992
|
+
port: string;
|
|
17993
|
+
/**
|
|
17994
|
+
* Subnet ID
|
|
17995
|
+
*/
|
|
17996
|
+
subnetId: string;
|
|
17997
|
+
}
|
|
17998
|
+
interface DbEndpointPrivateAddresses {
|
|
17999
|
+
/**
|
|
18000
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
18001
|
+
*/
|
|
18002
|
+
crossRegionDomain: string;
|
|
18003
|
+
/**
|
|
18004
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
18005
|
+
*/
|
|
18006
|
+
dnsVisibility: boolean;
|
|
18007
|
+
/**
|
|
18008
|
+
* Connection domain name
|
|
18009
|
+
*/
|
|
18010
|
+
domain: string;
|
|
18011
|
+
/**
|
|
18012
|
+
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
18013
|
+
*/
|
|
18014
|
+
domainPrefix: string;
|
|
18015
|
+
/**
|
|
18016
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
18017
|
+
*/
|
|
18018
|
+
domainVisibilitySetting: string;
|
|
18019
|
+
/**
|
|
18020
|
+
* EIP ID, valid only for Public addresses.
|
|
18021
|
+
*/
|
|
18022
|
+
eipId: string;
|
|
18023
|
+
/**
|
|
18024
|
+
* IP address
|
|
18025
|
+
*/
|
|
18026
|
+
ipAddress: string;
|
|
18027
|
+
/**
|
|
18028
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
18029
|
+
*/
|
|
18030
|
+
networkType: string;
|
|
18031
|
+
/**
|
|
18032
|
+
* Port number.
|
|
18033
|
+
*/
|
|
18034
|
+
port: string;
|
|
18035
|
+
/**
|
|
18036
|
+
* Subnet ID
|
|
18037
|
+
*/
|
|
18038
|
+
subnetId: string;
|
|
18039
|
+
}
|
|
18040
|
+
interface DbEndpointPublicAddresses {
|
|
18041
|
+
/**
|
|
18042
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
18043
|
+
*/
|
|
18044
|
+
crossRegionDomain: string;
|
|
17909
18045
|
/**
|
|
17910
18046
|
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
17911
18047
|
*/
|
|
17912
18048
|
dnsVisibility: boolean;
|
|
18049
|
+
/**
|
|
18050
|
+
* Connection domain name
|
|
18051
|
+
*/
|
|
18052
|
+
domain: string;
|
|
17913
18053
|
/**
|
|
17914
18054
|
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
17915
18055
|
*/
|
|
17916
18056
|
domainPrefix: string;
|
|
18057
|
+
/**
|
|
18058
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
18059
|
+
*/
|
|
18060
|
+
domainVisibilitySetting: string;
|
|
18061
|
+
/**
|
|
18062
|
+
* EIP ID, valid only for Public addresses.
|
|
18063
|
+
*/
|
|
18064
|
+
eipId: string;
|
|
18065
|
+
/**
|
|
18066
|
+
* IP address
|
|
18067
|
+
*/
|
|
18068
|
+
ipAddress: string;
|
|
18069
|
+
/**
|
|
18070
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
18071
|
+
*/
|
|
18072
|
+
networkType: string;
|
|
17917
18073
|
/**
|
|
17918
18074
|
* Port number.
|
|
17919
18075
|
*/
|
|
17920
18076
|
port: string;
|
|
18077
|
+
/**
|
|
18078
|
+
* Subnet ID
|
|
18079
|
+
*/
|
|
18080
|
+
subnetId: string;
|
|
17921
18081
|
}
|
|
17922
18082
|
interface DbEndpointReadOnlyNodeWeight {
|
|
17923
18083
|
/**
|
|
@@ -18001,7 +18161,91 @@ export declare namespace rdspostgresql {
|
|
|
18001
18161
|
*/
|
|
18002
18162
|
walLogSpaceLimitEnable: boolean;
|
|
18003
18163
|
}
|
|
18004
|
-
interface
|
|
18164
|
+
interface GetDbEndpointInnerAddresses {
|
|
18165
|
+
/**
|
|
18166
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
18167
|
+
*/
|
|
18168
|
+
crossRegionDomain: string;
|
|
18169
|
+
/**
|
|
18170
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
18171
|
+
*/
|
|
18172
|
+
dnsVisibility: boolean;
|
|
18173
|
+
/**
|
|
18174
|
+
* Connection domain name
|
|
18175
|
+
*/
|
|
18176
|
+
domain: string;
|
|
18177
|
+
/**
|
|
18178
|
+
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
18179
|
+
*/
|
|
18180
|
+
domainPrefix: string;
|
|
18181
|
+
/**
|
|
18182
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
18183
|
+
*/
|
|
18184
|
+
domainVisibilitySetting: string;
|
|
18185
|
+
/**
|
|
18186
|
+
* EIP ID, valid only for Public addresses.
|
|
18187
|
+
*/
|
|
18188
|
+
eipId: string;
|
|
18189
|
+
/**
|
|
18190
|
+
* IP address
|
|
18191
|
+
*/
|
|
18192
|
+
ipAddress: string;
|
|
18193
|
+
/**
|
|
18194
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
18195
|
+
*/
|
|
18196
|
+
networkType: string;
|
|
18197
|
+
/**
|
|
18198
|
+
* Port number.
|
|
18199
|
+
*/
|
|
18200
|
+
port: string;
|
|
18201
|
+
/**
|
|
18202
|
+
* Subnet ID
|
|
18203
|
+
*/
|
|
18204
|
+
subnetId: string;
|
|
18205
|
+
}
|
|
18206
|
+
interface GetDbEndpointPrivateAddresses {
|
|
18207
|
+
/**
|
|
18208
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
18209
|
+
*/
|
|
18210
|
+
crossRegionDomain: string;
|
|
18211
|
+
/**
|
|
18212
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
18213
|
+
*/
|
|
18214
|
+
dnsVisibility: boolean;
|
|
18215
|
+
/**
|
|
18216
|
+
* Connection domain name
|
|
18217
|
+
*/
|
|
18218
|
+
domain: string;
|
|
18219
|
+
/**
|
|
18220
|
+
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
18221
|
+
*/
|
|
18222
|
+
domainPrefix: string;
|
|
18223
|
+
/**
|
|
18224
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
18225
|
+
*/
|
|
18226
|
+
domainVisibilitySetting: string;
|
|
18227
|
+
/**
|
|
18228
|
+
* EIP ID, valid only for Public addresses.
|
|
18229
|
+
*/
|
|
18230
|
+
eipId: string;
|
|
18231
|
+
/**
|
|
18232
|
+
* IP address
|
|
18233
|
+
*/
|
|
18234
|
+
ipAddress: string;
|
|
18235
|
+
/**
|
|
18236
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
18237
|
+
*/
|
|
18238
|
+
networkType: string;
|
|
18239
|
+
/**
|
|
18240
|
+
* Port number.
|
|
18241
|
+
*/
|
|
18242
|
+
port: string;
|
|
18243
|
+
/**
|
|
18244
|
+
* Subnet ID
|
|
18245
|
+
*/
|
|
18246
|
+
subnetId: string;
|
|
18247
|
+
}
|
|
18248
|
+
interface GetDbEndpointPublicAddresses {
|
|
18005
18249
|
/**
|
|
18006
18250
|
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
18007
18251
|
*/
|