@byteplus/pulumi-bytepluscc 0.0.24 → 0.0.25
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 -20
- package/alb/acl.js +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 +85 -50
- package/types/output.d.ts +183 -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,27 @@ 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
18
|
}
|
|
19
19
|
interface AclTag {
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* 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
22
|
*/
|
|
23
23
|
key: string;
|
|
24
24
|
/**
|
|
25
|
-
* User tag value. Length
|
|
25
|
+
* 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
26
|
*/
|
|
27
27
|
value: string;
|
|
28
28
|
}
|
|
@@ -66,17 +66,17 @@ export declare namespace alb {
|
|
|
66
66
|
}
|
|
67
67
|
interface GetAclAclEntry {
|
|
68
68
|
/**
|
|
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
|
|
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, 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
70
|
*/
|
|
71
71
|
description: string;
|
|
72
72
|
/**
|
|
73
|
-
* IP entry address range
|
|
73
|
+
* IP entry address range. Only CIDR addresses are supported.
|
|
74
74
|
*/
|
|
75
75
|
entry: string;
|
|
76
76
|
}
|
|
77
77
|
interface GetAclListener {
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* Listener control mode for this access control policy group. white: allowlist mode; black: denylist mode
|
|
80
80
|
*/
|
|
81
81
|
aclType: string;
|
|
82
82
|
/**
|
|
@@ -98,11 +98,11 @@ export declare namespace alb {
|
|
|
98
98
|
}
|
|
99
99
|
interface GetAclTag {
|
|
100
100
|
/**
|
|
101
|
-
*
|
|
101
|
+
* 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
102
|
*/
|
|
103
103
|
key: string;
|
|
104
104
|
/**
|
|
105
|
-
* User tag value. Length
|
|
105
|
+
* 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
106
|
*/
|
|
107
107
|
value: string;
|
|
108
108
|
}
|
|
@@ -156,7 +156,7 @@ export declare namespace alb {
|
|
|
156
156
|
}
|
|
157
157
|
interface GetListenerDomainExtension {
|
|
158
158
|
/**
|
|
159
|
-
* Server certificate ID used by the domain. Effective when the certificate source is cert_center.
|
|
159
|
+
* Server certificate ID used by the domain name. Effective when the certificate source is cert_center.
|
|
160
160
|
*/
|
|
161
161
|
certCenterCertificateId: string;
|
|
162
162
|
/**
|
|
@@ -164,19 +164,19 @@ export declare namespace alb {
|
|
|
164
164
|
*/
|
|
165
165
|
certificateId: string;
|
|
166
166
|
/**
|
|
167
|
-
* Source of the server certificate used by the domain. Values: alb: certificate uploaded via ALB. cert_center: SSL certificate purchased or uploaded
|
|
167
|
+
* 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
168
|
*/
|
|
169
169
|
certificateSource: string;
|
|
170
170
|
/**
|
|
171
|
-
* Domain name. Usually cannot be empty. If the instance supports automatic selection of
|
|
171
|
+
* 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
172
|
*/
|
|
173
173
|
domain: string;
|
|
174
174
|
/**
|
|
175
|
-
*
|
|
175
|
+
* Extension domain name ID.
|
|
176
176
|
*/
|
|
177
177
|
domainExtensionId: string;
|
|
178
178
|
/**
|
|
179
|
-
* Listener ID
|
|
179
|
+
* Listener ID associated with the extended domain name.
|
|
180
180
|
*/
|
|
181
181
|
listenerId: string;
|
|
182
182
|
/**
|
|
@@ -184,7 +184,7 @@ export declare namespace alb {
|
|
|
184
184
|
*/
|
|
185
185
|
pcaLeafCertificateId: string;
|
|
186
186
|
/**
|
|
187
|
-
* If the instance supports automatic selection of
|
|
187
|
+
* 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
188
|
*/
|
|
189
189
|
san: string;
|
|
190
190
|
}
|
|
@@ -200,11 +200,11 @@ export declare namespace alb {
|
|
|
200
200
|
}
|
|
201
201
|
interface GetListenerTag {
|
|
202
202
|
/**
|
|
203
|
-
*
|
|
203
|
+
* 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
204
|
*/
|
|
205
205
|
key: string;
|
|
206
206
|
/**
|
|
207
|
-
*
|
|
207
|
+
* 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
208
|
*/
|
|
209
209
|
value: string;
|
|
210
210
|
}
|
|
@@ -602,31 +602,31 @@ export declare namespace alb {
|
|
|
602
602
|
}
|
|
603
603
|
interface GetServerGroupHealthCheck {
|
|
604
604
|
/**
|
|
605
|
-
*
|
|
605
|
+
* 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
606
|
*/
|
|
607
607
|
domain: string;
|
|
608
608
|
/**
|
|
609
|
-
* Whether the listener
|
|
609
|
+
* Whether the listener has enabled health check. Values: on: enabled (default), off: disabled.
|
|
610
610
|
*/
|
|
611
611
|
enabled: string;
|
|
612
612
|
/**
|
|
613
|
-
* Health check threshold. Indicates
|
|
613
|
+
* 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
614
|
*/
|
|
615
615
|
healthyThreshold: number;
|
|
616
616
|
/**
|
|
617
|
-
* HTTP status codes
|
|
617
|
+
* 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
618
|
*/
|
|
619
619
|
httpCode: string;
|
|
620
620
|
/**
|
|
621
|
-
*
|
|
621
|
+
* 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
622
|
*/
|
|
623
623
|
httpVersion: string;
|
|
624
624
|
/**
|
|
625
|
-
* After health
|
|
625
|
+
* After enabling health check, the interval for performing health checks. Unit: seconds. Range: 1–300s. Default: 2.
|
|
626
626
|
*/
|
|
627
627
|
interval: number;
|
|
628
628
|
/**
|
|
629
|
-
*
|
|
629
|
+
* 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
630
|
*/
|
|
631
631
|
method: string;
|
|
632
632
|
/**
|
|
@@ -638,15 +638,15 @@ export declare namespace alb {
|
|
|
638
638
|
*/
|
|
639
639
|
protocol: string;
|
|
640
640
|
/**
|
|
641
|
-
* Health check response timeout. If the backend server does not respond correctly within the specified time,
|
|
641
|
+
* 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
642
|
*/
|
|
643
643
|
timeout: number;
|
|
644
644
|
/**
|
|
645
|
-
* Unhealthy threshold for health checks.
|
|
645
|
+
* 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
646
|
*/
|
|
647
647
|
unhealthyThreshold: number;
|
|
648
648
|
/**
|
|
649
|
-
* Health check path
|
|
649
|
+
* 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
650
|
*/
|
|
651
651
|
uri: string;
|
|
652
652
|
}
|
|
@@ -662,7 +662,7 @@ export declare namespace alb {
|
|
|
662
662
|
*/
|
|
663
663
|
description: string;
|
|
664
664
|
/**
|
|
665
|
-
* ID of the cloud server instance or network interface
|
|
665
|
+
* ID of the cloud server instance or network interface.
|
|
666
666
|
*/
|
|
667
667
|
instanceId: string;
|
|
668
668
|
/**
|
|
@@ -674,7 +674,7 @@ export declare namespace alb {
|
|
|
674
674
|
*/
|
|
675
675
|
port: number;
|
|
676
676
|
/**
|
|
677
|
-
* Enable remote IP feature. This field is valid
|
|
677
|
+
* 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
678
|
*/
|
|
679
679
|
remoteEnabled: string;
|
|
680
680
|
/**
|
|
@@ -682,21 +682,21 @@ export declare namespace alb {
|
|
|
682
682
|
*/
|
|
683
683
|
serverId: string;
|
|
684
684
|
/**
|
|
685
|
-
* Backend server instance type.
|
|
685
|
+
* Backend server instance type. ECS: cloud server instance; ENI: secondary network interface; IP: IP address (only valid for IP-type server groups).
|
|
686
686
|
*/
|
|
687
687
|
type: string;
|
|
688
688
|
/**
|
|
689
|
-
*
|
|
689
|
+
* Backend server weight.
|
|
690
690
|
*/
|
|
691
691
|
weight: number;
|
|
692
692
|
}
|
|
693
693
|
interface GetServerGroupStickySessionConfig {
|
|
694
694
|
/**
|
|
695
|
-
*
|
|
695
|
+
* 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
696
|
*/
|
|
697
697
|
cookie: string;
|
|
698
698
|
/**
|
|
699
|
-
* Session persistence cookie timeout. Only
|
|
699
|
+
* 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
700
|
*/
|
|
701
701
|
cookieTimeout: number;
|
|
702
702
|
/**
|
|
@@ -704,17 +704,17 @@ export declare namespace alb {
|
|
|
704
704
|
*/
|
|
705
705
|
stickySessionEnabled: string;
|
|
706
706
|
/**
|
|
707
|
-
* Cookie handling method.
|
|
707
|
+
* 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
708
|
*/
|
|
709
709
|
stickySessionType: string;
|
|
710
710
|
}
|
|
711
711
|
interface GetServerGroupTag {
|
|
712
712
|
/**
|
|
713
|
-
* Tag key.
|
|
713
|
+
* Tag key. Duplicate tag keys are not allowed for the same resource.
|
|
714
714
|
*/
|
|
715
715
|
key: string;
|
|
716
716
|
/**
|
|
717
|
-
* Tag value
|
|
717
|
+
* Tag value.
|
|
718
718
|
*/
|
|
719
719
|
value: string;
|
|
720
720
|
}
|
|
@@ -730,7 +730,7 @@ export declare namespace alb {
|
|
|
730
730
|
}
|
|
731
731
|
interface ListenerDomainExtension {
|
|
732
732
|
/**
|
|
733
|
-
* Server certificate ID used by the domain. Effective when the certificate source is cert_center.
|
|
733
|
+
* Server certificate ID used by the domain name. Effective when the certificate source is cert_center.
|
|
734
734
|
*/
|
|
735
735
|
certCenterCertificateId: string;
|
|
736
736
|
/**
|
|
@@ -738,11 +738,11 @@ export declare namespace alb {
|
|
|
738
738
|
*/
|
|
739
739
|
certificateId: string;
|
|
740
740
|
/**
|
|
741
|
-
* Source of the server certificate used by the domain. Values: alb: certificate uploaded via ALB. cert_center: SSL certificate purchased or uploaded
|
|
741
|
+
* 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
742
|
*/
|
|
743
743
|
certificateSource: string;
|
|
744
744
|
/**
|
|
745
|
-
* Domain name. Usually cannot be empty. If the instance supports automatic selection of
|
|
745
|
+
* 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
746
|
*/
|
|
747
747
|
domain: string;
|
|
748
748
|
/**
|
|
@@ -750,7 +750,7 @@ export declare namespace alb {
|
|
|
750
750
|
*/
|
|
751
751
|
pcaLeafCertificateId: string;
|
|
752
752
|
/**
|
|
753
|
-
* If the instance supports automatic selection of
|
|
753
|
+
* 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
754
|
*/
|
|
755
755
|
san: string;
|
|
756
756
|
}
|
|
@@ -766,11 +766,11 @@ export declare namespace alb {
|
|
|
766
766
|
}
|
|
767
767
|
interface ListenerTag {
|
|
768
768
|
/**
|
|
769
|
-
*
|
|
769
|
+
* 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
770
|
*/
|
|
771
771
|
key: string;
|
|
772
772
|
/**
|
|
773
|
-
*
|
|
773
|
+
* 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
774
|
*/
|
|
775
775
|
value: string;
|
|
776
776
|
}
|
|
@@ -1067,31 +1067,31 @@ export declare namespace alb {
|
|
|
1067
1067
|
}
|
|
1068
1068
|
interface ServerGroupHealthCheck {
|
|
1069
1069
|
/**
|
|
1070
|
-
*
|
|
1070
|
+
* 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
1071
|
*/
|
|
1072
1072
|
domain: string;
|
|
1073
1073
|
/**
|
|
1074
|
-
* Whether the listener
|
|
1074
|
+
* Whether the listener has enabled health check. Values: on: enabled (default), off: disabled.
|
|
1075
1075
|
*/
|
|
1076
1076
|
enabled: string;
|
|
1077
1077
|
/**
|
|
1078
|
-
* Health check threshold. Indicates
|
|
1078
|
+
* 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
1079
|
*/
|
|
1080
1080
|
healthyThreshold: number;
|
|
1081
1081
|
/**
|
|
1082
|
-
* HTTP status codes
|
|
1082
|
+
* 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
1083
|
*/
|
|
1084
1084
|
httpCode: string;
|
|
1085
1085
|
/**
|
|
1086
|
-
*
|
|
1086
|
+
* 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
1087
|
*/
|
|
1088
1088
|
httpVersion: string;
|
|
1089
1089
|
/**
|
|
1090
|
-
* After health
|
|
1090
|
+
* After enabling health check, the interval for performing health checks. Unit: seconds. Range: 1–300s. Default: 2.
|
|
1091
1091
|
*/
|
|
1092
1092
|
interval: number;
|
|
1093
1093
|
/**
|
|
1094
|
-
*
|
|
1094
|
+
* 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
1095
|
*/
|
|
1096
1096
|
method: string;
|
|
1097
1097
|
/**
|
|
@@ -1103,15 +1103,15 @@ export declare namespace alb {
|
|
|
1103
1103
|
*/
|
|
1104
1104
|
protocol: string;
|
|
1105
1105
|
/**
|
|
1106
|
-
* Health check response timeout. If the backend server does not respond correctly within the specified time,
|
|
1106
|
+
* 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
1107
|
*/
|
|
1108
1108
|
timeout: number;
|
|
1109
1109
|
/**
|
|
1110
|
-
* Unhealthy threshold for health checks.
|
|
1110
|
+
* 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
1111
|
*/
|
|
1112
1112
|
unhealthyThreshold: number;
|
|
1113
1113
|
/**
|
|
1114
|
-
* Health check path
|
|
1114
|
+
* 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
1115
|
*/
|
|
1116
1116
|
uri: string;
|
|
1117
1117
|
}
|
|
@@ -1127,7 +1127,7 @@ export declare namespace alb {
|
|
|
1127
1127
|
*/
|
|
1128
1128
|
description: string;
|
|
1129
1129
|
/**
|
|
1130
|
-
* ID of the cloud server instance or network interface
|
|
1130
|
+
* ID of the cloud server instance or network interface.
|
|
1131
1131
|
*/
|
|
1132
1132
|
instanceId: string;
|
|
1133
1133
|
/**
|
|
@@ -1139,7 +1139,7 @@ export declare namespace alb {
|
|
|
1139
1139
|
*/
|
|
1140
1140
|
port: number;
|
|
1141
1141
|
/**
|
|
1142
|
-
* Enable remote IP feature. This field is valid
|
|
1142
|
+
* 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
1143
|
*/
|
|
1144
1144
|
remoteEnabled: string;
|
|
1145
1145
|
/**
|
|
@@ -1147,21 +1147,21 @@ export declare namespace alb {
|
|
|
1147
1147
|
*/
|
|
1148
1148
|
serverId: string;
|
|
1149
1149
|
/**
|
|
1150
|
-
* Backend server instance type.
|
|
1150
|
+
* Backend server instance type. ECS: cloud server instance; ENI: secondary network interface; IP: IP address (only valid for IP-type server groups).
|
|
1151
1151
|
*/
|
|
1152
1152
|
type: string;
|
|
1153
1153
|
/**
|
|
1154
|
-
*
|
|
1154
|
+
* Backend server weight.
|
|
1155
1155
|
*/
|
|
1156
1156
|
weight: number;
|
|
1157
1157
|
}
|
|
1158
1158
|
interface ServerGroupStickySessionConfig {
|
|
1159
1159
|
/**
|
|
1160
|
-
*
|
|
1160
|
+
* 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
1161
|
*/
|
|
1162
1162
|
cookie: string;
|
|
1163
1163
|
/**
|
|
1164
|
-
* Session persistence cookie timeout. Only
|
|
1164
|
+
* 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
1165
|
*/
|
|
1166
1166
|
cookieTimeout: number;
|
|
1167
1167
|
/**
|
|
@@ -1169,17 +1169,17 @@ export declare namespace alb {
|
|
|
1169
1169
|
*/
|
|
1170
1170
|
stickySessionEnabled: string;
|
|
1171
1171
|
/**
|
|
1172
|
-
* Cookie handling method.
|
|
1172
|
+
* 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
1173
|
*/
|
|
1174
1174
|
stickySessionType: string;
|
|
1175
1175
|
}
|
|
1176
1176
|
interface ServerGroupTag {
|
|
1177
1177
|
/**
|
|
1178
|
-
* Tag key.
|
|
1178
|
+
* Tag key. Duplicate tag keys are not allowed for the same resource.
|
|
1179
1179
|
*/
|
|
1180
1180
|
key: string;
|
|
1181
1181
|
/**
|
|
1182
|
-
* Tag value
|
|
1182
|
+
* Tag value.
|
|
1183
1183
|
*/
|
|
1184
1184
|
value: string;
|
|
1185
1185
|
}
|
|
@@ -9462,41 +9462,49 @@ export declare namespace config {
|
|
|
9462
9462
|
}
|
|
9463
9463
|
}
|
|
9464
9464
|
export declare namespace cr {
|
|
9465
|
+
interface GetRegistryEndpoint {
|
|
9466
|
+
/**
|
|
9467
|
+
* Public IP allowlist
|
|
9468
|
+
*/
|
|
9469
|
+
aclPolicies: outputs.cr.GetRegistryEndpointAclPolicy[];
|
|
9470
|
+
/**
|
|
9471
|
+
* Whether to enable the public endpoint. Options: false: not enabled; true: enabled. Default is false
|
|
9472
|
+
*/
|
|
9473
|
+
enabled: boolean;
|
|
9474
|
+
/**
|
|
9475
|
+
* Current status of the public endpoint. Parameter values: Enabling: enabling; Enabled: enabled; Disabling: disabling; Updating: updating; Failed: failed; Disabled: disabled
|
|
9476
|
+
*/
|
|
9477
|
+
status: string;
|
|
9478
|
+
}
|
|
9479
|
+
interface GetRegistryEndpointAclPolicy {
|
|
9480
|
+
/**
|
|
9481
|
+
* IP entry address
|
|
9482
|
+
*/
|
|
9483
|
+
description: string;
|
|
9484
|
+
/**
|
|
9485
|
+
* IP entry description
|
|
9486
|
+
*/
|
|
9487
|
+
entry: string;
|
|
9488
|
+
}
|
|
9465
9489
|
interface GetRegistryProxyCache {
|
|
9466
9490
|
/**
|
|
9467
|
-
* Instance types supported by ProxyCache
|
|
9491
|
+
* Instance types supported by ProxyCache. Parameter value description: DockerHub: DockerHub image repository.
|
|
9468
9492
|
*/
|
|
9469
9493
|
type: string;
|
|
9470
9494
|
}
|
|
9471
9495
|
interface GetRegistryStatus {
|
|
9472
9496
|
/**
|
|
9473
|
-
* Creating, [ Progressing ]: Creating
|
|
9474
|
-
* Running, [ Ok ]: Running
|
|
9475
|
-
* Running, [ Degraded ]: Running
|
|
9476
|
-
* Stopped, [ Balance ]: Suspended due to insufficient balance
|
|
9477
|
-
* Stopped, [ Released ]: Pending reclamation
|
|
9478
|
-
* Stopped, [ Released, Balance ]: Suspended due to insufficient balance
|
|
9479
|
-
* Starting, [ Progressing ]: Starting
|
|
9480
|
-
* Deleting, [ Progressing ]: Deleting
|
|
9481
|
-
* Failed, [ Unknown ]: Abnormal
|
|
9497
|
+
* 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.
|
|
9482
9498
|
*/
|
|
9483
9499
|
conditions: string[];
|
|
9484
9500
|
/**
|
|
9485
|
-
* Creating, [ Progressing ]: Creating
|
|
9486
|
-
* Running, [ Ok ]: Running
|
|
9487
|
-
* Running, [ Degraded ]: Running
|
|
9488
|
-
* Stopped, [ Balance ]: Suspended due to insufficient balance
|
|
9489
|
-
* Stopped, [ Released ]: Pending reclamation
|
|
9490
|
-
* Stopped, [ Released, Balance ]: Suspended due to insufficient balance
|
|
9491
|
-
* Starting, [ Progressing ]: Starting
|
|
9492
|
-
* Deleting, [ Progressing ]: Deleting
|
|
9493
|
-
* Failed, [ Unknown ]: Abnormal
|
|
9501
|
+
* 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.
|
|
9494
9502
|
*/
|
|
9495
9503
|
phase: string;
|
|
9496
9504
|
}
|
|
9497
9505
|
interface GetRegistryTag {
|
|
9498
9506
|
/**
|
|
9499
|
-
* Tag key
|
|
9507
|
+
* Tag key
|
|
9500
9508
|
*/
|
|
9501
9509
|
key: string;
|
|
9502
9510
|
/**
|
|
@@ -9504,41 +9512,46 @@ export declare namespace cr {
|
|
|
9504
9512
|
*/
|
|
9505
9513
|
value: string;
|
|
9506
9514
|
}
|
|
9515
|
+
interface RegistryEndpoint {
|
|
9516
|
+
aclPolicies: outputs.cr.RegistryEndpointAclPolicy[];
|
|
9517
|
+
/**
|
|
9518
|
+
* Whether to enable the public endpoint. Options: false: not enabled; true: enabled. Default is false
|
|
9519
|
+
*/
|
|
9520
|
+
enabled: boolean;
|
|
9521
|
+
/**
|
|
9522
|
+
* Current status of the public endpoint. Parameter values: Enabling: enabling; Enabled: enabled; Disabling: disabling; Updating: updating; Failed: failed; Disabled: disabled
|
|
9523
|
+
*/
|
|
9524
|
+
status: string;
|
|
9525
|
+
}
|
|
9526
|
+
interface RegistryEndpointAclPolicy {
|
|
9527
|
+
/**
|
|
9528
|
+
* IP entry address
|
|
9529
|
+
*/
|
|
9530
|
+
description: string;
|
|
9531
|
+
/**
|
|
9532
|
+
* IP entry description
|
|
9533
|
+
*/
|
|
9534
|
+
entry: string;
|
|
9535
|
+
}
|
|
9507
9536
|
interface RegistryProxyCache {
|
|
9508
9537
|
/**
|
|
9509
|
-
* Instance types supported by ProxyCache
|
|
9538
|
+
* Instance types supported by ProxyCache. Parameter value description: DockerHub: DockerHub image repository.
|
|
9510
9539
|
*/
|
|
9511
9540
|
type: string;
|
|
9512
9541
|
}
|
|
9513
9542
|
interface RegistryStatus {
|
|
9514
9543
|
/**
|
|
9515
|
-
* Creating, [ Progressing ]: Creating
|
|
9516
|
-
* Running, [ Ok ]: Running
|
|
9517
|
-
* Running, [ Degraded ]: Running
|
|
9518
|
-
* Stopped, [ Balance ]: Suspended due to insufficient balance
|
|
9519
|
-
* Stopped, [ Released ]: Pending reclamation
|
|
9520
|
-
* Stopped, [ Released, Balance ]: Suspended due to insufficient balance
|
|
9521
|
-
* Starting, [ Progressing ]: Starting
|
|
9522
|
-
* Deleting, [ Progressing ]: Deleting
|
|
9523
|
-
* Failed, [ Unknown ]: Abnormal
|
|
9544
|
+
* 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.
|
|
9524
9545
|
*/
|
|
9525
9546
|
conditions: string[];
|
|
9526
9547
|
/**
|
|
9527
|
-
* Creating, [ Progressing ]: Creating
|
|
9528
|
-
* Running, [ Ok ]: Running
|
|
9529
|
-
* Running, [ Degraded ]: Running
|
|
9530
|
-
* Stopped, [ Balance ]: Suspended due to insufficient balance
|
|
9531
|
-
* Stopped, [ Released ]: Pending reclamation
|
|
9532
|
-
* Stopped, [ Released, Balance ]: Suspended due to insufficient balance
|
|
9533
|
-
* Starting, [ Progressing ]: Starting
|
|
9534
|
-
* Deleting, [ Progressing ]: Deleting
|
|
9535
|
-
* Failed, [ Unknown ]: Abnormal
|
|
9548
|
+
* 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.
|
|
9536
9549
|
*/
|
|
9537
9550
|
phase: string;
|
|
9538
9551
|
}
|
|
9539
9552
|
interface RegistryTag {
|
|
9540
9553
|
/**
|
|
9541
|
-
* Tag key
|
|
9554
|
+
* Tag key
|
|
9542
9555
|
*/
|
|
9543
9556
|
key: string;
|
|
9544
9557
|
/**
|
|
@@ -15227,6 +15240,24 @@ export declare namespace organization {
|
|
|
15227
15240
|
*/
|
|
15228
15241
|
mainName: string;
|
|
15229
15242
|
}
|
|
15243
|
+
interface GetServiceControlPolicyTarget {
|
|
15244
|
+
/**
|
|
15245
|
+
* Binding time.
|
|
15246
|
+
*/
|
|
15247
|
+
attachedTime: string;
|
|
15248
|
+
/**
|
|
15249
|
+
* Target ID.
|
|
15250
|
+
*/
|
|
15251
|
+
targetId: string;
|
|
15252
|
+
/**
|
|
15253
|
+
* Target name.
|
|
15254
|
+
*/
|
|
15255
|
+
targetName: string;
|
|
15256
|
+
/**
|
|
15257
|
+
* Target type: 1. OU 2. Account.
|
|
15258
|
+
*/
|
|
15259
|
+
targetType: string;
|
|
15260
|
+
}
|
|
15230
15261
|
interface OrganizationOrganization {
|
|
15231
15262
|
/**
|
|
15232
15263
|
* Creation Time
|
|
@@ -15271,6 +15302,16 @@ export declare namespace organization {
|
|
|
15271
15302
|
*/
|
|
15272
15303
|
mainName: string;
|
|
15273
15304
|
}
|
|
15305
|
+
interface ServiceControlPolicyTarget {
|
|
15306
|
+
/**
|
|
15307
|
+
* Target ID.
|
|
15308
|
+
*/
|
|
15309
|
+
targetId: string;
|
|
15310
|
+
/**
|
|
15311
|
+
* Target type: 1. OU 2. Account.
|
|
15312
|
+
*/
|
|
15313
|
+
targetType: string;
|
|
15314
|
+
}
|
|
15274
15315
|
}
|
|
15275
15316
|
export declare namespace privatelink {
|
|
15276
15317
|
interface EndpointServicePrivateDnsNameConfiguration {
|
|
@@ -20710,6 +20751,16 @@ export declare namespace tls {
|
|
|
20710
20751
|
}
|
|
20711
20752
|
}
|
|
20712
20753
|
export declare namespace transitrouter {
|
|
20754
|
+
interface GetPeerAttachmentTag {
|
|
20755
|
+
/**
|
|
20756
|
+
* 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.
|
|
20757
|
+
*/
|
|
20758
|
+
key: string;
|
|
20759
|
+
/**
|
|
20760
|
+
* 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.
|
|
20761
|
+
*/
|
|
20762
|
+
value: string;
|
|
20763
|
+
}
|
|
20713
20764
|
interface GetTransitRouterAttachment {
|
|
20714
20765
|
/**
|
|
20715
20766
|
* Whether to automatically synchronize TR routes to the network instance route table. true: Yes. false: No.
|
|
@@ -20852,6 +20903,16 @@ export declare namespace transitrouter {
|
|
|
20852
20903
|
*/
|
|
20853
20904
|
value: string;
|
|
20854
20905
|
}
|
|
20906
|
+
interface PeerAttachmentTag {
|
|
20907
|
+
/**
|
|
20908
|
+
* 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.
|
|
20909
|
+
*/
|
|
20910
|
+
key: string;
|
|
20911
|
+
/**
|
|
20912
|
+
* 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.
|
|
20913
|
+
*/
|
|
20914
|
+
value: string;
|
|
20915
|
+
}
|
|
20855
20916
|
interface TransitRouterAttachment {
|
|
20856
20917
|
/**
|
|
20857
20918
|
* Whether to automatically synchronize TR routes to the network instance route table. true: Yes. false: No.
|
|
@@ -26418,6 +26479,16 @@ export declare namespace vpn {
|
|
|
26418
26479
|
*/
|
|
26419
26480
|
value: string;
|
|
26420
26481
|
}
|
|
26482
|
+
interface GetSslVpnClientCertTag {
|
|
26483
|
+
/**
|
|
26484
|
+
* 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.
|
|
26485
|
+
*/
|
|
26486
|
+
key: string;
|
|
26487
|
+
/**
|
|
26488
|
+
* 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.
|
|
26489
|
+
*/
|
|
26490
|
+
value: string;
|
|
26491
|
+
}
|
|
26421
26492
|
interface GetVpnConnectionBgpInfo {
|
|
26422
26493
|
/**
|
|
26423
26494
|
* Enable dynamic route propagation. false (default): No, use static routing mode. true: Yes, use BGP routing mode.
|
|
@@ -26682,6 +26753,16 @@ export declare namespace vpn {
|
|
|
26682
26753
|
*/
|
|
26683
26754
|
value: string;
|
|
26684
26755
|
}
|
|
26756
|
+
interface SslVpnClientCertTag {
|
|
26757
|
+
/**
|
|
26758
|
+
* 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.
|
|
26759
|
+
*/
|
|
26760
|
+
key: string;
|
|
26761
|
+
/**
|
|
26762
|
+
* 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.
|
|
26763
|
+
*/
|
|
26764
|
+
value: string;
|
|
26765
|
+
}
|
|
26685
26766
|
interface VpnConnectionBgpInfo {
|
|
26686
26767
|
/**
|
|
26687
26768
|
* Enable dynamic route propagation. false (default): No, use static routing mode. true: Yes, use BGP routing mode.
|