@volcengine/pulumi-volcenginecc 0.0.32 → 0.0.33
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/alb/acl.d.ts +20 -21
- package/alb/acl.js +2 -2
- package/alb/acl.js.map +1 -1
- package/alb/getAcl.d.ts +11 -11
- package/alb/getListener.d.ts +20 -20
- package/alb/getServerGroup.d.ts +9 -9
- package/alb/listener.d.ts +52 -52
- package/alb/listener.js +1 -1
- package/alb/serverGroup.d.ts +24 -24
- package/alb/serverGroup.js +1 -1
- package/cr/endpointAclPolicy.d.ts +107 -0
- package/cr/endpointAclPolicy.js +84 -0
- package/cr/endpointAclPolicy.js.map +1 -0
- package/cr/getEndpointAclPolicies.d.ts +22 -0
- package/cr/getEndpointAclPolicies.js +24 -0
- package/cr/getEndpointAclPolicies.js.map +1 -0
- package/cr/getEndpointAclPolicy.d.ts +52 -0
- package/cr/getEndpointAclPolicy.js +28 -0
- package/cr/getEndpointAclPolicy.js.map +1 -0
- package/cr/getRegistry.d.ts +14 -10
- package/cr/getRegistry.js.map +1 -1
- package/cr/index.d.ts +9 -0
- package/cr/index.js +12 -1
- package/cr/index.js.map +1 -1
- package/cr/registry.d.ts +40 -25
- package/cr/registry.js +6 -1
- package/cr/registry.js.map +1 -1
- package/iam/accesskey.d.ts +23 -27
- package/iam/accesskey.js +2 -2
- package/iam/accesskey.js.map +1 -1
- package/iam/getAccesskey.d.ts +10 -10
- package/organization/getServiceControlPolicies.d.ts +22 -0
- package/organization/getServiceControlPolicies.js +24 -0
- package/organization/getServiceControlPolicies.js.map +1 -0
- package/organization/getServiceControlPolicy.d.ts +69 -0
- package/organization/getServiceControlPolicy.js +28 -0
- package/organization/getServiceControlPolicy.js.map +1 -0
- package/organization/index.d.ts +9 -0
- package/organization/index.js +12 -1
- package/organization/index.js.map +1 -1
- package/organization/serviceControlPolicy.d.ts +118 -0
- package/organization/serviceControlPolicy.js +78 -0
- package/organization/serviceControlPolicy.js.map +1 -0
- package/package.json +1 -1
- package/transitrouter/getPeerAttachment.d.ts +109 -0
- package/transitrouter/getPeerAttachment.js +28 -0
- package/transitrouter/getPeerAttachment.js.map +1 -0
- package/transitrouter/getPeerAttachments.d.ts +22 -0
- package/transitrouter/getPeerAttachments.js +24 -0
- package/transitrouter/getPeerAttachments.js.map +1 -0
- package/transitrouter/index.d.ts +9 -0
- package/transitrouter/index.js +12 -1
- package/transitrouter/index.js.map +1 -1
- package/transitrouter/peerAttachment.d.ts +235 -0
- package/transitrouter/peerAttachment.js +122 -0
- package/transitrouter/peerAttachment.js.map +1 -0
- package/types/input.d.ts +101 -50
- package/types/output.d.ts +199 -102
- package/vpn/getSslVpnClientCert.d.ts +93 -0
- package/vpn/getSslVpnClientCert.js +28 -0
- package/vpn/getSslVpnClientCert.js.map +1 -0
- package/vpn/getSslVpnClientCerts.d.ts +22 -0
- package/vpn/getSslVpnClientCerts.js +24 -0
- package/vpn/getSslVpnClientCerts.js.map +1 -0
- package/vpn/index.d.ts +9 -0
- package/vpn/index.js +12 -1
- package/vpn/index.js.map +1 -1
- package/vpn/sslVpnClientCert.d.ts +183 -0
- package/vpn/sslVpnClientCert.js +104 -0
- package/vpn/sslVpnClientCert.js.map +1 -0
package/types/output.d.ts
CHANGED
|
@@ -2,27 +2,43 @@ import * as outputs from "../types/output";
|
|
|
2
2
|
export declare namespace alb {
|
|
3
3
|
interface AclAclEntry {
|
|
4
4
|
/**
|
|
5
|
-
* Description of the IP entry. Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces
|
|
5
|
+
* Description of the IP entry. Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces, equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
|
|
6
6
|
*/
|
|
7
7
|
description: string;
|
|
8
8
|
/**
|
|
9
|
-
* IP entry address range
|
|
9
|
+
* IP entry address range. Only CIDR addresses are supported.
|
|
10
10
|
*/
|
|
11
11
|
entry: string;
|
|
12
12
|
}
|
|
13
13
|
interface AclListener {
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* Listener control mode for this access control policy group. white: allowlist mode; black: denylist mode
|
|
16
16
|
*/
|
|
17
17
|
aclType: string;
|
|
18
|
+
/**
|
|
19
|
+
* Listener ID
|
|
20
|
+
*/
|
|
21
|
+
listenerId: string;
|
|
22
|
+
/**
|
|
23
|
+
* Listener name
|
|
24
|
+
*/
|
|
25
|
+
listenerName: string;
|
|
26
|
+
/**
|
|
27
|
+
* Listener port
|
|
28
|
+
*/
|
|
29
|
+
port: number;
|
|
30
|
+
/**
|
|
31
|
+
* Listener protocol
|
|
32
|
+
*/
|
|
33
|
+
protocol: string;
|
|
18
34
|
}
|
|
19
35
|
interface AclTag {
|
|
20
36
|
/**
|
|
21
|
-
*
|
|
37
|
+
* Tag key for user tags. Length must be between 1 and 128 characters. Case sensitive. Cannot start with any combination of volc: or sys: in any case. Cannot start or end with a space. Can include characters from any language, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @. Tag keys for the same resource must be unique.
|
|
22
38
|
*/
|
|
23
39
|
key: string;
|
|
24
40
|
/**
|
|
25
|
-
* User tag value. Length
|
|
41
|
+
* User tag value. Length must be between 0 and 256 characters. Case sensitive. Cannot start or end with a space. Supports characters from all languages, numbers, spaces (), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @.
|
|
26
42
|
*/
|
|
27
43
|
value: string;
|
|
28
44
|
}
|
|
@@ -66,17 +82,17 @@ export declare namespace alb {
|
|
|
66
82
|
}
|
|
67
83
|
interface GetAclAclEntry {
|
|
68
84
|
/**
|
|
69
|
-
* Description of the IP entry. Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces
|
|
85
|
+
* Description of the IP entry. Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces, equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
|
|
70
86
|
*/
|
|
71
87
|
description: string;
|
|
72
88
|
/**
|
|
73
|
-
* IP entry address range
|
|
89
|
+
* IP entry address range. Only CIDR addresses are supported.
|
|
74
90
|
*/
|
|
75
91
|
entry: string;
|
|
76
92
|
}
|
|
77
93
|
interface GetAclListener {
|
|
78
94
|
/**
|
|
79
|
-
*
|
|
95
|
+
* Listener control mode for this access control policy group. white: allowlist mode; black: denylist mode
|
|
80
96
|
*/
|
|
81
97
|
aclType: string;
|
|
82
98
|
/**
|
|
@@ -98,11 +114,11 @@ export declare namespace alb {
|
|
|
98
114
|
}
|
|
99
115
|
interface GetAclTag {
|
|
100
116
|
/**
|
|
101
|
-
*
|
|
117
|
+
* Tag key for user tags. Length must be between 1 and 128 characters. Case sensitive. Cannot start with any combination of volc: or sys: in any case. Cannot start or end with a space. Can include characters from any language, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @. Tag keys for the same resource must be unique.
|
|
102
118
|
*/
|
|
103
119
|
key: string;
|
|
104
120
|
/**
|
|
105
|
-
* User tag value. Length
|
|
121
|
+
* User tag value. Length must be between 0 and 256 characters. Case sensitive. Cannot start or end with a space. Supports characters from all languages, numbers, spaces (), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @.
|
|
106
122
|
*/
|
|
107
123
|
value: string;
|
|
108
124
|
}
|
|
@@ -156,7 +172,7 @@ export declare namespace alb {
|
|
|
156
172
|
}
|
|
157
173
|
interface GetListenerDomainExtension {
|
|
158
174
|
/**
|
|
159
|
-
* Server certificate ID used by the domain. Effective when the certificate source is cert_center.
|
|
175
|
+
* Server certificate ID used by the domain name. Effective when the certificate source is cert_center.
|
|
160
176
|
*/
|
|
161
177
|
certCenterCertificateId: string;
|
|
162
178
|
/**
|
|
@@ -164,19 +180,19 @@ export declare namespace alb {
|
|
|
164
180
|
*/
|
|
165
181
|
certificateId: string;
|
|
166
182
|
/**
|
|
167
|
-
* Source of the server certificate used by the domain. Values: alb: certificate uploaded via ALB. cert_center: SSL certificate purchased or uploaded
|
|
183
|
+
* Source of the server certificate used by the domain. Values: alb: certificate uploaded via ALB. cert_center: SSL certificate purchased or uploaded via Volcano Engine Certificate Center.
|
|
168
184
|
*/
|
|
169
185
|
certificateSource: string;
|
|
170
186
|
/**
|
|
171
|
-
* Domain name. Usually cannot be empty. If the instance supports automatic selection of
|
|
187
|
+
* Domain name. Usually cannot be empty. If the instance supports automatic selection of extension certificates (SniAutoMatch is on), Domain must be set to an empty string. Must contain at least one '.' and cannot start or end with '.'. Only lowercase letters, digits, '.', '-', and '*' are allowed. Length limit: 1–128 characters. Wildcard domain: use '*' to replace one or more characters. '*' must be at the beginning or end of the domain name. '*' cannot appear twice in the same domain name. No characters other than '.' can appear before or after '*'. Exact domain: an exact domain name that complies with domain name specifications. Domain names under the same HTTPS listener cannot be duplicated. Domain name matching is case-insensitive.
|
|
172
188
|
*/
|
|
173
189
|
domain: string;
|
|
174
190
|
/**
|
|
175
|
-
*
|
|
191
|
+
* Extension domain name ID.
|
|
176
192
|
*/
|
|
177
193
|
domainExtensionId: string;
|
|
178
194
|
/**
|
|
179
|
-
* Listener ID
|
|
195
|
+
* Listener ID associated with the extended domain name.
|
|
180
196
|
*/
|
|
181
197
|
listenerId: string;
|
|
182
198
|
/**
|
|
@@ -184,7 +200,7 @@ export declare namespace alb {
|
|
|
184
200
|
*/
|
|
185
201
|
pcaLeafCertificateId: string;
|
|
186
202
|
/**
|
|
187
|
-
* If the instance supports automatic selection of
|
|
203
|
+
* If the instance supports automatic selection of extension certificates, that is, when SniAutoMatch is set to on, Domain is an empty string. San refers to the certificate's extension domain names, separated by commas.
|
|
188
204
|
*/
|
|
189
205
|
san: string;
|
|
190
206
|
}
|
|
@@ -200,11 +216,11 @@ export declare namespace alb {
|
|
|
200
216
|
}
|
|
201
217
|
interface GetListenerTag {
|
|
202
218
|
/**
|
|
203
|
-
*
|
|
219
|
+
* User tag key. Rules: Length must be between 1 and 128 characters. Case sensitive. Cannot start with any case combination of volc:. Cannot start or end with a space. Allowed characters include all languages, numbers, spaces, parentheses (), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @. Tag keys for the same resource cannot be duplicated.
|
|
204
220
|
*/
|
|
205
221
|
key: string;
|
|
206
222
|
/**
|
|
207
|
-
*
|
|
223
|
+
* User tag value. Rules: Length must be between 0 and 256 characters. Case sensitive. Cannot start or end with a space. Allowed characters include all languages, numbers, spaces, parentheses (), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @.
|
|
208
224
|
*/
|
|
209
225
|
value: string;
|
|
210
226
|
}
|
|
@@ -602,31 +618,31 @@ export declare namespace alb {
|
|
|
602
618
|
}
|
|
603
619
|
interface GetServerGroupHealthCheck {
|
|
604
620
|
/**
|
|
605
|
-
*
|
|
621
|
+
* The domain name for health checks must be configured as the actual address used by the backend server to provide external services. This parameter is only effective when HealthCheck.Protocol is set to HTTP. The domain name must contain at least one '.', and cannot start or end with a '.'. Each level of the domain name can include letters, numbers, '-', and '.' characters, but '-' cannot appear at the beginning or end of any level. Length must be between 1 and 128 characters. If this parameter is not provided or no value is specified, it defaults to empty, meaning the load balancer uses the private IP address of each backend server for health checks.
|
|
606
622
|
*/
|
|
607
623
|
domain: string;
|
|
608
624
|
/**
|
|
609
|
-
* Whether the listener
|
|
625
|
+
* Whether the listener has enabled health check. Values: on: enabled (default), off: disabled.
|
|
610
626
|
*/
|
|
611
627
|
enabled: string;
|
|
612
628
|
/**
|
|
613
|
-
* Health check threshold. Indicates
|
|
629
|
+
* Health check threshold. Indicates that a backend server is considered healthy if it passes the specified number of consecutive health checks. Unit: checks. Range: 2–10. Default: 3.
|
|
614
630
|
*/
|
|
615
631
|
healthyThreshold: number;
|
|
616
632
|
/**
|
|
617
|
-
* HTTP status codes
|
|
633
|
+
* HTTP status codes indicating a successful health check. Use commas to separate multiple codes. This parameter is only available when HealthCheck.Protocol is set to HTTP. Valid values: http*2xx (default), http*3xx (default), http*4xx, http*5xx.
|
|
618
634
|
*/
|
|
619
635
|
httpCode: string;
|
|
620
636
|
/**
|
|
621
|
-
*
|
|
637
|
+
* HTTP protocol version for health checks. This parameter is only available when HealthCheck.Protocol is set to HTTP. Values: HTTP1.0 (default when using API), HTTP1.1.
|
|
622
638
|
*/
|
|
623
639
|
httpVersion: string;
|
|
624
640
|
/**
|
|
625
|
-
* After health
|
|
641
|
+
* After enabling health check, the interval for performing health checks. Unit: seconds. Range: 1–300s. Default: 2.
|
|
626
642
|
*/
|
|
627
643
|
interval: number;
|
|
628
644
|
/**
|
|
629
|
-
*
|
|
645
|
+
* After enabling health check, the health check method. This parameter is effective only when HealthCheck.Protocol is set to HTTP. Values: GET: server must support the GET method. HEAD (default): server returns only HEAD header information, which can reduce backend performance consumption, but the server must support the HEAD method.
|
|
630
646
|
*/
|
|
631
647
|
method: string;
|
|
632
648
|
/**
|
|
@@ -638,15 +654,15 @@ export declare namespace alb {
|
|
|
638
654
|
*/
|
|
639
655
|
protocol: string;
|
|
640
656
|
/**
|
|
641
|
-
* Health check response timeout. If the backend server does not respond correctly within the specified time,
|
|
657
|
+
* Health check response timeout. If the backend server does not respond correctly within the specified time, it is considered a health check failure. Unit: seconds; range: 1~60; default: 2.
|
|
642
658
|
*/
|
|
643
659
|
timeout: number;
|
|
644
660
|
/**
|
|
645
|
-
* Unhealthy threshold for health checks.
|
|
661
|
+
* Unhealthy threshold for health checks. If a backend server fails the specified number of consecutive health checks, it will be considered unhealthy. Unit: times. Value range: 2–10. Default: 3.
|
|
646
662
|
*/
|
|
647
663
|
unhealthyThreshold: number;
|
|
648
664
|
/**
|
|
649
|
-
* Health check path
|
|
665
|
+
* Health check path, which must be configured as the actual path provided by the backend server. This parameter is effective only when HealthCheck.Protocol is set to HTTP. Must start with '/'. Only letters, numbers, '-', '_', '/', '.', '%', '?', '#', '&', '=' are allowed. Length must be between 1 and 128 characters. If this parameter is not specified or no value is provided, the default is '/'.
|
|
650
666
|
*/
|
|
651
667
|
uri: string;
|
|
652
668
|
}
|
|
@@ -662,7 +678,7 @@ export declare namespace alb {
|
|
|
662
678
|
*/
|
|
663
679
|
description: string;
|
|
664
680
|
/**
|
|
665
|
-
* ID of the cloud server instance or network interface
|
|
681
|
+
* ID of the cloud server instance or network interface.
|
|
666
682
|
*/
|
|
667
683
|
instanceId: string;
|
|
668
684
|
/**
|
|
@@ -674,7 +690,7 @@ export declare namespace alb {
|
|
|
674
690
|
*/
|
|
675
691
|
port: number;
|
|
676
692
|
/**
|
|
677
|
-
* Enable remote IP feature. This field is valid
|
|
693
|
+
* Enable remote IP feature. This field is valid when the backend server instance type is IP address, that is, when Type is set to ip. Values: on: enabled. off (default): disabled.
|
|
678
694
|
*/
|
|
679
695
|
remoteEnabled: string;
|
|
680
696
|
/**
|
|
@@ -682,21 +698,21 @@ export declare namespace alb {
|
|
|
682
698
|
*/
|
|
683
699
|
serverId: string;
|
|
684
700
|
/**
|
|
685
|
-
* Backend server instance type.
|
|
701
|
+
* Backend server instance type. ECS: cloud server instance; ENI: secondary network interface; IP: IP address (only valid for IP-type server groups).
|
|
686
702
|
*/
|
|
687
703
|
type: string;
|
|
688
704
|
/**
|
|
689
|
-
*
|
|
705
|
+
* Backend server weight.
|
|
690
706
|
*/
|
|
691
707
|
weight: number;
|
|
692
708
|
}
|
|
693
709
|
interface GetServerGroupStickySessionConfig {
|
|
694
710
|
/**
|
|
695
|
-
*
|
|
711
|
+
* Session persistence cookie name configured for the service. Only valid when session persistence is enabled and cookie rewrite is selected. Rules: Cookie name length must be 1–200 characters. The name can only contain ASCII letters and numbers, cannot include commas (,), semicolons (;), or spaces, and cannot start with a dollar sign ($). When stickySessionConfig.StickySessionEnabled is on and StickySessionConfig.StickySessionType is server, this parameter is required. When StickySessionConfig.StickySessionEnabled is on and StickySessionConfig.StickySessionType is insert, this parameter is invalid.
|
|
696
712
|
*/
|
|
697
713
|
cookie: string;
|
|
698
714
|
/**
|
|
699
|
-
* Session persistence cookie timeout. Only
|
|
715
|
+
* Session persistence cookie timeout. Only effective when session persistence is enabled and cookie insertion is selected. Unit: seconds. Rules: timeout range: 1~86400; default: 1000. This parameter is required when StickySessionConfig.StickySessionEnabled is on and StickySessionConfig.StickySessionType is insert. This parameter is invalid when StickySessionConfig.StickySessionEnabled is on and StickySessionType is server.
|
|
700
716
|
*/
|
|
701
717
|
cookieTimeout: number;
|
|
702
718
|
/**
|
|
@@ -704,17 +720,17 @@ export declare namespace alb {
|
|
|
704
720
|
*/
|
|
705
721
|
stickySessionEnabled: string;
|
|
706
722
|
/**
|
|
707
|
-
* Cookie handling method.
|
|
723
|
+
* Cookie handling method. When StickySessionConfig.StickySessionEnabled is set to on, this field is required. Values: insert: Insert a Cookie. ALB records the backend server to which the client's first request is forwarded. ALB inserts a Cookie in the response, and subsequent client requests carrying this Cookie are forwarded to the previously recorded backend server. server: Rewrite the Cookie. When session persistence with Cookie rewriting is enabled, after the client's first request is forwarded to the backend server, if ALB finds your custom Cookie in the response, it rewrites the original Cookie. Subsequent client requests carrying the rewritten Cookie are forwarded to the previously recorded backend server.
|
|
708
724
|
*/
|
|
709
725
|
stickySessionType: string;
|
|
710
726
|
}
|
|
711
727
|
interface GetServerGroupTag {
|
|
712
728
|
/**
|
|
713
|
-
* Tag key.
|
|
729
|
+
* Tag key. Duplicate tag keys are not allowed for the same resource.
|
|
714
730
|
*/
|
|
715
731
|
key: string;
|
|
716
732
|
/**
|
|
717
|
-
* Tag value
|
|
733
|
+
* Tag value.
|
|
718
734
|
*/
|
|
719
735
|
value: string;
|
|
720
736
|
}
|
|
@@ -730,7 +746,7 @@ export declare namespace alb {
|
|
|
730
746
|
}
|
|
731
747
|
interface ListenerDomainExtension {
|
|
732
748
|
/**
|
|
733
|
-
* Server certificate ID used by the domain. Effective when the certificate source is cert_center.
|
|
749
|
+
* Server certificate ID used by the domain name. Effective when the certificate source is cert_center.
|
|
734
750
|
*/
|
|
735
751
|
certCenterCertificateId: string;
|
|
736
752
|
/**
|
|
@@ -738,11 +754,11 @@ export declare namespace alb {
|
|
|
738
754
|
*/
|
|
739
755
|
certificateId: string;
|
|
740
756
|
/**
|
|
741
|
-
* Source of the server certificate used by the domain. Values: alb: certificate uploaded via ALB. cert_center: SSL certificate purchased or uploaded
|
|
757
|
+
* Source of the server certificate used by the domain. Values: alb: certificate uploaded via ALB. cert_center: SSL certificate purchased or uploaded via Volcano Engine Certificate Center.
|
|
742
758
|
*/
|
|
743
759
|
certificateSource: string;
|
|
744
760
|
/**
|
|
745
|
-
* Domain name. Usually cannot be empty. If the instance supports automatic selection of
|
|
761
|
+
* Domain name. Usually cannot be empty. If the instance supports automatic selection of extension certificates (SniAutoMatch is on), Domain must be set to an empty string. Must contain at least one '.' and cannot start or end with '.'. Only lowercase letters, digits, '.', '-', and '*' are allowed. Length limit: 1–128 characters. Wildcard domain: use '*' to replace one or more characters. '*' must be at the beginning or end of the domain name. '*' cannot appear twice in the same domain name. No characters other than '.' can appear before or after '*'. Exact domain: an exact domain name that complies with domain name specifications. Domain names under the same HTTPS listener cannot be duplicated. Domain name matching is case-insensitive.
|
|
746
762
|
*/
|
|
747
763
|
domain: string;
|
|
748
764
|
/**
|
|
@@ -750,7 +766,7 @@ export declare namespace alb {
|
|
|
750
766
|
*/
|
|
751
767
|
pcaLeafCertificateId: string;
|
|
752
768
|
/**
|
|
753
|
-
* If the instance supports automatic selection of
|
|
769
|
+
* If the instance supports automatic selection of extension certificates, that is, when SniAutoMatch is set to on, Domain is an empty string. San refers to the certificate's extension domain names, separated by commas.
|
|
754
770
|
*/
|
|
755
771
|
san: string;
|
|
756
772
|
}
|
|
@@ -766,11 +782,11 @@ export declare namespace alb {
|
|
|
766
782
|
}
|
|
767
783
|
interface ListenerTag {
|
|
768
784
|
/**
|
|
769
|
-
*
|
|
785
|
+
* User tag key. Rules: Length must be between 1 and 128 characters. Case sensitive. Cannot start with any case combination of volc:. Cannot start or end with a space. Allowed characters include all languages, numbers, spaces, parentheses (), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @. Tag keys for the same resource cannot be duplicated.
|
|
770
786
|
*/
|
|
771
787
|
key: string;
|
|
772
788
|
/**
|
|
773
|
-
*
|
|
789
|
+
* User tag value. Rules: Length must be between 0 and 256 characters. Case sensitive. Cannot start or end with a space. Allowed characters include all languages, numbers, spaces, parentheses (), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @.
|
|
774
790
|
*/
|
|
775
791
|
value: string;
|
|
776
792
|
}
|
|
@@ -1067,31 +1083,31 @@ export declare namespace alb {
|
|
|
1067
1083
|
}
|
|
1068
1084
|
interface ServerGroupHealthCheck {
|
|
1069
1085
|
/**
|
|
1070
|
-
*
|
|
1086
|
+
* The domain name for health checks must be configured as the actual address used by the backend server to provide external services. This parameter is only effective when HealthCheck.Protocol is set to HTTP. The domain name must contain at least one '.', and cannot start or end with a '.'. Each level of the domain name can include letters, numbers, '-', and '.' characters, but '-' cannot appear at the beginning or end of any level. Length must be between 1 and 128 characters. If this parameter is not provided or no value is specified, it defaults to empty, meaning the load balancer uses the private IP address of each backend server for health checks.
|
|
1071
1087
|
*/
|
|
1072
1088
|
domain: string;
|
|
1073
1089
|
/**
|
|
1074
|
-
* Whether the listener
|
|
1090
|
+
* Whether the listener has enabled health check. Values: on: enabled (default), off: disabled.
|
|
1075
1091
|
*/
|
|
1076
1092
|
enabled: string;
|
|
1077
1093
|
/**
|
|
1078
|
-
* Health check threshold. Indicates
|
|
1094
|
+
* Health check threshold. Indicates that a backend server is considered healthy if it passes the specified number of consecutive health checks. Unit: checks. Range: 2–10. Default: 3.
|
|
1079
1095
|
*/
|
|
1080
1096
|
healthyThreshold: number;
|
|
1081
1097
|
/**
|
|
1082
|
-
* HTTP status codes
|
|
1098
|
+
* HTTP status codes indicating a successful health check. Use commas to separate multiple codes. This parameter is only available when HealthCheck.Protocol is set to HTTP. Valid values: http*2xx (default), http*3xx (default), http*4xx, http*5xx.
|
|
1083
1099
|
*/
|
|
1084
1100
|
httpCode: string;
|
|
1085
1101
|
/**
|
|
1086
|
-
*
|
|
1102
|
+
* HTTP protocol version for health checks. This parameter is only available when HealthCheck.Protocol is set to HTTP. Values: HTTP1.0 (default when using API), HTTP1.1.
|
|
1087
1103
|
*/
|
|
1088
1104
|
httpVersion: string;
|
|
1089
1105
|
/**
|
|
1090
|
-
* After health
|
|
1106
|
+
* After enabling health check, the interval for performing health checks. Unit: seconds. Range: 1–300s. Default: 2.
|
|
1091
1107
|
*/
|
|
1092
1108
|
interval: number;
|
|
1093
1109
|
/**
|
|
1094
|
-
*
|
|
1110
|
+
* After enabling health check, the health check method. This parameter is effective only when HealthCheck.Protocol is set to HTTP. Values: GET: server must support the GET method. HEAD (default): server returns only HEAD header information, which can reduce backend performance consumption, but the server must support the HEAD method.
|
|
1095
1111
|
*/
|
|
1096
1112
|
method: string;
|
|
1097
1113
|
/**
|
|
@@ -1103,15 +1119,15 @@ export declare namespace alb {
|
|
|
1103
1119
|
*/
|
|
1104
1120
|
protocol: string;
|
|
1105
1121
|
/**
|
|
1106
|
-
* Health check response timeout. If the backend server does not respond correctly within the specified time,
|
|
1122
|
+
* Health check response timeout. If the backend server does not respond correctly within the specified time, it is considered a health check failure. Unit: seconds; range: 1~60; default: 2.
|
|
1107
1123
|
*/
|
|
1108
1124
|
timeout: number;
|
|
1109
1125
|
/**
|
|
1110
|
-
* Unhealthy threshold for health checks.
|
|
1126
|
+
* Unhealthy threshold for health checks. If a backend server fails the specified number of consecutive health checks, it will be considered unhealthy. Unit: times. Value range: 2–10. Default: 3.
|
|
1111
1127
|
*/
|
|
1112
1128
|
unhealthyThreshold: number;
|
|
1113
1129
|
/**
|
|
1114
|
-
* Health check path
|
|
1130
|
+
* Health check path, which must be configured as the actual path provided by the backend server. This parameter is effective only when HealthCheck.Protocol is set to HTTP. Must start with '/'. Only letters, numbers, '-', '_', '/', '.', '%', '?', '#', '&', '=' are allowed. Length must be between 1 and 128 characters. If this parameter is not specified or no value is provided, the default is '/'.
|
|
1115
1131
|
*/
|
|
1116
1132
|
uri: string;
|
|
1117
1133
|
}
|
|
@@ -1127,7 +1143,7 @@ export declare namespace alb {
|
|
|
1127
1143
|
*/
|
|
1128
1144
|
description: string;
|
|
1129
1145
|
/**
|
|
1130
|
-
* ID of the cloud server instance or network interface
|
|
1146
|
+
* ID of the cloud server instance or network interface.
|
|
1131
1147
|
*/
|
|
1132
1148
|
instanceId: string;
|
|
1133
1149
|
/**
|
|
@@ -1139,7 +1155,7 @@ export declare namespace alb {
|
|
|
1139
1155
|
*/
|
|
1140
1156
|
port: number;
|
|
1141
1157
|
/**
|
|
1142
|
-
* Enable remote IP feature. This field is valid
|
|
1158
|
+
* Enable remote IP feature. This field is valid when the backend server instance type is IP address, that is, when Type is set to ip. Values: on: enabled. off (default): disabled.
|
|
1143
1159
|
*/
|
|
1144
1160
|
remoteEnabled: string;
|
|
1145
1161
|
/**
|
|
@@ -1147,21 +1163,21 @@ export declare namespace alb {
|
|
|
1147
1163
|
*/
|
|
1148
1164
|
serverId: string;
|
|
1149
1165
|
/**
|
|
1150
|
-
* Backend server instance type.
|
|
1166
|
+
* Backend server instance type. ECS: cloud server instance; ENI: secondary network interface; IP: IP address (only valid for IP-type server groups).
|
|
1151
1167
|
*/
|
|
1152
1168
|
type: string;
|
|
1153
1169
|
/**
|
|
1154
|
-
*
|
|
1170
|
+
* Backend server weight.
|
|
1155
1171
|
*/
|
|
1156
1172
|
weight: number;
|
|
1157
1173
|
}
|
|
1158
1174
|
interface ServerGroupStickySessionConfig {
|
|
1159
1175
|
/**
|
|
1160
|
-
*
|
|
1176
|
+
* Session persistence cookie name configured for the service. Only valid when session persistence is enabled and cookie rewrite is selected. Rules: Cookie name length must be 1–200 characters. The name can only contain ASCII letters and numbers, cannot include commas (,), semicolons (;), or spaces, and cannot start with a dollar sign ($). When stickySessionConfig.StickySessionEnabled is on and StickySessionConfig.StickySessionType is server, this parameter is required. When StickySessionConfig.StickySessionEnabled is on and StickySessionConfig.StickySessionType is insert, this parameter is invalid.
|
|
1161
1177
|
*/
|
|
1162
1178
|
cookie: string;
|
|
1163
1179
|
/**
|
|
1164
|
-
* Session persistence cookie timeout. Only
|
|
1180
|
+
* Session persistence cookie timeout. Only effective when session persistence is enabled and cookie insertion is selected. Unit: seconds. Rules: timeout range: 1~86400; default: 1000. This parameter is required when StickySessionConfig.StickySessionEnabled is on and StickySessionConfig.StickySessionType is insert. This parameter is invalid when StickySessionConfig.StickySessionEnabled is on and StickySessionType is server.
|
|
1165
1181
|
*/
|
|
1166
1182
|
cookieTimeout: number;
|
|
1167
1183
|
/**
|
|
@@ -1169,17 +1185,17 @@ export declare namespace alb {
|
|
|
1169
1185
|
*/
|
|
1170
1186
|
stickySessionEnabled: string;
|
|
1171
1187
|
/**
|
|
1172
|
-
* Cookie handling method.
|
|
1188
|
+
* Cookie handling method. When StickySessionConfig.StickySessionEnabled is set to on, this field is required. Values: insert: Insert a Cookie. ALB records the backend server to which the client's first request is forwarded. ALB inserts a Cookie in the response, and subsequent client requests carrying this Cookie are forwarded to the previously recorded backend server. server: Rewrite the Cookie. When session persistence with Cookie rewriting is enabled, after the client's first request is forwarded to the backend server, if ALB finds your custom Cookie in the response, it rewrites the original Cookie. Subsequent client requests carrying the rewritten Cookie are forwarded to the previously recorded backend server.
|
|
1173
1189
|
*/
|
|
1174
1190
|
stickySessionType: string;
|
|
1175
1191
|
}
|
|
1176
1192
|
interface ServerGroupTag {
|
|
1177
1193
|
/**
|
|
1178
|
-
* Tag key.
|
|
1194
|
+
* Tag key. Duplicate tag keys are not allowed for the same resource.
|
|
1179
1195
|
*/
|
|
1180
1196
|
key: string;
|
|
1181
1197
|
/**
|
|
1182
|
-
* Tag value
|
|
1198
|
+
* Tag value.
|
|
1183
1199
|
*/
|
|
1184
1200
|
value: string;
|
|
1185
1201
|
}
|
|
@@ -9656,41 +9672,49 @@ export declare namespace config {
|
|
|
9656
9672
|
}
|
|
9657
9673
|
}
|
|
9658
9674
|
export declare namespace cr {
|
|
9675
|
+
interface GetRegistryEndpoint {
|
|
9676
|
+
/**
|
|
9677
|
+
* Public IP allowlist
|
|
9678
|
+
*/
|
|
9679
|
+
aclPolicies: outputs.cr.GetRegistryEndpointAclPolicy[];
|
|
9680
|
+
/**
|
|
9681
|
+
* Whether to enable the public endpoint. Options: false: not enabled; true: enabled. Default is false
|
|
9682
|
+
*/
|
|
9683
|
+
enabled: boolean;
|
|
9684
|
+
/**
|
|
9685
|
+
* Current status of the public endpoint. Parameter values: Enabling: enabling; Enabled: enabled; Disabling: disabling; Updating: updating; Failed: failed; Disabled: disabled
|
|
9686
|
+
*/
|
|
9687
|
+
status: string;
|
|
9688
|
+
}
|
|
9689
|
+
interface GetRegistryEndpointAclPolicy {
|
|
9690
|
+
/**
|
|
9691
|
+
* IP entry address
|
|
9692
|
+
*/
|
|
9693
|
+
description: string;
|
|
9694
|
+
/**
|
|
9695
|
+
* IP entry description
|
|
9696
|
+
*/
|
|
9697
|
+
entry: string;
|
|
9698
|
+
}
|
|
9659
9699
|
interface GetRegistryProxyCache {
|
|
9660
9700
|
/**
|
|
9661
|
-
* Instance types supported by ProxyCache
|
|
9701
|
+
* Instance types supported by ProxyCache. Parameter value description: DockerHub: DockerHub image repository.
|
|
9662
9702
|
*/
|
|
9663
9703
|
type: string;
|
|
9664
9704
|
}
|
|
9665
9705
|
interface GetRegistryStatus {
|
|
9666
9706
|
/**
|
|
9667
|
-
* Creating, [ Progressing ]: Creating
|
|
9668
|
-
* Running, [ Ok ]: Running
|
|
9669
|
-
* Running, [ Degraded ]: Running
|
|
9670
|
-
* Stopped, [ Balance ]: Suspended due to insufficient balance
|
|
9671
|
-
* Stopped, [ Released ]: Pending reclamation
|
|
9672
|
-
* Stopped, [ Released, Balance ]: Suspended due to insufficient balance
|
|
9673
|
-
* Starting, [ Progressing ]: Starting
|
|
9674
|
-
* Deleting, [ Progressing ]: Deleting
|
|
9675
|
-
* Failed, [ Unknown ]: Abnormal
|
|
9707
|
+
* Creating, [ Progressing ]: Creating. Running, [ Ok ]: Running. Running, [ Degraded ]: Running. Stopped, [ Balance ]: Suspended due to overdue payment. Stopped, [ Released ]: Pending recycle. Stopped, [ Released, Balance ]: Suspended due to overdue payment. Starting, [ Progressing ]: Starting. Deleting, [ Progressing ]: Deleting. Failed, [ Unknown ]: Error.
|
|
9676
9708
|
*/
|
|
9677
9709
|
conditions: string[];
|
|
9678
9710
|
/**
|
|
9679
|
-
* Creating, [ Progressing ]: Creating
|
|
9680
|
-
* Running, [ Ok ]: Running
|
|
9681
|
-
* Running, [ Degraded ]: Running
|
|
9682
|
-
* Stopped, [ Balance ]: Suspended due to insufficient balance
|
|
9683
|
-
* Stopped, [ Released ]: Pending reclamation
|
|
9684
|
-
* Stopped, [ Released, Balance ]: Suspended due to insufficient balance
|
|
9685
|
-
* Starting, [ Progressing ]: Starting
|
|
9686
|
-
* Deleting, [ Progressing ]: Deleting
|
|
9687
|
-
* Failed, [ Unknown ]: Abnormal
|
|
9711
|
+
* Creating, [ Progressing ]: Creating. Running, [ Ok ]: Running. Running, [ Degraded ]: Running. Stopped, [ Balance ]: Suspended due to overdue payment. Stopped, [ Released ]: Pending recycle. Stopped, [ Released, Balance ]: Suspended due to overdue payment. Starting, [ Progressing ]: Starting. Deleting, [ Progressing ]: Deleting. Failed, [ Unknown ]: Error.
|
|
9688
9712
|
*/
|
|
9689
9713
|
phase: string;
|
|
9690
9714
|
}
|
|
9691
9715
|
interface GetRegistryTag {
|
|
9692
9716
|
/**
|
|
9693
|
-
* Tag key
|
|
9717
|
+
* Tag key
|
|
9694
9718
|
*/
|
|
9695
9719
|
key: string;
|
|
9696
9720
|
/**
|
|
@@ -9698,41 +9722,46 @@ export declare namespace cr {
|
|
|
9698
9722
|
*/
|
|
9699
9723
|
value: string;
|
|
9700
9724
|
}
|
|
9725
|
+
interface RegistryEndpoint {
|
|
9726
|
+
aclPolicies: outputs.cr.RegistryEndpointAclPolicy[];
|
|
9727
|
+
/**
|
|
9728
|
+
* Whether to enable the public endpoint. Options: false: not enabled; true: enabled. Default is false
|
|
9729
|
+
*/
|
|
9730
|
+
enabled: boolean;
|
|
9731
|
+
/**
|
|
9732
|
+
* Current status of the public endpoint. Parameter values: Enabling: enabling; Enabled: enabled; Disabling: disabling; Updating: updating; Failed: failed; Disabled: disabled
|
|
9733
|
+
*/
|
|
9734
|
+
status: string;
|
|
9735
|
+
}
|
|
9736
|
+
interface RegistryEndpointAclPolicy {
|
|
9737
|
+
/**
|
|
9738
|
+
* IP entry address
|
|
9739
|
+
*/
|
|
9740
|
+
description: string;
|
|
9741
|
+
/**
|
|
9742
|
+
* IP entry description
|
|
9743
|
+
*/
|
|
9744
|
+
entry: string;
|
|
9745
|
+
}
|
|
9701
9746
|
interface RegistryProxyCache {
|
|
9702
9747
|
/**
|
|
9703
|
-
* Instance types supported by ProxyCache
|
|
9748
|
+
* Instance types supported by ProxyCache. Parameter value description: DockerHub: DockerHub image repository.
|
|
9704
9749
|
*/
|
|
9705
9750
|
type: string;
|
|
9706
9751
|
}
|
|
9707
9752
|
interface RegistryStatus {
|
|
9708
9753
|
/**
|
|
9709
|
-
* Creating, [ Progressing ]: Creating
|
|
9710
|
-
* Running, [ Ok ]: Running
|
|
9711
|
-
* Running, [ Degraded ]: Running
|
|
9712
|
-
* Stopped, [ Balance ]: Suspended due to insufficient balance
|
|
9713
|
-
* Stopped, [ Released ]: Pending reclamation
|
|
9714
|
-
* Stopped, [ Released, Balance ]: Suspended due to insufficient balance
|
|
9715
|
-
* Starting, [ Progressing ]: Starting
|
|
9716
|
-
* Deleting, [ Progressing ]: Deleting
|
|
9717
|
-
* Failed, [ Unknown ]: Abnormal
|
|
9754
|
+
* Creating, [ Progressing ]: Creating. Running, [ Ok ]: Running. Running, [ Degraded ]: Running. Stopped, [ Balance ]: Suspended due to overdue payment. Stopped, [ Released ]: Pending recycle. Stopped, [ Released, Balance ]: Suspended due to overdue payment. Starting, [ Progressing ]: Starting. Deleting, [ Progressing ]: Deleting. Failed, [ Unknown ]: Error.
|
|
9718
9755
|
*/
|
|
9719
9756
|
conditions: string[];
|
|
9720
9757
|
/**
|
|
9721
|
-
* Creating, [ Progressing ]: Creating
|
|
9722
|
-
* Running, [ Ok ]: Running
|
|
9723
|
-
* Running, [ Degraded ]: Running
|
|
9724
|
-
* Stopped, [ Balance ]: Suspended due to insufficient balance
|
|
9725
|
-
* Stopped, [ Released ]: Pending reclamation
|
|
9726
|
-
* Stopped, [ Released, Balance ]: Suspended due to insufficient balance
|
|
9727
|
-
* Starting, [ Progressing ]: Starting
|
|
9728
|
-
* Deleting, [ Progressing ]: Deleting
|
|
9729
|
-
* Failed, [ Unknown ]: Abnormal
|
|
9758
|
+
* Creating, [ Progressing ]: Creating. Running, [ Ok ]: Running. Running, [ Degraded ]: Running. Stopped, [ Balance ]: Suspended due to overdue payment. Stopped, [ Released ]: Pending recycle. Stopped, [ Released, Balance ]: Suspended due to overdue payment. Starting, [ Progressing ]: Starting. Deleting, [ Progressing ]: Deleting. Failed, [ Unknown ]: Error.
|
|
9730
9759
|
*/
|
|
9731
9760
|
phase: string;
|
|
9732
9761
|
}
|
|
9733
9762
|
interface RegistryTag {
|
|
9734
9763
|
/**
|
|
9735
|
-
* Tag key
|
|
9764
|
+
* Tag key
|
|
9736
9765
|
*/
|
|
9737
9766
|
key: string;
|
|
9738
9767
|
/**
|
|
@@ -15591,6 +15620,24 @@ export declare namespace organization {
|
|
|
15591
15620
|
*/
|
|
15592
15621
|
mainName: string;
|
|
15593
15622
|
}
|
|
15623
|
+
interface GetServiceControlPolicyTarget {
|
|
15624
|
+
/**
|
|
15625
|
+
* Binding time.
|
|
15626
|
+
*/
|
|
15627
|
+
attachedTime: string;
|
|
15628
|
+
/**
|
|
15629
|
+
* Target ID.
|
|
15630
|
+
*/
|
|
15631
|
+
targetId: string;
|
|
15632
|
+
/**
|
|
15633
|
+
* Target name.
|
|
15634
|
+
*/
|
|
15635
|
+
targetName: string;
|
|
15636
|
+
/**
|
|
15637
|
+
* Target type: 1. OU 2. Account.
|
|
15638
|
+
*/
|
|
15639
|
+
targetType: string;
|
|
15640
|
+
}
|
|
15594
15641
|
interface OrganizationOrganization {
|
|
15595
15642
|
/**
|
|
15596
15643
|
* Creation Time
|
|
@@ -15635,6 +15682,16 @@ export declare namespace organization {
|
|
|
15635
15682
|
*/
|
|
15636
15683
|
mainName: string;
|
|
15637
15684
|
}
|
|
15685
|
+
interface ServiceControlPolicyTarget {
|
|
15686
|
+
/**
|
|
15687
|
+
* Target ID.
|
|
15688
|
+
*/
|
|
15689
|
+
targetId: string;
|
|
15690
|
+
/**
|
|
15691
|
+
* Target type: 1. OU 2. Account.
|
|
15692
|
+
*/
|
|
15693
|
+
targetType: string;
|
|
15694
|
+
}
|
|
15638
15695
|
}
|
|
15639
15696
|
export declare namespace privatelink {
|
|
15640
15697
|
interface EndpointServicePrivateDnsNameConfiguration {
|
|
@@ -21884,6 +21941,16 @@ export declare namespace tos {
|
|
|
21884
21941
|
}
|
|
21885
21942
|
}
|
|
21886
21943
|
export declare namespace transitrouter {
|
|
21944
|
+
interface GetPeerAttachmentTag {
|
|
21945
|
+
/**
|
|
21946
|
+
* Tag key for cross-region connection user tags. Length must be between 1 and 128 characters. Case-sensitive; cannot start with any case combination of sys:. Cannot start or end with a space character. Allowed characters include letters, numbers, space character, underscore (_), period (.), colon (:), slash (/), equals sign (=), plus sign (+), minus sign (-), and @. Note: Tag keys for the same resource must be unique. If this parameter is not provided or no value is specified, the default is empty.
|
|
21947
|
+
*/
|
|
21948
|
+
key: string;
|
|
21949
|
+
/**
|
|
21950
|
+
* Tag value for the cross-region connection user tag. Length limit: 0–255 characters. Case-sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces (), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @. Note: If this parameter is provided, Tags.N.Key must be provided first.
|
|
21951
|
+
*/
|
|
21952
|
+
value: string;
|
|
21953
|
+
}
|
|
21887
21954
|
interface GetTransitRouterAttachment {
|
|
21888
21955
|
/**
|
|
21889
21956
|
* Whether to automatically synchronize TR routes to the network instance route table. true: Yes. false: No.
|
|
@@ -22026,6 +22093,16 @@ export declare namespace transitrouter {
|
|
|
22026
22093
|
*/
|
|
22027
22094
|
value: string;
|
|
22028
22095
|
}
|
|
22096
|
+
interface PeerAttachmentTag {
|
|
22097
|
+
/**
|
|
22098
|
+
* Tag key for cross-region connection user tags. Length must be between 1 and 128 characters. Case-sensitive; cannot start with any case combination of sys:. Cannot start or end with a space character. Allowed characters include letters, numbers, space character, underscore (_), period (.), colon (:), slash (/), equals sign (=), plus sign (+), minus sign (-), and @. Note: Tag keys for the same resource must be unique. If this parameter is not provided or no value is specified, the default is empty.
|
|
22099
|
+
*/
|
|
22100
|
+
key: string;
|
|
22101
|
+
/**
|
|
22102
|
+
* Tag value for the cross-region connection user tag. Length limit: 0–255 characters. Case-sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces (), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @. Note: If this parameter is provided, Tags.N.Key must be provided first.
|
|
22103
|
+
*/
|
|
22104
|
+
value: string;
|
|
22105
|
+
}
|
|
22029
22106
|
interface TransitRouterAttachment {
|
|
22030
22107
|
/**
|
|
22031
22108
|
* Whether to automatically synchronize TR routes to the network instance route table. true: Yes. false: No.
|
|
@@ -27592,6 +27669,16 @@ export declare namespace vpn {
|
|
|
27592
27669
|
*/
|
|
27593
27670
|
value: string;
|
|
27594
27671
|
}
|
|
27672
|
+
interface GetSslVpnClientCertTag {
|
|
27673
|
+
/**
|
|
27674
|
+
* Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
|
|
27675
|
+
*/
|
|
27676
|
+
key: string;
|
|
27677
|
+
/**
|
|
27678
|
+
* Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
|
|
27679
|
+
*/
|
|
27680
|
+
value: string;
|
|
27681
|
+
}
|
|
27595
27682
|
interface GetVpnConnectionBgpInfo {
|
|
27596
27683
|
/**
|
|
27597
27684
|
* Enable dynamic route propagation. false (default): No, use static routing mode. true: Yes, use BGP routing mode.
|
|
@@ -27856,6 +27943,16 @@ export declare namespace vpn {
|
|
|
27856
27943
|
*/
|
|
27857
27944
|
value: string;
|
|
27858
27945
|
}
|
|
27946
|
+
interface SslVpnClientCertTag {
|
|
27947
|
+
/**
|
|
27948
|
+
* Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
|
|
27949
|
+
*/
|
|
27950
|
+
key: string;
|
|
27951
|
+
/**
|
|
27952
|
+
* Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
|
|
27953
|
+
*/
|
|
27954
|
+
value: string;
|
|
27955
|
+
}
|
|
27859
27956
|
interface VpnConnectionBgpInfo {
|
|
27860
27957
|
/**
|
|
27861
27958
|
* Enable dynamic route propagation. false (default): No, use static routing mode. true: Yes, use BGP routing mode.
|