@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
|
@@ -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 {
|
|
4
4
|
UpdateRequesterGatewayRequest,
|
|
@@ -19,7 +19,7 @@ export interface UpdateRequesterGatewayCommandOutput
|
|
|
19
19
|
declare const UpdateRequesterGatewayCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: UpdateRequesterGatewayCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
UpdateRequesterGatewayCommandInput,
|
|
24
24
|
UpdateRequesterGatewayCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const UpdateRequesterGatewayCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: UpdateRequesterGatewayCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
UpdateRequesterGatewayCommandInput,
|
|
33
33
|
UpdateRequesterGatewayCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class UpdateRequesterGatewayCommand extends UpdateRequesterGatewayCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -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 {
|
|
4
4
|
UpdateResponderGatewayRequest,
|
|
@@ -19,7 +19,7 @@ export interface UpdateResponderGatewayCommandOutput
|
|
|
19
19
|
declare const UpdateResponderGatewayCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: UpdateResponderGatewayCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
UpdateResponderGatewayCommandInput,
|
|
24
24
|
UpdateResponderGatewayCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const UpdateResponderGatewayCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: UpdateResponderGatewayCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
UpdateResponderGatewayCommandInput,
|
|
33
33
|
UpdateResponderGatewayCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class UpdateResponderGatewayCommand extends UpdateResponderGatewayCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
export * from "./AcceptLinkCommand";
|
|
2
|
+
export * from "./AssociateCertificateCommand";
|
|
2
3
|
export * from "./CreateInboundExternalLinkCommand";
|
|
3
4
|
export * from "./CreateLinkCommand";
|
|
5
|
+
export * from "./CreateLinkRoutingRuleCommand";
|
|
4
6
|
export * from "./CreateOutboundExternalLinkCommand";
|
|
5
7
|
export * from "./CreateRequesterGatewayCommand";
|
|
6
8
|
export * from "./CreateResponderGatewayCommand";
|
|
7
9
|
export * from "./DeleteInboundExternalLinkCommand";
|
|
8
10
|
export * from "./DeleteLinkCommand";
|
|
11
|
+
export * from "./DeleteLinkRoutingRuleCommand";
|
|
9
12
|
export * from "./DeleteOutboundExternalLinkCommand";
|
|
10
13
|
export * from "./DeleteRequesterGatewayCommand";
|
|
11
14
|
export * from "./DeleteResponderGatewayCommand";
|
|
15
|
+
export * from "./DisassociateCertificateCommand";
|
|
16
|
+
export * from "./GetCertificateAssociationCommand";
|
|
12
17
|
export * from "./GetInboundExternalLinkCommand";
|
|
13
18
|
export * from "./GetLinkCommand";
|
|
19
|
+
export * from "./GetLinkRoutingRuleCommand";
|
|
14
20
|
export * from "./GetOutboundExternalLinkCommand";
|
|
15
21
|
export * from "./GetRequesterGatewayCommand";
|
|
16
22
|
export * from "./GetResponderGatewayCommand";
|
|
23
|
+
export * from "./ListCertificateAssociationsCommand";
|
|
24
|
+
export * from "./ListLinkRoutingRulesCommand";
|
|
17
25
|
export * from "./ListLinksCommand";
|
|
18
26
|
export * from "./ListRequesterGatewaysCommand";
|
|
19
27
|
export * from "./ListResponderGatewaysCommand";
|
|
@@ -23,5 +31,6 @@ export * from "./TagResourceCommand";
|
|
|
23
31
|
export * from "./UntagResourceCommand";
|
|
24
32
|
export * from "./UpdateLinkCommand";
|
|
25
33
|
export * from "./UpdateLinkModuleFlowCommand";
|
|
34
|
+
export * from "./UpdateLinkRoutingRuleCommand";
|
|
26
35
|
export * from "./UpdateRequesterGatewayCommand";
|
|
27
36
|
export * from "./UpdateResponderGatewayCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { BinaryDecisionDiagram } from "@smithy/
|
|
1
|
+
import { BinaryDecisionDiagram } from "@smithy/core/endpoints";
|
|
2
2
|
export declare const bdd: BinaryDecisionDiagram;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { HttpHandlerExtensionConfiguration } from "@smithy/
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface RTBFabricExtensionConfiguration
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
3
3
|
ServiceException as __ServiceException,
|
|
4
|
-
} from "@smithy/
|
|
4
|
+
} from "@smithy/core/client";
|
|
5
5
|
export { __ServiceExceptionOptions };
|
|
6
6
|
export { __ServiceException };
|
|
7
7
|
export declare class RTBFabricServiceException extends __ServiceException {
|
|
@@ -45,11 +45,29 @@ export declare const LinkStatus: {
|
|
|
45
45
|
readonly REQUESTED: "REQUESTED";
|
|
46
46
|
};
|
|
47
47
|
export type LinkStatus = (typeof LinkStatus)[keyof typeof LinkStatus];
|
|
48
|
+
export declare const CertificateAssociationStatus: {
|
|
49
|
+
readonly ASSOCIATED: "ASSOCIATED";
|
|
50
|
+
readonly DISASSOCIATED: "DISASSOCIATED";
|
|
51
|
+
readonly FAILED: "FAILED";
|
|
52
|
+
readonly PENDING_ASSOCIATION: "PENDING_ASSOCIATION";
|
|
53
|
+
readonly PENDING_DISASSOCIATION: "PENDING_DISASSOCIATION";
|
|
54
|
+
};
|
|
55
|
+
export type CertificateAssociationStatus =
|
|
56
|
+
(typeof CertificateAssociationStatus)[keyof typeof CertificateAssociationStatus];
|
|
48
57
|
export declare const Protocol: {
|
|
49
58
|
readonly HTTP: "HTTP";
|
|
50
59
|
readonly HTTPS: "HTTPS";
|
|
51
60
|
};
|
|
52
61
|
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
62
|
+
export declare const RuleStatus: {
|
|
63
|
+
readonly ACTIVE: "ACTIVE";
|
|
64
|
+
readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
|
|
65
|
+
readonly DELETED: "DELETED";
|
|
66
|
+
readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS";
|
|
67
|
+
readonly FAILED: "FAILED";
|
|
68
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
69
|
+
};
|
|
70
|
+
export type RuleStatus = (typeof RuleStatus)[keyof typeof RuleStatus];
|
|
53
71
|
export declare const RequesterGatewayStatus: {
|
|
54
72
|
readonly ACTIVE: "ACTIVE";
|
|
55
73
|
readonly DELETED: "DELETED";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
|
|
2
2
|
import { RTBFabricServiceException as __BaseException } from "./RTBFabricServiceException";
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
CertificateAssociationStatus,
|
|
2
3
|
ConnectivityType,
|
|
3
4
|
FilterType,
|
|
4
5
|
GatewayType,
|
|
@@ -9,6 +10,7 @@ import {
|
|
|
9
10
|
ResponderErrorMaskingAction,
|
|
10
11
|
ResponderErrorMaskingLoggingType,
|
|
11
12
|
ResponderGatewayStatus,
|
|
13
|
+
RuleStatus,
|
|
12
14
|
} from "./enums";
|
|
13
15
|
export interface ResponderErrorMaskingForHttpCode {
|
|
14
16
|
httpCode: string | undefined;
|
|
@@ -148,6 +150,16 @@ export interface AcceptLinkResponse {
|
|
|
148
150
|
connectivityType?: ConnectivityType | undefined;
|
|
149
151
|
linkId: string | undefined;
|
|
150
152
|
}
|
|
153
|
+
export interface AssociateCertificateRequest {
|
|
154
|
+
gatewayId: string | undefined;
|
|
155
|
+
acmCertificateArn: string | undefined;
|
|
156
|
+
clientToken?: string | undefined;
|
|
157
|
+
}
|
|
158
|
+
export interface AssociateCertificateResponse {
|
|
159
|
+
gatewayId: string | undefined;
|
|
160
|
+
acmCertificateArn: string | undefined;
|
|
161
|
+
status: CertificateAssociationStatus | undefined;
|
|
162
|
+
}
|
|
151
163
|
export interface HealthCheckConfig {
|
|
152
164
|
port: number | undefined;
|
|
153
165
|
path: string | undefined;
|
|
@@ -163,6 +175,12 @@ export interface AutoScalingGroupsConfiguration {
|
|
|
163
175
|
roleArn: string | undefined;
|
|
164
176
|
healthCheckConfig?: HealthCheckConfig | undefined;
|
|
165
177
|
}
|
|
178
|
+
export interface CertificateAssociationSummary {
|
|
179
|
+
acmCertificateArn: string | undefined;
|
|
180
|
+
status: CertificateAssociationStatus | undefined;
|
|
181
|
+
associatedAt?: Date | undefined;
|
|
182
|
+
updatedAt?: Date | undefined;
|
|
183
|
+
}
|
|
166
184
|
export interface CreateInboundExternalLinkRequest {
|
|
167
185
|
clientToken?: string | undefined;
|
|
168
186
|
gatewayId: string | undefined;
|
|
@@ -200,6 +218,31 @@ export interface CreateLinkResponse {
|
|
|
200
218
|
linkId: string | undefined;
|
|
201
219
|
customerProvidedId?: string | undefined;
|
|
202
220
|
}
|
|
221
|
+
export interface QueryStringKeyValuePair {
|
|
222
|
+
key: string | undefined;
|
|
223
|
+
value: string | undefined;
|
|
224
|
+
}
|
|
225
|
+
export interface RuleCondition {
|
|
226
|
+
hostHeader?: string | undefined;
|
|
227
|
+
hostHeaderWildcard?: string | undefined;
|
|
228
|
+
pathPrefix?: string | undefined;
|
|
229
|
+
pathExact?: string | undefined;
|
|
230
|
+
queryStringEquals?: QueryStringKeyValuePair | undefined;
|
|
231
|
+
queryStringExists?: string | undefined;
|
|
232
|
+
}
|
|
233
|
+
export interface CreateLinkRoutingRuleRequest {
|
|
234
|
+
clientToken?: string | undefined;
|
|
235
|
+
gatewayId: string | undefined;
|
|
236
|
+
linkId: string | undefined;
|
|
237
|
+
priority: number | undefined;
|
|
238
|
+
conditions: RuleCondition | undefined;
|
|
239
|
+
tags?: Record<string, string> | undefined;
|
|
240
|
+
}
|
|
241
|
+
export interface CreateLinkRoutingRuleResponse {
|
|
242
|
+
ruleId: string | undefined;
|
|
243
|
+
status: RuleStatus | undefined;
|
|
244
|
+
createdAt: Date | undefined;
|
|
245
|
+
}
|
|
203
246
|
export interface CreateOutboundExternalLinkRequest {
|
|
204
247
|
clientToken?: string | undefined;
|
|
205
248
|
gatewayId: string | undefined;
|
|
@@ -303,6 +346,15 @@ export interface DeleteLinkResponse {
|
|
|
303
346
|
linkId: string | undefined;
|
|
304
347
|
status: LinkStatus | undefined;
|
|
305
348
|
}
|
|
349
|
+
export interface DeleteLinkRoutingRuleRequest {
|
|
350
|
+
gatewayId: string | undefined;
|
|
351
|
+
linkId: string | undefined;
|
|
352
|
+
ruleId: string | undefined;
|
|
353
|
+
}
|
|
354
|
+
export interface DeleteLinkRoutingRuleResponse {
|
|
355
|
+
ruleId: string | undefined;
|
|
356
|
+
status: RuleStatus | undefined;
|
|
357
|
+
}
|
|
306
358
|
export interface DeleteOutboundExternalLinkRequest {
|
|
307
359
|
gatewayId: string | undefined;
|
|
308
360
|
linkId: string | undefined;
|
|
@@ -325,6 +377,15 @@ export interface DeleteResponderGatewayResponse {
|
|
|
325
377
|
gatewayId: string | undefined;
|
|
326
378
|
status: ResponderGatewayStatus | undefined;
|
|
327
379
|
}
|
|
380
|
+
export interface DisassociateCertificateRequest {
|
|
381
|
+
gatewayId: string | undefined;
|
|
382
|
+
acmCertificateArn: string | undefined;
|
|
383
|
+
}
|
|
384
|
+
export interface DisassociateCertificateResponse {
|
|
385
|
+
gatewayId: string | undefined;
|
|
386
|
+
acmCertificateArn: string | undefined;
|
|
387
|
+
status: CertificateAssociationStatus | undefined;
|
|
388
|
+
}
|
|
328
389
|
export interface GetLinkRequest {
|
|
329
390
|
gatewayId: string | undefined;
|
|
330
391
|
linkId: string | undefined;
|
|
@@ -346,6 +407,52 @@ export interface GetLinkResponse {
|
|
|
346
407
|
httpResponderAllowed?: boolean | undefined;
|
|
347
408
|
timeoutInMillis?: number | undefined;
|
|
348
409
|
}
|
|
410
|
+
export interface GetLinkRoutingRuleRequest {
|
|
411
|
+
gatewayId: string | undefined;
|
|
412
|
+
linkId: string | undefined;
|
|
413
|
+
ruleId: string | undefined;
|
|
414
|
+
}
|
|
415
|
+
export interface GetLinkRoutingRuleResponse {
|
|
416
|
+
gatewayId: string | undefined;
|
|
417
|
+
linkId: string | undefined;
|
|
418
|
+
ruleId: string | undefined;
|
|
419
|
+
priority: number | undefined;
|
|
420
|
+
conditions: RuleCondition | undefined;
|
|
421
|
+
status: RuleStatus | undefined;
|
|
422
|
+
createdAt: Date | undefined;
|
|
423
|
+
updatedAt: Date | undefined;
|
|
424
|
+
tags?: Record<string, string> | undefined;
|
|
425
|
+
}
|
|
426
|
+
export interface ListLinkRoutingRulesRequest {
|
|
427
|
+
gatewayId: string | undefined;
|
|
428
|
+
linkId: string | undefined;
|
|
429
|
+
nextToken?: string | undefined;
|
|
430
|
+
maxResults?: number | undefined;
|
|
431
|
+
}
|
|
432
|
+
export interface LinkRoutingRuleSummary {
|
|
433
|
+
ruleId: string | undefined;
|
|
434
|
+
priority: number | undefined;
|
|
435
|
+
conditions: RuleCondition | undefined;
|
|
436
|
+
status: RuleStatus | undefined;
|
|
437
|
+
createdAt: Date | undefined;
|
|
438
|
+
updatedAt: Date | undefined;
|
|
439
|
+
}
|
|
440
|
+
export interface ListLinkRoutingRulesResponse {
|
|
441
|
+
rules?: LinkRoutingRuleSummary[] | undefined;
|
|
442
|
+
nextToken?: string | undefined;
|
|
443
|
+
}
|
|
444
|
+
export interface UpdateLinkRoutingRuleRequest {
|
|
445
|
+
gatewayId: string | undefined;
|
|
446
|
+
linkId: string | undefined;
|
|
447
|
+
ruleId: string | undefined;
|
|
448
|
+
priority: number | undefined;
|
|
449
|
+
conditions: RuleCondition | undefined;
|
|
450
|
+
}
|
|
451
|
+
export interface UpdateLinkRoutingRuleResponse {
|
|
452
|
+
ruleId: string | undefined;
|
|
453
|
+
status: RuleStatus | undefined;
|
|
454
|
+
updatedAt: Date | undefined;
|
|
455
|
+
}
|
|
349
456
|
export interface ListLinksRequest {
|
|
350
457
|
gatewayId: string | undefined;
|
|
351
458
|
nextToken?: string | undefined;
|
|
@@ -410,6 +517,17 @@ export interface UpdateLinkModuleFlowResponse {
|
|
|
410
517
|
linkId: string | undefined;
|
|
411
518
|
status: LinkStatus | undefined;
|
|
412
519
|
}
|
|
520
|
+
export interface GetCertificateAssociationRequest {
|
|
521
|
+
gatewayId: string | undefined;
|
|
522
|
+
acmCertificateArn: string | undefined;
|
|
523
|
+
}
|
|
524
|
+
export interface GetCertificateAssociationResponse {
|
|
525
|
+
gatewayId: string | undefined;
|
|
526
|
+
acmCertificateArn: string | undefined;
|
|
527
|
+
status: CertificateAssociationStatus | undefined;
|
|
528
|
+
associatedAt?: Date | undefined;
|
|
529
|
+
updatedAt?: Date | undefined;
|
|
530
|
+
}
|
|
413
531
|
export interface GetInboundExternalLinkRequest {
|
|
414
532
|
gatewayId: string | undefined;
|
|
415
533
|
linkId: string | undefined;
|
|
@@ -488,6 +606,15 @@ export interface GetResponderGatewayResponse {
|
|
|
488
606
|
gatewayType?: GatewayType | undefined;
|
|
489
607
|
externalInboundEndpoint?: string | undefined;
|
|
490
608
|
}
|
|
609
|
+
export interface ListCertificateAssociationsRequest {
|
|
610
|
+
gatewayId: string | undefined;
|
|
611
|
+
nextToken?: string | undefined;
|
|
612
|
+
maxResults?: number | undefined;
|
|
613
|
+
}
|
|
614
|
+
export interface ListCertificateAssociationsResponse {
|
|
615
|
+
certificateAssociations: CertificateAssociationSummary[] | undefined;
|
|
616
|
+
nextToken?: string | undefined;
|
|
617
|
+
}
|
|
491
618
|
export interface ListRequesterGatewaysRequest {
|
|
492
619
|
maxResults?: number | undefined;
|
|
493
620
|
nextToken?: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCertificateAssociationsCommandInput,
|
|
4
|
+
ListCertificateAssociationsCommandOutput,
|
|
5
|
+
} from "../commands/ListCertificateAssociationsCommand";
|
|
6
|
+
import { RTBFabricPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCertificateAssociations: (
|
|
8
|
+
config: RTBFabricPaginationConfiguration,
|
|
9
|
+
input: ListCertificateAssociationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCertificateAssociationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListLinkRoutingRulesCommandInput,
|
|
4
|
+
ListLinkRoutingRulesCommandOutput,
|
|
5
|
+
} from "../commands/ListLinkRoutingRulesCommand";
|
|
6
|
+
import { RTBFabricPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListLinkRoutingRules: (
|
|
8
|
+
config: RTBFabricPaginationConfiguration,
|
|
9
|
+
input: ListLinkRoutingRulesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListLinkRoutingRulesCommandOutput>;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListCertificateAssociationsPaginator";
|
|
3
|
+
export * from "./ListLinkRoutingRulesPaginator";
|
|
2
4
|
export * from "./ListLinksPaginator";
|
|
3
5
|
export * from "./ListRequesterGatewaysPaginator";
|
|
4
6
|
export * from "./ListResponderGatewaysPaginator";
|
|
@@ -3,7 +3,7 @@ import { RTBFabricClientConfig } from "./RTBFabricClient";
|
|
|
3
3
|
export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
4
4
|
runtime: string;
|
|
5
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/
|
|
6
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
@@ -17,7 +17,7 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
17
17
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
18
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
19
|
requestHandler:
|
|
20
|
-
| import("@smithy/
|
|
20
|
+
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
21
|
| RequestHandler;
|
|
22
22
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
23
|
sha256: import("@smithy/types").HashConstructor;
|
|
@@ -3,7 +3,7 @@ import { RTBFabricClientConfig } from "./RTBFabricClient";
|
|
|
3
3
|
export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
4
4
|
runtime: string;
|
|
5
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/
|
|
6
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
@@ -19,7 +19,7 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
20
|
requestHandler:
|
|
21
21
|
| RequestHandler
|
|
22
|
-
| import("@smithy/
|
|
22
|
+
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
23
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
24
|
sha256: import("@smithy/types").HashConstructor;
|
|
25
25
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
6
6
|
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
7
|
| import("@smithy/types").FetchHttpHandlerOptions
|
|
8
8
|
| Record<string, unknown>
|
|
9
|
-
| import("@smithy/
|
|
9
|
+
| import("@smithy/core/protocols").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
cacheMiddleware?: boolean;
|
|
12
12
|
protocol:
|
|
@@ -46,9 +46,9 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
46
46
|
logger: import("@smithy/types").Logger;
|
|
47
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
48
48
|
defaultsMode:
|
|
49
|
-
| import("@smithy/
|
|
49
|
+
| import("@smithy/core/client").DefaultsMode
|
|
50
50
|
| import("@smithy/types").Provider<
|
|
51
|
-
import("@smithy/
|
|
51
|
+
import("@smithy/core/client").DefaultsMode
|
|
52
52
|
>;
|
|
53
53
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
54
54
|
userAgentAppId?:
|
|
@@ -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,8 +1,12 @@
|
|
|
1
|
+
export * from "./waitForCertificateAssociated";
|
|
2
|
+
export * from "./waitForCertificateDisassociated";
|
|
1
3
|
export * from "./waitForInboundExternalLinkActive";
|
|
2
4
|
export * from "./waitForInboundExternalLinkDeleted";
|
|
3
5
|
export * from "./waitForLinkAccepted";
|
|
4
6
|
export * from "./waitForLinkActive";
|
|
5
7
|
export * from "./waitForLinkDeleted";
|
|
8
|
+
export * from "./waitForLinkRoutingRuleActive";
|
|
9
|
+
export * from "./waitForLinkRoutingRuleDeleted";
|
|
6
10
|
export * from "./waitForOutboundExternalLinkActive";
|
|
7
11
|
export * from "./waitForOutboundExternalLinkDeleted";
|
|
8
12
|
export * from "./waitForRequesterGatewayActive";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import {
|
|
3
|
+
GetCertificateAssociationCommandInput,
|
|
4
|
+
GetCertificateAssociationCommandOutput,
|
|
5
|
+
} from "../commands/GetCertificateAssociationCommand";
|
|
6
|
+
import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
7
|
+
import { RTBFabricClient } from "../RTBFabricClient";
|
|
8
|
+
export declare const waitForCertificateAssociated: (
|
|
9
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
10
|
+
input: GetCertificateAssociationCommandInput
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
GetCertificateAssociationCommandOutput | RTBFabricServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
16
|
+
export declare const waitUntilCertificateAssociated: (
|
|
17
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
18
|
+
input: GetCertificateAssociationCommandInput
|
|
19
|
+
) => Promise<WaiterResult<GetCertificateAssociationCommandOutput>>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import {
|
|
3
|
+
GetCertificateAssociationCommandInput,
|
|
4
|
+
GetCertificateAssociationCommandOutput,
|
|
5
|
+
} from "../commands/GetCertificateAssociationCommand";
|
|
6
|
+
import { ResourceNotFoundException } from "../models/errors";
|
|
7
|
+
import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
8
|
+
import { RTBFabricClient } from "../RTBFabricClient";
|
|
9
|
+
export declare const waitForCertificateDisassociated: (
|
|
10
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
11
|
+
input: GetCertificateAssociationCommandInput
|
|
12
|
+
) => Promise<
|
|
13
|
+
WaiterResult<
|
|
14
|
+
GetCertificateAssociationCommandOutput | RTBFabricServiceException
|
|
15
|
+
>
|
|
16
|
+
>;
|
|
17
|
+
export declare const waitUntilCertificateDisassociated: (
|
|
18
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
19
|
+
input: GetCertificateAssociationCommandInput
|
|
20
|
+
) => Promise<
|
|
21
|
+
WaiterResult<
|
|
22
|
+
GetCertificateAssociationCommandOutput | ResourceNotFoundException
|
|
23
|
+
>
|
|
24
|
+
>;
|