@pulumi/alicloud 3.48.0 → 3.49.0
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/cms/namespace.d.ts +15 -14
- package/cms/namespace.js +3 -2
- package/cms/namespace.js.map +1 -1
- package/ecs/eipAssociation.d.ts +29 -17
- package/ecs/eipAssociation.js +3 -1
- package/ecs/eipAssociation.js.map +1 -1
- package/ess/eciScalingConfiguration.d.ts +6 -3
- package/ess/eciScalingConfiguration.js.map +1 -1
- package/package.json +1 -1
- package/polardb/clusterEndpoint.d.ts +268 -0
- package/polardb/clusterEndpoint.js +130 -0
- package/polardb/clusterEndpoint.js.map +1 -0
- package/polardb/endpoint.d.ts +129 -30
- package/polardb/endpoint.js +9 -21
- package/polardb/endpoint.js.map +1 -1
- package/polardb/endpointAddress.d.ts +8 -3
- package/polardb/endpointAddress.js +3 -2
- package/polardb/endpointAddress.js.map +1 -1
- package/polardb/index.d.ts +6 -0
- package/polardb/index.js +11 -1
- package/polardb/index.js.map +1 -1
- package/polardb/primaryEndpoint.d.ts +214 -0
- package/polardb/primaryEndpoint.js +122 -0
- package/polardb/primaryEndpoint.js.map +1 -0
package/cms/namespace.d.ts
CHANGED
|
@@ -15,7 +15,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
15
15
|
* import * as alicloud from "@pulumi/alicloud";
|
|
16
16
|
*
|
|
17
17
|
* const example = new alicloud.cms.Namespace("example", {
|
|
18
|
-
*
|
|
18
|
+
* description: "tf-example",
|
|
19
|
+
* namespace: "tf-example",
|
|
19
20
|
* specification: "cms.s1.large",
|
|
20
21
|
* });
|
|
21
22
|
* ```
|
|
@@ -25,7 +26,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
25
26
|
* Cloud Monitor Service Namespace can be imported using the id, e.g.
|
|
26
27
|
*
|
|
27
28
|
* ```sh
|
|
28
|
-
* $ pulumi import alicloud:cms/namespace:Namespace example <
|
|
29
|
+
* $ pulumi import alicloud:cms/namespace:Namespace example <id>
|
|
29
30
|
* ```
|
|
30
31
|
*/
|
|
31
32
|
export declare class Namespace extends pulumi.CustomResource {
|
|
@@ -45,19 +46,19 @@ export declare class Namespace extends pulumi.CustomResource {
|
|
|
45
46
|
*/
|
|
46
47
|
static isInstance(obj: any): obj is Namespace;
|
|
47
48
|
/**
|
|
48
|
-
*
|
|
49
|
+
* The description of the namespace.
|
|
49
50
|
*/
|
|
50
51
|
readonly description: pulumi.Output<string | undefined>;
|
|
51
52
|
/**
|
|
52
|
-
*
|
|
53
|
+
* The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
|
|
53
54
|
*/
|
|
54
55
|
readonly namespace: pulumi.Output<string>;
|
|
55
56
|
/**
|
|
56
|
-
*
|
|
57
|
+
* The data retention period. Default value: `cms.s1.3xlarge`. Valid values:
|
|
57
58
|
* - `cms.s1.large`: Data storage duration is 15 days.
|
|
58
59
|
* - `cms.s1.xlarge`: Data storage duration is 32 days.
|
|
59
60
|
* - `cms.s1.2xlarge`: Data storage duration 63 days.
|
|
60
|
-
* - `cms.s1.3xlarge`:
|
|
61
|
+
* - `cms.s1.3xlarge`: Data storage duration 93 days.
|
|
61
62
|
* - `cms.s1.6xlarge`: Data storage duration 185 days.
|
|
62
63
|
* - `cms.s1.12xlarge`: Data storage duration 376 days.
|
|
63
64
|
*/
|
|
@@ -76,19 +77,19 @@ export declare class Namespace extends pulumi.CustomResource {
|
|
|
76
77
|
*/
|
|
77
78
|
export interface NamespaceState {
|
|
78
79
|
/**
|
|
79
|
-
*
|
|
80
|
+
* The description of the namespace.
|
|
80
81
|
*/
|
|
81
82
|
description?: pulumi.Input<string>;
|
|
82
83
|
/**
|
|
83
|
-
*
|
|
84
|
+
* The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
|
|
84
85
|
*/
|
|
85
86
|
namespace?: pulumi.Input<string>;
|
|
86
87
|
/**
|
|
87
|
-
*
|
|
88
|
+
* The data retention period. Default value: `cms.s1.3xlarge`. Valid values:
|
|
88
89
|
* - `cms.s1.large`: Data storage duration is 15 days.
|
|
89
90
|
* - `cms.s1.xlarge`: Data storage duration is 32 days.
|
|
90
91
|
* - `cms.s1.2xlarge`: Data storage duration 63 days.
|
|
91
|
-
* - `cms.s1.3xlarge`:
|
|
92
|
+
* - `cms.s1.3xlarge`: Data storage duration 93 days.
|
|
92
93
|
* - `cms.s1.6xlarge`: Data storage duration 185 days.
|
|
93
94
|
* - `cms.s1.12xlarge`: Data storage duration 376 days.
|
|
94
95
|
*/
|
|
@@ -99,19 +100,19 @@ export interface NamespaceState {
|
|
|
99
100
|
*/
|
|
100
101
|
export interface NamespaceArgs {
|
|
101
102
|
/**
|
|
102
|
-
*
|
|
103
|
+
* The description of the namespace.
|
|
103
104
|
*/
|
|
104
105
|
description?: pulumi.Input<string>;
|
|
105
106
|
/**
|
|
106
|
-
*
|
|
107
|
+
* The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
|
|
107
108
|
*/
|
|
108
109
|
namespace: pulumi.Input<string>;
|
|
109
110
|
/**
|
|
110
|
-
*
|
|
111
|
+
* The data retention period. Default value: `cms.s1.3xlarge`. Valid values:
|
|
111
112
|
* - `cms.s1.large`: Data storage duration is 15 days.
|
|
112
113
|
* - `cms.s1.xlarge`: Data storage duration is 32 days.
|
|
113
114
|
* - `cms.s1.2xlarge`: Data storage duration 63 days.
|
|
114
|
-
* - `cms.s1.3xlarge`:
|
|
115
|
+
* - `cms.s1.3xlarge`: Data storage duration 93 days.
|
|
115
116
|
* - `cms.s1.6xlarge`: Data storage duration 185 days.
|
|
116
117
|
* - `cms.s1.12xlarge`: Data storage duration 376 days.
|
|
117
118
|
*/
|
package/cms/namespace.js
CHANGED
|
@@ -21,7 +21,8 @@ const utilities = require("../utilities");
|
|
|
21
21
|
* import * as alicloud from "@pulumi/alicloud";
|
|
22
22
|
*
|
|
23
23
|
* const example = new alicloud.cms.Namespace("example", {
|
|
24
|
-
*
|
|
24
|
+
* description: "tf-example",
|
|
25
|
+
* namespace: "tf-example",
|
|
25
26
|
* specification: "cms.s1.large",
|
|
26
27
|
* });
|
|
27
28
|
* ```
|
|
@@ -31,7 +32,7 @@ const utilities = require("../utilities");
|
|
|
31
32
|
* Cloud Monitor Service Namespace can be imported using the id, e.g.
|
|
32
33
|
*
|
|
33
34
|
* ```sh
|
|
34
|
-
* $ pulumi import alicloud:cms/namespace:Namespace example <
|
|
35
|
+
* $ pulumi import alicloud:cms/namespace:Namespace example <id>
|
|
35
36
|
* ```
|
|
36
37
|
*/
|
|
37
38
|
class Namespace extends pulumi.CustomResource {
|
package/cms/namespace.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"namespace.js","sourceRoot":"","sources":["../../cms/namespace.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"namespace.js","sourceRoot":"","sources":["../../cms/namespace.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;IA6BD,YAAY,IAAY,EAAE,WAA4C,EAAE,IAAmC;QACvG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyC,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7E;aAAM;YACH,MAAM,IAAI,GAAG,WAAwC,CAAC;YACtD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3E;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;;AA1EL,8BA2EC;AA7DG,gBAAgB;AACO,sBAAY,GAAG,kCAAkC,CAAC"}
|
package/ecs/eipAssociation.d.ts
CHANGED
|
@@ -70,7 +70,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
70
70
|
* Elastic IP address association can be imported using the id, e.g.
|
|
71
71
|
*
|
|
72
72
|
* ```sh
|
|
73
|
-
* $ pulumi import alicloud:ecs/eipAssociation:EipAssociation example
|
|
73
|
+
* $ pulumi import alicloud:ecs/eipAssociation:EipAssociation example <allocation_id>:<instance_id>
|
|
74
74
|
* ```
|
|
75
75
|
*/
|
|
76
76
|
export declare class EipAssociation extends pulumi.CustomResource {
|
|
@@ -90,11 +90,11 @@ export declare class EipAssociation extends pulumi.CustomResource {
|
|
|
90
90
|
*/
|
|
91
91
|
static isInstance(obj: any): obj is EipAssociation;
|
|
92
92
|
/**
|
|
93
|
-
* The
|
|
93
|
+
* The ID of the EIP that you want to associate with an instance.
|
|
94
94
|
*/
|
|
95
95
|
readonly allocationId: pulumi.Output<string>;
|
|
96
96
|
/**
|
|
97
|
-
* When EIP is bound to a NAT gateway, and the NAT gateway adds a DNAT or SNAT entry, set it for `true` can unassociation any way. Default
|
|
97
|
+
* When EIP is bound to a NAT gateway, and the NAT gateway adds a DNAT or SNAT entry, set it for `true` can unassociation any way. Default value: `false`. Valid values: `true`, `false`.
|
|
98
98
|
*/
|
|
99
99
|
readonly force: pulumi.Output<boolean | undefined>;
|
|
100
100
|
/**
|
|
@@ -102,15 +102,19 @@ export declare class EipAssociation extends pulumi.CustomResource {
|
|
|
102
102
|
*/
|
|
103
103
|
readonly instanceId: pulumi.Output<string>;
|
|
104
104
|
/**
|
|
105
|
-
* The type of
|
|
105
|
+
* The type of the instance with which you want to associate the EIP. Valid values: `Nat`, `SlbInstance`, `EcsInstance`, `NetworkInterface`, `HaVip` and `IpAddress`.
|
|
106
106
|
*/
|
|
107
107
|
readonly instanceType: pulumi.Output<string>;
|
|
108
108
|
/**
|
|
109
|
-
* The
|
|
109
|
+
* The association mode. Default value: `NAT`. Valid values: `NAT`, `BINDED`, `MULTI_BINDED`. **Note:** This parameter is required only when `instanceType` is set to `NetworkInterface`.
|
|
110
110
|
*/
|
|
111
|
-
readonly
|
|
111
|
+
readonly mode: pulumi.Output<string>;
|
|
112
112
|
/**
|
|
113
|
-
* The
|
|
113
|
+
* The IP address in the CIDR block of the vSwitch.
|
|
114
|
+
*/
|
|
115
|
+
readonly privateIpAddress: pulumi.Output<string | undefined>;
|
|
116
|
+
/**
|
|
117
|
+
* The ID of the VPC that has IPv4 gateways enabled and that is deployed in the same region as the EIP. When you associate an EIP with an IP address, the system can enable the IP address to access the Internet based on VPC route configurations. **Note:** This parameter is required if `instanceType` is set to `IpAddress`.
|
|
114
118
|
*/
|
|
115
119
|
readonly vpcId: pulumi.Output<string | undefined>;
|
|
116
120
|
/**
|
|
@@ -127,11 +131,11 @@ export declare class EipAssociation extends pulumi.CustomResource {
|
|
|
127
131
|
*/
|
|
128
132
|
export interface EipAssociationState {
|
|
129
133
|
/**
|
|
130
|
-
* The
|
|
134
|
+
* The ID of the EIP that you want to associate with an instance.
|
|
131
135
|
*/
|
|
132
136
|
allocationId?: pulumi.Input<string>;
|
|
133
137
|
/**
|
|
134
|
-
* When EIP is bound to a NAT gateway, and the NAT gateway adds a DNAT or SNAT entry, set it for `true` can unassociation any way. Default
|
|
138
|
+
* When EIP is bound to a NAT gateway, and the NAT gateway adds a DNAT or SNAT entry, set it for `true` can unassociation any way. Default value: `false`. Valid values: `true`, `false`.
|
|
135
139
|
*/
|
|
136
140
|
force?: pulumi.Input<boolean>;
|
|
137
141
|
/**
|
|
@@ -139,15 +143,19 @@ export interface EipAssociationState {
|
|
|
139
143
|
*/
|
|
140
144
|
instanceId?: pulumi.Input<string>;
|
|
141
145
|
/**
|
|
142
|
-
* The type of
|
|
146
|
+
* The type of the instance with which you want to associate the EIP. Valid values: `Nat`, `SlbInstance`, `EcsInstance`, `NetworkInterface`, `HaVip` and `IpAddress`.
|
|
143
147
|
*/
|
|
144
148
|
instanceType?: pulumi.Input<string>;
|
|
145
149
|
/**
|
|
146
|
-
* The
|
|
150
|
+
* The association mode. Default value: `NAT`. Valid values: `NAT`, `BINDED`, `MULTI_BINDED`. **Note:** This parameter is required only when `instanceType` is set to `NetworkInterface`.
|
|
151
|
+
*/
|
|
152
|
+
mode?: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* The IP address in the CIDR block of the vSwitch.
|
|
147
155
|
*/
|
|
148
156
|
privateIpAddress?: pulumi.Input<string>;
|
|
149
157
|
/**
|
|
150
|
-
* The ID of the VPC that has IPv4 gateways enabled and that is deployed in the same region as the EIP. When you associate an EIP with an IP address, the system can enable the IP address to access the Internet based on VPC route configurations. **Note:** This parameter is required if `instanceType` is set to IpAddress
|
|
158
|
+
* The ID of the VPC that has IPv4 gateways enabled and that is deployed in the same region as the EIP. When you associate an EIP with an IP address, the system can enable the IP address to access the Internet based on VPC route configurations. **Note:** This parameter is required if `instanceType` is set to `IpAddress`.
|
|
151
159
|
*/
|
|
152
160
|
vpcId?: pulumi.Input<string>;
|
|
153
161
|
}
|
|
@@ -156,11 +164,11 @@ export interface EipAssociationState {
|
|
|
156
164
|
*/
|
|
157
165
|
export interface EipAssociationArgs {
|
|
158
166
|
/**
|
|
159
|
-
* The
|
|
167
|
+
* The ID of the EIP that you want to associate with an instance.
|
|
160
168
|
*/
|
|
161
169
|
allocationId: pulumi.Input<string>;
|
|
162
170
|
/**
|
|
163
|
-
* When EIP is bound to a NAT gateway, and the NAT gateway adds a DNAT or SNAT entry, set it for `true` can unassociation any way. Default
|
|
171
|
+
* When EIP is bound to a NAT gateway, and the NAT gateway adds a DNAT or SNAT entry, set it for `true` can unassociation any way. Default value: `false`. Valid values: `true`, `false`.
|
|
164
172
|
*/
|
|
165
173
|
force?: pulumi.Input<boolean>;
|
|
166
174
|
/**
|
|
@@ -168,15 +176,19 @@ export interface EipAssociationArgs {
|
|
|
168
176
|
*/
|
|
169
177
|
instanceId: pulumi.Input<string>;
|
|
170
178
|
/**
|
|
171
|
-
* The type of
|
|
179
|
+
* The type of the instance with which you want to associate the EIP. Valid values: `Nat`, `SlbInstance`, `EcsInstance`, `NetworkInterface`, `HaVip` and `IpAddress`.
|
|
172
180
|
*/
|
|
173
181
|
instanceType?: pulumi.Input<string>;
|
|
174
182
|
/**
|
|
175
|
-
* The
|
|
183
|
+
* The association mode. Default value: `NAT`. Valid values: `NAT`, `BINDED`, `MULTI_BINDED`. **Note:** This parameter is required only when `instanceType` is set to `NetworkInterface`.
|
|
184
|
+
*/
|
|
185
|
+
mode?: pulumi.Input<string>;
|
|
186
|
+
/**
|
|
187
|
+
* The IP address in the CIDR block of the vSwitch.
|
|
176
188
|
*/
|
|
177
189
|
privateIpAddress?: pulumi.Input<string>;
|
|
178
190
|
/**
|
|
179
|
-
* The ID of the VPC that has IPv4 gateways enabled and that is deployed in the same region as the EIP. When you associate an EIP with an IP address, the system can enable the IP address to access the Internet based on VPC route configurations. **Note:** This parameter is required if `instanceType` is set to IpAddress
|
|
191
|
+
* The ID of the VPC that has IPv4 gateways enabled and that is deployed in the same region as the EIP. When you associate an EIP with an IP address, the system can enable the IP address to access the Internet based on VPC route configurations. **Note:** This parameter is required if `instanceType` is set to `IpAddress`.
|
|
180
192
|
*/
|
|
181
193
|
vpcId?: pulumi.Input<string>;
|
|
182
194
|
}
|
package/ecs/eipAssociation.js
CHANGED
|
@@ -76,7 +76,7 @@ const utilities = require("../utilities");
|
|
|
76
76
|
* Elastic IP address association can be imported using the id, e.g.
|
|
77
77
|
*
|
|
78
78
|
* ```sh
|
|
79
|
-
* $ pulumi import alicloud:ecs/eipAssociation:EipAssociation example
|
|
79
|
+
* $ pulumi import alicloud:ecs/eipAssociation:EipAssociation example <allocation_id>:<instance_id>
|
|
80
80
|
* ```
|
|
81
81
|
*/
|
|
82
82
|
class EipAssociation extends pulumi.CustomResource {
|
|
@@ -111,6 +111,7 @@ class EipAssociation extends pulumi.CustomResource {
|
|
|
111
111
|
resourceInputs["force"] = state ? state.force : undefined;
|
|
112
112
|
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
|
|
113
113
|
resourceInputs["instanceType"] = state ? state.instanceType : undefined;
|
|
114
|
+
resourceInputs["mode"] = state ? state.mode : undefined;
|
|
114
115
|
resourceInputs["privateIpAddress"] = state ? state.privateIpAddress : undefined;
|
|
115
116
|
resourceInputs["vpcId"] = state ? state.vpcId : undefined;
|
|
116
117
|
}
|
|
@@ -126,6 +127,7 @@ class EipAssociation extends pulumi.CustomResource {
|
|
|
126
127
|
resourceInputs["force"] = args ? args.force : undefined;
|
|
127
128
|
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
|
|
128
129
|
resourceInputs["instanceType"] = args ? args.instanceType : undefined;
|
|
130
|
+
resourceInputs["mode"] = args ? args.mode : undefined;
|
|
129
131
|
resourceInputs["privateIpAddress"] = args ? args.privateIpAddress : undefined;
|
|
130
132
|
resourceInputs["vpcId"] = args ? args.vpcId : undefined;
|
|
131
133
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eipAssociation.js","sourceRoot":"","sources":["../../ecs/eipAssociation.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyEG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;
|
|
1
|
+
{"version":3,"file":"eipAssociation.js","sourceRoot":"","sources":["../../ecs/eipAssociation.ts"],"names":[],"mappings":"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"}
|
|
@@ -111,7 +111,8 @@ export declare class EciScalingConfiguration extends pulumi.CustomResource {
|
|
|
111
111
|
*/
|
|
112
112
|
readonly autoMatchImageCache: pulumi.Output<boolean | undefined>;
|
|
113
113
|
/**
|
|
114
|
-
* The name of the container group.
|
|
114
|
+
* The name of the container group. which must contain 2-128 characters (
|
|
115
|
+
* English), starting with numbers, English lowercase letters , and can contain number, and hypens `-`.
|
|
115
116
|
*/
|
|
116
117
|
readonly containerGroupName: pulumi.Output<string | undefined>;
|
|
117
118
|
/**
|
|
@@ -279,7 +280,8 @@ export interface EciScalingConfigurationState {
|
|
|
279
280
|
*/
|
|
280
281
|
autoMatchImageCache?: pulumi.Input<boolean>;
|
|
281
282
|
/**
|
|
282
|
-
* The name of the container group.
|
|
283
|
+
* The name of the container group. which must contain 2-128 characters (
|
|
284
|
+
* English), starting with numbers, English lowercase letters , and can contain number, and hypens `-`.
|
|
283
285
|
*/
|
|
284
286
|
containerGroupName?: pulumi.Input<string>;
|
|
285
287
|
/**
|
|
@@ -439,7 +441,8 @@ export interface EciScalingConfigurationArgs {
|
|
|
439
441
|
*/
|
|
440
442
|
autoMatchImageCache?: pulumi.Input<boolean>;
|
|
441
443
|
/**
|
|
442
|
-
* The name of the container group.
|
|
444
|
+
* The name of the container group. which must contain 2-128 characters (
|
|
445
|
+
* English), starting with numbers, English lowercase letters , and can contain number, and hypens `-`.
|
|
443
446
|
*/
|
|
444
447
|
containerGroupName?: pulumi.Input<string>;
|
|
445
448
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eciScalingConfiguration.js","sourceRoot":"","sources":["../../ess/eciScalingConfiguration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuEG;AACH,MAAa,uBAAwB,SAAQ,MAAM,CAAC,cAAc;IAC9D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoC,EAAE,IAAmC;QAClI,OAAO,IAAI,uBAAuB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,uBAAuB,CAAC,YAAY,CAAC;IACxE,CAAC;
|
|
1
|
+
{"version":3,"file":"eciScalingConfiguration.js","sourceRoot":"","sources":["../../ess/eciScalingConfiguration.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a PolarDB endpoint resource to manage cluster endpoint of PolarDB cluster.
|
|
4
|
+
*
|
|
5
|
+
* > **NOTE:** Available since v1.217.0
|
|
6
|
+
*
|
|
7
|
+
* > **NOTE:** The default cluster endpoint can not be created or deleted manually.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as alicloud from "@pulumi/alicloud";
|
|
14
|
+
*
|
|
15
|
+
* const defaultNodeClasses = alicloud.polardb.getNodeClasses({
|
|
16
|
+
* dbType: "MySQL",
|
|
17
|
+
* dbVersion: "8.0",
|
|
18
|
+
* payType: "PostPaid",
|
|
19
|
+
* category: "Normal",
|
|
20
|
+
* });
|
|
21
|
+
* const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
|
|
22
|
+
* vpcName: "terraform-example",
|
|
23
|
+
* cidrBlock: "172.16.0.0/16",
|
|
24
|
+
* });
|
|
25
|
+
* const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
|
|
26
|
+
* vpcId: defaultNetwork.id,
|
|
27
|
+
* cidrBlock: "172.16.0.0/24",
|
|
28
|
+
* zoneId: defaultNodeClasses.then(defaultNodeClasses => defaultNodeClasses.classes?.[0]?.zoneId),
|
|
29
|
+
* vswitchName: "terraform-example",
|
|
30
|
+
* });
|
|
31
|
+
* const defaultCluster = new alicloud.polardb.Cluster("defaultCluster", {
|
|
32
|
+
* dbType: "MySQL",
|
|
33
|
+
* dbVersion: "8.0",
|
|
34
|
+
* dbNodeClass: defaultNodeClasses.then(defaultNodeClasses => defaultNodeClasses.classes?.[0]?.supportedEngines?.[0]?.availableResources?.[0]?.dbNodeClass),
|
|
35
|
+
* payType: "PostPaid",
|
|
36
|
+
* vswitchId: defaultSwitch.id,
|
|
37
|
+
* description: "terraform-example",
|
|
38
|
+
* });
|
|
39
|
+
* const defaultClusterEndpoint = new alicloud.polardb.ClusterEndpoint("defaultClusterEndpoint", {dbClusterId: defaultCluster.id});
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* ## Import
|
|
43
|
+
*
|
|
44
|
+
* PolarDB endpoint can be imported using the id, e.g.
|
|
45
|
+
*
|
|
46
|
+
* ```sh
|
|
47
|
+
* $ pulumi import alicloud:polardb/clusterEndpoint:ClusterEndpoint example pc-abc123456:pe-abc123456
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
export declare class ClusterEndpoint extends pulumi.CustomResource {
|
|
51
|
+
/**
|
|
52
|
+
* Get an existing ClusterEndpoint resource's state with the given name, ID, and optional extra
|
|
53
|
+
* properties used to qualify the lookup.
|
|
54
|
+
*
|
|
55
|
+
* @param name The _unique_ name of the resulting resource.
|
|
56
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
57
|
+
* @param state Any extra arguments used during the lookup.
|
|
58
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
59
|
+
*/
|
|
60
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ClusterEndpointState, opts?: pulumi.CustomResourceOptions): ClusterEndpoint;
|
|
61
|
+
/**
|
|
62
|
+
* Returns true if the given object is an instance of ClusterEndpoint. This is designed to work even
|
|
63
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
64
|
+
*/
|
|
65
|
+
static isInstance(obj: any): obj is ClusterEndpoint;
|
|
66
|
+
/**
|
|
67
|
+
* Whether the new node automatically joins the default cluster address. Valid values are `Enable`, `Disable`. When creating a new custom endpoint, default to `Disable`.
|
|
68
|
+
*/
|
|
69
|
+
readonly autoAddNewNodes: pulumi.Output<string>;
|
|
70
|
+
/**
|
|
71
|
+
* Prefix of the specified endpoint. The prefix must be 6 to 30 characters in length, and can contain lowercase letters, digits, and hyphens (-), must start with a letter and end with a digit or letter.
|
|
72
|
+
*/
|
|
73
|
+
readonly connectionPrefix: pulumi.Output<string>;
|
|
74
|
+
/**
|
|
75
|
+
* The Id of cluster that can run database.
|
|
76
|
+
*/
|
|
77
|
+
readonly dbClusterId: pulumi.Output<string>;
|
|
78
|
+
/**
|
|
79
|
+
* The name of the endpoint.
|
|
80
|
+
*/
|
|
81
|
+
readonly dbEndpointDescription: pulumi.Output<string | undefined>;
|
|
82
|
+
/**
|
|
83
|
+
* The ID of the cluster endpoint.
|
|
84
|
+
*/
|
|
85
|
+
readonly dbEndpointId: pulumi.Output<string>;
|
|
86
|
+
/**
|
|
87
|
+
* The advanced settings of the endpoint of Apsara PolarDB clusters are in JSON format. Including the settings of consistency level, transaction splitting, connection pool, and offload reads from primary node. For more details, see the [description of EndpointConfig in the Request parameters table for details](https://www.alibabacloud.com/help/doc-detail/116593.htm).
|
|
88
|
+
*/
|
|
89
|
+
readonly endpointConfig: pulumi.Output<{
|
|
90
|
+
[key: string]: any;
|
|
91
|
+
}>;
|
|
92
|
+
/**
|
|
93
|
+
* Type of endpoint.
|
|
94
|
+
*/
|
|
95
|
+
readonly endpointType: pulumi.Output<string>;
|
|
96
|
+
/**
|
|
97
|
+
* The network type of the endpoint address.
|
|
98
|
+
*/
|
|
99
|
+
readonly netType: pulumi.Output<string | undefined>;
|
|
100
|
+
/**
|
|
101
|
+
* Node id list for endpoint configuration. At least 2 nodes if specified, or if the cluster has more than 3 nodes, read-only endpoint is allowed to mount only one node. Default is all nodes.
|
|
102
|
+
*/
|
|
103
|
+
readonly nodes: pulumi.Output<string[]>;
|
|
104
|
+
/**
|
|
105
|
+
* Port of the specified endpoint. Valid values: 3000 to 5999.
|
|
106
|
+
*/
|
|
107
|
+
readonly port: pulumi.Output<string>;
|
|
108
|
+
/**
|
|
109
|
+
* Read or write mode. Valid values are `ReadWrite`, `ReadOnly`. When creating a new custom endpoint, default to `ReadOnly`.
|
|
110
|
+
*/
|
|
111
|
+
readonly readWriteMode: pulumi.Output<string>;
|
|
112
|
+
/**
|
|
113
|
+
* Specifies whether automatic rotation of SSL certificates is enabled. Valid values: `Enable`,`Disable`.
|
|
114
|
+
* **NOTE:** For a PolarDB for MySQL cluster, this parameter is required, and only one connection string in each endpoint can enable the ssl, for other notes, see [Configure SSL encryption](https://www.alibabacloud.com/help/doc-detail/153182.htm).
|
|
115
|
+
* For a PolarDB for PostgreSQL cluster or a PolarDB-O cluster, this parameter is not required, by default, SSL encryption is enabled for all endpoints.
|
|
116
|
+
*/
|
|
117
|
+
readonly sslAutoRotate: pulumi.Output<string | undefined>;
|
|
118
|
+
/**
|
|
119
|
+
* The specifies SSL certificate download link.
|
|
120
|
+
*/
|
|
121
|
+
readonly sslCertificateUrl: pulumi.Output<string>;
|
|
122
|
+
/**
|
|
123
|
+
* The SSL connection string.
|
|
124
|
+
*/
|
|
125
|
+
readonly sslConnectionString: pulumi.Output<string>;
|
|
126
|
+
/**
|
|
127
|
+
* Specifies how to modify the SSL encryption status. Valid values: `Disable`, `Enable`, `Update`.
|
|
128
|
+
*/
|
|
129
|
+
readonly sslEnabled: pulumi.Output<string | undefined>;
|
|
130
|
+
/**
|
|
131
|
+
* The time when the SSL certificate expires. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
132
|
+
*/
|
|
133
|
+
readonly sslExpireTime: pulumi.Output<string>;
|
|
134
|
+
/**
|
|
135
|
+
* Create a ClusterEndpoint resource with the given unique name, arguments, and options.
|
|
136
|
+
*
|
|
137
|
+
* @param name The _unique_ name of the resource.
|
|
138
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
139
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
140
|
+
*/
|
|
141
|
+
constructor(name: string, args: ClusterEndpointArgs, opts?: pulumi.CustomResourceOptions);
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* Input properties used for looking up and filtering ClusterEndpoint resources.
|
|
145
|
+
*/
|
|
146
|
+
export interface ClusterEndpointState {
|
|
147
|
+
/**
|
|
148
|
+
* Whether the new node automatically joins the default cluster address. Valid values are `Enable`, `Disable`. When creating a new custom endpoint, default to `Disable`.
|
|
149
|
+
*/
|
|
150
|
+
autoAddNewNodes?: pulumi.Input<string>;
|
|
151
|
+
/**
|
|
152
|
+
* Prefix of the specified endpoint. The prefix must be 6 to 30 characters in length, and can contain lowercase letters, digits, and hyphens (-), must start with a letter and end with a digit or letter.
|
|
153
|
+
*/
|
|
154
|
+
connectionPrefix?: pulumi.Input<string>;
|
|
155
|
+
/**
|
|
156
|
+
* The Id of cluster that can run database.
|
|
157
|
+
*/
|
|
158
|
+
dbClusterId?: pulumi.Input<string>;
|
|
159
|
+
/**
|
|
160
|
+
* The name of the endpoint.
|
|
161
|
+
*/
|
|
162
|
+
dbEndpointDescription?: pulumi.Input<string>;
|
|
163
|
+
/**
|
|
164
|
+
* The ID of the cluster endpoint.
|
|
165
|
+
*/
|
|
166
|
+
dbEndpointId?: pulumi.Input<string>;
|
|
167
|
+
/**
|
|
168
|
+
* The advanced settings of the endpoint of Apsara PolarDB clusters are in JSON format. Including the settings of consistency level, transaction splitting, connection pool, and offload reads from primary node. For more details, see the [description of EndpointConfig in the Request parameters table for details](https://www.alibabacloud.com/help/doc-detail/116593.htm).
|
|
169
|
+
*/
|
|
170
|
+
endpointConfig?: pulumi.Input<{
|
|
171
|
+
[key: string]: any;
|
|
172
|
+
}>;
|
|
173
|
+
/**
|
|
174
|
+
* Type of endpoint.
|
|
175
|
+
*/
|
|
176
|
+
endpointType?: pulumi.Input<string>;
|
|
177
|
+
/**
|
|
178
|
+
* The network type of the endpoint address.
|
|
179
|
+
*/
|
|
180
|
+
netType?: pulumi.Input<string>;
|
|
181
|
+
/**
|
|
182
|
+
* Node id list for endpoint configuration. At least 2 nodes if specified, or if the cluster has more than 3 nodes, read-only endpoint is allowed to mount only one node. Default is all nodes.
|
|
183
|
+
*/
|
|
184
|
+
nodes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
185
|
+
/**
|
|
186
|
+
* Port of the specified endpoint. Valid values: 3000 to 5999.
|
|
187
|
+
*/
|
|
188
|
+
port?: pulumi.Input<string>;
|
|
189
|
+
/**
|
|
190
|
+
* Read or write mode. Valid values are `ReadWrite`, `ReadOnly`. When creating a new custom endpoint, default to `ReadOnly`.
|
|
191
|
+
*/
|
|
192
|
+
readWriteMode?: pulumi.Input<string>;
|
|
193
|
+
/**
|
|
194
|
+
* Specifies whether automatic rotation of SSL certificates is enabled. Valid values: `Enable`,`Disable`.
|
|
195
|
+
* **NOTE:** For a PolarDB for MySQL cluster, this parameter is required, and only one connection string in each endpoint can enable the ssl, for other notes, see [Configure SSL encryption](https://www.alibabacloud.com/help/doc-detail/153182.htm).
|
|
196
|
+
* For a PolarDB for PostgreSQL cluster or a PolarDB-O cluster, this parameter is not required, by default, SSL encryption is enabled for all endpoints.
|
|
197
|
+
*/
|
|
198
|
+
sslAutoRotate?: pulumi.Input<string>;
|
|
199
|
+
/**
|
|
200
|
+
* The specifies SSL certificate download link.
|
|
201
|
+
*/
|
|
202
|
+
sslCertificateUrl?: pulumi.Input<string>;
|
|
203
|
+
/**
|
|
204
|
+
* The SSL connection string.
|
|
205
|
+
*/
|
|
206
|
+
sslConnectionString?: pulumi.Input<string>;
|
|
207
|
+
/**
|
|
208
|
+
* Specifies how to modify the SSL encryption status. Valid values: `Disable`, `Enable`, `Update`.
|
|
209
|
+
*/
|
|
210
|
+
sslEnabled?: pulumi.Input<string>;
|
|
211
|
+
/**
|
|
212
|
+
* The time when the SSL certificate expires. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
213
|
+
*/
|
|
214
|
+
sslExpireTime?: pulumi.Input<string>;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* The set of arguments for constructing a ClusterEndpoint resource.
|
|
218
|
+
*/
|
|
219
|
+
export interface ClusterEndpointArgs {
|
|
220
|
+
/**
|
|
221
|
+
* Whether the new node automatically joins the default cluster address. Valid values are `Enable`, `Disable`. When creating a new custom endpoint, default to `Disable`.
|
|
222
|
+
*/
|
|
223
|
+
autoAddNewNodes?: pulumi.Input<string>;
|
|
224
|
+
/**
|
|
225
|
+
* Prefix of the specified endpoint. The prefix must be 6 to 30 characters in length, and can contain lowercase letters, digits, and hyphens (-), must start with a letter and end with a digit or letter.
|
|
226
|
+
*/
|
|
227
|
+
connectionPrefix?: pulumi.Input<string>;
|
|
228
|
+
/**
|
|
229
|
+
* The Id of cluster that can run database.
|
|
230
|
+
*/
|
|
231
|
+
dbClusterId: pulumi.Input<string>;
|
|
232
|
+
/**
|
|
233
|
+
* The name of the endpoint.
|
|
234
|
+
*/
|
|
235
|
+
dbEndpointDescription?: pulumi.Input<string>;
|
|
236
|
+
/**
|
|
237
|
+
* The advanced settings of the endpoint of Apsara PolarDB clusters are in JSON format. Including the settings of consistency level, transaction splitting, connection pool, and offload reads from primary node. For more details, see the [description of EndpointConfig in the Request parameters table for details](https://www.alibabacloud.com/help/doc-detail/116593.htm).
|
|
238
|
+
*/
|
|
239
|
+
endpointConfig?: pulumi.Input<{
|
|
240
|
+
[key: string]: any;
|
|
241
|
+
}>;
|
|
242
|
+
/**
|
|
243
|
+
* The network type of the endpoint address.
|
|
244
|
+
*/
|
|
245
|
+
netType?: pulumi.Input<string>;
|
|
246
|
+
/**
|
|
247
|
+
* Node id list for endpoint configuration. At least 2 nodes if specified, or if the cluster has more than 3 nodes, read-only endpoint is allowed to mount only one node. Default is all nodes.
|
|
248
|
+
*/
|
|
249
|
+
nodes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
250
|
+
/**
|
|
251
|
+
* Port of the specified endpoint. Valid values: 3000 to 5999.
|
|
252
|
+
*/
|
|
253
|
+
port?: pulumi.Input<string>;
|
|
254
|
+
/**
|
|
255
|
+
* Read or write mode. Valid values are `ReadWrite`, `ReadOnly`. When creating a new custom endpoint, default to `ReadOnly`.
|
|
256
|
+
*/
|
|
257
|
+
readWriteMode?: pulumi.Input<string>;
|
|
258
|
+
/**
|
|
259
|
+
* Specifies whether automatic rotation of SSL certificates is enabled. Valid values: `Enable`,`Disable`.
|
|
260
|
+
* **NOTE:** For a PolarDB for MySQL cluster, this parameter is required, and only one connection string in each endpoint can enable the ssl, for other notes, see [Configure SSL encryption](https://www.alibabacloud.com/help/doc-detail/153182.htm).
|
|
261
|
+
* For a PolarDB for PostgreSQL cluster or a PolarDB-O cluster, this parameter is not required, by default, SSL encryption is enabled for all endpoints.
|
|
262
|
+
*/
|
|
263
|
+
sslAutoRotate?: pulumi.Input<string>;
|
|
264
|
+
/**
|
|
265
|
+
* Specifies how to modify the SSL encryption status. Valid values: `Disable`, `Enable`, `Update`.
|
|
266
|
+
*/
|
|
267
|
+
sslEnabled?: pulumi.Input<string>;
|
|
268
|
+
}
|