@aws-sdk/client-elastic-load-balancing-v2 3.698.0 → 3.699.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 +13 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_query.js +7 -0
- package/dist-types/commands/CreateListenerCommand.d.ts +2 -0
- package/dist-types/commands/DescribeListenersCommand.d.ts +1 -0
- package/dist-types/commands/ModifyListenerCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +17 -0
- package/dist-types/ts3.4/models/models_0.d.ts +7 -0
- package/package.json +4 -4
package/dist-cjs/index.js
CHANGED
|
@@ -26,6 +26,7 @@ __export(src_exports, {
|
|
|
26
26
|
AddListenerCertificatesCommand: () => AddListenerCertificatesCommand,
|
|
27
27
|
AddTagsCommand: () => AddTagsCommand,
|
|
28
28
|
AddTrustStoreRevocationsCommand: () => AddTrustStoreRevocationsCommand,
|
|
29
|
+
AdvertiseTrustStoreCaNamesEnum: () => AdvertiseTrustStoreCaNamesEnum,
|
|
29
30
|
AllocationIdNotFoundException: () => AllocationIdNotFoundException,
|
|
30
31
|
AnomalyResultEnum: () => AnomalyResultEnum,
|
|
31
32
|
AuthenticateCognitoActionConditionalBehaviorEnum: () => AuthenticateCognitoActionConditionalBehaviorEnum,
|
|
@@ -593,6 +594,10 @@ var TargetAdministrativeOverrideStateEnum = {
|
|
|
593
594
|
ZONAL_SHIFT_ACTIVE: "zonal_shift_active",
|
|
594
595
|
ZONAL_SHIFT_DELEGATED_TO_DNS: "zonal_shift_delegated_to_dns"
|
|
595
596
|
};
|
|
597
|
+
var AdvertiseTrustStoreCaNamesEnum = {
|
|
598
|
+
off: "off",
|
|
599
|
+
on: "on"
|
|
600
|
+
};
|
|
596
601
|
var _AllocationIdNotFoundException = class _AllocationIdNotFoundException extends ElasticLoadBalancingV2ServiceException {
|
|
597
602
|
/**
|
|
598
603
|
* @internal
|
|
@@ -4657,6 +4662,9 @@ var se_MutualAuthenticationAttributes = /* @__PURE__ */ __name((input, context)
|
|
|
4657
4662
|
if (input[_TSAS] != null) {
|
|
4658
4663
|
entries[_TSAS] = input[_TSAS];
|
|
4659
4664
|
}
|
|
4665
|
+
if (input[_ATSCN] != null) {
|
|
4666
|
+
entries[_ATSCN] = input[_ATSCN];
|
|
4667
|
+
}
|
|
4660
4668
|
return entries;
|
|
4661
4669
|
}, "se_MutualAuthenticationAttributes");
|
|
4662
4670
|
var se_PathPatternConditionConfig = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -6407,6 +6415,9 @@ var de_MutualAuthenticationAttributes = /* @__PURE__ */ __name((output, context)
|
|
|
6407
6415
|
if (output[_TSAS] != null) {
|
|
6408
6416
|
contents[_TSAS] = (0, import_smithy_client.expectString)(output[_TSAS]);
|
|
6409
6417
|
}
|
|
6418
|
+
if (output[_ATSCN] != null) {
|
|
6419
|
+
contents[_ATSCN] = (0, import_smithy_client.expectString)(output[_ATSCN]);
|
|
6420
|
+
}
|
|
6410
6421
|
return contents;
|
|
6411
6422
|
}, "de_MutualAuthenticationAttributes");
|
|
6412
6423
|
var de_OperationNotPermittedException = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -7142,6 +7153,7 @@ var _AOC = "AuthenticateOidcConfig";
|
|
|
7142
7153
|
var _AP = "AlpnPolicy";
|
|
7143
7154
|
var _AREP = "AuthenticationRequestExtraParams";
|
|
7144
7155
|
var _AT = "AddTags";
|
|
7156
|
+
var _ATSCN = "AdvertiseTrustStoreCaNames";
|
|
7145
7157
|
var _ATSR = "AddTrustStoreRevocations";
|
|
7146
7158
|
var _AZ = "AvailabilityZone";
|
|
7147
7159
|
var _AZv = "AvailabilityZones";
|
|
@@ -8459,6 +8471,7 @@ var waitUntilTargetInService = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
8459
8471
|
TooManyTrustStoreRevocationEntriesException,
|
|
8460
8472
|
TargetAdministrativeOverrideReasonEnum,
|
|
8461
8473
|
TargetAdministrativeOverrideStateEnum,
|
|
8474
|
+
AdvertiseTrustStoreCaNamesEnum,
|
|
8462
8475
|
AllocationIdNotFoundException,
|
|
8463
8476
|
ALPNPolicyNotSupportedException,
|
|
8464
8477
|
MitigationInEffectEnum,
|
|
@@ -191,6 +191,10 @@ export const TargetAdministrativeOverrideStateEnum = {
|
|
|
191
191
|
ZONAL_SHIFT_ACTIVE: "zonal_shift_active",
|
|
192
192
|
ZONAL_SHIFT_DELEGATED_TO_DNS: "zonal_shift_delegated_to_dns",
|
|
193
193
|
};
|
|
194
|
+
export const AdvertiseTrustStoreCaNamesEnum = {
|
|
195
|
+
off: "off",
|
|
196
|
+
on: "on",
|
|
197
|
+
};
|
|
194
198
|
export class AllocationIdNotFoundException extends __BaseException {
|
|
195
199
|
constructor(opts) {
|
|
196
200
|
super({
|
|
@@ -3154,6 +3154,9 @@ const se_MutualAuthenticationAttributes = (input, context) => {
|
|
|
3154
3154
|
if (input[_TSAS] != null) {
|
|
3155
3155
|
entries[_TSAS] = input[_TSAS];
|
|
3156
3156
|
}
|
|
3157
|
+
if (input[_ATSCN] != null) {
|
|
3158
|
+
entries[_ATSCN] = input[_ATSCN];
|
|
3159
|
+
}
|
|
3157
3160
|
return entries;
|
|
3158
3161
|
};
|
|
3159
3162
|
const se_PathPatternConditionConfig = (input, context) => {
|
|
@@ -4959,6 +4962,9 @@ const de_MutualAuthenticationAttributes = (output, context) => {
|
|
|
4959
4962
|
if (output[_TSAS] != null) {
|
|
4960
4963
|
contents[_TSAS] = __expectString(output[_TSAS]);
|
|
4961
4964
|
}
|
|
4965
|
+
if (output[_ATSCN] != null) {
|
|
4966
|
+
contents[_ATSCN] = __expectString(output[_ATSCN]);
|
|
4967
|
+
}
|
|
4962
4968
|
return contents;
|
|
4963
4969
|
};
|
|
4964
4970
|
const de_OperationNotPermittedException = (output, context) => {
|
|
@@ -5743,6 +5749,7 @@ const _AOC = "AuthenticateOidcConfig";
|
|
|
5743
5749
|
const _AP = "AlpnPolicy";
|
|
5744
5750
|
const _AREP = "AuthenticationRequestExtraParams";
|
|
5745
5751
|
const _AT = "AddTags";
|
|
5752
|
+
const _ATSCN = "AdvertiseTrustStoreCaNames";
|
|
5746
5753
|
const _ATSR = "AddTrustStoreRevocations";
|
|
5747
5754
|
const _AZ = "AvailabilityZone";
|
|
5748
5755
|
const _AZv = "AvailabilityZones";
|
|
@@ -143,6 +143,7 @@ declare const CreateListenerCommand_base: {
|
|
|
143
143
|
* TrustStoreArn: "STRING_VALUE",
|
|
144
144
|
* IgnoreClientCertificateExpiry: true || false,
|
|
145
145
|
* TrustStoreAssociationStatus: "active" || "removed",
|
|
146
|
+
* AdvertiseTrustStoreCaNames: "on" || "off",
|
|
146
147
|
* },
|
|
147
148
|
* };
|
|
148
149
|
* const command = new CreateListenerCommand(input);
|
|
@@ -229,6 +230,7 @@ declare const CreateListenerCommand_base: {
|
|
|
229
230
|
* // TrustStoreArn: "STRING_VALUE",
|
|
230
231
|
* // IgnoreClientCertificateExpiry: true || false,
|
|
231
232
|
* // TrustStoreAssociationStatus: "active" || "removed",
|
|
233
|
+
* // AdvertiseTrustStoreCaNames: "on" || "off",
|
|
232
234
|
* // },
|
|
233
235
|
* // },
|
|
234
236
|
* // ],
|
|
@@ -128,6 +128,7 @@ declare const DescribeListenersCommand_base: {
|
|
|
128
128
|
* // TrustStoreArn: "STRING_VALUE",
|
|
129
129
|
* // IgnoreClientCertificateExpiry: true || false,
|
|
130
130
|
* // TrustStoreAssociationStatus: "active" || "removed",
|
|
131
|
+
* // AdvertiseTrustStoreCaNames: "on" || "off",
|
|
131
132
|
* // },
|
|
132
133
|
* // },
|
|
133
134
|
* // ],
|
|
@@ -120,6 +120,7 @@ declare const ModifyListenerCommand_base: {
|
|
|
120
120
|
* TrustStoreArn: "STRING_VALUE",
|
|
121
121
|
* IgnoreClientCertificateExpiry: true || false,
|
|
122
122
|
* TrustStoreAssociationStatus: "active" || "removed",
|
|
123
|
+
* AdvertiseTrustStoreCaNames: "on" || "off",
|
|
123
124
|
* },
|
|
124
125
|
* };
|
|
125
126
|
* const command = new ModifyListenerCommand(input);
|
|
@@ -206,6 +207,7 @@ declare const ModifyListenerCommand_base: {
|
|
|
206
207
|
* // TrustStoreArn: "STRING_VALUE",
|
|
207
208
|
* // IgnoreClientCertificateExpiry: true || false,
|
|
208
209
|
* // TrustStoreAssociationStatus: "active" || "removed",
|
|
210
|
+
* // AdvertiseTrustStoreCaNames: "on" || "off",
|
|
209
211
|
* // },
|
|
210
212
|
* // },
|
|
211
213
|
* // ],
|
|
@@ -784,6 +784,18 @@ export interface AdministrativeOverride {
|
|
|
784
784
|
*/
|
|
785
785
|
Description?: string | undefined;
|
|
786
786
|
}
|
|
787
|
+
/**
|
|
788
|
+
* @public
|
|
789
|
+
* @enum
|
|
790
|
+
*/
|
|
791
|
+
export declare const AdvertiseTrustStoreCaNamesEnum: {
|
|
792
|
+
readonly off: "off";
|
|
793
|
+
readonly on: "on";
|
|
794
|
+
};
|
|
795
|
+
/**
|
|
796
|
+
* @public
|
|
797
|
+
*/
|
|
798
|
+
export type AdvertiseTrustStoreCaNamesEnum = (typeof AdvertiseTrustStoreCaNamesEnum)[keyof typeof AdvertiseTrustStoreCaNamesEnum];
|
|
787
799
|
/**
|
|
788
800
|
* <p>The specified allocation ID does not exist.</p>
|
|
789
801
|
* @public
|
|
@@ -1064,6 +1076,11 @@ export interface MutualAuthenticationAttributes {
|
|
|
1064
1076
|
* @public
|
|
1065
1077
|
*/
|
|
1066
1078
|
TrustStoreAssociationStatus?: TrustStoreAssociationStatusEnum | undefined;
|
|
1079
|
+
/**
|
|
1080
|
+
* <p>Indicates whether trust store CA certificate names are advertised.</p>
|
|
1081
|
+
* @public
|
|
1082
|
+
*/
|
|
1083
|
+
AdvertiseTrustStoreCaNames?: AdvertiseTrustStoreCaNamesEnum | undefined;
|
|
1067
1084
|
}
|
|
1068
1085
|
/**
|
|
1069
1086
|
* @public
|
|
@@ -262,6 +262,12 @@ export interface AdministrativeOverride {
|
|
|
262
262
|
Reason?: TargetAdministrativeOverrideReasonEnum | undefined;
|
|
263
263
|
Description?: string | undefined;
|
|
264
264
|
}
|
|
265
|
+
export declare const AdvertiseTrustStoreCaNamesEnum: {
|
|
266
|
+
readonly off: "off";
|
|
267
|
+
readonly on: "on";
|
|
268
|
+
};
|
|
269
|
+
export type AdvertiseTrustStoreCaNamesEnum =
|
|
270
|
+
(typeof AdvertiseTrustStoreCaNamesEnum)[keyof typeof AdvertiseTrustStoreCaNamesEnum];
|
|
265
271
|
export declare class AllocationIdNotFoundException extends __BaseException {
|
|
266
272
|
readonly name: "AllocationIdNotFoundException";
|
|
267
273
|
readonly $fault: "client";
|
|
@@ -392,6 +398,7 @@ export interface MutualAuthenticationAttributes {
|
|
|
392
398
|
TrustStoreArn?: string | undefined;
|
|
393
399
|
IgnoreClientCertificateExpiry?: boolean | undefined;
|
|
394
400
|
TrustStoreAssociationStatus?: TrustStoreAssociationStatusEnum | undefined;
|
|
401
|
+
AdvertiseTrustStoreCaNames?: AdvertiseTrustStoreCaNamesEnum | undefined;
|
|
395
402
|
}
|
|
396
403
|
export declare const ProtocolEnum: {
|
|
397
404
|
readonly GENEVE: "GENEVE";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-load-balancing-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.699.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-elastic-load-balancing-v2",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.699.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.699.0",
|
|
25
25
|
"@aws-sdk/core": "3.696.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.699.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|