@aws-sdk/client-api-gateway 3.934.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +189 -154
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +169 -0
- package/dist-es/models/errors.js +91 -0
- package/dist-es/models/models_0.js +1 -236
- package/dist-es/schemas/schemas_0.js +17 -10
- package/dist-types/commands/CreateDomainNameCommand.d.ts +5 -3
- package/dist-types/commands/CreateResourceCommand.d.ts +1 -0
- package/dist-types/commands/CreateRestApiCommand.d.ts +6 -0
- package/dist-types/commands/GetDomainNameCommand.d.ts +3 -2
- package/dist-types/commands/GetDomainNamesCommand.d.ts +3 -2
- package/dist-types/commands/GetIntegrationCommand.d.ts +1 -0
- package/dist-types/commands/GetMethodCommand.d.ts +1 -0
- package/dist-types/commands/GetResourceCommand.d.ts +1 -0
- package/dist-types/commands/GetResourcesCommand.d.ts +1 -0
- package/dist-types/commands/GetRestApiCommand.d.ts +4 -0
- package/dist-types/commands/GetRestApisCommand.d.ts +4 -0
- package/dist-types/commands/ImportRestApiCommand.d.ts +4 -0
- package/dist-types/commands/PutIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/PutMethodCommand.d.ts +1 -0
- package/dist-types/commands/PutRestApiCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +3 -2
- package/dist-types/commands/UpdateIntegrationCommand.d.ts +1 -0
- package/dist-types/commands/UpdateMethodCommand.d.ts +1 -0
- package/dist-types/commands/UpdateResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateRestApiCommand.d.ts +4 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +377 -0
- package/dist-types/models/errors.d.ts +89 -0
- package/dist-types/models/models_0.d.ts +71 -420
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +212 -0
- package/dist-types/ts3.4/models/errors.d.ts +50 -0
- package/dist-types/ts3.4/models/models_0.d.ts +38 -233
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { APIGatewayServiceException as __BaseException } from "./APIGatewayServiceException";
|
|
2
|
+
export class BadRequestException extends __BaseException {
|
|
3
|
+
name = "BadRequestException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "BadRequestException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class ConflictException extends __BaseException {
|
|
15
|
+
name = "ConflictException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "ConflictException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class LimitExceededException extends __BaseException {
|
|
27
|
+
name = "LimitExceededException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
retryAfterSeconds;
|
|
30
|
+
constructor(opts) {
|
|
31
|
+
super({
|
|
32
|
+
name: "LimitExceededException",
|
|
33
|
+
$fault: "client",
|
|
34
|
+
...opts,
|
|
35
|
+
});
|
|
36
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
37
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
export class NotFoundException extends __BaseException {
|
|
41
|
+
name = "NotFoundException";
|
|
42
|
+
$fault = "client";
|
|
43
|
+
constructor(opts) {
|
|
44
|
+
super({
|
|
45
|
+
name: "NotFoundException",
|
|
46
|
+
$fault: "client",
|
|
47
|
+
...opts,
|
|
48
|
+
});
|
|
49
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
export class TooManyRequestsException extends __BaseException {
|
|
53
|
+
name = "TooManyRequestsException";
|
|
54
|
+
$fault = "client";
|
|
55
|
+
retryAfterSeconds;
|
|
56
|
+
constructor(opts) {
|
|
57
|
+
super({
|
|
58
|
+
name: "TooManyRequestsException",
|
|
59
|
+
$fault: "client",
|
|
60
|
+
...opts,
|
|
61
|
+
});
|
|
62
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
63
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
export class UnauthorizedException extends __BaseException {
|
|
67
|
+
name = "UnauthorizedException";
|
|
68
|
+
$fault = "client";
|
|
69
|
+
constructor(opts) {
|
|
70
|
+
super({
|
|
71
|
+
name: "UnauthorizedException",
|
|
72
|
+
$fault: "client",
|
|
73
|
+
...opts,
|
|
74
|
+
});
|
|
75
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
79
|
+
name = "ServiceUnavailableException";
|
|
80
|
+
$fault = "server";
|
|
81
|
+
retryAfterSeconds;
|
|
82
|
+
constructor(opts) {
|
|
83
|
+
super({
|
|
84
|
+
name: "ServiceUnavailableException",
|
|
85
|
+
$fault: "server",
|
|
86
|
+
...opts,
|
|
87
|
+
});
|
|
88
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
89
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
@@ -1,236 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const AccessAssociationSourceType = {
|
|
3
|
-
VPCE: "VPCE",
|
|
4
|
-
};
|
|
5
|
-
export const ApiKeysFormat = {
|
|
6
|
-
csv: "csv",
|
|
7
|
-
};
|
|
8
|
-
export const ApiKeySourceType = {
|
|
9
|
-
AUTHORIZER: "AUTHORIZER",
|
|
10
|
-
HEADER: "HEADER",
|
|
11
|
-
};
|
|
12
|
-
export const AuthorizerType = {
|
|
13
|
-
COGNITO_USER_POOLS: "COGNITO_USER_POOLS",
|
|
14
|
-
REQUEST: "REQUEST",
|
|
15
|
-
TOKEN: "TOKEN",
|
|
16
|
-
};
|
|
17
|
-
export class BadRequestException extends __BaseException {
|
|
18
|
-
name = "BadRequestException";
|
|
19
|
-
$fault = "client";
|
|
20
|
-
constructor(opts) {
|
|
21
|
-
super({
|
|
22
|
-
name: "BadRequestException",
|
|
23
|
-
$fault: "client",
|
|
24
|
-
...opts,
|
|
25
|
-
});
|
|
26
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
export class ConflictException extends __BaseException {
|
|
30
|
-
name = "ConflictException";
|
|
31
|
-
$fault = "client";
|
|
32
|
-
constructor(opts) {
|
|
33
|
-
super({
|
|
34
|
-
name: "ConflictException",
|
|
35
|
-
$fault: "client",
|
|
36
|
-
...opts,
|
|
37
|
-
});
|
|
38
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
export class LimitExceededException extends __BaseException {
|
|
42
|
-
name = "LimitExceededException";
|
|
43
|
-
$fault = "client";
|
|
44
|
-
retryAfterSeconds;
|
|
45
|
-
constructor(opts) {
|
|
46
|
-
super({
|
|
47
|
-
name: "LimitExceededException",
|
|
48
|
-
$fault: "client",
|
|
49
|
-
...opts,
|
|
50
|
-
});
|
|
51
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
52
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
export class NotFoundException extends __BaseException {
|
|
56
|
-
name = "NotFoundException";
|
|
57
|
-
$fault = "client";
|
|
58
|
-
constructor(opts) {
|
|
59
|
-
super({
|
|
60
|
-
name: "NotFoundException",
|
|
61
|
-
$fault: "client",
|
|
62
|
-
...opts,
|
|
63
|
-
});
|
|
64
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
export class TooManyRequestsException extends __BaseException {
|
|
68
|
-
name = "TooManyRequestsException";
|
|
69
|
-
$fault = "client";
|
|
70
|
-
retryAfterSeconds;
|
|
71
|
-
constructor(opts) {
|
|
72
|
-
super({
|
|
73
|
-
name: "TooManyRequestsException",
|
|
74
|
-
$fault: "client",
|
|
75
|
-
...opts,
|
|
76
|
-
});
|
|
77
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
78
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
export class UnauthorizedException extends __BaseException {
|
|
82
|
-
name = "UnauthorizedException";
|
|
83
|
-
$fault = "client";
|
|
84
|
-
constructor(opts) {
|
|
85
|
-
super({
|
|
86
|
-
name: "UnauthorizedException",
|
|
87
|
-
$fault: "client",
|
|
88
|
-
...opts,
|
|
89
|
-
});
|
|
90
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
export const CacheClusterSize = {
|
|
94
|
-
SIZE_0_POINT_5_GB: "0.5",
|
|
95
|
-
SIZE_118_GB: "118",
|
|
96
|
-
SIZE_13_POINT_5_GB: "13.5",
|
|
97
|
-
SIZE_1_POINT_6_GB: "1.6",
|
|
98
|
-
SIZE_237_GB: "237",
|
|
99
|
-
SIZE_28_POINT_4_GB: "28.4",
|
|
100
|
-
SIZE_58_POINT_2_GB: "58.2",
|
|
101
|
-
SIZE_6_POINT_1_GB: "6.1",
|
|
102
|
-
};
|
|
103
|
-
export class ServiceUnavailableException extends __BaseException {
|
|
104
|
-
name = "ServiceUnavailableException";
|
|
105
|
-
$fault = "server";
|
|
106
|
-
retryAfterSeconds;
|
|
107
|
-
constructor(opts) {
|
|
108
|
-
super({
|
|
109
|
-
name: "ServiceUnavailableException",
|
|
110
|
-
$fault: "server",
|
|
111
|
-
...opts,
|
|
112
|
-
});
|
|
113
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
114
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
export const DocumentationPartType = {
|
|
118
|
-
API: "API",
|
|
119
|
-
AUTHORIZER: "AUTHORIZER",
|
|
120
|
-
METHOD: "METHOD",
|
|
121
|
-
MODEL: "MODEL",
|
|
122
|
-
PATH_PARAMETER: "PATH_PARAMETER",
|
|
123
|
-
QUERY_PARAMETER: "QUERY_PARAMETER",
|
|
124
|
-
REQUEST_BODY: "REQUEST_BODY",
|
|
125
|
-
REQUEST_HEADER: "REQUEST_HEADER",
|
|
126
|
-
RESOURCE: "RESOURCE",
|
|
127
|
-
RESPONSE: "RESPONSE",
|
|
128
|
-
RESPONSE_BODY: "RESPONSE_BODY",
|
|
129
|
-
RESPONSE_HEADER: "RESPONSE_HEADER",
|
|
130
|
-
};
|
|
131
|
-
export const IpAddressType = {
|
|
132
|
-
dualstack: "dualstack",
|
|
133
|
-
ipv4: "ipv4",
|
|
134
|
-
};
|
|
135
|
-
export const EndpointType = {
|
|
136
|
-
EDGE: "EDGE",
|
|
137
|
-
PRIVATE: "PRIVATE",
|
|
138
|
-
REGIONAL: "REGIONAL",
|
|
139
|
-
};
|
|
140
|
-
export const RoutingMode = {
|
|
141
|
-
BASE_PATH_MAPPING_ONLY: "BASE_PATH_MAPPING_ONLY",
|
|
142
|
-
ROUTING_RULE_ONLY: "ROUTING_RULE_ONLY",
|
|
143
|
-
ROUTING_RULE_THEN_BASE_PATH_MAPPING: "ROUTING_RULE_THEN_BASE_PATH_MAPPING",
|
|
144
|
-
};
|
|
145
|
-
export const SecurityPolicy = {
|
|
146
|
-
TLS_1_0: "TLS_1_0",
|
|
147
|
-
TLS_1_2: "TLS_1_2",
|
|
148
|
-
};
|
|
149
|
-
export const DomainNameStatus = {
|
|
150
|
-
AVAILABLE: "AVAILABLE",
|
|
151
|
-
PENDING: "PENDING",
|
|
152
|
-
PENDING_CERTIFICATE_REIMPORT: "PENDING_CERTIFICATE_REIMPORT",
|
|
153
|
-
PENDING_OWNERSHIP_VERIFICATION: "PENDING_OWNERSHIP_VERIFICATION",
|
|
154
|
-
UPDATING: "UPDATING",
|
|
155
|
-
};
|
|
156
|
-
export const ConnectionType = {
|
|
157
|
-
INTERNET: "INTERNET",
|
|
158
|
-
VPC_LINK: "VPC_LINK",
|
|
159
|
-
};
|
|
160
|
-
export const ContentHandlingStrategy = {
|
|
161
|
-
CONVERT_TO_BINARY: "CONVERT_TO_BINARY",
|
|
162
|
-
CONVERT_TO_TEXT: "CONVERT_TO_TEXT",
|
|
163
|
-
};
|
|
164
|
-
export const IntegrationType = {
|
|
165
|
-
AWS: "AWS",
|
|
166
|
-
AWS_PROXY: "AWS_PROXY",
|
|
167
|
-
HTTP: "HTTP",
|
|
168
|
-
HTTP_PROXY: "HTTP_PROXY",
|
|
169
|
-
MOCK: "MOCK",
|
|
170
|
-
};
|
|
171
|
-
export const CacheClusterStatus = {
|
|
172
|
-
AVAILABLE: "AVAILABLE",
|
|
173
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
174
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
175
|
-
FLUSH_IN_PROGRESS: "FLUSH_IN_PROGRESS",
|
|
176
|
-
NOT_AVAILABLE: "NOT_AVAILABLE",
|
|
177
|
-
};
|
|
178
|
-
export const UnauthorizedCacheControlHeaderStrategy = {
|
|
179
|
-
FAIL_WITH_403: "FAIL_WITH_403",
|
|
180
|
-
SUCCEED_WITHOUT_RESPONSE_HEADER: "SUCCEED_WITHOUT_RESPONSE_HEADER",
|
|
181
|
-
SUCCEED_WITH_RESPONSE_HEADER: "SUCCEED_WITH_RESPONSE_HEADER",
|
|
182
|
-
};
|
|
183
|
-
export const QuotaPeriodType = {
|
|
184
|
-
DAY: "DAY",
|
|
185
|
-
MONTH: "MONTH",
|
|
186
|
-
WEEK: "WEEK",
|
|
187
|
-
};
|
|
188
|
-
export const VpcLinkStatus = {
|
|
189
|
-
AVAILABLE: "AVAILABLE",
|
|
190
|
-
DELETING: "DELETING",
|
|
191
|
-
FAILED: "FAILED",
|
|
192
|
-
PENDING: "PENDING",
|
|
193
|
-
};
|
|
194
|
-
export const GatewayResponseType = {
|
|
195
|
-
ACCESS_DENIED: "ACCESS_DENIED",
|
|
196
|
-
API_CONFIGURATION_ERROR: "API_CONFIGURATION_ERROR",
|
|
197
|
-
AUTHORIZER_CONFIGURATION_ERROR: "AUTHORIZER_CONFIGURATION_ERROR",
|
|
198
|
-
AUTHORIZER_FAILURE: "AUTHORIZER_FAILURE",
|
|
199
|
-
BAD_REQUEST_BODY: "BAD_REQUEST_BODY",
|
|
200
|
-
BAD_REQUEST_PARAMETERS: "BAD_REQUEST_PARAMETERS",
|
|
201
|
-
DEFAULT_4XX: "DEFAULT_4XX",
|
|
202
|
-
DEFAULT_5XX: "DEFAULT_5XX",
|
|
203
|
-
EXPIRED_TOKEN: "EXPIRED_TOKEN",
|
|
204
|
-
INTEGRATION_FAILURE: "INTEGRATION_FAILURE",
|
|
205
|
-
INTEGRATION_TIMEOUT: "INTEGRATION_TIMEOUT",
|
|
206
|
-
INVALID_API_KEY: "INVALID_API_KEY",
|
|
207
|
-
INVALID_SIGNATURE: "INVALID_SIGNATURE",
|
|
208
|
-
MISSING_AUTHENTICATION_TOKEN: "MISSING_AUTHENTICATION_TOKEN",
|
|
209
|
-
QUOTA_EXCEEDED: "QUOTA_EXCEEDED",
|
|
210
|
-
REQUEST_TOO_LARGE: "REQUEST_TOO_LARGE",
|
|
211
|
-
RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",
|
|
212
|
-
THROTTLED: "THROTTLED",
|
|
213
|
-
UNAUTHORIZED: "UNAUTHORIZED",
|
|
214
|
-
UNSUPPORTED_MEDIA_TYPE: "UNSUPPORTED_MEDIA_TYPE",
|
|
215
|
-
WAF_FILTERED: "WAF_FILTERED",
|
|
216
|
-
};
|
|
217
|
-
export const LocationStatusType = {
|
|
218
|
-
DOCUMENTED: "DOCUMENTED",
|
|
219
|
-
UNDOCUMENTED: "UNDOCUMENTED",
|
|
220
|
-
};
|
|
221
|
-
export const ResourceOwner = {
|
|
222
|
-
OTHER_ACCOUNTS: "OTHER_ACCOUNTS",
|
|
223
|
-
SELF: "SELF",
|
|
224
|
-
};
|
|
225
|
-
export const PutMode = {
|
|
226
|
-
Merge: "merge",
|
|
227
|
-
Overwrite: "overwrite",
|
|
228
|
-
};
|
|
229
|
-
export const Op = {
|
|
230
|
-
add: "add",
|
|
231
|
-
copy: "copy",
|
|
232
|
-
move: "move",
|
|
233
|
-
remove: "remove",
|
|
234
|
-
replace: "replace",
|
|
235
|
-
test: "test",
|
|
236
|
-
};
|
|
1
|
+
export {};
|
|
@@ -372,7 +372,9 @@ const _aKV = "apiKeyVersion";
|
|
|
372
372
|
const _aLS = "accessLogSettings";
|
|
373
373
|
const _aRTIS = "authorizerResultTtlInSeconds";
|
|
374
374
|
const _aS = "apiStages";
|
|
375
|
+
const _aSM = "apiStatusMessage";
|
|
375
376
|
const _aSp = "apiSummary";
|
|
377
|
+
const _aSpi = "apiStatus";
|
|
376
378
|
const _aSu = "authorizationScopes";
|
|
377
379
|
const _aT = "authType";
|
|
378
380
|
const _aTu = "authorizationType";
|
|
@@ -430,6 +432,7 @@ const _dTE = "dataTraceEnabled";
|
|
|
430
432
|
const _dV = "documentationVersion";
|
|
431
433
|
const _dVe = "defaultValue";
|
|
432
434
|
const _e = "enabled";
|
|
435
|
+
const _eAM = "endpointAccessMode";
|
|
433
436
|
const _eC = "endpointConfiguration";
|
|
434
437
|
const _eD = "expirationDate";
|
|
435
438
|
const _eDn = "endDate";
|
|
@@ -529,6 +532,7 @@ const _rP = "responseParameters";
|
|
|
529
532
|
const _rPe = "requestParameters";
|
|
530
533
|
const _rRI = "rootResourceId";
|
|
531
534
|
const _rT = "responseType";
|
|
535
|
+
const _rTM = "responseTransferMode";
|
|
532
536
|
const _rTe = "responseTemplates";
|
|
533
537
|
const _rTeq = "requestTemplates";
|
|
534
538
|
const _rVI = "requestValidatorId";
|
|
@@ -580,7 +584,7 @@ const _wAA = "webAclArn";
|
|
|
580
584
|
const n0 = "com.amazonaws.apigateway";
|
|
581
585
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
582
586
|
import { APIGatewayServiceException as __APIGatewayServiceException } from "../models/APIGatewayServiceException";
|
|
583
|
-
import { BadRequestException as __BadRequestException, ConflictException as __ConflictException, LimitExceededException as __LimitExceededException, NotFoundException as __NotFoundException, ServiceUnavailableException as __ServiceUnavailableException, TooManyRequestsException as __TooManyRequestsException, UnauthorizedException as __UnauthorizedException, } from "../models/
|
|
587
|
+
import { BadRequestException as __BadRequestException, ConflictException as __ConflictException, LimitExceededException as __LimitExceededException, NotFoundException as __NotFoundException, ServiceUnavailableException as __ServiceUnavailableException, TooManyRequestsException as __TooManyRequestsException, UnauthorizedException as __UnauthorizedException, } from "../models/errors";
|
|
584
588
|
export var AccessLogSettings = [3, n0, _ALS, 0, [_f, _dA], [0, 0]];
|
|
585
589
|
export var Account = [
|
|
586
590
|
3,
|
|
@@ -806,8 +810,8 @@ export var CreateDomainNameRequest = [
|
|
|
806
810
|
n0,
|
|
807
811
|
_CDNR,
|
|
808
812
|
0,
|
|
809
|
-
[_dN, _cN, _cB, _cPK, _cC, _cA, _rCN, _rCA, _eC, _t, _sP, _mTA, _oVCA, _po, _rM],
|
|
810
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => EndpointConfiguration, 128 | 0, 0, () => MutualTlsAuthenticationInput, 0, 0, 0],
|
|
813
|
+
[_dN, _cN, _cB, _cPK, _cC, _cA, _rCN, _rCA, _eC, _t, _sP, _eAM, _mTA, _oVCA, _po, _rM],
|
|
814
|
+
[0, 0, 0, 0, 0, 0, 0, 0, () => EndpointConfiguration, 128 | 0, 0, 0, () => MutualTlsAuthenticationInput, 0, 0, 0],
|
|
811
815
|
];
|
|
812
816
|
export var CreateModelRequest = [3, n0, _CMR, 0, [_rAI, _n, _d, _sc, _cT], [[0, 1], 0, 0, 0, 0]];
|
|
813
817
|
export var CreateRequestValidatorRequest = [
|
|
@@ -824,8 +828,8 @@ export var CreateRestApiRequest = [
|
|
|
824
828
|
n0,
|
|
825
829
|
_CRAR,
|
|
826
830
|
0,
|
|
827
|
-
[_n, _d, _ve, _cF, _bMT, _mCS, _aKS, _eC, _po, _t, _dEAE],
|
|
828
|
-
[0, 0, 0, 0, 64 | 0, 1, 0, () => EndpointConfiguration, 0, 128 | 0, 2],
|
|
831
|
+
[_n, _d, _ve, _cF, _bMT, _mCS, _aKS, _eC, _po, _t, _dEAE, _sP, _eAM],
|
|
832
|
+
[0, 0, 0, 0, 64 | 0, 1, 0, () => EndpointConfiguration, 0, 128 | 0, 2, 0, 0],
|
|
829
833
|
];
|
|
830
834
|
export var CreateStageRequest = [
|
|
831
835
|
3,
|
|
@@ -1156,6 +1160,7 @@ export var DomainName = [
|
|
|
1156
1160
|
_dNS,
|
|
1157
1161
|
_dNSM,
|
|
1158
1162
|
_sP,
|
|
1163
|
+
_eAM,
|
|
1159
1164
|
_t,
|
|
1160
1165
|
_mTA,
|
|
1161
1166
|
_oVCA,
|
|
@@ -1180,6 +1185,7 @@ export var DomainName = [
|
|
|
1180
1185
|
0,
|
|
1181
1186
|
0,
|
|
1182
1187
|
0,
|
|
1188
|
+
0,
|
|
1183
1189
|
128 | 0,
|
|
1184
1190
|
() => MutualTlsAuthentication,
|
|
1185
1191
|
0,
|
|
@@ -2200,8 +2206,8 @@ export var Integration = [
|
|
|
2200
2206
|
n0,
|
|
2201
2207
|
_I,
|
|
2202
2208
|
0,
|
|
2203
|
-
[_ty, _hM, _u, _cTo, _cIo, _cr, _rPe, _rTeq, _pB, _cH, _tIM, _cNa, _cKP, _iR, _tC],
|
|
2204
|
-
[0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0, 0, 0, 1, 0, 64 | 0, () => MapOfIntegrationResponse, () => TlsConfig],
|
|
2209
|
+
[_ty, _hM, _u, _cTo, _cIo, _cr, _rPe, _rTeq, _pB, _cH, _tIM, _cNa, _cKP, _iR, _tC, _rTM],
|
|
2210
|
+
[0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0, 0, 0, 1, 0, 64 | 0, () => MapOfIntegrationResponse, () => TlsConfig, 0],
|
|
2205
2211
|
];
|
|
2206
2212
|
export var IntegrationResponse = [
|
|
2207
2213
|
3,
|
|
@@ -2299,7 +2305,7 @@ export var PutIntegrationRequest = [
|
|
|
2299
2305
|
n0,
|
|
2300
2306
|
_PIR,
|
|
2301
2307
|
0,
|
|
2302
|
-
[_rAI, _rI, _hM, _ty, _iHM, _u, _cTo, _cIo, _cr, _rPe, _rTeq, _pB, _cNa, _cKP, _cH, _tIM, _tC],
|
|
2308
|
+
[_rAI, _rI, _hM, _ty, _iHM, _u, _cTo, _cIo, _cr, _rPe, _rTeq, _pB, _cNa, _cKP, _cH, _tIM, _tC, _rTM],
|
|
2303
2309
|
[
|
|
2304
2310
|
[0, 1],
|
|
2305
2311
|
[0, 1],
|
|
@@ -2329,6 +2335,7 @@ export var PutIntegrationRequest = [
|
|
|
2329
2335
|
0,
|
|
2330
2336
|
1,
|
|
2331
2337
|
() => TlsConfig,
|
|
2338
|
+
0,
|
|
2332
2339
|
],
|
|
2333
2340
|
];
|
|
2334
2341
|
export var PutIntegrationResponseRequest = [
|
|
@@ -2457,8 +2464,8 @@ export var RestApi = [
|
|
|
2457
2464
|
n0,
|
|
2458
2465
|
_RAe,
|
|
2459
2466
|
0,
|
|
2460
|
-
[_i, _n, _d, _cD, _ve, _w, _bMT, _mCS, _aKS, _eC, _po, _t, _dEAE, _rRI],
|
|
2461
|
-
[0, 0, 0, 4, 0, 64 | 0, 64 | 0, 1, 0, () => EndpointConfiguration, 0, 128 | 0, 2, 0],
|
|
2467
|
+
[_i, _n, _d, _cD, _ve, _w, _bMT, _mCS, _aKS, _eC, _po, _t, _dEAE, _rRI, _sP, _eAM, _aSpi, _aSM],
|
|
2468
|
+
[0, 0, 0, 4, 0, 64 | 0, 64 | 0, 1, 0, () => EndpointConfiguration, 0, 128 | 0, 2, 0, 0, 0, 0, 0],
|
|
2462
2469
|
];
|
|
2463
2470
|
export var RestApis = [
|
|
2464
2471
|
3,
|
|
@@ -57,7 +57,8 @@ declare const CreateDomainNameCommand_base: {
|
|
|
57
57
|
* tags: { // MapOfStringToString
|
|
58
58
|
* "<keys>": "STRING_VALUE",
|
|
59
59
|
* },
|
|
60
|
-
* securityPolicy: "TLS_1_0" || "TLS_1_2",
|
|
60
|
+
* securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
61
|
+
* endpointAccessMode: "BASIC" || "STRICT",
|
|
61
62
|
* mutualTlsAuthentication: { // MutualTlsAuthenticationInput
|
|
62
63
|
* truststoreUri: "STRING_VALUE",
|
|
63
64
|
* truststoreVersion: "STRING_VALUE",
|
|
@@ -90,9 +91,10 @@ declare const CreateDomainNameCommand_base: {
|
|
|
90
91
|
* // "STRING_VALUE",
|
|
91
92
|
* // ],
|
|
92
93
|
* // },
|
|
93
|
-
* // domainNameStatus: "AVAILABLE" || "UPDATING" || "PENDING" || "PENDING_CERTIFICATE_REIMPORT" || "PENDING_OWNERSHIP_VERIFICATION",
|
|
94
|
+
* // domainNameStatus: "AVAILABLE" || "UPDATING" || "PENDING" || "PENDING_CERTIFICATE_REIMPORT" || "PENDING_OWNERSHIP_VERIFICATION" || "FAILED",
|
|
94
95
|
* // domainNameStatusMessage: "STRING_VALUE",
|
|
95
|
-
* // securityPolicy: "TLS_1_0" || "TLS_1_2",
|
|
96
|
+
* // securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
97
|
+
* // endpointAccessMode: "BASIC" || "STRICT",
|
|
96
98
|
* // tags: { // MapOfStringToString
|
|
97
99
|
* // "<keys>": "STRING_VALUE",
|
|
98
100
|
* // },
|
|
@@ -101,6 +101,7 @@ declare const CreateResourceCommand_base: {
|
|
|
101
101
|
* // tlsConfig: { // TlsConfig
|
|
102
102
|
* // insecureSkipVerification: true || false,
|
|
103
103
|
* // },
|
|
104
|
+
* // responseTransferMode: "BUFFERED" || "STREAM",
|
|
104
105
|
* // },
|
|
105
106
|
* // authorizationScopes: [
|
|
106
107
|
* // "STRING_VALUE",
|
|
@@ -60,6 +60,8 @@ declare const CreateRestApiCommand_base: {
|
|
|
60
60
|
* "<keys>": "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
62
|
* disableExecuteApiEndpoint: true || false,
|
|
63
|
+
* securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
64
|
+
* endpointAccessMode: "BASIC" || "STRICT",
|
|
63
65
|
* };
|
|
64
66
|
* const command = new CreateRestApiCommand(input);
|
|
65
67
|
* const response = await client.send(command);
|
|
@@ -92,6 +94,10 @@ declare const CreateRestApiCommand_base: {
|
|
|
92
94
|
* // },
|
|
93
95
|
* // disableExecuteApiEndpoint: true || false,
|
|
94
96
|
* // rootResourceId: "STRING_VALUE",
|
|
97
|
+
* // securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
98
|
+
* // endpointAccessMode: "BASIC" || "STRICT",
|
|
99
|
+
* // apiStatus: "UPDATING" || "AVAILABLE" || "PENDING" || "FAILED",
|
|
100
|
+
* // apiStatusMessage: "STRING_VALUE",
|
|
95
101
|
* // };
|
|
96
102
|
*
|
|
97
103
|
* ```
|
|
@@ -64,9 +64,10 @@ declare const GetDomainNameCommand_base: {
|
|
|
64
64
|
* // "STRING_VALUE",
|
|
65
65
|
* // ],
|
|
66
66
|
* // },
|
|
67
|
-
* // domainNameStatus: "AVAILABLE" || "UPDATING" || "PENDING" || "PENDING_CERTIFICATE_REIMPORT" || "PENDING_OWNERSHIP_VERIFICATION",
|
|
67
|
+
* // domainNameStatus: "AVAILABLE" || "UPDATING" || "PENDING" || "PENDING_CERTIFICATE_REIMPORT" || "PENDING_OWNERSHIP_VERIFICATION" || "FAILED",
|
|
68
68
|
* // domainNameStatusMessage: "STRING_VALUE",
|
|
69
|
-
* // securityPolicy: "TLS_1_0" || "TLS_1_2",
|
|
69
|
+
* // securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
70
|
+
* // endpointAccessMode: "BASIC" || "STRICT",
|
|
70
71
|
* // tags: { // MapOfStringToString
|
|
71
72
|
* // "<keys>": "STRING_VALUE",
|
|
72
73
|
* // },
|
|
@@ -67,9 +67,10 @@ declare const GetDomainNamesCommand_base: {
|
|
|
67
67
|
* // "STRING_VALUE",
|
|
68
68
|
* // ],
|
|
69
69
|
* // },
|
|
70
|
-
* // domainNameStatus: "AVAILABLE" || "UPDATING" || "PENDING" || "PENDING_CERTIFICATE_REIMPORT" || "PENDING_OWNERSHIP_VERIFICATION",
|
|
70
|
+
* // domainNameStatus: "AVAILABLE" || "UPDATING" || "PENDING" || "PENDING_CERTIFICATE_REIMPORT" || "PENDING_OWNERSHIP_VERIFICATION" || "FAILED",
|
|
71
71
|
* // domainNameStatusMessage: "STRING_VALUE",
|
|
72
|
-
* // securityPolicy: "TLS_1_0" || "TLS_1_2",
|
|
72
|
+
* // securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
73
|
+
* // endpointAccessMode: "BASIC" || "STRICT",
|
|
73
74
|
* // tags: { // MapOfStringToString
|
|
74
75
|
* // "<keys>": "STRING_VALUE",
|
|
75
76
|
* // },
|
|
@@ -103,6 +103,7 @@ declare const GetResourceCommand_base: {
|
|
|
103
103
|
* // tlsConfig: { // TlsConfig
|
|
104
104
|
* // insecureSkipVerification: true || false,
|
|
105
105
|
* // },
|
|
106
|
+
* // responseTransferMode: "BUFFERED" || "STREAM",
|
|
106
107
|
* // },
|
|
107
108
|
* // authorizationScopes: [
|
|
108
109
|
* // "STRING_VALUE",
|
|
@@ -106,6 +106,7 @@ declare const GetResourcesCommand_base: {
|
|
|
106
106
|
* // tlsConfig: { // TlsConfig
|
|
107
107
|
* // insecureSkipVerification: true || false,
|
|
108
108
|
* // },
|
|
109
|
+
* // responseTransferMode: "BUFFERED" || "STREAM",
|
|
109
110
|
* // },
|
|
110
111
|
* // authorizationScopes: [
|
|
111
112
|
* // "STRING_VALUE",
|
|
@@ -70,6 +70,10 @@ declare const GetRestApiCommand_base: {
|
|
|
70
70
|
* // },
|
|
71
71
|
* // disableExecuteApiEndpoint: true || false,
|
|
72
72
|
* // rootResourceId: "STRING_VALUE",
|
|
73
|
+
* // securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
74
|
+
* // endpointAccessMode: "BASIC" || "STRICT",
|
|
75
|
+
* // apiStatus: "UPDATING" || "AVAILABLE" || "PENDING" || "FAILED",
|
|
76
|
+
* // apiStatusMessage: "STRING_VALUE",
|
|
73
77
|
* // };
|
|
74
78
|
*
|
|
75
79
|
* ```
|
|
@@ -73,6 +73,10 @@ declare const GetRestApisCommand_base: {
|
|
|
73
73
|
* // },
|
|
74
74
|
* // disableExecuteApiEndpoint: true || false,
|
|
75
75
|
* // rootResourceId: "STRING_VALUE",
|
|
76
|
+
* // securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
77
|
+
* // endpointAccessMode: "BASIC" || "STRICT",
|
|
78
|
+
* // apiStatus: "UPDATING" || "AVAILABLE" || "PENDING" || "FAILED",
|
|
79
|
+
* // apiStatusMessage: "STRING_VALUE",
|
|
76
80
|
* // },
|
|
77
81
|
* // ],
|
|
78
82
|
* // position: "STRING_VALUE",
|
|
@@ -80,6 +80,10 @@ declare const ImportRestApiCommand_base: {
|
|
|
80
80
|
* // },
|
|
81
81
|
* // disableExecuteApiEndpoint: true || false,
|
|
82
82
|
* // rootResourceId: "STRING_VALUE",
|
|
83
|
+
* // securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
84
|
+
* // endpointAccessMode: "BASIC" || "STRICT",
|
|
85
|
+
* // apiStatus: "UPDATING" || "AVAILABLE" || "PENDING" || "FAILED",
|
|
86
|
+
* // apiStatusMessage: "STRING_VALUE",
|
|
83
87
|
* // };
|
|
84
88
|
*
|
|
85
89
|
* ```
|
|
@@ -62,6 +62,7 @@ declare const PutIntegrationCommand_base: {
|
|
|
62
62
|
* tlsConfig: { // TlsConfig
|
|
63
63
|
* insecureSkipVerification: true || false,
|
|
64
64
|
* },
|
|
65
|
+
* responseTransferMode: "BUFFERED" || "STREAM",
|
|
65
66
|
* };
|
|
66
67
|
* const command = new PutIntegrationCommand(input);
|
|
67
68
|
* const response = await client.send(command);
|
|
@@ -101,6 +102,7 @@ declare const PutIntegrationCommand_base: {
|
|
|
101
102
|
* // tlsConfig: { // TlsConfig
|
|
102
103
|
* // insecureSkipVerification: true || false,
|
|
103
104
|
* // },
|
|
105
|
+
* // responseTransferMode: "BUFFERED" || "STREAM",
|
|
104
106
|
* // };
|
|
105
107
|
*
|
|
106
108
|
* ```
|
|
@@ -109,6 +109,7 @@ declare const PutMethodCommand_base: {
|
|
|
109
109
|
* // tlsConfig: { // TlsConfig
|
|
110
110
|
* // insecureSkipVerification: true || false,
|
|
111
111
|
* // },
|
|
112
|
+
* // responseTransferMode: "BUFFERED" || "STREAM",
|
|
112
113
|
* // },
|
|
113
114
|
* // authorizationScopes: [
|
|
114
115
|
* // "STRING_VALUE",
|
|
@@ -83,6 +83,10 @@ declare const PutRestApiCommand_base: {
|
|
|
83
83
|
* // },
|
|
84
84
|
* // disableExecuteApiEndpoint: true || false,
|
|
85
85
|
* // rootResourceId: "STRING_VALUE",
|
|
86
|
+
* // securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
87
|
+
* // endpointAccessMode: "BASIC" || "STRICT",
|
|
88
|
+
* // apiStatus: "UPDATING" || "AVAILABLE" || "PENDING" || "FAILED",
|
|
89
|
+
* // apiStatusMessage: "STRING_VALUE",
|
|
86
90
|
* // };
|
|
87
91
|
*
|
|
88
92
|
* ```
|
|
@@ -72,9 +72,10 @@ declare const UpdateDomainNameCommand_base: {
|
|
|
72
72
|
* // "STRING_VALUE",
|
|
73
73
|
* // ],
|
|
74
74
|
* // },
|
|
75
|
-
* // domainNameStatus: "AVAILABLE" || "UPDATING" || "PENDING" || "PENDING_CERTIFICATE_REIMPORT" || "PENDING_OWNERSHIP_VERIFICATION",
|
|
75
|
+
* // domainNameStatus: "AVAILABLE" || "UPDATING" || "PENDING" || "PENDING_CERTIFICATE_REIMPORT" || "PENDING_OWNERSHIP_VERIFICATION" || "FAILED",
|
|
76
76
|
* // domainNameStatusMessage: "STRING_VALUE",
|
|
77
|
-
* // securityPolicy: "TLS_1_0" || "TLS_1_2",
|
|
77
|
+
* // securityPolicy: "TLS_1_0" || "TLS_1_2" || "SecurityPolicy_TLS13_1_3_2025_09" || "SecurityPolicy_TLS13_1_3_FIPS_2025_09" || "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_PQ_2025_09" || "SecurityPolicy_TLS13_1_2_2021_06" || "SecurityPolicy_TLS13_2025_EDGE" || "SecurityPolicy_TLS12_PFS_2025_EDGE" || "SecurityPolicy_TLS12_2018_EDGE",
|
|
78
|
+
* // endpointAccessMode: "BASIC" || "STRICT",
|
|
78
79
|
* // tags: { // MapOfStringToString
|
|
79
80
|
* // "<keys>": "STRING_VALUE",
|
|
80
81
|
* // },
|