@aws-sdk/client-direct-connect 3.37.0 → 3.38.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.
Files changed (55) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +2 -2
  3. package/dist-cjs/DirectConnect.js +60 -0
  4. package/dist-cjs/commands/ConfirmCustomerAgreementCommand.js +36 -0
  5. package/dist-cjs/commands/DescribeCustomerMetadataCommand.js +36 -0
  6. package/dist-cjs/commands/DescribeRouterConfigurationCommand.js +36 -0
  7. package/dist-cjs/commands/UpdateDirectConnectGatewayCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +66 -0
  9. package/dist-cjs/index.js +3 -61
  10. package/dist-cjs/models/models_0.js +63 -3
  11. package/dist-cjs/protocols/Aws_json1_1.js +339 -3
  12. package/dist-es/DirectConnect.js +60 -0
  13. package/dist-es/commands/ConfirmCustomerAgreementCommand.js +39 -0
  14. package/dist-es/commands/DescribeCustomerMetadataCommand.js +39 -0
  15. package/dist-es/commands/DescribeRouterConfigurationCommand.js +39 -0
  16. package/dist-es/commands/UpdateDirectConnectGatewayCommand.js +39 -0
  17. package/dist-es/commands/index.js +63 -0
  18. package/dist-es/index.js +3 -61
  19. package/dist-es/models/models_0.js +42 -0
  20. package/dist-es/protocols/Aws_json1_1.js +369 -0
  21. package/dist-types/DirectConnect.d.ts +51 -19
  22. package/dist-types/DirectConnectClient.d.ts +8 -4
  23. package/dist-types/commands/AllocatePrivateVirtualInterfaceCommand.d.ts +1 -1
  24. package/dist-types/commands/AllocatePublicVirtualInterfaceCommand.d.ts +2 -2
  25. package/dist-types/commands/AllocateTransitVirtualInterfaceCommand.d.ts +2 -2
  26. package/dist-types/commands/ConfirmCustomerAgreementCommand.d.ts +37 -0
  27. package/dist-types/commands/ConfirmPrivateVirtualInterfaceCommand.d.ts +1 -1
  28. package/dist-types/commands/ConfirmPublicVirtualInterfaceCommand.d.ts +1 -1
  29. package/dist-types/commands/ConfirmTransitVirtualInterfaceCommand.d.ts +1 -1
  30. package/dist-types/commands/CreateDirectConnectGatewayAssociationProposalCommand.d.ts +1 -1
  31. package/dist-types/commands/CreateDirectConnectGatewayCommand.d.ts +2 -2
  32. package/dist-types/commands/CreateLagCommand.d.ts +1 -1
  33. package/dist-types/commands/CreatePrivateVirtualInterfaceCommand.d.ts +1 -1
  34. package/dist-types/commands/DescribeCustomerMetadataCommand.d.ts +35 -0
  35. package/dist-types/commands/DescribeInterconnectsCommand.d.ts +1 -1
  36. package/dist-types/commands/DescribeLocationsCommand.d.ts +1 -1
  37. package/dist-types/commands/DescribeRouterConfigurationCommand.d.ts +37 -0
  38. package/dist-types/commands/DescribeVirtualGatewaysCommand.d.ts +1 -1
  39. package/dist-types/commands/DescribeVirtualInterfacesCommand.d.ts +1 -1
  40. package/dist-types/commands/UpdateDirectConnectGatewayCommand.d.ts +35 -0
  41. package/dist-types/commands/index.d.ts +63 -0
  42. package/dist-types/index.d.ts +3 -61
  43. package/dist-types/models/models_0.d.ts +209 -23
  44. package/dist-types/protocols/Aws_json1_1.d.ts +12 -0
  45. package/dist-types/ts3.4/DirectConnect.d.ts +20 -0
  46. package/dist-types/ts3.4/DirectConnectClient.d.ts +6 -2
  47. package/dist-types/ts3.4/commands/ConfirmCustomerAgreementCommand.d.ts +17 -0
  48. package/dist-types/ts3.4/commands/DescribeCustomerMetadataCommand.d.ts +17 -0
  49. package/dist-types/ts3.4/commands/DescribeRouterConfigurationCommand.d.ts +17 -0
  50. package/dist-types/ts3.4/commands/UpdateDirectConnectGatewayCommand.d.ts +17 -0
  51. package/dist-types/ts3.4/commands/index.d.ts +63 -0
  52. package/dist-types/ts3.4/index.d.ts +3 -61
  53. package/dist-types/ts3.4/models/models_0.d.ts +104 -0
  54. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
  55. package/package.json +24 -24
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { DescribeCustomerMetadataResponse } from "../models/models_0";
5
+ import { deserializeAws_json1_1DescribeCustomerMetadataCommand, serializeAws_json1_1DescribeCustomerMetadataCommand, } from "../protocols/Aws_json1_1";
6
+ var DescribeCustomerMetadataCommand = (function (_super) {
7
+ __extends(DescribeCustomerMetadataCommand, _super);
8
+ function DescribeCustomerMetadataCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ DescribeCustomerMetadataCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "DirectConnectClient";
18
+ var commandName = "DescribeCustomerMetadataCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: function (input) { return input; },
24
+ outputFilterSensitiveLog: DescribeCustomerMetadataResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DescribeCustomerMetadataCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_1DescribeCustomerMetadataCommand(input, context);
33
+ };
34
+ DescribeCustomerMetadataCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_1DescribeCustomerMetadataCommand(output, context);
36
+ };
37
+ return DescribeCustomerMetadataCommand;
38
+ }($Command));
39
+ export { DescribeCustomerMetadataCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { DescribeRouterConfigurationRequest, DescribeRouterConfigurationResponse } from "../models/models_0";
5
+ import { deserializeAws_json1_1DescribeRouterConfigurationCommand, serializeAws_json1_1DescribeRouterConfigurationCommand, } from "../protocols/Aws_json1_1";
6
+ var DescribeRouterConfigurationCommand = (function (_super) {
7
+ __extends(DescribeRouterConfigurationCommand, _super);
8
+ function DescribeRouterConfigurationCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ DescribeRouterConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "DirectConnectClient";
18
+ var commandName = "DescribeRouterConfigurationCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: DescribeRouterConfigurationRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: DescribeRouterConfigurationResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DescribeRouterConfigurationCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_1DescribeRouterConfigurationCommand(input, context);
33
+ };
34
+ DescribeRouterConfigurationCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_1DescribeRouterConfigurationCommand(output, context);
36
+ };
37
+ return DescribeRouterConfigurationCommand;
38
+ }($Command));
39
+ export { DescribeRouterConfigurationCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { UpdateDirectConnectGatewayRequest, UpdateDirectConnectGatewayResponse } from "../models/models_0";
5
+ import { deserializeAws_json1_1UpdateDirectConnectGatewayCommand, serializeAws_json1_1UpdateDirectConnectGatewayCommand, } from "../protocols/Aws_json1_1";
6
+ var UpdateDirectConnectGatewayCommand = (function (_super) {
7
+ __extends(UpdateDirectConnectGatewayCommand, _super);
8
+ function UpdateDirectConnectGatewayCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ UpdateDirectConnectGatewayCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "DirectConnectClient";
18
+ var commandName = "UpdateDirectConnectGatewayCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: UpdateDirectConnectGatewayRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: UpdateDirectConnectGatewayResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateDirectConnectGatewayCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_1UpdateDirectConnectGatewayCommand(input, context);
33
+ };
34
+ UpdateDirectConnectGatewayCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_1UpdateDirectConnectGatewayCommand(output, context);
36
+ };
37
+ return UpdateDirectConnectGatewayCommand;
38
+ }($Command));
39
+ export { UpdateDirectConnectGatewayCommand };
@@ -0,0 +1,63 @@
1
+ export * from "./AcceptDirectConnectGatewayAssociationProposalCommand";
2
+ export * from "./AllocateConnectionOnInterconnectCommand";
3
+ export * from "./AllocateHostedConnectionCommand";
4
+ export * from "./AllocatePrivateVirtualInterfaceCommand";
5
+ export * from "./AllocatePublicVirtualInterfaceCommand";
6
+ export * from "./AllocateTransitVirtualInterfaceCommand";
7
+ export * from "./AssociateConnectionWithLagCommand";
8
+ export * from "./AssociateHostedConnectionCommand";
9
+ export * from "./AssociateMacSecKeyCommand";
10
+ export * from "./AssociateVirtualInterfaceCommand";
11
+ export * from "./ConfirmConnectionCommand";
12
+ export * from "./ConfirmCustomerAgreementCommand";
13
+ export * from "./ConfirmPrivateVirtualInterfaceCommand";
14
+ export * from "./ConfirmPublicVirtualInterfaceCommand";
15
+ export * from "./ConfirmTransitVirtualInterfaceCommand";
16
+ export * from "./CreateBGPPeerCommand";
17
+ export * from "./CreateConnectionCommand";
18
+ export * from "./CreateDirectConnectGatewayAssociationCommand";
19
+ export * from "./CreateDirectConnectGatewayAssociationProposalCommand";
20
+ export * from "./CreateDirectConnectGatewayCommand";
21
+ export * from "./CreateInterconnectCommand";
22
+ export * from "./CreateLagCommand";
23
+ export * from "./CreatePrivateVirtualInterfaceCommand";
24
+ export * from "./CreatePublicVirtualInterfaceCommand";
25
+ export * from "./CreateTransitVirtualInterfaceCommand";
26
+ export * from "./DeleteBGPPeerCommand";
27
+ export * from "./DeleteConnectionCommand";
28
+ export * from "./DeleteDirectConnectGatewayAssociationCommand";
29
+ export * from "./DeleteDirectConnectGatewayAssociationProposalCommand";
30
+ export * from "./DeleteDirectConnectGatewayCommand";
31
+ export * from "./DeleteInterconnectCommand";
32
+ export * from "./DeleteLagCommand";
33
+ export * from "./DeleteVirtualInterfaceCommand";
34
+ export * from "./DescribeConnectionLoaCommand";
35
+ export * from "./DescribeConnectionsCommand";
36
+ export * from "./DescribeConnectionsOnInterconnectCommand";
37
+ export * from "./DescribeCustomerMetadataCommand";
38
+ export * from "./DescribeDirectConnectGatewayAssociationProposalsCommand";
39
+ export * from "./DescribeDirectConnectGatewayAssociationsCommand";
40
+ export * from "./DescribeDirectConnectGatewayAttachmentsCommand";
41
+ export * from "./DescribeDirectConnectGatewaysCommand";
42
+ export * from "./DescribeHostedConnectionsCommand";
43
+ export * from "./DescribeInterconnectLoaCommand";
44
+ export * from "./DescribeInterconnectsCommand";
45
+ export * from "./DescribeLagsCommand";
46
+ export * from "./DescribeLoaCommand";
47
+ export * from "./DescribeLocationsCommand";
48
+ export * from "./DescribeRouterConfigurationCommand";
49
+ export * from "./DescribeTagsCommand";
50
+ export * from "./DescribeVirtualGatewaysCommand";
51
+ export * from "./DescribeVirtualInterfacesCommand";
52
+ export * from "./DisassociateConnectionFromLagCommand";
53
+ export * from "./DisassociateMacSecKeyCommand";
54
+ export * from "./ListVirtualInterfaceTestHistoryCommand";
55
+ export * from "./StartBgpFailoverTestCommand";
56
+ export * from "./StopBgpFailoverTestCommand";
57
+ export * from "./TagResourceCommand";
58
+ export * from "./UntagResourceCommand";
59
+ export * from "./UpdateConnectionCommand";
60
+ export * from "./UpdateDirectConnectGatewayAssociationCommand";
61
+ export * from "./UpdateDirectConnectGatewayCommand";
62
+ export * from "./UpdateLagCommand";
63
+ export * from "./UpdateVirtualInterfaceAttributesCommand";
package/dist-es/index.js CHANGED
@@ -1,62 +1,4 @@
1
- export * from "./DirectConnectClient";
2
1
  export * from "./DirectConnect";
3
- export * from "./commands/AcceptDirectConnectGatewayAssociationProposalCommand";
4
- export * from "./commands/AllocateConnectionOnInterconnectCommand";
5
- export * from "./commands/AllocateHostedConnectionCommand";
6
- export * from "./commands/AllocatePrivateVirtualInterfaceCommand";
7
- export * from "./commands/AllocatePublicVirtualInterfaceCommand";
8
- export * from "./commands/AllocateTransitVirtualInterfaceCommand";
9
- export * from "./commands/AssociateConnectionWithLagCommand";
10
- export * from "./commands/AssociateHostedConnectionCommand";
11
- export * from "./commands/AssociateMacSecKeyCommand";
12
- export * from "./commands/AssociateVirtualInterfaceCommand";
13
- export * from "./commands/ConfirmConnectionCommand";
14
- export * from "./commands/ConfirmPrivateVirtualInterfaceCommand";
15
- export * from "./commands/ConfirmPublicVirtualInterfaceCommand";
16
- export * from "./commands/ConfirmTransitVirtualInterfaceCommand";
17
- export * from "./commands/CreateBGPPeerCommand";
18
- export * from "./commands/CreateConnectionCommand";
19
- export * from "./commands/CreateDirectConnectGatewayCommand";
20
- export * from "./commands/CreateDirectConnectGatewayAssociationCommand";
21
- export * from "./commands/CreateDirectConnectGatewayAssociationProposalCommand";
22
- export * from "./commands/CreateInterconnectCommand";
23
- export * from "./commands/CreateLagCommand";
24
- export * from "./commands/CreatePrivateVirtualInterfaceCommand";
25
- export * from "./commands/CreatePublicVirtualInterfaceCommand";
26
- export * from "./commands/CreateTransitVirtualInterfaceCommand";
27
- export * from "./commands/DeleteBGPPeerCommand";
28
- export * from "./commands/DeleteConnectionCommand";
29
- export * from "./commands/DeleteDirectConnectGatewayCommand";
30
- export * from "./commands/DeleteDirectConnectGatewayAssociationCommand";
31
- export * from "./commands/DeleteDirectConnectGatewayAssociationProposalCommand";
32
- export * from "./commands/DeleteInterconnectCommand";
33
- export * from "./commands/DeleteLagCommand";
34
- export * from "./commands/DeleteVirtualInterfaceCommand";
35
- export * from "./commands/DescribeConnectionLoaCommand";
36
- export * from "./commands/DescribeConnectionsCommand";
37
- export * from "./commands/DescribeConnectionsOnInterconnectCommand";
38
- export * from "./commands/DescribeDirectConnectGatewayAssociationProposalsCommand";
39
- export * from "./commands/DescribeDirectConnectGatewayAssociationsCommand";
40
- export * from "./commands/DescribeDirectConnectGatewayAttachmentsCommand";
41
- export * from "./commands/DescribeDirectConnectGatewaysCommand";
42
- export * from "./commands/DescribeHostedConnectionsCommand";
43
- export * from "./commands/DescribeInterconnectLoaCommand";
44
- export * from "./commands/DescribeInterconnectsCommand";
45
- export * from "./commands/DescribeLagsCommand";
46
- export * from "./commands/DescribeLoaCommand";
47
- export * from "./commands/DescribeLocationsCommand";
48
- export * from "./commands/DescribeTagsCommand";
49
- export * from "./commands/DescribeVirtualGatewaysCommand";
50
- export * from "./commands/DescribeVirtualInterfacesCommand";
51
- export * from "./commands/DisassociateConnectionFromLagCommand";
52
- export * from "./commands/DisassociateMacSecKeyCommand";
53
- export * from "./commands/ListVirtualInterfaceTestHistoryCommand";
54
- export * from "./commands/StartBgpFailoverTestCommand";
55
- export * from "./commands/StopBgpFailoverTestCommand";
56
- export * from "./commands/TagResourceCommand";
57
- export * from "./commands/UntagResourceCommand";
58
- export * from "./commands/UpdateConnectionCommand";
59
- export * from "./commands/UpdateDirectConnectGatewayAssociationCommand";
60
- export * from "./commands/UpdateLagCommand";
61
- export * from "./commands/UpdateVirtualInterfaceAttributesCommand";
62
- export * from "./models/index";
2
+ export * from "./DirectConnectClient";
3
+ export * from "./commands";
4
+ export * from "./models";
@@ -37,6 +37,10 @@ export var AddressFamily;
37
37
  AddressFamily["IPv4"] = "ipv4";
38
38
  AddressFamily["IPv6"] = "ipv6";
39
39
  })(AddressFamily || (AddressFamily = {}));
40
+ export var CustomerAgreement;
41
+ (function (CustomerAgreement) {
42
+ CustomerAgreement.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
43
+ })(CustomerAgreement || (CustomerAgreement = {}));
40
44
  export var AllocateConnectionOnInterconnectRequest;
41
45
  (function (AllocateConnectionOnInterconnectRequest) {
42
46
  AllocateConnectionOnInterconnectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -149,6 +153,14 @@ export var ConfirmConnectionResponse;
149
153
  (function (ConfirmConnectionResponse) {
150
154
  ConfirmConnectionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
151
155
  })(ConfirmConnectionResponse || (ConfirmConnectionResponse = {}));
156
+ export var ConfirmCustomerAgreementRequest;
157
+ (function (ConfirmCustomerAgreementRequest) {
158
+ ConfirmCustomerAgreementRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
159
+ })(ConfirmCustomerAgreementRequest || (ConfirmCustomerAgreementRequest = {}));
160
+ export var ConfirmCustomerAgreementResponse;
161
+ (function (ConfirmCustomerAgreementResponse) {
162
+ ConfirmCustomerAgreementResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
163
+ })(ConfirmCustomerAgreementResponse || (ConfirmCustomerAgreementResponse = {}));
152
164
  export var ConfirmPrivateVirtualInterfaceRequest;
153
165
  (function (ConfirmPrivateVirtualInterfaceRequest) {
154
166
  ConfirmPrivateVirtualInterfaceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -349,6 +361,16 @@ export var DescribeConnectionsOnInterconnectRequest;
349
361
  (function (DescribeConnectionsOnInterconnectRequest) {
350
362
  DescribeConnectionsOnInterconnectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
363
  })(DescribeConnectionsOnInterconnectRequest || (DescribeConnectionsOnInterconnectRequest = {}));
364
+ export var NniPartnerType;
365
+ (function (NniPartnerType) {
366
+ NniPartnerType["NonPartner"] = "nonPartner";
367
+ NniPartnerType["V1"] = "v1";
368
+ NniPartnerType["V2"] = "v2";
369
+ })(NniPartnerType || (NniPartnerType = {}));
370
+ export var DescribeCustomerMetadataResponse;
371
+ (function (DescribeCustomerMetadataResponse) {
372
+ DescribeCustomerMetadataResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
+ })(DescribeCustomerMetadataResponse || (DescribeCustomerMetadataResponse = {}));
352
374
  export var DescribeDirectConnectGatewayAssociationProposalsRequest;
353
375
  (function (DescribeDirectConnectGatewayAssociationProposalsRequest) {
354
376
  DescribeDirectConnectGatewayAssociationProposalsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -425,6 +447,18 @@ export var Locations;
425
447
  (function (Locations) {
426
448
  Locations.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
427
449
  })(Locations || (Locations = {}));
450
+ export var DescribeRouterConfigurationRequest;
451
+ (function (DescribeRouterConfigurationRequest) {
452
+ DescribeRouterConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
453
+ })(DescribeRouterConfigurationRequest || (DescribeRouterConfigurationRequest = {}));
454
+ export var RouterType;
455
+ (function (RouterType) {
456
+ RouterType.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
457
+ })(RouterType || (RouterType = {}));
458
+ export var DescribeRouterConfigurationResponse;
459
+ (function (DescribeRouterConfigurationResponse) {
460
+ DescribeRouterConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
461
+ })(DescribeRouterConfigurationResponse || (DescribeRouterConfigurationResponse = {}));
428
462
  export var DescribeTagsRequest;
429
463
  (function (DescribeTagsRequest) {
430
464
  DescribeTagsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -513,6 +547,14 @@ export var UpdateConnectionRequest;
513
547
  (function (UpdateConnectionRequest) {
514
548
  UpdateConnectionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
515
549
  })(UpdateConnectionRequest || (UpdateConnectionRequest = {}));
550
+ export var UpdateDirectConnectGatewayRequest;
551
+ (function (UpdateDirectConnectGatewayRequest) {
552
+ UpdateDirectConnectGatewayRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
553
+ })(UpdateDirectConnectGatewayRequest || (UpdateDirectConnectGatewayRequest = {}));
554
+ export var UpdateDirectConnectGatewayResponse;
555
+ (function (UpdateDirectConnectGatewayResponse) {
556
+ UpdateDirectConnectGatewayResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
557
+ })(UpdateDirectConnectGatewayResponse || (UpdateDirectConnectGatewayResponse = {}));
516
558
  export var UpdateDirectConnectGatewayAssociationRequest;
517
559
  (function (UpdateDirectConnectGatewayAssociationRequest) {
518
560
  UpdateDirectConnectGatewayAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };