@aws-sdk/client-rtbfabric 3.1045.0 → 3.1046.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/README.md +63 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
- package/dist-cjs/endpoint/bdd.js +2 -2
- package/dist-cjs/endpoint/endpointResolver.js +4 -4
- package/dist-cjs/index.js +539 -177
- package/dist-cjs/models/RTBFabricServiceException.js +3 -3
- package/dist-cjs/runtimeConfig.browser.js +12 -14
- package/dist-cjs/runtimeConfig.js +18 -22
- package/dist-cjs/runtimeConfig.shared.js +9 -10
- package/dist-cjs/schemas/schemas_0.js +200 -10
- package/dist-es/RTBFabric.js +31 -1
- package/dist-es/RTBFabricClient.js +5 -5
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/commands/AcceptLinkCommand.js +2 -2
- package/dist-es/commands/AssociateCertificateCommand.js +16 -0
- package/dist-es/commands/CreateInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/CreateLinkCommand.js +2 -2
- package/dist-es/commands/CreateLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/CreateOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/CreateRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/CreateResponderGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/DeleteLinkCommand.js +2 -2
- package/dist-es/commands/DeleteLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/DeleteRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteResponderGatewayCommand.js +2 -2
- package/dist-es/commands/DisassociateCertificateCommand.js +16 -0
- package/dist-es/commands/GetCertificateAssociationCommand.js +16 -0
- package/dist-es/commands/GetInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/GetLinkCommand.js +2 -2
- package/dist-es/commands/GetLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/GetOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/GetRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/GetResponderGatewayCommand.js +2 -2
- package/dist-es/commands/ListCertificateAssociationsCommand.js +16 -0
- package/dist-es/commands/ListLinkRoutingRulesCommand.js +16 -0
- package/dist-es/commands/ListLinksCommand.js +2 -2
- package/dist-es/commands/ListRequesterGatewaysCommand.js +2 -2
- package/dist-es/commands/ListResponderGatewaysCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RejectLinkCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateLinkCommand.js +2 -2
- package/dist-es/commands/UpdateLinkModuleFlowCommand.js +2 -2
- package/dist-es/commands/UpdateLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/UpdateRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/UpdateResponderGatewayCommand.js +2 -2
- package/dist-es/commands/index.js +9 -0
- package/dist-es/endpoint/bdd.js +1 -1
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/RTBFabricServiceException.js +1 -1
- package/dist-es/models/enums.js +15 -0
- package/dist-es/pagination/ListCertificateAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListLinkRoutingRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/runtimeConfig.browser.js +4 -6
- package/dist-es/runtimeConfig.js +4 -8
- package/dist-es/runtimeConfig.shared.js +3 -4
- package/dist-es/runtimeExtensions.js +2 -2
- package/dist-es/schemas/schemas_0.js +197 -7
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForCertificateAssociated.js +61 -0
- package/dist-es/waiters/waitForCertificateDisassociated.js +52 -0
- package/dist-es/waiters/waitForInboundExternalLinkActive.js +1 -1
- package/dist-es/waiters/waitForInboundExternalLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForLinkAccepted.js +1 -1
- package/dist-es/waiters/waitForLinkActive.js +1 -1
- package/dist-es/waiters/waitForLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForLinkRoutingRuleActive.js +49 -0
- package/dist-es/waiters/waitForLinkRoutingRuleDeleted.js +43 -0
- package/dist-es/waiters/waitForOutboundExternalLinkActive.js +1 -1
- package/dist-es/waiters/waitForOutboundExternalLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForRequesterGatewayActive.js +1 -1
- package/dist-es/waiters/waitForRequesterGatewayDeleted.js +1 -1
- package/dist-es/waiters/waitForResponderGatewayActive.js +1 -1
- package/dist-es/waiters/waitForResponderGatewayDeleted.js +1 -1
- package/dist-types/RTBFabric.d.ts +102 -1
- package/dist-types/RTBFabricClient.d.ts +16 -7
- package/dist-types/commands/AcceptLinkCommand.d.ts +6 -4
- package/dist-types/commands/AssociateCertificateCommand.d.ts +120 -0
- package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/CreateLinkCommand.d.ts +6 -4
- package/dist-types/commands/CreateLinkRoutingRuleCommand.d.ts +140 -0
- package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +9 -4
- package/dist-types/commands/CreateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/CreateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/DeleteInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteLinkRoutingRuleCommand.d.ts +115 -0
- package/dist-types/commands/DeleteOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteRequesterGatewayCommand.d.ts +9 -4
- package/dist-types/commands/DeleteResponderGatewayCommand.d.ts +9 -4
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +118 -0
- package/dist-types/commands/GetCertificateAssociationCommand.d.ts +116 -0
- package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetLinkRoutingRuleCommand.d.ts +140 -0
- package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/GetResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/ListCertificateAssociationsCommand.d.ts +125 -0
- package/dist-types/commands/ListLinkRoutingRulesCommand.d.ts +143 -0
- package/dist-types/commands/ListLinksCommand.d.ts +6 -4
- package/dist-types/commands/ListRequesterGatewaysCommand.d.ts +6 -4
- package/dist-types/commands/ListResponderGatewaysCommand.d.ts +6 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -4
- package/dist-types/commands/RejectLinkCommand.d.ts +6 -4
- package/dist-types/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkModuleFlowCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkRoutingRuleCommand.d.ts +134 -0
- package/dist-types/commands/UpdateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/endpoint/bdd.d.ts +1 -1
- package/dist-types/extensionConfiguration.d.ts +1 -1
- package/dist-types/models/RTBFabricServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +31 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +522 -1
- package/dist-types/pagination/ListCertificateAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListLinkRoutingRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/schemas/schemas_0.d.ts +31 -0
- package/dist-types/ts3.4/RTBFabric.d.ts +210 -1
- package/dist-types/ts3.4/RTBFabricClient.d.ts +62 -14
- package/dist-types/ts3.4/commands/AcceptLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetCertificateAssociationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListCertificateAssociationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListLinkRoutingRulesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListLinksCommand.d.ts +6 -8
- package/dist-types/ts3.4/commands/ListRequesterGatewaysCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListResponderGatewaysCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/RejectLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkModuleFlowCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/models/RTBFabricServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +18 -0
- package/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +127 -0
- package/dist-types/ts3.4/pagination/ListCertificateAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListLinkRoutingRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +31 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForCertificateAssociated.d.ts +19 -0
- package/dist-types/ts3.4/waiters/waitForCertificateDisassociated.d.ts +24 -0
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkAccepted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkRoutingRuleActive.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForLinkRoutingRuleDeleted.d.ts +20 -0
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResponderGatewayActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResponderGatewayDeleted.d.ts +1 -1
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForCertificateAssociated.d.ts +15 -0
- package/dist-types/waiters/waitForCertificateDisassociated.d.ts +16 -0
- package/dist-types/waiters/waitForInboundExternalLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForInboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkAccepted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkRoutingRuleActive.d.ts +15 -0
- package/dist-types/waiters/waitForLinkRoutingRuleDeleted.d.ts +16 -0
- package/dist-types/waiters/waitForOutboundExternalLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForOutboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForRequesterGatewayActive.d.ts +1 -1
- package/dist-types/waiters/waitForRequesterGatewayDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForResponderGatewayActive.d.ts +1 -1
- package/dist-types/waiters/waitForResponderGatewayDeleted.d.ts +1 -1
- package/package.json +13 -35
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.UpdateResponderGateway$ = exports.UpdateRequesterGateway$ = exports.UpdateLinkModuleFlow$ = exports.UpdateLink$ = exports.UntagResource$ = exports.TagResource$ = exports.RejectLink$ = exports.ListTagsForResource$ = exports.ListResponderGateways$ = exports.ListRequesterGateways$ = exports.ListLinks$ = exports.GetResponderGateway$ = void 0;
|
|
3
|
+
exports.GetLinkResponse$ = exports.GetLinkRequest$ = exports.GetInboundExternalLinkResponse$ = exports.GetInboundExternalLinkRequest$ = exports.GetCertificateAssociationResponse$ = exports.GetCertificateAssociationRequest$ = exports.FilterCriterion$ = exports.Filter$ = exports.EksEndpointsConfiguration$ = exports.DisassociateCertificateResponse$ = exports.DisassociateCertificateRequest$ = exports.DeleteResponderGatewayResponse$ = exports.DeleteResponderGatewayRequest$ = exports.DeleteRequesterGatewayResponse$ = exports.DeleteRequesterGatewayRequest$ = exports.DeleteOutboundExternalLinkResponse$ = exports.DeleteOutboundExternalLinkRequest$ = exports.DeleteLinkRoutingRuleResponse$ = exports.DeleteLinkRoutingRuleRequest$ = exports.DeleteLinkResponse$ = exports.DeleteLinkRequest$ = exports.DeleteInboundExternalLinkResponse$ = exports.DeleteInboundExternalLinkRequest$ = exports.CreateResponderGatewayResponse$ = exports.CreateResponderGatewayRequest$ = exports.CreateRequesterGatewayResponse$ = exports.CreateRequesterGatewayRequest$ = exports.CreateOutboundExternalLinkResponse$ = exports.CreateOutboundExternalLinkRequest$ = exports.CreateLinkRoutingRuleResponse$ = exports.CreateLinkRoutingRuleRequest$ = exports.CreateLinkResponse$ = exports.CreateLinkRequest$ = exports.CreateInboundExternalLinkResponse$ = exports.CreateInboundExternalLinkRequest$ = exports.CertificateAssociationSummary$ = exports.AutoScalingGroupsConfiguration$ = exports.AssociateCertificateResponse$ = exports.AssociateCertificateRequest$ = exports.AcceptLinkResponse$ = exports.AcceptLinkRequest$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.RTBFabricServiceException$ = void 0;
|
|
4
|
+
exports.UpdateLinkRoutingRuleResponse$ = exports.UpdateLinkRoutingRuleRequest$ = exports.UpdateLinkResponse$ = exports.UpdateLinkRequest$ = exports.UpdateLinkModuleFlowResponse$ = exports.UpdateLinkModuleFlowRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TrustStoreConfiguration$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.RuleCondition$ = exports.ResponderErrorMaskingForHttpCode$ = exports.RejectLinkResponse$ = exports.RejectLinkRequest$ = exports.RateLimiterModuleParameters$ = exports.QueryStringKeyValuePair$ = exports.OpenRtbAttributeModuleParameters$ = exports.NoBidModuleParameters$ = exports.NoBidAction$ = exports.ModuleConfiguration$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListResponderGatewaysResponse$ = exports.ListResponderGatewaysRequest$ = exports.ListRequesterGatewaysResponse$ = exports.ListRequesterGatewaysRequest$ = exports.ListLinksResponseStructure$ = exports.ListLinksResponse$ = exports.ListLinksRequest$ = exports.ListLinkRoutingRulesResponse$ = exports.ListLinkRoutingRulesRequest$ = exports.ListenerConfig$ = exports.ListCertificateAssociationsResponse$ = exports.ListCertificateAssociationsRequest$ = exports.LinkRoutingRuleSummary$ = exports.LinkLogSettings$ = exports.LinkAttributes$ = exports.LinkApplicationLogSampling$ = exports.LinkApplicationLogConfiguration$ = exports.HealthCheckConfig$ = exports.HeaderTagAction$ = exports.GetResponderGatewayResponse$ = exports.GetResponderGatewayRequest$ = exports.GetRequesterGatewayResponse$ = exports.GetRequesterGatewayRequest$ = exports.GetOutboundExternalLinkResponse$ = exports.GetOutboundExternalLinkRequest$ = exports.GetLinkRoutingRuleResponse$ = exports.GetLinkRoutingRuleRequest$ = void 0;
|
|
5
|
+
exports.UpdateResponderGateway$ = exports.UpdateRequesterGateway$ = exports.UpdateLinkRoutingRule$ = exports.UpdateLinkModuleFlow$ = exports.UpdateLink$ = exports.UntagResource$ = exports.TagResource$ = exports.RejectLink$ = exports.ListTagsForResource$ = exports.ListResponderGateways$ = exports.ListRequesterGateways$ = exports.ListLinks$ = exports.ListLinkRoutingRules$ = exports.ListCertificateAssociations$ = exports.GetResponderGateway$ = exports.GetRequesterGateway$ = exports.GetOutboundExternalLink$ = exports.GetLinkRoutingRule$ = exports.GetLink$ = exports.GetInboundExternalLink$ = exports.GetCertificateAssociation$ = exports.DisassociateCertificate$ = exports.DeleteResponderGateway$ = exports.DeleteRequesterGateway$ = exports.DeleteOutboundExternalLink$ = exports.DeleteLinkRoutingRule$ = exports.DeleteLink$ = exports.DeleteInboundExternalLink$ = exports.CreateResponderGateway$ = exports.CreateRequesterGateway$ = exports.CreateOutboundExternalLink$ = exports.CreateLinkRoutingRule$ = exports.CreateLink$ = exports.CreateInboundExternalLink$ = exports.AssociateCertificate$ = exports.AcceptLink$ = exports.ModuleParameters$ = exports.ManagedEndpointConfiguration$ = exports.Action$ = exports.UpdateResponderGatewayResponse$ = exports.UpdateResponderGatewayRequest$ = exports.UpdateRequesterGatewayResponse$ = exports.UpdateRequesterGatewayRequest$ = void 0;
|
|
6
6
|
const _A = "Action";
|
|
7
|
+
const _AC = "AssociateCertificate";
|
|
8
|
+
const _ACR = "AssociateCertificateRequest";
|
|
9
|
+
const _ACRs = "AssociateCertificateResponse";
|
|
7
10
|
const _ADE = "AccessDeniedException";
|
|
8
11
|
const _AL = "AcceptLink";
|
|
9
12
|
const _ALR = "AcceptLinkRequest";
|
|
@@ -11,12 +14,17 @@ const _ALRc = "AcceptLinkResponse";
|
|
|
11
14
|
const _ASGC = "AutoScalingGroupsConfiguration";
|
|
12
15
|
const _BECC = "Base64EncodedCertificateChain";
|
|
13
16
|
const _CAC = "CertificateAuthorityCertificates";
|
|
17
|
+
const _CAS = "CertificateAssociationSummary";
|
|
18
|
+
const _CASL = "CertificateAssociationSummaryList";
|
|
14
19
|
const _CE = "ConflictException";
|
|
15
20
|
const _CIEL = "CreateInboundExternalLink";
|
|
16
21
|
const _CIELR = "CreateInboundExternalLinkRequest";
|
|
17
22
|
const _CIELRr = "CreateInboundExternalLinkResponse";
|
|
18
23
|
const _CL = "CreateLink";
|
|
19
24
|
const _CLR = "CreateLinkRequest";
|
|
25
|
+
const _CLRR = "CreateLinkRoutingRule";
|
|
26
|
+
const _CLRRR = "CreateLinkRoutingRuleRequest";
|
|
27
|
+
const _CLRRRr = "CreateLinkRoutingRuleResponse";
|
|
20
28
|
const _CLRr = "CreateLinkResponse";
|
|
21
29
|
const _COEL = "CreateOutboundExternalLink";
|
|
22
30
|
const _COELR = "CreateOutboundExternalLinkRequest";
|
|
@@ -27,11 +35,17 @@ const _CRGRr = "CreateRequesterGatewayResponse";
|
|
|
27
35
|
const _CRGRre = "CreateResponderGatewayRequest";
|
|
28
36
|
const _CRGRrea = "CreateResponderGatewayResponse";
|
|
29
37
|
const _CRGr = "CreateResponderGateway";
|
|
38
|
+
const _DC = "DisassociateCertificate";
|
|
39
|
+
const _DCR = "DisassociateCertificateRequest";
|
|
40
|
+
const _DCRi = "DisassociateCertificateResponse";
|
|
30
41
|
const _DIEL = "DeleteInboundExternalLink";
|
|
31
42
|
const _DIELR = "DeleteInboundExternalLinkRequest";
|
|
32
43
|
const _DIELRe = "DeleteInboundExternalLinkResponse";
|
|
33
44
|
const _DL = "DeleteLink";
|
|
34
45
|
const _DLR = "DeleteLinkRequest";
|
|
46
|
+
const _DLRR = "DeleteLinkRoutingRule";
|
|
47
|
+
const _DLRRR = "DeleteLinkRoutingRuleRequest";
|
|
48
|
+
const _DLRRRe = "DeleteLinkRoutingRuleResponse";
|
|
35
49
|
const _DLRe = "DeleteLinkResponse";
|
|
36
50
|
const _DOEL = "DeleteOutboundExternalLink";
|
|
37
51
|
const _DOELR = "DeleteOutboundExternalLinkRequest";
|
|
@@ -47,11 +61,17 @@ const _F = "Filter";
|
|
|
47
61
|
const _FC = "FilterCriterion";
|
|
48
62
|
const _FCi = "FilterConfiguration";
|
|
49
63
|
const _FCil = "FilterCriteria";
|
|
64
|
+
const _GCA = "GetCertificateAssociation";
|
|
65
|
+
const _GCAR = "GetCertificateAssociationRequest";
|
|
66
|
+
const _GCARe = "GetCertificateAssociationResponse";
|
|
50
67
|
const _GIEL = "GetInboundExternalLink";
|
|
51
68
|
const _GIELR = "GetInboundExternalLinkRequest";
|
|
52
69
|
const _GIELRe = "GetInboundExternalLinkResponse";
|
|
53
70
|
const _GL = "GetLink";
|
|
54
71
|
const _GLR = "GetLinkRequest";
|
|
72
|
+
const _GLRR = "GetLinkRoutingRule";
|
|
73
|
+
const _GLRRR = "GetLinkRoutingRuleRequest";
|
|
74
|
+
const _GLRRRe = "GetLinkRoutingRuleResponse";
|
|
55
75
|
const _GLRe = "GetLinkResponse";
|
|
56
76
|
const _GOEL = "GetOutboundExternalLink";
|
|
57
77
|
const _GOELR = "GetOutboundExternalLinkRequest";
|
|
@@ -69,8 +89,14 @@ const _LA = "LinkAttributes";
|
|
|
69
89
|
const _LALC = "LinkApplicationLogConfiguration";
|
|
70
90
|
const _LALS = "LinkApplicationLogSampling";
|
|
71
91
|
const _LC = "ListenerConfig";
|
|
92
|
+
const _LCA = "ListCertificateAssociations";
|
|
93
|
+
const _LCAR = "ListCertificateAssociationsRequest";
|
|
94
|
+
const _LCARi = "ListCertificateAssociationsResponse";
|
|
72
95
|
const _LL = "LinkList";
|
|
73
96
|
const _LLR = "ListLinksRequest";
|
|
97
|
+
const _LLRR = "ListLinkRoutingRules";
|
|
98
|
+
const _LLRRR = "ListLinkRoutingRulesRequest";
|
|
99
|
+
const _LLRRRi = "ListLinkRoutingRulesResponse";
|
|
74
100
|
const _LLRS = "ListLinksResponseStructure";
|
|
75
101
|
const _LLRi = "ListLinksResponse";
|
|
76
102
|
const _LLS = "LinkLogSettings";
|
|
@@ -81,6 +107,8 @@ const _LRGRi = "ListRequesterGatewaysResponse";
|
|
|
81
107
|
const _LRGRis = "ListResponderGatewaysRequest";
|
|
82
108
|
const _LRGRist = "ListResponderGatewaysResponse";
|
|
83
109
|
const _LRGi = "ListResponderGateways";
|
|
110
|
+
const _LRRL = "LinkRoutingRuleList";
|
|
111
|
+
const _LRRS = "LinkRoutingRuleSummary";
|
|
84
112
|
const _LTFR = "ListTagsForResource";
|
|
85
113
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
86
114
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
@@ -91,6 +119,8 @@ const _MP = "ModuleParameters";
|
|
|
91
119
|
const _NBA = "NoBidAction";
|
|
92
120
|
const _NBMP = "NoBidModuleParameters";
|
|
93
121
|
const _ORAMP = "OpenRtbAttributeModuleParameters";
|
|
122
|
+
const _QSKVP = "QueryStringKeyValuePair";
|
|
123
|
+
const _RC = "RuleCondition";
|
|
94
124
|
const _REM = "ResponderErrorMasking";
|
|
95
125
|
const _REMFHC = "ResponderErrorMaskingForHttpCode";
|
|
96
126
|
const _RL = "RejectLink";
|
|
@@ -109,6 +139,9 @@ const _ULMF = "UpdateLinkModuleFlow";
|
|
|
109
139
|
const _ULMFR = "UpdateLinkModuleFlowRequest";
|
|
110
140
|
const _ULMFRp = "UpdateLinkModuleFlowResponse";
|
|
111
141
|
const _ULR = "UpdateLinkRequest";
|
|
142
|
+
const _ULRR = "UpdateLinkRoutingRule";
|
|
143
|
+
const _ULRRR = "UpdateLinkRoutingRuleRequest";
|
|
144
|
+
const _ULRRRp = "UpdateLinkRoutingRuleResponse";
|
|
112
145
|
const _ULRp = "UpdateLinkResponse";
|
|
113
146
|
const _UR = "UntagResource";
|
|
114
147
|
const _URG = "UpdateRequesterGateway";
|
|
@@ -121,6 +154,8 @@ const _URR = "UntagResourceRequest";
|
|
|
121
154
|
const _URRn = "UntagResourceResponse";
|
|
122
155
|
const _VE = "ValidationException";
|
|
123
156
|
const _a = "attributes";
|
|
157
|
+
const _aA = "associatedAt";
|
|
158
|
+
const _aCA = "acmCertificateArn";
|
|
124
159
|
const _aL = "applicationLogs";
|
|
125
160
|
const _aLC = "activeLinksCount";
|
|
126
161
|
const _aSG = "autoScalingGroups";
|
|
@@ -131,10 +166,12 @@ const _cA = "createdAt";
|
|
|
131
166
|
const _cAC = "certificateAuthorityCertificates";
|
|
132
167
|
const _cASCCC = "clusterApiServerCaCertificateChain";
|
|
133
168
|
const _cASEU = "clusterApiServerEndpointUri";
|
|
169
|
+
const _cAe = "certificateAssociations";
|
|
134
170
|
const _cN = "clusterName";
|
|
135
171
|
const _cPI = "customerProvidedId";
|
|
136
172
|
const _cT = "connectivityType";
|
|
137
173
|
const _cTl = "clientToken";
|
|
174
|
+
const _co = "conditions";
|
|
138
175
|
const _cr = "criteria";
|
|
139
176
|
const _d = "direction";
|
|
140
177
|
const _dN = "domainName";
|
|
@@ -157,6 +194,8 @@ const _h = "http";
|
|
|
157
194
|
const _hC = "httpCode";
|
|
158
195
|
const _hCC = "healthCheckConfig";
|
|
159
196
|
const _hE = "httpError";
|
|
197
|
+
const _hH = "hostHeader";
|
|
198
|
+
const _hHW = "hostHeaderWildcard";
|
|
160
199
|
const _hP = "holdbackPercentage";
|
|
161
200
|
const _hQ = "httpQuery";
|
|
162
201
|
const _hRA = "httpResponderAllowed";
|
|
@@ -164,6 +203,7 @@ const _hT = "headerTag";
|
|
|
164
203
|
const _hTC = "healthyThresholdCount";
|
|
165
204
|
const _iLC = "inboundLinksCount";
|
|
166
205
|
const _iS = "intervalSeconds";
|
|
206
|
+
const _k = "key";
|
|
167
207
|
const _l = "links";
|
|
168
208
|
const _lC = "listenerConfig";
|
|
169
209
|
const _lI = "linkId";
|
|
@@ -179,21 +219,28 @@ const _nB = "noBid";
|
|
|
179
219
|
const _nBRC = "noBidReasonCode";
|
|
180
220
|
const _nT = "nextToken";
|
|
181
221
|
const _oRA = "openRtbAttribute";
|
|
182
|
-
const _p = "
|
|
222
|
+
const _p = "priority";
|
|
183
223
|
const _pE = "publicEndpoint";
|
|
224
|
+
const _pEa = "pathExact";
|
|
184
225
|
const _pFM = "pendingFlowModules";
|
|
185
226
|
const _pGI = "peerGatewayId";
|
|
227
|
+
const _pP = "pathPrefix";
|
|
186
228
|
const _pTP = "passThroughPercentage";
|
|
187
229
|
const _pa = "path";
|
|
230
|
+
const _po = "port";
|
|
188
231
|
const _pr = "protocol";
|
|
189
232
|
const _pro = "protocols";
|
|
190
|
-
const
|
|
233
|
+
const _qSE = "queryStringEquals";
|
|
234
|
+
const _qSEu = "queryStringExists";
|
|
235
|
+
const _r = "rules";
|
|
191
236
|
const _rA = "roleArn";
|
|
192
237
|
const _rAe = "resourceArn";
|
|
193
238
|
const _rC = "reasonCode";
|
|
194
239
|
const _rEM = "responderErrorMasking";
|
|
240
|
+
const _rI = "ruleId";
|
|
195
241
|
const _rL = "rateLimiter";
|
|
196
242
|
const _rLP = "responseLoggingPercentage";
|
|
243
|
+
const _re = "reason";
|
|
197
244
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.rtbfabric";
|
|
198
245
|
const _sCM = "statusCodeMatcher";
|
|
199
246
|
const _sGI = "securityGroupIds";
|
|
@@ -279,11 +326,26 @@ exports.AcceptLinkResponse$ = [3, n0, _ALRc,
|
|
|
279
326
|
[_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT],
|
|
280
327
|
[0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, () => exports.LinkLogSettings$, 0], 6
|
|
281
328
|
];
|
|
329
|
+
exports.AssociateCertificateRequest$ = [3, n0, _ACR,
|
|
330
|
+
0,
|
|
331
|
+
[_gI, _aCA, _cTl],
|
|
332
|
+
[[0, 1], 0, [0, 4]], 2
|
|
333
|
+
];
|
|
334
|
+
exports.AssociateCertificateResponse$ = [3, n0, _ACRs,
|
|
335
|
+
0,
|
|
336
|
+
[_gI, _aCA, _st],
|
|
337
|
+
[0, 0, 0], 3
|
|
338
|
+
];
|
|
282
339
|
exports.AutoScalingGroupsConfiguration$ = [3, n0, _ASGC,
|
|
283
340
|
0,
|
|
284
341
|
[_aSGN, _rA, _hCC],
|
|
285
342
|
[64 | 0, 0, () => exports.HealthCheckConfig$], 2
|
|
286
343
|
];
|
|
344
|
+
exports.CertificateAssociationSummary$ = [3, n0, _CAS,
|
|
345
|
+
0,
|
|
346
|
+
[_aCA, _st, _aA, _uA],
|
|
347
|
+
[0, 0, 4, 4], 2
|
|
348
|
+
];
|
|
287
349
|
exports.CreateInboundExternalLinkRequest$ = [3, n0, _CIELR,
|
|
288
350
|
0,
|
|
289
351
|
[_gI, _lS, _cTl, _a, _t],
|
|
@@ -304,6 +366,16 @@ exports.CreateLinkResponse$ = [3, n0, _CLRr,
|
|
|
304
366
|
[_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _cPI],
|
|
305
367
|
[0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, () => exports.LinkLogSettings$, 0, 0], 6
|
|
306
368
|
];
|
|
369
|
+
exports.CreateLinkRoutingRuleRequest$ = [3, n0, _CLRRR,
|
|
370
|
+
0,
|
|
371
|
+
[_gI, _lI, _p, _co, _cTl, _t],
|
|
372
|
+
[[0, 1], [0, 1], 1, () => exports.RuleCondition$, [0, 4], 128 | 0], 4
|
|
373
|
+
];
|
|
374
|
+
exports.CreateLinkRoutingRuleResponse$ = [3, n0, _CLRRRr,
|
|
375
|
+
0,
|
|
376
|
+
[_rI, _st, _cA],
|
|
377
|
+
[0, 0, 4], 3
|
|
378
|
+
];
|
|
307
379
|
exports.CreateOutboundExternalLinkRequest$ = [3, n0, _COELR,
|
|
308
380
|
0,
|
|
309
381
|
[_gI, _pE, _lS, _cTl, _a, _t],
|
|
@@ -326,7 +398,7 @@ exports.CreateRequesterGatewayResponse$ = [3, n0, _CRGRr,
|
|
|
326
398
|
];
|
|
327
399
|
exports.CreateResponderGatewayRequest$ = [3, n0, _CRGRre,
|
|
328
400
|
0,
|
|
329
|
-
[_vI, _sI, _sGI,
|
|
401
|
+
[_vI, _sI, _sGI, _po, _pr, _dN, _lC, _tSC, _mEC, _cTl, _de, _t, _gT],
|
|
330
402
|
[0, 64 | 0, 64 | 0, 1, 0, 0, () => exports.ListenerConfig$, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], [0, 4], 0, 128 | 0, 0], 5
|
|
331
403
|
];
|
|
332
404
|
exports.CreateResponderGatewayResponse$ = [3, n0, _CRGRrea,
|
|
@@ -354,6 +426,16 @@ exports.DeleteLinkResponse$ = [3, n0, _DLRe,
|
|
|
354
426
|
[_lI, _st],
|
|
355
427
|
[0, 0], 2
|
|
356
428
|
];
|
|
429
|
+
exports.DeleteLinkRoutingRuleRequest$ = [3, n0, _DLRRR,
|
|
430
|
+
0,
|
|
431
|
+
[_gI, _lI, _rI],
|
|
432
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
433
|
+
];
|
|
434
|
+
exports.DeleteLinkRoutingRuleResponse$ = [3, n0, _DLRRRe,
|
|
435
|
+
0,
|
|
436
|
+
[_rI, _st],
|
|
437
|
+
[0, 0], 2
|
|
438
|
+
];
|
|
357
439
|
exports.DeleteOutboundExternalLinkRequest$ = [3, n0, _DOELR,
|
|
358
440
|
0,
|
|
359
441
|
[_gI, _lI],
|
|
@@ -384,6 +466,16 @@ exports.DeleteResponderGatewayResponse$ = [3, n0, _DRGRele,
|
|
|
384
466
|
[_gI, _st],
|
|
385
467
|
[0, 0], 2
|
|
386
468
|
];
|
|
469
|
+
exports.DisassociateCertificateRequest$ = [3, n0, _DCR,
|
|
470
|
+
0,
|
|
471
|
+
[_gI, _aCA],
|
|
472
|
+
[[0, 1], [0, { [_hQ]: _aCA }]], 2
|
|
473
|
+
];
|
|
474
|
+
exports.DisassociateCertificateResponse$ = [3, n0, _DCRi,
|
|
475
|
+
0,
|
|
476
|
+
[_gI, _aCA, _st],
|
|
477
|
+
[0, 0, 0], 3
|
|
478
|
+
];
|
|
387
479
|
exports.EksEndpointsConfiguration$ = [3, n0, _EEC,
|
|
388
480
|
0,
|
|
389
481
|
[_eRN, _eRNn, _cASEU, _cASCCC, _cN, _rA],
|
|
@@ -399,6 +491,16 @@ exports.FilterCriterion$ = [3, n0, _FC,
|
|
|
399
491
|
[_pa, _v],
|
|
400
492
|
[0, 64 | 0], 2
|
|
401
493
|
];
|
|
494
|
+
exports.GetCertificateAssociationRequest$ = [3, n0, _GCAR,
|
|
495
|
+
0,
|
|
496
|
+
[_gI, _aCA],
|
|
497
|
+
[[0, 1], [0, { [_hQ]: _aCA }]], 2
|
|
498
|
+
];
|
|
499
|
+
exports.GetCertificateAssociationResponse$ = [3, n0, _GCARe,
|
|
500
|
+
0,
|
|
501
|
+
[_gI, _aCA, _st, _aA, _uA],
|
|
502
|
+
[0, 0, 0, 4, 4], 3
|
|
503
|
+
];
|
|
402
504
|
exports.GetInboundExternalLinkRequest$ = [3, n0, _GIELR,
|
|
403
505
|
0,
|
|
404
506
|
[_gI, _lI],
|
|
@@ -419,6 +521,16 @@ exports.GetLinkResponse$ = [3, n0, _GLRe,
|
|
|
419
521
|
[_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _t, _hRA, _tIM],
|
|
420
522
|
[0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, () => exports.LinkLogSettings$, 0, 128 | 0, 2, 1], 6
|
|
421
523
|
];
|
|
524
|
+
exports.GetLinkRoutingRuleRequest$ = [3, n0, _GLRRR,
|
|
525
|
+
0,
|
|
526
|
+
[_gI, _lI, _rI],
|
|
527
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
528
|
+
];
|
|
529
|
+
exports.GetLinkRoutingRuleResponse$ = [3, n0, _GLRRRe,
|
|
530
|
+
0,
|
|
531
|
+
[_gI, _lI, _rI, _p, _co, _st, _cA, _uA, _t],
|
|
532
|
+
[0, 0, 0, 1, () => exports.RuleCondition$, 0, 4, 4, 128 | 0], 8
|
|
533
|
+
];
|
|
422
534
|
exports.GetOutboundExternalLinkRequest$ = [3, n0, _GOELR,
|
|
423
535
|
0,
|
|
424
536
|
[_gI, _lI],
|
|
@@ -446,7 +558,7 @@ exports.GetResponderGatewayRequest$ = [3, n0, _GRGRet,
|
|
|
446
558
|
];
|
|
447
559
|
exports.GetResponderGatewayResponse$ = [3, n0, _GRGRete,
|
|
448
560
|
0,
|
|
449
|
-
[_vI, _sI, _sGI, _st,
|
|
561
|
+
[_vI, _sI, _sGI, _st, _po, _pr, _gI, _de, _cA, _uA, _dN, _lC, _tSC, _mEC, _t, _aLC, _tLC, _iLC, _gT, _eIE],
|
|
450
562
|
[0, 64 | 0, 64 | 0, 0, 1, 0, 0, 0, 4, 4, 0, () => exports.ListenerConfig$, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], 128 | 0, 1, 1, 1, 0, 0], 7
|
|
451
563
|
];
|
|
452
564
|
exports.HeaderTagAction$ = [3, n0, _HTA,
|
|
@@ -456,7 +568,7 @@ exports.HeaderTagAction$ = [3, n0, _HTA,
|
|
|
456
568
|
];
|
|
457
569
|
exports.HealthCheckConfig$ = [3, n0, _HCC,
|
|
458
570
|
0,
|
|
459
|
-
[
|
|
571
|
+
[_po, _pa, _pr, _tM, _iS, _sCM, _hTC, _uTC],
|
|
460
572
|
[1, 0, 0, 1, 1, 0, 1, 1], 2
|
|
461
573
|
];
|
|
462
574
|
exports.LinkApplicationLogConfiguration$ = [3, n0, _LALC,
|
|
@@ -479,11 +591,36 @@ exports.LinkLogSettings$ = [3, n0, _LLS,
|
|
|
479
591
|
[_aL],
|
|
480
592
|
[() => exports.LinkApplicationLogConfiguration$], 1
|
|
481
593
|
];
|
|
594
|
+
exports.LinkRoutingRuleSummary$ = [3, n0, _LRRS,
|
|
595
|
+
0,
|
|
596
|
+
[_rI, _p, _co, _st, _cA, _uA],
|
|
597
|
+
[0, 1, () => exports.RuleCondition$, 0, 4, 4], 6
|
|
598
|
+
];
|
|
599
|
+
exports.ListCertificateAssociationsRequest$ = [3, n0, _LCAR,
|
|
600
|
+
0,
|
|
601
|
+
[_gI, _nT, _mR],
|
|
602
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
603
|
+
];
|
|
604
|
+
exports.ListCertificateAssociationsResponse$ = [3, n0, _LCARi,
|
|
605
|
+
0,
|
|
606
|
+
[_cAe, _nT],
|
|
607
|
+
[() => CertificateAssociationSummaryList, 0], 1
|
|
608
|
+
];
|
|
482
609
|
exports.ListenerConfig$ = [3, n0, _LC,
|
|
483
610
|
0,
|
|
484
611
|
[_pro],
|
|
485
612
|
[64 | 0], 1
|
|
486
613
|
];
|
|
614
|
+
exports.ListLinkRoutingRulesRequest$ = [3, n0, _LLRRR,
|
|
615
|
+
0,
|
|
616
|
+
[_gI, _lI, _nT, _mR],
|
|
617
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
618
|
+
];
|
|
619
|
+
exports.ListLinkRoutingRulesResponse$ = [3, n0, _LLRRRi,
|
|
620
|
+
0,
|
|
621
|
+
[_r, _nT],
|
|
622
|
+
[() => LinkRoutingRuleList, 0]
|
|
623
|
+
];
|
|
487
624
|
exports.ListLinksRequest$ = [3, n0, _LLR,
|
|
488
625
|
0,
|
|
489
626
|
[_gI, _nT, _mR],
|
|
@@ -541,7 +678,7 @@ exports.NoBidAction$ = [3, n0, _NBA,
|
|
|
541
678
|
];
|
|
542
679
|
exports.NoBidModuleParameters$ = [3, n0, _NBMP,
|
|
543
680
|
0,
|
|
544
|
-
[
|
|
681
|
+
[_re, _rC, _pTP],
|
|
545
682
|
[0, 1, 1]
|
|
546
683
|
];
|
|
547
684
|
exports.OpenRtbAttributeModuleParameters$ = [3, n0, _ORAMP,
|
|
@@ -549,6 +686,11 @@ exports.OpenRtbAttributeModuleParameters$ = [3, n0, _ORAMP,
|
|
|
549
686
|
[_fT, _fC, _ac, _hP],
|
|
550
687
|
[0, () => FilterConfiguration, () => exports.Action$, 1], 4
|
|
551
688
|
];
|
|
689
|
+
exports.QueryStringKeyValuePair$ = [3, n0, _QSKVP,
|
|
690
|
+
0,
|
|
691
|
+
[_k, _va],
|
|
692
|
+
[0, 0], 2
|
|
693
|
+
];
|
|
552
694
|
exports.RateLimiterModuleParameters$ = [3, n0, _RLMP,
|
|
553
695
|
0,
|
|
554
696
|
[_tp],
|
|
@@ -569,6 +711,11 @@ exports.ResponderErrorMaskingForHttpCode$ = [3, n0, _REMFHC,
|
|
|
569
711
|
[_hC, _ac, _lT, _rLP],
|
|
570
712
|
[0, 0, 64 | 0, 1], 3
|
|
571
713
|
];
|
|
714
|
+
exports.RuleCondition$ = [3, n0, _RC,
|
|
715
|
+
0,
|
|
716
|
+
[_hH, _hHW, _pP, _pEa, _qSE, _qSEu],
|
|
717
|
+
[0, 0, 0, 0, () => exports.QueryStringKeyValuePair$, 0]
|
|
718
|
+
];
|
|
572
719
|
exports.TagResourceRequest$ = [3, n0, _TRR,
|
|
573
720
|
0,
|
|
574
721
|
[_rAe, _t],
|
|
@@ -614,6 +761,16 @@ exports.UpdateLinkResponse$ = [3, n0, _ULRp,
|
|
|
614
761
|
[_lI, _st],
|
|
615
762
|
[0, 0], 2
|
|
616
763
|
];
|
|
764
|
+
exports.UpdateLinkRoutingRuleRequest$ = [3, n0, _ULRRR,
|
|
765
|
+
0,
|
|
766
|
+
[_gI, _lI, _rI, _p, _co],
|
|
767
|
+
[[0, 1], [0, 1], [0, 1], 1, () => exports.RuleCondition$], 5
|
|
768
|
+
];
|
|
769
|
+
exports.UpdateLinkRoutingRuleResponse$ = [3, n0, _ULRRRp,
|
|
770
|
+
0,
|
|
771
|
+
[_rI, _st, _uA],
|
|
772
|
+
[0, 0, 4], 3
|
|
773
|
+
];
|
|
617
774
|
exports.UpdateRequesterGatewayRequest$ = [3, n0, _URGR,
|
|
618
775
|
0,
|
|
619
776
|
[_gI, _cTl, _de],
|
|
@@ -626,7 +783,7 @@ exports.UpdateRequesterGatewayResponse$ = [3, n0, _URGRp,
|
|
|
626
783
|
];
|
|
627
784
|
exports.UpdateResponderGatewayRequest$ = [3, n0, _URGRpd,
|
|
628
785
|
0,
|
|
629
|
-
[
|
|
786
|
+
[_po, _pr, _gI, _dN, _lC, _tSC, _mEC, _cTl, _de],
|
|
630
787
|
[1, 0, [0, 1], 0, () => exports.ListenerConfig$, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], [0, 4], 0], 3
|
|
631
788
|
];
|
|
632
789
|
exports.UpdateResponderGatewayResponse$ = [3, n0, _URGRpda,
|
|
@@ -635,6 +792,9 @@ exports.UpdateResponderGatewayResponse$ = [3, n0, _URGRpda,
|
|
|
635
792
|
[0, 0], 2
|
|
636
793
|
];
|
|
637
794
|
var AutoScalingGroupNameList = 64 | 0;
|
|
795
|
+
var CertificateAssociationSummaryList = [1, n0, _CASL,
|
|
796
|
+
0, () => exports.CertificateAssociationSummary$
|
|
797
|
+
];
|
|
638
798
|
var CertificateAuthorityCertificates = [1, n0, _CAC,
|
|
639
799
|
0, [() => Base64EncodedCertificateChain,
|
|
640
800
|
0]
|
|
@@ -650,6 +810,9 @@ var GatewayIdList = 64 | 0;
|
|
|
650
810
|
var LinkList = [1, n0, _LL,
|
|
651
811
|
0, () => exports.ListLinksResponseStructure$
|
|
652
812
|
];
|
|
813
|
+
var LinkRoutingRuleList = [1, n0, _LRRL,
|
|
814
|
+
0, () => exports.LinkRoutingRuleSummary$
|
|
815
|
+
];
|
|
653
816
|
var ModuleConfigurationList = [1, n0, _MCL,
|
|
654
817
|
0, () => exports.ModuleConfiguration$
|
|
655
818
|
];
|
|
@@ -681,12 +844,18 @@ exports.ModuleParameters$ = [4, n0, _MP,
|
|
|
681
844
|
exports.AcceptLink$ = [9, n0, _AL,
|
|
682
845
|
{ [_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/accept", 200] }, () => exports.AcceptLinkRequest$, () => exports.AcceptLinkResponse$
|
|
683
846
|
];
|
|
847
|
+
exports.AssociateCertificate$ = [9, n0, _AC,
|
|
848
|
+
{ [_h]: ["POST", "/responder-gateway/{gatewayId}/certificate", 200] }, () => exports.AssociateCertificateRequest$, () => exports.AssociateCertificateResponse$
|
|
849
|
+
];
|
|
684
850
|
exports.CreateInboundExternalLink$ = [9, n0, _CIEL,
|
|
685
851
|
{ [_h]: ["POST", "/responder-gateway/{gatewayId}/inbound-external-link", 200] }, () => exports.CreateInboundExternalLinkRequest$, () => exports.CreateInboundExternalLinkResponse$
|
|
686
852
|
];
|
|
687
853
|
exports.CreateLink$ = [9, n0, _CL,
|
|
688
854
|
{ [_h]: ["POST", "/gateway/{gatewayId}/create-link", 200] }, () => exports.CreateLinkRequest$, () => exports.CreateLinkResponse$
|
|
689
855
|
];
|
|
856
|
+
exports.CreateLinkRoutingRule$ = [9, n0, _CLRR,
|
|
857
|
+
{ [_h]: ["POST", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule", 200] }, () => exports.CreateLinkRoutingRuleRequest$, () => exports.CreateLinkRoutingRuleResponse$
|
|
858
|
+
];
|
|
690
859
|
exports.CreateOutboundExternalLink$ = [9, n0, _COEL,
|
|
691
860
|
{ [_h]: ["POST", "/requester-gateway/{gatewayId}/outbound-external-link", 200] }, () => exports.CreateOutboundExternalLinkRequest$, () => exports.CreateOutboundExternalLinkResponse$
|
|
692
861
|
];
|
|
@@ -702,6 +871,9 @@ exports.DeleteInboundExternalLink$ = [9, n0, _DIEL,
|
|
|
702
871
|
exports.DeleteLink$ = [9, n0, _DL,
|
|
703
872
|
{ [_h]: ["DELETE", "/gateway/{gatewayId}/link/{linkId}", 200] }, () => exports.DeleteLinkRequest$, () => exports.DeleteLinkResponse$
|
|
704
873
|
];
|
|
874
|
+
exports.DeleteLinkRoutingRule$ = [9, n0, _DLRR,
|
|
875
|
+
{ [_h]: ["DELETE", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => exports.DeleteLinkRoutingRuleRequest$, () => exports.DeleteLinkRoutingRuleResponse$
|
|
876
|
+
];
|
|
705
877
|
exports.DeleteOutboundExternalLink$ = [9, n0, _DOEL,
|
|
706
878
|
{ [_h]: ["DELETE", "/requester-gateway/{gatewayId}/outbound-external-link/{linkId}", 200] }, () => exports.DeleteOutboundExternalLinkRequest$, () => exports.DeleteOutboundExternalLinkResponse$
|
|
707
879
|
];
|
|
@@ -711,12 +883,21 @@ exports.DeleteRequesterGateway$ = [9, n0, _DRG,
|
|
|
711
883
|
exports.DeleteResponderGateway$ = [9, n0, _DRGe,
|
|
712
884
|
{ [_h]: ["DELETE", "/responder-gateway/{gatewayId}", 200] }, () => exports.DeleteResponderGatewayRequest$, () => exports.DeleteResponderGatewayResponse$
|
|
713
885
|
];
|
|
886
|
+
exports.DisassociateCertificate$ = [9, n0, _DC,
|
|
887
|
+
{ [_h]: ["DELETE", "/responder-gateway/{gatewayId}/certificate", 200] }, () => exports.DisassociateCertificateRequest$, () => exports.DisassociateCertificateResponse$
|
|
888
|
+
];
|
|
889
|
+
exports.GetCertificateAssociation$ = [9, n0, _GCA,
|
|
890
|
+
{ [_h]: ["GET", "/responder-gateway/{gatewayId}/certificate", 200] }, () => exports.GetCertificateAssociationRequest$, () => exports.GetCertificateAssociationResponse$
|
|
891
|
+
];
|
|
714
892
|
exports.GetInboundExternalLink$ = [9, n0, _GIEL,
|
|
715
893
|
{ [_h]: ["GET", "/responder-gateway/{gatewayId}/inbound-external-link/{linkId}", 200] }, () => exports.GetInboundExternalLinkRequest$, () => exports.GetInboundExternalLinkResponse$
|
|
716
894
|
];
|
|
717
895
|
exports.GetLink$ = [9, n0, _GL,
|
|
718
896
|
{ [_h]: ["GET", "/gateway/{gatewayId}/link/{linkId}", 200] }, () => exports.GetLinkRequest$, () => exports.GetLinkResponse$
|
|
719
897
|
];
|
|
898
|
+
exports.GetLinkRoutingRule$ = [9, n0, _GLRR,
|
|
899
|
+
{ [_h]: ["GET", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => exports.GetLinkRoutingRuleRequest$, () => exports.GetLinkRoutingRuleResponse$
|
|
900
|
+
];
|
|
720
901
|
exports.GetOutboundExternalLink$ = [9, n0, _GOEL,
|
|
721
902
|
{ [_h]: ["GET", "/requester-gateway/{gatewayId}/outbound-external-link/{linkId}", 200] }, () => exports.GetOutboundExternalLinkRequest$, () => exports.GetOutboundExternalLinkResponse$
|
|
722
903
|
];
|
|
@@ -726,6 +907,12 @@ exports.GetRequesterGateway$ = [9, n0, _GRG,
|
|
|
726
907
|
exports.GetResponderGateway$ = [9, n0, _GRGe,
|
|
727
908
|
{ [_h]: ["GET", "/responder-gateway/{gatewayId}", 200] }, () => exports.GetResponderGatewayRequest$, () => exports.GetResponderGatewayResponse$
|
|
728
909
|
];
|
|
910
|
+
exports.ListCertificateAssociations$ = [9, n0, _LCA,
|
|
911
|
+
{ [_h]: ["GET", "/responder-gateway/{gatewayId}/certificates", 200] }, () => exports.ListCertificateAssociationsRequest$, () => exports.ListCertificateAssociationsResponse$
|
|
912
|
+
];
|
|
913
|
+
exports.ListLinkRoutingRules$ = [9, n0, _LLRR,
|
|
914
|
+
{ [_h]: ["GET", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rules", 200] }, () => exports.ListLinkRoutingRulesRequest$, () => exports.ListLinkRoutingRulesResponse$
|
|
915
|
+
];
|
|
729
916
|
exports.ListLinks$ = [9, n0, _LLi,
|
|
730
917
|
{ [_h]: ["GET", "/gateway/{gatewayId}/links/", 200] }, () => exports.ListLinksRequest$, () => exports.ListLinksResponse$
|
|
731
918
|
];
|
|
@@ -753,6 +940,9 @@ exports.UpdateLink$ = [9, n0, _UL,
|
|
|
753
940
|
exports.UpdateLinkModuleFlow$ = [9, n0, _ULMF,
|
|
754
941
|
{ [_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/module-flow", 200] }, () => exports.UpdateLinkModuleFlowRequest$, () => exports.UpdateLinkModuleFlowResponse$
|
|
755
942
|
];
|
|
943
|
+
exports.UpdateLinkRoutingRule$ = [9, n0, _ULRR,
|
|
944
|
+
{ [_h]: ["PUT", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => exports.UpdateLinkRoutingRuleRequest$, () => exports.UpdateLinkRoutingRuleResponse$
|
|
945
|
+
];
|
|
756
946
|
exports.UpdateRequesterGateway$ = [9, n0, _URG,
|
|
757
947
|
{ [_h]: ["POST", "/requester-gateway/{gatewayId}/update", 200] }, () => exports.UpdateRequesterGatewayRequest$, () => exports.UpdateRequesterGatewayResponse$
|
|
758
948
|
];
|
package/dist-es/RTBFabric.js
CHANGED
|
@@ -1,20 +1,28 @@
|
|
|
1
|
-
import { createAggregatedClient } from "@smithy/
|
|
1
|
+
import { createAggregatedClient } from "@smithy/core/client";
|
|
2
2
|
import { AcceptLinkCommand, } from "./commands/AcceptLinkCommand";
|
|
3
|
+
import { AssociateCertificateCommand, } from "./commands/AssociateCertificateCommand";
|
|
3
4
|
import { CreateInboundExternalLinkCommand, } from "./commands/CreateInboundExternalLinkCommand";
|
|
4
5
|
import { CreateLinkCommand, } from "./commands/CreateLinkCommand";
|
|
6
|
+
import { CreateLinkRoutingRuleCommand, } from "./commands/CreateLinkRoutingRuleCommand";
|
|
5
7
|
import { CreateOutboundExternalLinkCommand, } from "./commands/CreateOutboundExternalLinkCommand";
|
|
6
8
|
import { CreateRequesterGatewayCommand, } from "./commands/CreateRequesterGatewayCommand";
|
|
7
9
|
import { CreateResponderGatewayCommand, } from "./commands/CreateResponderGatewayCommand";
|
|
8
10
|
import { DeleteInboundExternalLinkCommand, } from "./commands/DeleteInboundExternalLinkCommand";
|
|
9
11
|
import { DeleteLinkCommand, } from "./commands/DeleteLinkCommand";
|
|
12
|
+
import { DeleteLinkRoutingRuleCommand, } from "./commands/DeleteLinkRoutingRuleCommand";
|
|
10
13
|
import { DeleteOutboundExternalLinkCommand, } from "./commands/DeleteOutboundExternalLinkCommand";
|
|
11
14
|
import { DeleteRequesterGatewayCommand, } from "./commands/DeleteRequesterGatewayCommand";
|
|
12
15
|
import { DeleteResponderGatewayCommand, } from "./commands/DeleteResponderGatewayCommand";
|
|
16
|
+
import { DisassociateCertificateCommand, } from "./commands/DisassociateCertificateCommand";
|
|
17
|
+
import { GetCertificateAssociationCommand, } from "./commands/GetCertificateAssociationCommand";
|
|
13
18
|
import { GetInboundExternalLinkCommand, } from "./commands/GetInboundExternalLinkCommand";
|
|
14
19
|
import { GetLinkCommand } from "./commands/GetLinkCommand";
|
|
20
|
+
import { GetLinkRoutingRuleCommand, } from "./commands/GetLinkRoutingRuleCommand";
|
|
15
21
|
import { GetOutboundExternalLinkCommand, } from "./commands/GetOutboundExternalLinkCommand";
|
|
16
22
|
import { GetRequesterGatewayCommand, } from "./commands/GetRequesterGatewayCommand";
|
|
17
23
|
import { GetResponderGatewayCommand, } from "./commands/GetResponderGatewayCommand";
|
|
24
|
+
import { ListCertificateAssociationsCommand, } from "./commands/ListCertificateAssociationsCommand";
|
|
25
|
+
import { ListLinkRoutingRulesCommand, } from "./commands/ListLinkRoutingRulesCommand";
|
|
18
26
|
import { ListLinksCommand } from "./commands/ListLinksCommand";
|
|
19
27
|
import { ListRequesterGatewaysCommand, } from "./commands/ListRequesterGatewaysCommand";
|
|
20
28
|
import { ListResponderGatewaysCommand, } from "./commands/ListResponderGatewaysCommand";
|
|
@@ -24,17 +32,24 @@ import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
|
24
32
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
25
33
|
import { UpdateLinkCommand, } from "./commands/UpdateLinkCommand";
|
|
26
34
|
import { UpdateLinkModuleFlowCommand, } from "./commands/UpdateLinkModuleFlowCommand";
|
|
35
|
+
import { UpdateLinkRoutingRuleCommand, } from "./commands/UpdateLinkRoutingRuleCommand";
|
|
27
36
|
import { UpdateRequesterGatewayCommand, } from "./commands/UpdateRequesterGatewayCommand";
|
|
28
37
|
import { UpdateResponderGatewayCommand, } from "./commands/UpdateResponderGatewayCommand";
|
|
38
|
+
import { paginateListCertificateAssociations } from "./pagination/ListCertificateAssociationsPaginator";
|
|
39
|
+
import { paginateListLinkRoutingRules } from "./pagination/ListLinkRoutingRulesPaginator";
|
|
29
40
|
import { paginateListLinks } from "./pagination/ListLinksPaginator";
|
|
30
41
|
import { paginateListRequesterGateways } from "./pagination/ListRequesterGatewaysPaginator";
|
|
31
42
|
import { paginateListResponderGateways } from "./pagination/ListResponderGatewaysPaginator";
|
|
32
43
|
import { RTBFabricClient } from "./RTBFabricClient";
|
|
44
|
+
import { waitUntilCertificateAssociated } from "./waiters/waitForCertificateAssociated";
|
|
45
|
+
import { waitUntilCertificateDisassociated } from "./waiters/waitForCertificateDisassociated";
|
|
33
46
|
import { waitUntilInboundExternalLinkActive } from "./waiters/waitForInboundExternalLinkActive";
|
|
34
47
|
import { waitUntilInboundExternalLinkDeleted } from "./waiters/waitForInboundExternalLinkDeleted";
|
|
35
48
|
import { waitUntilLinkAccepted } from "./waiters/waitForLinkAccepted";
|
|
36
49
|
import { waitUntilLinkActive } from "./waiters/waitForLinkActive";
|
|
37
50
|
import { waitUntilLinkDeleted } from "./waiters/waitForLinkDeleted";
|
|
51
|
+
import { waitUntilLinkRoutingRuleActive } from "./waiters/waitForLinkRoutingRuleActive";
|
|
52
|
+
import { waitUntilLinkRoutingRuleDeleted } from "./waiters/waitForLinkRoutingRuleDeleted";
|
|
38
53
|
import { waitUntilOutboundExternalLinkActive } from "./waiters/waitForOutboundExternalLinkActive";
|
|
39
54
|
import { waitUntilOutboundExternalLinkDeleted } from "./waiters/waitForOutboundExternalLinkDeleted";
|
|
40
55
|
import { waitUntilRequesterGatewayActive } from "./waiters/waitForRequesterGatewayActive";
|
|
@@ -43,21 +58,29 @@ import { waitUntilResponderGatewayActive } from "./waiters/waitForResponderGatew
|
|
|
43
58
|
import { waitUntilResponderGatewayDeleted } from "./waiters/waitForResponderGatewayDeleted";
|
|
44
59
|
const commands = {
|
|
45
60
|
AcceptLinkCommand,
|
|
61
|
+
AssociateCertificateCommand,
|
|
46
62
|
CreateInboundExternalLinkCommand,
|
|
47
63
|
CreateLinkCommand,
|
|
64
|
+
CreateLinkRoutingRuleCommand,
|
|
48
65
|
CreateOutboundExternalLinkCommand,
|
|
49
66
|
CreateRequesterGatewayCommand,
|
|
50
67
|
CreateResponderGatewayCommand,
|
|
51
68
|
DeleteInboundExternalLinkCommand,
|
|
52
69
|
DeleteLinkCommand,
|
|
70
|
+
DeleteLinkRoutingRuleCommand,
|
|
53
71
|
DeleteOutboundExternalLinkCommand,
|
|
54
72
|
DeleteRequesterGatewayCommand,
|
|
55
73
|
DeleteResponderGatewayCommand,
|
|
74
|
+
DisassociateCertificateCommand,
|
|
75
|
+
GetCertificateAssociationCommand,
|
|
56
76
|
GetInboundExternalLinkCommand,
|
|
57
77
|
GetLinkCommand,
|
|
78
|
+
GetLinkRoutingRuleCommand,
|
|
58
79
|
GetOutboundExternalLinkCommand,
|
|
59
80
|
GetRequesterGatewayCommand,
|
|
60
81
|
GetResponderGatewayCommand,
|
|
82
|
+
ListCertificateAssociationsCommand,
|
|
83
|
+
ListLinkRoutingRulesCommand,
|
|
61
84
|
ListLinksCommand,
|
|
62
85
|
ListRequesterGatewaysCommand,
|
|
63
86
|
ListResponderGatewaysCommand,
|
|
@@ -67,20 +90,27 @@ const commands = {
|
|
|
67
90
|
UntagResourceCommand,
|
|
68
91
|
UpdateLinkCommand,
|
|
69
92
|
UpdateLinkModuleFlowCommand,
|
|
93
|
+
UpdateLinkRoutingRuleCommand,
|
|
70
94
|
UpdateRequesterGatewayCommand,
|
|
71
95
|
UpdateResponderGatewayCommand,
|
|
72
96
|
};
|
|
73
97
|
const paginators = {
|
|
98
|
+
paginateListCertificateAssociations,
|
|
99
|
+
paginateListLinkRoutingRules,
|
|
74
100
|
paginateListLinks,
|
|
75
101
|
paginateListRequesterGateways,
|
|
76
102
|
paginateListResponderGateways,
|
|
77
103
|
};
|
|
78
104
|
const waiters = {
|
|
105
|
+
waitUntilCertificateAssociated,
|
|
106
|
+
waitUntilCertificateDisassociated,
|
|
79
107
|
waitUntilInboundExternalLinkActive,
|
|
80
108
|
waitUntilInboundExternalLinkDeleted,
|
|
81
109
|
waitUntilLinkAccepted,
|
|
82
110
|
waitUntilLinkActive,
|
|
83
111
|
waitUntilLinkDeleted,
|
|
112
|
+
waitUntilLinkRoutingRuleActive,
|
|
113
|
+
waitUntilLinkRoutingRuleDeleted,
|
|
84
114
|
waitUntilOutboundExternalLinkActive,
|
|
85
115
|
waitUntilOutboundExternalLinkDeleted,
|
|
86
116
|
waitUntilRequesterGatewayActive,
|
|
@@ -2,13 +2,13 @@ import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middlewa
|
|
|
2
2
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
3
3
|
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
4
4
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
5
|
-
import { resolveRegionConfig } from "@smithy/config-resolver";
|
|
6
5
|
import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
|
|
6
|
+
import { Client as __Client, } from "@smithy/core/client";
|
|
7
|
+
import { resolveRegionConfig } from "@smithy/core/config";
|
|
8
|
+
import { resolveEndpointConfig } from "@smithy/core/endpoints";
|
|
9
|
+
import { getContentLengthPlugin } from "@smithy/core/protocols";
|
|
10
|
+
import { getRetryPlugin, resolveRetryConfig, } from "@smithy/core/retry";
|
|
7
11
|
import { getSchemaSerdePlugin } from "@smithy/core/schema";
|
|
8
|
-
import { getContentLengthPlugin } from "@smithy/middleware-content-length";
|
|
9
|
-
import { resolveEndpointConfig, } from "@smithy/middleware-endpoint";
|
|
10
|
-
import { getRetryPlugin, resolveRetryConfig, } from "@smithy/middleware-retry";
|
|
11
|
-
import { Client as __Client, } from "@smithy/smithy-client";
|
|
12
12
|
import { defaultRTBFabricHttpAuthSchemeParametersProvider, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider";
|
|
13
13
|
import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
|
|
14
14
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
|
-
import { getSmithyContext, normalizeProvider } from "@smithy/
|
|
2
|
+
import { getSmithyContext, normalizeProvider } from "@smithy/core/client";
|
|
3
3
|
export const defaultRTBFabricHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
|
5
5
|
operation: getSmithyContext(context).operation,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
4
|
import { AcceptLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|