@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
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import {
|
|
3
|
+
GetLinkRoutingRuleCommandInput,
|
|
4
|
+
GetLinkRoutingRuleCommandOutput,
|
|
5
|
+
} from "../commands/GetLinkRoutingRuleCommand";
|
|
6
|
+
import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
7
|
+
import { RTBFabricClient } from "../RTBFabricClient";
|
|
8
|
+
export declare const waitForLinkRoutingRuleActive: (
|
|
9
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
10
|
+
input: GetLinkRoutingRuleCommandInput
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<GetLinkRoutingRuleCommandOutput | RTBFabricServiceException>
|
|
13
|
+
>;
|
|
14
|
+
export declare const waitUntilLinkRoutingRuleActive: (
|
|
15
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
16
|
+
input: GetLinkRoutingRuleCommandInput
|
|
17
|
+
) => Promise<WaiterResult<GetLinkRoutingRuleCommandOutput>>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import {
|
|
3
|
+
GetLinkRoutingRuleCommandInput,
|
|
4
|
+
GetLinkRoutingRuleCommandOutput,
|
|
5
|
+
} from "../commands/GetLinkRoutingRuleCommand";
|
|
6
|
+
import { ResourceNotFoundException } from "../models/errors";
|
|
7
|
+
import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
8
|
+
import { RTBFabricClient } from "../RTBFabricClient";
|
|
9
|
+
export declare const waitForLinkRoutingRuleDeleted: (
|
|
10
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
11
|
+
input: GetLinkRoutingRuleCommandInput
|
|
12
|
+
) => Promise<
|
|
13
|
+
WaiterResult<GetLinkRoutingRuleCommandOutput | RTBFabricServiceException>
|
|
14
|
+
>;
|
|
15
|
+
export declare const waitUntilLinkRoutingRuleDeleted: (
|
|
16
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
17
|
+
input: GetLinkRoutingRuleCommandInput
|
|
18
|
+
) => Promise<
|
|
19
|
+
WaiterResult<GetLinkRoutingRuleCommandOutput | ResourceNotFoundException>
|
|
20
|
+
>;
|
|
@@ -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,15 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import { type GetCertificateAssociationCommandInput, type GetCertificateAssociationCommandOutput } from "../commands/GetCertificateAssociationCommand";
|
|
3
|
+
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
|
+
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* @deprecated Use waitUntilCertificateAssociated instead. waitForCertificateAssociated does not throw error in non-success cases.
|
|
8
|
+
*/
|
|
9
|
+
export declare const waitForCertificateAssociated: (params: WaiterConfiguration<RTBFabricClient>, input: GetCertificateAssociationCommandInput) => Promise<WaiterResult<GetCertificateAssociationCommandOutput | RTBFabricServiceException>>;
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
* @param params - Waiter configuration options.
|
|
13
|
+
* @param input - The input to GetCertificateAssociationCommand for polling.
|
|
14
|
+
*/
|
|
15
|
+
export declare const waitUntilCertificateAssociated: (params: WaiterConfiguration<RTBFabricClient>, input: GetCertificateAssociationCommandInput) => Promise<WaiterResult<GetCertificateAssociationCommandOutput>>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import { type GetCertificateAssociationCommandInput, type GetCertificateAssociationCommandOutput } from "../commands/GetCertificateAssociationCommand";
|
|
3
|
+
import type { ResourceNotFoundException } from "../models/errors";
|
|
4
|
+
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
5
|
+
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
6
|
+
/**
|
|
7
|
+
*
|
|
8
|
+
* @deprecated Use waitUntilCertificateDisassociated instead. waitForCertificateDisassociated does not throw error in non-success cases.
|
|
9
|
+
*/
|
|
10
|
+
export declare const waitForCertificateDisassociated: (params: WaiterConfiguration<RTBFabricClient>, input: GetCertificateAssociationCommandInput) => Promise<WaiterResult<GetCertificateAssociationCommandOutput | RTBFabricServiceException>>;
|
|
11
|
+
/**
|
|
12
|
+
*
|
|
13
|
+
* @param params - Waiter configuration options.
|
|
14
|
+
* @param input - The input to GetCertificateAssociationCommand for polling.
|
|
15
|
+
*/
|
|
16
|
+
export declare const waitUntilCertificateDisassociated: (params: WaiterConfiguration<RTBFabricClient>, input: GetCertificateAssociationCommandInput) => Promise<WaiterResult<GetCertificateAssociationCommandOutput | ResourceNotFoundException>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetInboundExternalLinkCommandInput, type GetInboundExternalLinkCommandOutput } from "../commands/GetInboundExternalLinkCommand";
|
|
3
3
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
4
|
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetInboundExternalLinkCommandInput, type GetInboundExternalLinkCommandOutput } from "../commands/GetInboundExternalLinkCommand";
|
|
3
3
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
4
|
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetLinkCommandInput, type GetLinkCommandOutput } from "../commands/GetLinkCommand";
|
|
3
3
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
4
|
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetLinkCommandInput, type GetLinkCommandOutput } from "../commands/GetLinkCommand";
|
|
3
3
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
4
|
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetLinkCommandInput, type GetLinkCommandOutput } from "../commands/GetLinkCommand";
|
|
3
3
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
4
|
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import { type GetLinkRoutingRuleCommandInput, type GetLinkRoutingRuleCommandOutput } from "../commands/GetLinkRoutingRuleCommand";
|
|
3
|
+
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
|
+
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* @deprecated Use waitUntilLinkRoutingRuleActive instead. waitForLinkRoutingRuleActive does not throw error in non-success cases.
|
|
8
|
+
*/
|
|
9
|
+
export declare const waitForLinkRoutingRuleActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkRoutingRuleCommandInput) => Promise<WaiterResult<GetLinkRoutingRuleCommandOutput | RTBFabricServiceException>>;
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
* @param params - Waiter configuration options.
|
|
13
|
+
* @param input - The input to GetLinkRoutingRuleCommand for polling.
|
|
14
|
+
*/
|
|
15
|
+
export declare const waitUntilLinkRoutingRuleActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkRoutingRuleCommandInput) => Promise<WaiterResult<GetLinkRoutingRuleCommandOutput>>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import { type GetLinkRoutingRuleCommandInput, type GetLinkRoutingRuleCommandOutput } from "../commands/GetLinkRoutingRuleCommand";
|
|
3
|
+
import type { ResourceNotFoundException } from "../models/errors";
|
|
4
|
+
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
5
|
+
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
6
|
+
/**
|
|
7
|
+
*
|
|
8
|
+
* @deprecated Use waitUntilLinkRoutingRuleDeleted instead. waitForLinkRoutingRuleDeleted does not throw error in non-success cases.
|
|
9
|
+
*/
|
|
10
|
+
export declare const waitForLinkRoutingRuleDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkRoutingRuleCommandInput) => Promise<WaiterResult<GetLinkRoutingRuleCommandOutput | RTBFabricServiceException>>;
|
|
11
|
+
/**
|
|
12
|
+
*
|
|
13
|
+
* @param params - Waiter configuration options.
|
|
14
|
+
* @param input - The input to GetLinkRoutingRuleCommand for polling.
|
|
15
|
+
*/
|
|
16
|
+
export declare const waitUntilLinkRoutingRuleDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkRoutingRuleCommandInput) => Promise<WaiterResult<GetLinkRoutingRuleCommandOutput | ResourceNotFoundException>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetOutboundExternalLinkCommandInput, type GetOutboundExternalLinkCommandOutput } from "../commands/GetOutboundExternalLinkCommand";
|
|
3
3
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
4
|
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetOutboundExternalLinkCommandInput, type GetOutboundExternalLinkCommandOutput } from "../commands/GetOutboundExternalLinkCommand";
|
|
3
3
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
4
|
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetRequesterGatewayCommandInput, type GetRequesterGatewayCommandOutput } from "../commands/GetRequesterGatewayCommand";
|
|
3
3
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
4
|
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetRequesterGatewayCommandInput, type GetRequesterGatewayCommandOutput } from "../commands/GetRequesterGatewayCommand";
|
|
3
3
|
import type { ResourceNotFoundException } from "../models/errors";
|
|
4
4
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetResponderGatewayCommandInput, type GetResponderGatewayCommandOutput } from "../commands/GetResponderGatewayCommand";
|
|
3
3
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
|
4
4
|
import type { RTBFabricClient } from "../RTBFabricClient";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type WaiterConfiguration, type WaiterResult } from "@smithy/
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import { type GetResponderGatewayCommandInput, type GetResponderGatewayCommandOutput } from "../commands/GetResponderGatewayCommand";
|
|
3
3
|
import type { ResourceNotFoundException } from "../models/errors";
|
|
4
4
|
import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rtbfabric",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rtbfabric Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1047.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-rtbfabric",
|
|
@@ -21,43 +21,21 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.10",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.41",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.11",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.12",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.40",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.14",
|
|
31
31
|
"@aws-sdk/types": "^3.973.8",
|
|
32
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/
|
|
36
|
-
"@smithy/
|
|
37
|
-
"@smithy/
|
|
38
|
-
"@smithy/hash-node": "^4.2.14",
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.32",
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.7",
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.20",
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.14",
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.14",
|
|
46
|
-
"@smithy/node-http-handler": "^4.6.1",
|
|
47
|
-
"@smithy/protocol-http": "^5.3.14",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.13",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.9",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.11",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.26",
|
|
35
|
+
"@smithy/core": "^3.24.1",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.4.1",
|
|
37
|
+
"@smithy/node-http-handler": "^4.7.1",
|
|
49
38
|
"@smithy/types": "^4.14.1",
|
|
50
|
-
"@smithy/url-parser": "^4.2.14",
|
|
51
|
-
"@smithy/util-base64": "^4.3.2",
|
|
52
|
-
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
|
-
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.49",
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
56
|
-
"@smithy/util-endpoints": "^3.4.2",
|
|
57
|
-
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
-
"@smithy/util-retry": "^4.3.6",
|
|
59
|
-
"@smithy/util-utf8": "^4.2.2",
|
|
60
|
-
"@smithy/util-waiter": "^4.3.0",
|
|
61
39
|
"tslib": "^2.6.2"
|
|
62
40
|
},
|
|
63
41
|
"devDependencies": {
|