@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/input.d.ts
CHANGED
|
@@ -27,27 +27,27 @@ export interface ProviderEndpoints {
|
|
|
27
27
|
export declare namespace alb {
|
|
28
28
|
interface AclAclEntry {
|
|
29
29
|
/**
|
|
30
|
-
* 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
|
|
30
|
+
* 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.
|
|
31
31
|
*/
|
|
32
32
|
description?: pulumi.Input<string>;
|
|
33
33
|
/**
|
|
34
|
-
* IP entry address range
|
|
34
|
+
* IP entry address range. Only CIDR addresses are supported.
|
|
35
35
|
*/
|
|
36
36
|
entry?: pulumi.Input<string>;
|
|
37
37
|
}
|
|
38
38
|
interface AclListener {
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* Listener control mode for this access control policy group. white: allowlist mode; black: denylist mode
|
|
41
41
|
*/
|
|
42
42
|
aclType?: pulumi.Input<string>;
|
|
43
43
|
}
|
|
44
44
|
interface AclTag {
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
46
|
+
* 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.
|
|
47
47
|
*/
|
|
48
48
|
key?: pulumi.Input<string>;
|
|
49
49
|
/**
|
|
50
|
-
* User tag value. Length
|
|
50
|
+
* 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 @.
|
|
51
51
|
*/
|
|
52
52
|
value?: pulumi.Input<string>;
|
|
53
53
|
}
|
|
@@ -101,7 +101,7 @@ export declare namespace alb {
|
|
|
101
101
|
}
|
|
102
102
|
interface ListenerDomainExtension {
|
|
103
103
|
/**
|
|
104
|
-
* Server certificate ID used by the domain. Effective when the certificate source is cert_center.
|
|
104
|
+
* Server certificate ID used by the domain name. Effective when the certificate source is cert_center.
|
|
105
105
|
*/
|
|
106
106
|
certCenterCertificateId?: pulumi.Input<string>;
|
|
107
107
|
/**
|
|
@@ -109,11 +109,11 @@ export declare namespace alb {
|
|
|
109
109
|
*/
|
|
110
110
|
certificateId?: pulumi.Input<string>;
|
|
111
111
|
/**
|
|
112
|
-
* Source of the server certificate used by the domain. Values: alb: certificate uploaded via ALB. cert_center: SSL certificate purchased or uploaded
|
|
112
|
+
* 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.
|
|
113
113
|
*/
|
|
114
114
|
certificateSource?: pulumi.Input<string>;
|
|
115
115
|
/**
|
|
116
|
-
* Domain name. Usually cannot be empty. If the instance supports automatic selection of
|
|
116
|
+
* 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.
|
|
117
117
|
*/
|
|
118
118
|
domain?: pulumi.Input<string>;
|
|
119
119
|
/**
|
|
@@ -121,7 +121,7 @@ export declare namespace alb {
|
|
|
121
121
|
*/
|
|
122
122
|
pcaLeafCertificateId?: pulumi.Input<string>;
|
|
123
123
|
/**
|
|
124
|
-
* If the instance supports automatic selection of
|
|
124
|
+
* 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.
|
|
125
125
|
*/
|
|
126
126
|
san?: pulumi.Input<string>;
|
|
127
127
|
}
|
|
@@ -137,11 +137,11 @@ export declare namespace alb {
|
|
|
137
137
|
}
|
|
138
138
|
interface ListenerTag {
|
|
139
139
|
/**
|
|
140
|
-
*
|
|
140
|
+
* 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.
|
|
141
141
|
*/
|
|
142
142
|
key?: pulumi.Input<string>;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* 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 @.
|
|
145
145
|
*/
|
|
146
146
|
value?: pulumi.Input<string>;
|
|
147
147
|
}
|
|
@@ -438,31 +438,31 @@ export declare namespace alb {
|
|
|
438
438
|
}
|
|
439
439
|
interface ServerGroupHealthCheck {
|
|
440
440
|
/**
|
|
441
|
-
*
|
|
441
|
+
* 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.
|
|
442
442
|
*/
|
|
443
443
|
domain?: pulumi.Input<string>;
|
|
444
444
|
/**
|
|
445
|
-
* Whether the listener
|
|
445
|
+
* Whether the listener has enabled health check. Values: on: enabled (default), off: disabled.
|
|
446
446
|
*/
|
|
447
447
|
enabled?: pulumi.Input<string>;
|
|
448
448
|
/**
|
|
449
|
-
* Health check threshold. Indicates
|
|
449
|
+
* 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.
|
|
450
450
|
*/
|
|
451
451
|
healthyThreshold?: pulumi.Input<number>;
|
|
452
452
|
/**
|
|
453
|
-
* HTTP status codes
|
|
453
|
+
* 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.
|
|
454
454
|
*/
|
|
455
455
|
httpCode?: pulumi.Input<string>;
|
|
456
456
|
/**
|
|
457
|
-
*
|
|
457
|
+
* 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.
|
|
458
458
|
*/
|
|
459
459
|
httpVersion?: pulumi.Input<string>;
|
|
460
460
|
/**
|
|
461
|
-
* After health
|
|
461
|
+
* After enabling health check, the interval for performing health checks. Unit: seconds. Range: 1–300s. Default: 2.
|
|
462
462
|
*/
|
|
463
463
|
interval?: pulumi.Input<number>;
|
|
464
464
|
/**
|
|
465
|
-
*
|
|
465
|
+
* 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.
|
|
466
466
|
*/
|
|
467
467
|
method?: pulumi.Input<string>;
|
|
468
468
|
/**
|
|
@@ -474,15 +474,15 @@ export declare namespace alb {
|
|
|
474
474
|
*/
|
|
475
475
|
protocol?: pulumi.Input<string>;
|
|
476
476
|
/**
|
|
477
|
-
* Health check response timeout. If the backend server does not respond correctly within the specified time,
|
|
477
|
+
* 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.
|
|
478
478
|
*/
|
|
479
479
|
timeout?: pulumi.Input<number>;
|
|
480
480
|
/**
|
|
481
|
-
* Unhealthy threshold for health checks.
|
|
481
|
+
* 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.
|
|
482
482
|
*/
|
|
483
483
|
unhealthyThreshold?: pulumi.Input<number>;
|
|
484
484
|
/**
|
|
485
|
-
* Health check path
|
|
485
|
+
* 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 '/'.
|
|
486
486
|
*/
|
|
487
487
|
uri?: pulumi.Input<string>;
|
|
488
488
|
}
|
|
@@ -498,7 +498,7 @@ export declare namespace alb {
|
|
|
498
498
|
*/
|
|
499
499
|
description?: pulumi.Input<string>;
|
|
500
500
|
/**
|
|
501
|
-
* ID of the cloud server instance or network interface
|
|
501
|
+
* ID of the cloud server instance or network interface.
|
|
502
502
|
*/
|
|
503
503
|
instanceId?: pulumi.Input<string>;
|
|
504
504
|
/**
|
|
@@ -510,7 +510,7 @@ export declare namespace alb {
|
|
|
510
510
|
*/
|
|
511
511
|
port?: pulumi.Input<number>;
|
|
512
512
|
/**
|
|
513
|
-
* Enable remote IP feature. This field is valid
|
|
513
|
+
* 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.
|
|
514
514
|
*/
|
|
515
515
|
remoteEnabled?: pulumi.Input<string>;
|
|
516
516
|
/**
|
|
@@ -518,21 +518,21 @@ export declare namespace alb {
|
|
|
518
518
|
*/
|
|
519
519
|
serverId?: pulumi.Input<string>;
|
|
520
520
|
/**
|
|
521
|
-
* Backend server instance type.
|
|
521
|
+
* Backend server instance type. ECS: cloud server instance; ENI: secondary network interface; IP: IP address (only valid for IP-type server groups).
|
|
522
522
|
*/
|
|
523
523
|
type?: pulumi.Input<string>;
|
|
524
524
|
/**
|
|
525
|
-
*
|
|
525
|
+
* Backend server weight.
|
|
526
526
|
*/
|
|
527
527
|
weight?: pulumi.Input<number>;
|
|
528
528
|
}
|
|
529
529
|
interface ServerGroupStickySessionConfig {
|
|
530
530
|
/**
|
|
531
|
-
*
|
|
531
|
+
* 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.
|
|
532
532
|
*/
|
|
533
533
|
cookie?: pulumi.Input<string>;
|
|
534
534
|
/**
|
|
535
|
-
* Session persistence cookie timeout. Only
|
|
535
|
+
* 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.
|
|
536
536
|
*/
|
|
537
537
|
cookieTimeout?: pulumi.Input<number>;
|
|
538
538
|
/**
|
|
@@ -540,17 +540,17 @@ export declare namespace alb {
|
|
|
540
540
|
*/
|
|
541
541
|
stickySessionEnabled?: pulumi.Input<string>;
|
|
542
542
|
/**
|
|
543
|
-
* Cookie handling method.
|
|
543
|
+
* 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.
|
|
544
544
|
*/
|
|
545
545
|
stickySessionType?: pulumi.Input<string>;
|
|
546
546
|
}
|
|
547
547
|
interface ServerGroupTag {
|
|
548
548
|
/**
|
|
549
|
-
* Tag key.
|
|
549
|
+
* Tag key. Duplicate tag keys are not allowed for the same resource.
|
|
550
550
|
*/
|
|
551
551
|
key?: pulumi.Input<string>;
|
|
552
552
|
/**
|
|
553
|
-
* Tag value
|
|
553
|
+
* Tag value.
|
|
554
554
|
*/
|
|
555
555
|
value?: pulumi.Input<string>;
|
|
556
556
|
}
|
|
@@ -4573,41 +4573,46 @@ export declare namespace cloudmonitor {
|
|
|
4573
4573
|
export declare namespace config {
|
|
4574
4574
|
}
|
|
4575
4575
|
export declare namespace cr {
|
|
4576
|
+
interface RegistryEndpoint {
|
|
4577
|
+
aclPolicies?: pulumi.Input<pulumi.Input<inputs.cr.RegistryEndpointAclPolicy>[]>;
|
|
4578
|
+
/**
|
|
4579
|
+
* Whether to enable the public endpoint. Options: false: not enabled; true: enabled. Default is false
|
|
4580
|
+
*/
|
|
4581
|
+
enabled?: pulumi.Input<boolean>;
|
|
4582
|
+
/**
|
|
4583
|
+
* Current status of the public endpoint. Parameter values: Enabling: enabling; Enabled: enabled; Disabling: disabling; Updating: updating; Failed: failed; Disabled: disabled
|
|
4584
|
+
*/
|
|
4585
|
+
status?: pulumi.Input<string>;
|
|
4586
|
+
}
|
|
4587
|
+
interface RegistryEndpointAclPolicy {
|
|
4588
|
+
/**
|
|
4589
|
+
* IP entry address
|
|
4590
|
+
*/
|
|
4591
|
+
description?: pulumi.Input<string>;
|
|
4592
|
+
/**
|
|
4593
|
+
* IP entry description
|
|
4594
|
+
*/
|
|
4595
|
+
entry?: pulumi.Input<string>;
|
|
4596
|
+
}
|
|
4576
4597
|
interface RegistryProxyCache {
|
|
4577
4598
|
/**
|
|
4578
|
-
* Instance types supported by ProxyCache
|
|
4599
|
+
* Instance types supported by ProxyCache. Parameter value description: DockerHub: DockerHub image repository.
|
|
4579
4600
|
*/
|
|
4580
4601
|
type?: pulumi.Input<string>;
|
|
4581
4602
|
}
|
|
4582
4603
|
interface RegistryStatus {
|
|
4583
4604
|
/**
|
|
4584
|
-
* Creating, [ Progressing ]: Creating
|
|
4585
|
-
* Running, [ Ok ]: Running
|
|
4586
|
-
* Running, [ Degraded ]: Running
|
|
4587
|
-
* Stopped, [ Balance ]: Suspended due to insufficient balance
|
|
4588
|
-
* Stopped, [ Released ]: Pending reclamation
|
|
4589
|
-
* Stopped, [ Released, Balance ]: Suspended due to insufficient balance
|
|
4590
|
-
* Starting, [ Progressing ]: Starting
|
|
4591
|
-
* Deleting, [ Progressing ]: Deleting
|
|
4592
|
-
* Failed, [ Unknown ]: Abnormal
|
|
4605
|
+
* 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.
|
|
4593
4606
|
*/
|
|
4594
4607
|
conditions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4595
4608
|
/**
|
|
4596
|
-
* Creating, [ Progressing ]: Creating
|
|
4597
|
-
* Running, [ Ok ]: Running
|
|
4598
|
-
* Running, [ Degraded ]: Running
|
|
4599
|
-
* Stopped, [ Balance ]: Suspended due to insufficient balance
|
|
4600
|
-
* Stopped, [ Released ]: Pending reclamation
|
|
4601
|
-
* Stopped, [ Released, Balance ]: Suspended due to insufficient balance
|
|
4602
|
-
* Starting, [ Progressing ]: Starting
|
|
4603
|
-
* Deleting, [ Progressing ]: Deleting
|
|
4604
|
-
* Failed, [ Unknown ]: Abnormal
|
|
4609
|
+
* 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.
|
|
4605
4610
|
*/
|
|
4606
4611
|
phase?: pulumi.Input<string>;
|
|
4607
4612
|
}
|
|
4608
4613
|
interface RegistryTag {
|
|
4609
4614
|
/**
|
|
4610
|
-
* Tag key
|
|
4615
|
+
* Tag key
|
|
4611
4616
|
*/
|
|
4612
4617
|
key?: pulumi.Input<string>;
|
|
4613
4618
|
/**
|
|
@@ -7400,6 +7405,16 @@ export declare namespace organization {
|
|
|
7400
7405
|
*/
|
|
7401
7406
|
mainName?: pulumi.Input<string>;
|
|
7402
7407
|
}
|
|
7408
|
+
interface ServiceControlPolicyTarget {
|
|
7409
|
+
/**
|
|
7410
|
+
* Target ID.
|
|
7411
|
+
*/
|
|
7412
|
+
targetId?: pulumi.Input<string>;
|
|
7413
|
+
/**
|
|
7414
|
+
* Target type: 1. OU 2. Account.
|
|
7415
|
+
*/
|
|
7416
|
+
targetType?: pulumi.Input<string>;
|
|
7417
|
+
}
|
|
7403
7418
|
}
|
|
7404
7419
|
export declare namespace privatelink {
|
|
7405
7420
|
interface EndpointServicePrivateDnsNameConfiguration {
|
|
@@ -9986,6 +10001,16 @@ export declare namespace tls {
|
|
|
9986
10001
|
}
|
|
9987
10002
|
}
|
|
9988
10003
|
export declare namespace transitrouter {
|
|
10004
|
+
interface PeerAttachmentTag {
|
|
10005
|
+
/**
|
|
10006
|
+
* 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.
|
|
10007
|
+
*/
|
|
10008
|
+
key?: pulumi.Input<string>;
|
|
10009
|
+
/**
|
|
10010
|
+
* 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.
|
|
10011
|
+
*/
|
|
10012
|
+
value?: pulumi.Input<string>;
|
|
10013
|
+
}
|
|
9989
10014
|
interface TransitRouterAttachment {
|
|
9990
10015
|
/**
|
|
9991
10016
|
* Whether to automatically synchronize TR routes to the network instance route table. true: Yes. false: No.
|
|
@@ -12748,6 +12773,16 @@ export declare namespace vpn {
|
|
|
12748
12773
|
*/
|
|
12749
12774
|
value?: pulumi.Input<string>;
|
|
12750
12775
|
}
|
|
12776
|
+
interface SslVpnClientCertTag {
|
|
12777
|
+
/**
|
|
12778
|
+
* 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.
|
|
12779
|
+
*/
|
|
12780
|
+
key?: pulumi.Input<string>;
|
|
12781
|
+
/**
|
|
12782
|
+
* 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.
|
|
12783
|
+
*/
|
|
12784
|
+
value?: pulumi.Input<string>;
|
|
12785
|
+
}
|
|
12751
12786
|
interface VpnConnectionBgpInfo {
|
|
12752
12787
|
/**
|
|
12753
12788
|
* Enable dynamic route propagation. false (default): No, use static routing mode. true: Yes, use BGP routing mode.
|