@aws-sdk/client-rtbfabric 3.1045.0 → 3.1047.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
|
@@ -16,11 +16,16 @@ export declare var ValidationException$: StaticErrorSchema;
|
|
|
16
16
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
17
17
|
export declare var AcceptLinkRequest$: StaticStructureSchema;
|
|
18
18
|
export declare var AcceptLinkResponse$: StaticStructureSchema;
|
|
19
|
+
export declare var AssociateCertificateRequest$: StaticStructureSchema;
|
|
20
|
+
export declare var AssociateCertificateResponse$: StaticStructureSchema;
|
|
19
21
|
export declare var AutoScalingGroupsConfiguration$: StaticStructureSchema;
|
|
22
|
+
export declare var CertificateAssociationSummary$: StaticStructureSchema;
|
|
20
23
|
export declare var CreateInboundExternalLinkRequest$: StaticStructureSchema;
|
|
21
24
|
export declare var CreateInboundExternalLinkResponse$: StaticStructureSchema;
|
|
22
25
|
export declare var CreateLinkRequest$: StaticStructureSchema;
|
|
23
26
|
export declare var CreateLinkResponse$: StaticStructureSchema;
|
|
27
|
+
export declare var CreateLinkRoutingRuleRequest$: StaticStructureSchema;
|
|
28
|
+
export declare var CreateLinkRoutingRuleResponse$: StaticStructureSchema;
|
|
24
29
|
export declare var CreateOutboundExternalLinkRequest$: StaticStructureSchema;
|
|
25
30
|
export declare var CreateOutboundExternalLinkResponse$: StaticStructureSchema;
|
|
26
31
|
export declare var CreateRequesterGatewayRequest$: StaticStructureSchema;
|
|
@@ -31,19 +36,27 @@ export declare var DeleteInboundExternalLinkRequest$: StaticStructureSchema;
|
|
|
31
36
|
export declare var DeleteInboundExternalLinkResponse$: StaticStructureSchema;
|
|
32
37
|
export declare var DeleteLinkRequest$: StaticStructureSchema;
|
|
33
38
|
export declare var DeleteLinkResponse$: StaticStructureSchema;
|
|
39
|
+
export declare var DeleteLinkRoutingRuleRequest$: StaticStructureSchema;
|
|
40
|
+
export declare var DeleteLinkRoutingRuleResponse$: StaticStructureSchema;
|
|
34
41
|
export declare var DeleteOutboundExternalLinkRequest$: StaticStructureSchema;
|
|
35
42
|
export declare var DeleteOutboundExternalLinkResponse$: StaticStructureSchema;
|
|
36
43
|
export declare var DeleteRequesterGatewayRequest$: StaticStructureSchema;
|
|
37
44
|
export declare var DeleteRequesterGatewayResponse$: StaticStructureSchema;
|
|
38
45
|
export declare var DeleteResponderGatewayRequest$: StaticStructureSchema;
|
|
39
46
|
export declare var DeleteResponderGatewayResponse$: StaticStructureSchema;
|
|
47
|
+
export declare var DisassociateCertificateRequest$: StaticStructureSchema;
|
|
48
|
+
export declare var DisassociateCertificateResponse$: StaticStructureSchema;
|
|
40
49
|
export declare var EksEndpointsConfiguration$: StaticStructureSchema;
|
|
41
50
|
export declare var Filter$: StaticStructureSchema;
|
|
42
51
|
export declare var FilterCriterion$: StaticStructureSchema;
|
|
52
|
+
export declare var GetCertificateAssociationRequest$: StaticStructureSchema;
|
|
53
|
+
export declare var GetCertificateAssociationResponse$: StaticStructureSchema;
|
|
43
54
|
export declare var GetInboundExternalLinkRequest$: StaticStructureSchema;
|
|
44
55
|
export declare var GetInboundExternalLinkResponse$: StaticStructureSchema;
|
|
45
56
|
export declare var GetLinkRequest$: StaticStructureSchema;
|
|
46
57
|
export declare var GetLinkResponse$: StaticStructureSchema;
|
|
58
|
+
export declare var GetLinkRoutingRuleRequest$: StaticStructureSchema;
|
|
59
|
+
export declare var GetLinkRoutingRuleResponse$: StaticStructureSchema;
|
|
47
60
|
export declare var GetOutboundExternalLinkRequest$: StaticStructureSchema;
|
|
48
61
|
export declare var GetOutboundExternalLinkResponse$: StaticStructureSchema;
|
|
49
62
|
export declare var GetRequesterGatewayRequest$: StaticStructureSchema;
|
|
@@ -56,7 +69,12 @@ export declare var LinkApplicationLogConfiguration$: StaticStructureSchema;
|
|
|
56
69
|
export declare var LinkApplicationLogSampling$: StaticStructureSchema;
|
|
57
70
|
export declare var LinkAttributes$: StaticStructureSchema;
|
|
58
71
|
export declare var LinkLogSettings$: StaticStructureSchema;
|
|
72
|
+
export declare var LinkRoutingRuleSummary$: StaticStructureSchema;
|
|
73
|
+
export declare var ListCertificateAssociationsRequest$: StaticStructureSchema;
|
|
74
|
+
export declare var ListCertificateAssociationsResponse$: StaticStructureSchema;
|
|
59
75
|
export declare var ListenerConfig$: StaticStructureSchema;
|
|
76
|
+
export declare var ListLinkRoutingRulesRequest$: StaticStructureSchema;
|
|
77
|
+
export declare var ListLinkRoutingRulesResponse$: StaticStructureSchema;
|
|
60
78
|
export declare var ListLinksRequest$: StaticStructureSchema;
|
|
61
79
|
export declare var ListLinksResponse$: StaticStructureSchema;
|
|
62
80
|
export declare var ListLinksResponseStructure$: StaticStructureSchema;
|
|
@@ -70,10 +88,12 @@ export declare var ModuleConfiguration$: StaticStructureSchema;
|
|
|
70
88
|
export declare var NoBidAction$: StaticStructureSchema;
|
|
71
89
|
export declare var NoBidModuleParameters$: StaticStructureSchema;
|
|
72
90
|
export declare var OpenRtbAttributeModuleParameters$: StaticStructureSchema;
|
|
91
|
+
export declare var QueryStringKeyValuePair$: StaticStructureSchema;
|
|
73
92
|
export declare var RateLimiterModuleParameters$: StaticStructureSchema;
|
|
74
93
|
export declare var RejectLinkRequest$: StaticStructureSchema;
|
|
75
94
|
export declare var RejectLinkResponse$: StaticStructureSchema;
|
|
76
95
|
export declare var ResponderErrorMaskingForHttpCode$: StaticStructureSchema;
|
|
96
|
+
export declare var RuleCondition$: StaticStructureSchema;
|
|
77
97
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
78
98
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
79
99
|
export declare var TrustStoreConfiguration$: StaticStructureSchema;
|
|
@@ -83,6 +103,8 @@ export declare var UpdateLinkModuleFlowRequest$: StaticStructureSchema;
|
|
|
83
103
|
export declare var UpdateLinkModuleFlowResponse$: StaticStructureSchema;
|
|
84
104
|
export declare var UpdateLinkRequest$: StaticStructureSchema;
|
|
85
105
|
export declare var UpdateLinkResponse$: StaticStructureSchema;
|
|
106
|
+
export declare var UpdateLinkRoutingRuleRequest$: StaticStructureSchema;
|
|
107
|
+
export declare var UpdateLinkRoutingRuleResponse$: StaticStructureSchema;
|
|
86
108
|
export declare var UpdateRequesterGatewayRequest$: StaticStructureSchema;
|
|
87
109
|
export declare var UpdateRequesterGatewayResponse$: StaticStructureSchema;
|
|
88
110
|
export declare var UpdateResponderGatewayRequest$: StaticStructureSchema;
|
|
@@ -91,21 +113,29 @@ export declare var Action$: StaticUnionSchema;
|
|
|
91
113
|
export declare var ManagedEndpointConfiguration$: StaticUnionSchema;
|
|
92
114
|
export declare var ModuleParameters$: StaticUnionSchema;
|
|
93
115
|
export declare var AcceptLink$: StaticOperationSchema;
|
|
116
|
+
export declare var AssociateCertificate$: StaticOperationSchema;
|
|
94
117
|
export declare var CreateInboundExternalLink$: StaticOperationSchema;
|
|
95
118
|
export declare var CreateLink$: StaticOperationSchema;
|
|
119
|
+
export declare var CreateLinkRoutingRule$: StaticOperationSchema;
|
|
96
120
|
export declare var CreateOutboundExternalLink$: StaticOperationSchema;
|
|
97
121
|
export declare var CreateRequesterGateway$: StaticOperationSchema;
|
|
98
122
|
export declare var CreateResponderGateway$: StaticOperationSchema;
|
|
99
123
|
export declare var DeleteInboundExternalLink$: StaticOperationSchema;
|
|
100
124
|
export declare var DeleteLink$: StaticOperationSchema;
|
|
125
|
+
export declare var DeleteLinkRoutingRule$: StaticOperationSchema;
|
|
101
126
|
export declare var DeleteOutboundExternalLink$: StaticOperationSchema;
|
|
102
127
|
export declare var DeleteRequesterGateway$: StaticOperationSchema;
|
|
103
128
|
export declare var DeleteResponderGateway$: StaticOperationSchema;
|
|
129
|
+
export declare var DisassociateCertificate$: StaticOperationSchema;
|
|
130
|
+
export declare var GetCertificateAssociation$: StaticOperationSchema;
|
|
104
131
|
export declare var GetInboundExternalLink$: StaticOperationSchema;
|
|
105
132
|
export declare var GetLink$: StaticOperationSchema;
|
|
133
|
+
export declare var GetLinkRoutingRule$: StaticOperationSchema;
|
|
106
134
|
export declare var GetOutboundExternalLink$: StaticOperationSchema;
|
|
107
135
|
export declare var GetRequesterGateway$: StaticOperationSchema;
|
|
108
136
|
export declare var GetResponderGateway$: StaticOperationSchema;
|
|
137
|
+
export declare var ListCertificateAssociations$: StaticOperationSchema;
|
|
138
|
+
export declare var ListLinkRoutingRules$: StaticOperationSchema;
|
|
109
139
|
export declare var ListLinks$: StaticOperationSchema;
|
|
110
140
|
export declare var ListRequesterGateways$: StaticOperationSchema;
|
|
111
141
|
export declare var ListResponderGateways$: StaticOperationSchema;
|
|
@@ -115,5 +145,6 @@ export declare var TagResource$: StaticOperationSchema;
|
|
|
115
145
|
export declare var UntagResource$: StaticOperationSchema;
|
|
116
146
|
export declare var UpdateLink$: StaticOperationSchema;
|
|
117
147
|
export declare var UpdateLinkModuleFlow$: StaticOperationSchema;
|
|
148
|
+
export declare var UpdateLinkRoutingRule$: StaticOperationSchema;
|
|
118
149
|
export declare var UpdateRequesterGateway$: StaticOperationSchema;
|
|
119
150
|
export declare var UpdateResponderGateway$: StaticOperationSchema;
|
|
@@ -1,14 +1,18 @@
|
|
|
1
|
+
import { WaiterResult } from "@smithy/core/client";
|
|
1
2
|
import {
|
|
2
3
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
4
|
PaginationConfiguration,
|
|
4
5
|
Paginator,
|
|
5
6
|
WaiterConfiguration,
|
|
6
7
|
} from "@smithy/types";
|
|
7
|
-
import { WaiterResult } from "@smithy/util-waiter";
|
|
8
8
|
import {
|
|
9
9
|
AcceptLinkCommandInput,
|
|
10
10
|
AcceptLinkCommandOutput,
|
|
11
11
|
} from "./commands/AcceptLinkCommand";
|
|
12
|
+
import {
|
|
13
|
+
AssociateCertificateCommandInput,
|
|
14
|
+
AssociateCertificateCommandOutput,
|
|
15
|
+
} from "./commands/AssociateCertificateCommand";
|
|
12
16
|
import {
|
|
13
17
|
CreateInboundExternalLinkCommandInput,
|
|
14
18
|
CreateInboundExternalLinkCommandOutput,
|
|
@@ -17,6 +21,10 @@ import {
|
|
|
17
21
|
CreateLinkCommandInput,
|
|
18
22
|
CreateLinkCommandOutput,
|
|
19
23
|
} from "./commands/CreateLinkCommand";
|
|
24
|
+
import {
|
|
25
|
+
CreateLinkRoutingRuleCommandInput,
|
|
26
|
+
CreateLinkRoutingRuleCommandOutput,
|
|
27
|
+
} from "./commands/CreateLinkRoutingRuleCommand";
|
|
20
28
|
import {
|
|
21
29
|
CreateOutboundExternalLinkCommandInput,
|
|
22
30
|
CreateOutboundExternalLinkCommandOutput,
|
|
@@ -37,6 +45,10 @@ import {
|
|
|
37
45
|
DeleteLinkCommandInput,
|
|
38
46
|
DeleteLinkCommandOutput,
|
|
39
47
|
} from "./commands/DeleteLinkCommand";
|
|
48
|
+
import {
|
|
49
|
+
DeleteLinkRoutingRuleCommandInput,
|
|
50
|
+
DeleteLinkRoutingRuleCommandOutput,
|
|
51
|
+
} from "./commands/DeleteLinkRoutingRuleCommand";
|
|
40
52
|
import {
|
|
41
53
|
DeleteOutboundExternalLinkCommandInput,
|
|
42
54
|
DeleteOutboundExternalLinkCommandOutput,
|
|
@@ -49,6 +61,14 @@ import {
|
|
|
49
61
|
DeleteResponderGatewayCommandInput,
|
|
50
62
|
DeleteResponderGatewayCommandOutput,
|
|
51
63
|
} from "./commands/DeleteResponderGatewayCommand";
|
|
64
|
+
import {
|
|
65
|
+
DisassociateCertificateCommandInput,
|
|
66
|
+
DisassociateCertificateCommandOutput,
|
|
67
|
+
} from "./commands/DisassociateCertificateCommand";
|
|
68
|
+
import {
|
|
69
|
+
GetCertificateAssociationCommandInput,
|
|
70
|
+
GetCertificateAssociationCommandOutput,
|
|
71
|
+
} from "./commands/GetCertificateAssociationCommand";
|
|
52
72
|
import {
|
|
53
73
|
GetInboundExternalLinkCommandInput,
|
|
54
74
|
GetInboundExternalLinkCommandOutput,
|
|
@@ -57,6 +77,10 @@ import {
|
|
|
57
77
|
GetLinkCommandInput,
|
|
58
78
|
GetLinkCommandOutput,
|
|
59
79
|
} from "./commands/GetLinkCommand";
|
|
80
|
+
import {
|
|
81
|
+
GetLinkRoutingRuleCommandInput,
|
|
82
|
+
GetLinkRoutingRuleCommandOutput,
|
|
83
|
+
} from "./commands/GetLinkRoutingRuleCommand";
|
|
60
84
|
import {
|
|
61
85
|
GetOutboundExternalLinkCommandInput,
|
|
62
86
|
GetOutboundExternalLinkCommandOutput,
|
|
@@ -69,6 +93,14 @@ import {
|
|
|
69
93
|
GetResponderGatewayCommandInput,
|
|
70
94
|
GetResponderGatewayCommandOutput,
|
|
71
95
|
} from "./commands/GetResponderGatewayCommand";
|
|
96
|
+
import {
|
|
97
|
+
ListCertificateAssociationsCommandInput,
|
|
98
|
+
ListCertificateAssociationsCommandOutput,
|
|
99
|
+
} from "./commands/ListCertificateAssociationsCommand";
|
|
100
|
+
import {
|
|
101
|
+
ListLinkRoutingRulesCommandInput,
|
|
102
|
+
ListLinkRoutingRulesCommandOutput,
|
|
103
|
+
} from "./commands/ListLinkRoutingRulesCommand";
|
|
72
104
|
import {
|
|
73
105
|
ListLinksCommandInput,
|
|
74
106
|
ListLinksCommandOutput,
|
|
@@ -105,6 +137,10 @@ import {
|
|
|
105
137
|
UpdateLinkModuleFlowCommandInput,
|
|
106
138
|
UpdateLinkModuleFlowCommandOutput,
|
|
107
139
|
} from "./commands/UpdateLinkModuleFlowCommand";
|
|
140
|
+
import {
|
|
141
|
+
UpdateLinkRoutingRuleCommandInput,
|
|
142
|
+
UpdateLinkRoutingRuleCommandOutput,
|
|
143
|
+
} from "./commands/UpdateLinkRoutingRuleCommand";
|
|
108
144
|
import {
|
|
109
145
|
UpdateRequesterGatewayCommandInput,
|
|
110
146
|
UpdateRequesterGatewayCommandOutput,
|
|
@@ -129,6 +165,19 @@ export interface RTBFabric {
|
|
|
129
165
|
options: __HttpHandlerOptions,
|
|
130
166
|
cb: (err: any, data?: AcceptLinkCommandOutput) => void
|
|
131
167
|
): void;
|
|
168
|
+
associateCertificate(
|
|
169
|
+
args: AssociateCertificateCommandInput,
|
|
170
|
+
options?: __HttpHandlerOptions
|
|
171
|
+
): Promise<AssociateCertificateCommandOutput>;
|
|
172
|
+
associateCertificate(
|
|
173
|
+
args: AssociateCertificateCommandInput,
|
|
174
|
+
cb: (err: any, data?: AssociateCertificateCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
associateCertificate(
|
|
177
|
+
args: AssociateCertificateCommandInput,
|
|
178
|
+
options: __HttpHandlerOptions,
|
|
179
|
+
cb: (err: any, data?: AssociateCertificateCommandOutput) => void
|
|
180
|
+
): void;
|
|
132
181
|
createInboundExternalLink(
|
|
133
182
|
args: CreateInboundExternalLinkCommandInput,
|
|
134
183
|
options?: __HttpHandlerOptions
|
|
@@ -155,6 +204,19 @@ export interface RTBFabric {
|
|
|
155
204
|
options: __HttpHandlerOptions,
|
|
156
205
|
cb: (err: any, data?: CreateLinkCommandOutput) => void
|
|
157
206
|
): void;
|
|
207
|
+
createLinkRoutingRule(
|
|
208
|
+
args: CreateLinkRoutingRuleCommandInput,
|
|
209
|
+
options?: __HttpHandlerOptions
|
|
210
|
+
): Promise<CreateLinkRoutingRuleCommandOutput>;
|
|
211
|
+
createLinkRoutingRule(
|
|
212
|
+
args: CreateLinkRoutingRuleCommandInput,
|
|
213
|
+
cb: (err: any, data?: CreateLinkRoutingRuleCommandOutput) => void
|
|
214
|
+
): void;
|
|
215
|
+
createLinkRoutingRule(
|
|
216
|
+
args: CreateLinkRoutingRuleCommandInput,
|
|
217
|
+
options: __HttpHandlerOptions,
|
|
218
|
+
cb: (err: any, data?: CreateLinkRoutingRuleCommandOutput) => void
|
|
219
|
+
): void;
|
|
158
220
|
createOutboundExternalLink(
|
|
159
221
|
args: CreateOutboundExternalLinkCommandInput,
|
|
160
222
|
options?: __HttpHandlerOptions
|
|
@@ -220,6 +282,19 @@ export interface RTBFabric {
|
|
|
220
282
|
options: __HttpHandlerOptions,
|
|
221
283
|
cb: (err: any, data?: DeleteLinkCommandOutput) => void
|
|
222
284
|
): void;
|
|
285
|
+
deleteLinkRoutingRule(
|
|
286
|
+
args: DeleteLinkRoutingRuleCommandInput,
|
|
287
|
+
options?: __HttpHandlerOptions
|
|
288
|
+
): Promise<DeleteLinkRoutingRuleCommandOutput>;
|
|
289
|
+
deleteLinkRoutingRule(
|
|
290
|
+
args: DeleteLinkRoutingRuleCommandInput,
|
|
291
|
+
cb: (err: any, data?: DeleteLinkRoutingRuleCommandOutput) => void
|
|
292
|
+
): void;
|
|
293
|
+
deleteLinkRoutingRule(
|
|
294
|
+
args: DeleteLinkRoutingRuleCommandInput,
|
|
295
|
+
options: __HttpHandlerOptions,
|
|
296
|
+
cb: (err: any, data?: DeleteLinkRoutingRuleCommandOutput) => void
|
|
297
|
+
): void;
|
|
223
298
|
deleteOutboundExternalLink(
|
|
224
299
|
args: DeleteOutboundExternalLinkCommandInput,
|
|
225
300
|
options?: __HttpHandlerOptions
|
|
@@ -259,6 +334,32 @@ export interface RTBFabric {
|
|
|
259
334
|
options: __HttpHandlerOptions,
|
|
260
335
|
cb: (err: any, data?: DeleteResponderGatewayCommandOutput) => void
|
|
261
336
|
): void;
|
|
337
|
+
disassociateCertificate(
|
|
338
|
+
args: DisassociateCertificateCommandInput,
|
|
339
|
+
options?: __HttpHandlerOptions
|
|
340
|
+
): Promise<DisassociateCertificateCommandOutput>;
|
|
341
|
+
disassociateCertificate(
|
|
342
|
+
args: DisassociateCertificateCommandInput,
|
|
343
|
+
cb: (err: any, data?: DisassociateCertificateCommandOutput) => void
|
|
344
|
+
): void;
|
|
345
|
+
disassociateCertificate(
|
|
346
|
+
args: DisassociateCertificateCommandInput,
|
|
347
|
+
options: __HttpHandlerOptions,
|
|
348
|
+
cb: (err: any, data?: DisassociateCertificateCommandOutput) => void
|
|
349
|
+
): void;
|
|
350
|
+
getCertificateAssociation(
|
|
351
|
+
args: GetCertificateAssociationCommandInput,
|
|
352
|
+
options?: __HttpHandlerOptions
|
|
353
|
+
): Promise<GetCertificateAssociationCommandOutput>;
|
|
354
|
+
getCertificateAssociation(
|
|
355
|
+
args: GetCertificateAssociationCommandInput,
|
|
356
|
+
cb: (err: any, data?: GetCertificateAssociationCommandOutput) => void
|
|
357
|
+
): void;
|
|
358
|
+
getCertificateAssociation(
|
|
359
|
+
args: GetCertificateAssociationCommandInput,
|
|
360
|
+
options: __HttpHandlerOptions,
|
|
361
|
+
cb: (err: any, data?: GetCertificateAssociationCommandOutput) => void
|
|
362
|
+
): void;
|
|
262
363
|
getInboundExternalLink(
|
|
263
364
|
args: GetInboundExternalLinkCommandInput,
|
|
264
365
|
options?: __HttpHandlerOptions
|
|
@@ -285,6 +386,19 @@ export interface RTBFabric {
|
|
|
285
386
|
options: __HttpHandlerOptions,
|
|
286
387
|
cb: (err: any, data?: GetLinkCommandOutput) => void
|
|
287
388
|
): void;
|
|
389
|
+
getLinkRoutingRule(
|
|
390
|
+
args: GetLinkRoutingRuleCommandInput,
|
|
391
|
+
options?: __HttpHandlerOptions
|
|
392
|
+
): Promise<GetLinkRoutingRuleCommandOutput>;
|
|
393
|
+
getLinkRoutingRule(
|
|
394
|
+
args: GetLinkRoutingRuleCommandInput,
|
|
395
|
+
cb: (err: any, data?: GetLinkRoutingRuleCommandOutput) => void
|
|
396
|
+
): void;
|
|
397
|
+
getLinkRoutingRule(
|
|
398
|
+
args: GetLinkRoutingRuleCommandInput,
|
|
399
|
+
options: __HttpHandlerOptions,
|
|
400
|
+
cb: (err: any, data?: GetLinkRoutingRuleCommandOutput) => void
|
|
401
|
+
): void;
|
|
288
402
|
getOutboundExternalLink(
|
|
289
403
|
args: GetOutboundExternalLinkCommandInput,
|
|
290
404
|
options?: __HttpHandlerOptions
|
|
@@ -324,6 +438,32 @@ export interface RTBFabric {
|
|
|
324
438
|
options: __HttpHandlerOptions,
|
|
325
439
|
cb: (err: any, data?: GetResponderGatewayCommandOutput) => void
|
|
326
440
|
): void;
|
|
441
|
+
listCertificateAssociations(
|
|
442
|
+
args: ListCertificateAssociationsCommandInput,
|
|
443
|
+
options?: __HttpHandlerOptions
|
|
444
|
+
): Promise<ListCertificateAssociationsCommandOutput>;
|
|
445
|
+
listCertificateAssociations(
|
|
446
|
+
args: ListCertificateAssociationsCommandInput,
|
|
447
|
+
cb: (err: any, data?: ListCertificateAssociationsCommandOutput) => void
|
|
448
|
+
): void;
|
|
449
|
+
listCertificateAssociations(
|
|
450
|
+
args: ListCertificateAssociationsCommandInput,
|
|
451
|
+
options: __HttpHandlerOptions,
|
|
452
|
+
cb: (err: any, data?: ListCertificateAssociationsCommandOutput) => void
|
|
453
|
+
): void;
|
|
454
|
+
listLinkRoutingRules(
|
|
455
|
+
args: ListLinkRoutingRulesCommandInput,
|
|
456
|
+
options?: __HttpHandlerOptions
|
|
457
|
+
): Promise<ListLinkRoutingRulesCommandOutput>;
|
|
458
|
+
listLinkRoutingRules(
|
|
459
|
+
args: ListLinkRoutingRulesCommandInput,
|
|
460
|
+
cb: (err: any, data?: ListLinkRoutingRulesCommandOutput) => void
|
|
461
|
+
): void;
|
|
462
|
+
listLinkRoutingRules(
|
|
463
|
+
args: ListLinkRoutingRulesCommandInput,
|
|
464
|
+
options: __HttpHandlerOptions,
|
|
465
|
+
cb: (err: any, data?: ListLinkRoutingRulesCommandOutput) => void
|
|
466
|
+
): void;
|
|
327
467
|
listLinks(
|
|
328
468
|
args: ListLinksCommandInput,
|
|
329
469
|
options?: __HttpHandlerOptions
|
|
@@ -443,6 +583,19 @@ export interface RTBFabric {
|
|
|
443
583
|
options: __HttpHandlerOptions,
|
|
444
584
|
cb: (err: any, data?: UpdateLinkModuleFlowCommandOutput) => void
|
|
445
585
|
): void;
|
|
586
|
+
updateLinkRoutingRule(
|
|
587
|
+
args: UpdateLinkRoutingRuleCommandInput,
|
|
588
|
+
options?: __HttpHandlerOptions
|
|
589
|
+
): Promise<UpdateLinkRoutingRuleCommandOutput>;
|
|
590
|
+
updateLinkRoutingRule(
|
|
591
|
+
args: UpdateLinkRoutingRuleCommandInput,
|
|
592
|
+
cb: (err: any, data?: UpdateLinkRoutingRuleCommandOutput) => void
|
|
593
|
+
): void;
|
|
594
|
+
updateLinkRoutingRule(
|
|
595
|
+
args: UpdateLinkRoutingRuleCommandInput,
|
|
596
|
+
options: __HttpHandlerOptions,
|
|
597
|
+
cb: (err: any, data?: UpdateLinkRoutingRuleCommandOutput) => void
|
|
598
|
+
): void;
|
|
446
599
|
updateRequesterGateway(
|
|
447
600
|
args: UpdateRequesterGatewayCommandInput,
|
|
448
601
|
options?: __HttpHandlerOptions
|
|
@@ -469,6 +622,20 @@ export interface RTBFabric {
|
|
|
469
622
|
options: __HttpHandlerOptions,
|
|
470
623
|
cb: (err: any, data?: UpdateResponderGatewayCommandOutput) => void
|
|
471
624
|
): void;
|
|
625
|
+
paginateListCertificateAssociations(
|
|
626
|
+
args: ListCertificateAssociationsCommandInput,
|
|
627
|
+
paginationConfig?: Pick<
|
|
628
|
+
PaginationConfiguration,
|
|
629
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
630
|
+
>
|
|
631
|
+
): Paginator<ListCertificateAssociationsCommandOutput>;
|
|
632
|
+
paginateListLinkRoutingRules(
|
|
633
|
+
args: ListLinkRoutingRulesCommandInput,
|
|
634
|
+
paginationConfig?: Pick<
|
|
635
|
+
PaginationConfiguration,
|
|
636
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
637
|
+
>
|
|
638
|
+
): Paginator<ListLinkRoutingRulesCommandOutput>;
|
|
472
639
|
paginateListLinks(
|
|
473
640
|
args: ListLinksCommandInput,
|
|
474
641
|
paginationConfig?: Pick<
|
|
@@ -490,6 +657,28 @@ export interface RTBFabric {
|
|
|
490
657
|
Exclude<keyof PaginationConfiguration, "client">
|
|
491
658
|
>
|
|
492
659
|
): Paginator<ListResponderGatewaysCommandOutput>;
|
|
660
|
+
waitUntilCertificateAssociated(
|
|
661
|
+
args: GetCertificateAssociationCommandInput,
|
|
662
|
+
waiterConfig:
|
|
663
|
+
| number
|
|
664
|
+
| Pick<
|
|
665
|
+
WaiterConfiguration<RTBFabric>,
|
|
666
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
667
|
+
>
|
|
668
|
+
): Promise<WaiterResult<GetCertificateAssociationCommandOutput>>;
|
|
669
|
+
waitUntilCertificateDisassociated(
|
|
670
|
+
args: GetCertificateAssociationCommandInput,
|
|
671
|
+
waiterConfig:
|
|
672
|
+
| number
|
|
673
|
+
| Pick<
|
|
674
|
+
WaiterConfiguration<RTBFabric>,
|
|
675
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
676
|
+
>
|
|
677
|
+
): Promise<
|
|
678
|
+
WaiterResult<
|
|
679
|
+
GetCertificateAssociationCommandOutput | ResourceNotFoundException
|
|
680
|
+
>
|
|
681
|
+
>;
|
|
493
682
|
waitUntilInboundExternalLinkActive(
|
|
494
683
|
args: GetInboundExternalLinkCommandInput,
|
|
495
684
|
waiterConfig:
|
|
@@ -535,6 +724,26 @@ export interface RTBFabric {
|
|
|
535
724
|
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
536
725
|
>
|
|
537
726
|
): Promise<WaiterResult<GetLinkCommandOutput>>;
|
|
727
|
+
waitUntilLinkRoutingRuleActive(
|
|
728
|
+
args: GetLinkRoutingRuleCommandInput,
|
|
729
|
+
waiterConfig:
|
|
730
|
+
| number
|
|
731
|
+
| Pick<
|
|
732
|
+
WaiterConfiguration<RTBFabric>,
|
|
733
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
734
|
+
>
|
|
735
|
+
): Promise<WaiterResult<GetLinkRoutingRuleCommandOutput>>;
|
|
736
|
+
waitUntilLinkRoutingRuleDeleted(
|
|
737
|
+
args: GetLinkRoutingRuleCommandInput,
|
|
738
|
+
waiterConfig:
|
|
739
|
+
| number
|
|
740
|
+
| Pick<
|
|
741
|
+
WaiterConfiguration<RTBFabric>,
|
|
742
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
743
|
+
>
|
|
744
|
+
): Promise<
|
|
745
|
+
WaiterResult<GetLinkRoutingRuleCommandOutput | ResourceNotFoundException>
|
|
746
|
+
>;
|
|
538
747
|
waitUntilOutboundExternalLinkActive(
|
|
539
748
|
args: GetOutboundExternalLinkCommandInput,
|
|
540
749
|
waiterConfig:
|
|
@@ -6,25 +6,19 @@ import {
|
|
|
6
6
|
UserAgentInputConfig,
|
|
7
7
|
UserAgentResolvedConfig,
|
|
8
8
|
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
-
import {
|
|
10
|
-
RegionInputConfig,
|
|
11
|
-
RegionResolvedConfig,
|
|
12
|
-
} from "@smithy/config-resolver";
|
|
13
|
-
import {
|
|
14
|
-
EndpointInputConfig,
|
|
15
|
-
EndpointResolvedConfig,
|
|
16
|
-
} from "@smithy/middleware-endpoint";
|
|
17
|
-
import {
|
|
18
|
-
RetryInputConfig,
|
|
19
|
-
RetryResolvedConfig,
|
|
20
|
-
} from "@smithy/middleware-retry";
|
|
21
|
-
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
9
|
import {
|
|
23
10
|
DefaultsMode as __DefaultsMode,
|
|
24
11
|
SmithyConfiguration as __SmithyConfiguration,
|
|
25
12
|
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
26
13
|
Client as __Client,
|
|
27
|
-
} from "@smithy/
|
|
14
|
+
} from "@smithy/core/client";
|
|
15
|
+
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
16
|
+
import {
|
|
17
|
+
EndpointInputConfig,
|
|
18
|
+
EndpointResolvedConfig,
|
|
19
|
+
} from "@smithy/core/endpoints";
|
|
20
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
21
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
28
22
|
import {
|
|
29
23
|
AwsCredentialIdentityProvider,
|
|
30
24
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
@@ -48,6 +42,10 @@ import {
|
|
|
48
42
|
AcceptLinkCommandInput,
|
|
49
43
|
AcceptLinkCommandOutput,
|
|
50
44
|
} from "./commands/AcceptLinkCommand";
|
|
45
|
+
import {
|
|
46
|
+
AssociateCertificateCommandInput,
|
|
47
|
+
AssociateCertificateCommandOutput,
|
|
48
|
+
} from "./commands/AssociateCertificateCommand";
|
|
51
49
|
import {
|
|
52
50
|
CreateInboundExternalLinkCommandInput,
|
|
53
51
|
CreateInboundExternalLinkCommandOutput,
|
|
@@ -56,6 +54,10 @@ import {
|
|
|
56
54
|
CreateLinkCommandInput,
|
|
57
55
|
CreateLinkCommandOutput,
|
|
58
56
|
} from "./commands/CreateLinkCommand";
|
|
57
|
+
import {
|
|
58
|
+
CreateLinkRoutingRuleCommandInput,
|
|
59
|
+
CreateLinkRoutingRuleCommandOutput,
|
|
60
|
+
} from "./commands/CreateLinkRoutingRuleCommand";
|
|
59
61
|
import {
|
|
60
62
|
CreateOutboundExternalLinkCommandInput,
|
|
61
63
|
CreateOutboundExternalLinkCommandOutput,
|
|
@@ -76,6 +78,10 @@ import {
|
|
|
76
78
|
DeleteLinkCommandInput,
|
|
77
79
|
DeleteLinkCommandOutput,
|
|
78
80
|
} from "./commands/DeleteLinkCommand";
|
|
81
|
+
import {
|
|
82
|
+
DeleteLinkRoutingRuleCommandInput,
|
|
83
|
+
DeleteLinkRoutingRuleCommandOutput,
|
|
84
|
+
} from "./commands/DeleteLinkRoutingRuleCommand";
|
|
79
85
|
import {
|
|
80
86
|
DeleteOutboundExternalLinkCommandInput,
|
|
81
87
|
DeleteOutboundExternalLinkCommandOutput,
|
|
@@ -88,6 +94,14 @@ import {
|
|
|
88
94
|
DeleteResponderGatewayCommandInput,
|
|
89
95
|
DeleteResponderGatewayCommandOutput,
|
|
90
96
|
} from "./commands/DeleteResponderGatewayCommand";
|
|
97
|
+
import {
|
|
98
|
+
DisassociateCertificateCommandInput,
|
|
99
|
+
DisassociateCertificateCommandOutput,
|
|
100
|
+
} from "./commands/DisassociateCertificateCommand";
|
|
101
|
+
import {
|
|
102
|
+
GetCertificateAssociationCommandInput,
|
|
103
|
+
GetCertificateAssociationCommandOutput,
|
|
104
|
+
} from "./commands/GetCertificateAssociationCommand";
|
|
91
105
|
import {
|
|
92
106
|
GetInboundExternalLinkCommandInput,
|
|
93
107
|
GetInboundExternalLinkCommandOutput,
|
|
@@ -96,6 +110,10 @@ import {
|
|
|
96
110
|
GetLinkCommandInput,
|
|
97
111
|
GetLinkCommandOutput,
|
|
98
112
|
} from "./commands/GetLinkCommand";
|
|
113
|
+
import {
|
|
114
|
+
GetLinkRoutingRuleCommandInput,
|
|
115
|
+
GetLinkRoutingRuleCommandOutput,
|
|
116
|
+
} from "./commands/GetLinkRoutingRuleCommand";
|
|
99
117
|
import {
|
|
100
118
|
GetOutboundExternalLinkCommandInput,
|
|
101
119
|
GetOutboundExternalLinkCommandOutput,
|
|
@@ -108,6 +126,14 @@ import {
|
|
|
108
126
|
GetResponderGatewayCommandInput,
|
|
109
127
|
GetResponderGatewayCommandOutput,
|
|
110
128
|
} from "./commands/GetResponderGatewayCommand";
|
|
129
|
+
import {
|
|
130
|
+
ListCertificateAssociationsCommandInput,
|
|
131
|
+
ListCertificateAssociationsCommandOutput,
|
|
132
|
+
} from "./commands/ListCertificateAssociationsCommand";
|
|
133
|
+
import {
|
|
134
|
+
ListLinkRoutingRulesCommandInput,
|
|
135
|
+
ListLinkRoutingRulesCommandOutput,
|
|
136
|
+
} from "./commands/ListLinkRoutingRulesCommand";
|
|
111
137
|
import {
|
|
112
138
|
ListLinksCommandInput,
|
|
113
139
|
ListLinksCommandOutput,
|
|
@@ -144,6 +170,10 @@ import {
|
|
|
144
170
|
UpdateLinkModuleFlowCommandInput,
|
|
145
171
|
UpdateLinkModuleFlowCommandOutput,
|
|
146
172
|
} from "./commands/UpdateLinkModuleFlowCommand";
|
|
173
|
+
import {
|
|
174
|
+
UpdateLinkRoutingRuleCommandInput,
|
|
175
|
+
UpdateLinkRoutingRuleCommandOutput,
|
|
176
|
+
} from "./commands/UpdateLinkRoutingRuleCommand";
|
|
147
177
|
import {
|
|
148
178
|
UpdateRequesterGatewayCommandInput,
|
|
149
179
|
UpdateRequesterGatewayCommandOutput,
|
|
@@ -161,21 +191,29 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
161
191
|
export { __Client };
|
|
162
192
|
export type ServiceInputTypes =
|
|
163
193
|
| AcceptLinkCommandInput
|
|
194
|
+
| AssociateCertificateCommandInput
|
|
164
195
|
| CreateInboundExternalLinkCommandInput
|
|
165
196
|
| CreateLinkCommandInput
|
|
197
|
+
| CreateLinkRoutingRuleCommandInput
|
|
166
198
|
| CreateOutboundExternalLinkCommandInput
|
|
167
199
|
| CreateRequesterGatewayCommandInput
|
|
168
200
|
| CreateResponderGatewayCommandInput
|
|
169
201
|
| DeleteInboundExternalLinkCommandInput
|
|
170
202
|
| DeleteLinkCommandInput
|
|
203
|
+
| DeleteLinkRoutingRuleCommandInput
|
|
171
204
|
| DeleteOutboundExternalLinkCommandInput
|
|
172
205
|
| DeleteRequesterGatewayCommandInput
|
|
173
206
|
| DeleteResponderGatewayCommandInput
|
|
207
|
+
| DisassociateCertificateCommandInput
|
|
208
|
+
| GetCertificateAssociationCommandInput
|
|
174
209
|
| GetInboundExternalLinkCommandInput
|
|
175
210
|
| GetLinkCommandInput
|
|
211
|
+
| GetLinkRoutingRuleCommandInput
|
|
176
212
|
| GetOutboundExternalLinkCommandInput
|
|
177
213
|
| GetRequesterGatewayCommandInput
|
|
178
214
|
| GetResponderGatewayCommandInput
|
|
215
|
+
| ListCertificateAssociationsCommandInput
|
|
216
|
+
| ListLinkRoutingRulesCommandInput
|
|
179
217
|
| ListLinksCommandInput
|
|
180
218
|
| ListRequesterGatewaysCommandInput
|
|
181
219
|
| ListResponderGatewaysCommandInput
|
|
@@ -185,25 +223,34 @@ export type ServiceInputTypes =
|
|
|
185
223
|
| UntagResourceCommandInput
|
|
186
224
|
| UpdateLinkCommandInput
|
|
187
225
|
| UpdateLinkModuleFlowCommandInput
|
|
226
|
+
| UpdateLinkRoutingRuleCommandInput
|
|
188
227
|
| UpdateRequesterGatewayCommandInput
|
|
189
228
|
| UpdateResponderGatewayCommandInput;
|
|
190
229
|
export type ServiceOutputTypes =
|
|
191
230
|
| AcceptLinkCommandOutput
|
|
231
|
+
| AssociateCertificateCommandOutput
|
|
192
232
|
| CreateInboundExternalLinkCommandOutput
|
|
193
233
|
| CreateLinkCommandOutput
|
|
234
|
+
| CreateLinkRoutingRuleCommandOutput
|
|
194
235
|
| CreateOutboundExternalLinkCommandOutput
|
|
195
236
|
| CreateRequesterGatewayCommandOutput
|
|
196
237
|
| CreateResponderGatewayCommandOutput
|
|
197
238
|
| DeleteInboundExternalLinkCommandOutput
|
|
198
239
|
| DeleteLinkCommandOutput
|
|
240
|
+
| DeleteLinkRoutingRuleCommandOutput
|
|
199
241
|
| DeleteOutboundExternalLinkCommandOutput
|
|
200
242
|
| DeleteRequesterGatewayCommandOutput
|
|
201
243
|
| DeleteResponderGatewayCommandOutput
|
|
244
|
+
| DisassociateCertificateCommandOutput
|
|
245
|
+
| GetCertificateAssociationCommandOutput
|
|
202
246
|
| GetInboundExternalLinkCommandOutput
|
|
203
247
|
| GetLinkCommandOutput
|
|
248
|
+
| GetLinkRoutingRuleCommandOutput
|
|
204
249
|
| GetOutboundExternalLinkCommandOutput
|
|
205
250
|
| GetRequesterGatewayCommandOutput
|
|
206
251
|
| GetResponderGatewayCommandOutput
|
|
252
|
+
| ListCertificateAssociationsCommandOutput
|
|
253
|
+
| ListLinkRoutingRulesCommandOutput
|
|
207
254
|
| ListLinksCommandOutput
|
|
208
255
|
| ListRequesterGatewaysCommandOutput
|
|
209
256
|
| ListResponderGatewaysCommandOutput
|
|
@@ -213,6 +260,7 @@ export type ServiceOutputTypes =
|
|
|
213
260
|
| UntagResourceCommandOutput
|
|
214
261
|
| UpdateLinkCommandOutput
|
|
215
262
|
| UpdateLinkModuleFlowCommandOutput
|
|
263
|
+
| UpdateLinkRoutingRuleCommandOutput
|
|
216
264
|
| UpdateRequesterGatewayCommandOutput
|
|
217
265
|
| UpdateResponderGatewayCommandOutput;
|
|
218
266
|
export interface ClientDefaults
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { AcceptLinkRequest, AcceptLinkResponse } from "../models/models_0";
|
|
4
4
|
import {
|
|
@@ -15,7 +15,7 @@ export interface AcceptLinkCommandOutput
|
|
|
15
15
|
declare const AcceptLinkCommand_base: {
|
|
16
16
|
new (
|
|
17
17
|
input: AcceptLinkCommandInput
|
|
18
|
-
): import("@smithy/
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
AcceptLinkCommandInput,
|
|
20
20
|
AcceptLinkCommandOutput,
|
|
21
21
|
RTBFabricClientResolvedConfig,
|
|
@@ -24,14 +24,16 @@ declare const AcceptLinkCommand_base: {
|
|
|
24
24
|
>;
|
|
25
25
|
new (
|
|
26
26
|
input: AcceptLinkCommandInput
|
|
27
|
-
): import("@smithy/
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
28
|
AcceptLinkCommandInput,
|
|
29
29
|
AcceptLinkCommandOutput,
|
|
30
30
|
RTBFabricClientResolvedConfig,
|
|
31
31
|
ServiceInputTypes,
|
|
32
32
|
ServiceOutputTypes
|
|
33
33
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
35
37
|
};
|
|
36
38
|
export declare class AcceptLinkCommand extends AcceptLinkCommand_base {
|
|
37
39
|
protected static __types: {
|