@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 type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ListRequesterGatewaysRequest, ListRequesterGatewaysResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface ListRequesterGatewaysCommandInput extends ListRequesterGateways
|
|
|
22
22
|
export interface ListRequesterGatewaysCommandOutput extends ListRequesterGatewaysResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const ListRequesterGatewaysCommand_base: {
|
|
25
|
-
new (input: ListRequesterGatewaysCommandInput): import("@smithy/
|
|
26
|
-
new (...[input]: [] | [ListRequesterGatewaysCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: ListRequesterGatewaysCommandInput): import("@smithy/core/client").CommandImpl<ListRequesterGatewaysCommandInput, ListRequesterGatewaysCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListRequesterGatewaysCommandInput]): import("@smithy/core/client").CommandImpl<ListRequesterGatewaysCommandInput, ListRequesterGatewaysCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Lists requester gateways.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ListResponderGatewaysRequest, ListResponderGatewaysResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface ListResponderGatewaysCommandInput extends ListResponderGateways
|
|
|
22
22
|
export interface ListResponderGatewaysCommandOutput extends ListResponderGatewaysResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const ListResponderGatewaysCommand_base: {
|
|
25
|
-
new (input: ListResponderGatewaysCommandInput): import("@smithy/
|
|
26
|
-
new (...[input]: [] | [ListResponderGatewaysCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: ListResponderGatewaysCommandInput): import("@smithy/core/client").CommandImpl<ListResponderGatewaysCommandInput, ListResponderGatewaysCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListResponderGatewaysCommandInput]): import("@smithy/core/client").CommandImpl<ListResponderGatewaysCommandInput, ListResponderGatewaysCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Lists reponder gateways.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
22
22
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const ListTagsForResourceCommand_base: {
|
|
25
|
-
new (input: ListTagsForResourceCommandInput): import("@smithy/
|
|
26
|
-
new (input: ListTagsForResourceCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Lists tags for a resource.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { RejectLinkRequest, RejectLinkResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface RejectLinkCommandInput extends RejectLinkRequest {
|
|
|
22
22
|
export interface RejectLinkCommandOutput extends RejectLinkResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const RejectLinkCommand_base: {
|
|
25
|
-
new (input: RejectLinkCommandInput): import("@smithy/
|
|
26
|
-
new (input: RejectLinkCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: RejectLinkCommandInput): import("@smithy/core/client").CommandImpl<RejectLinkCommandInput, RejectLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: RejectLinkCommandInput): import("@smithy/core/client").CommandImpl<RejectLinkCommandInput, RejectLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Rejects a link request between gateways.</p> <p>When a requester gateway requests to link with a responder gateway, the responder can use this operation to decline the link request.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
22
22
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const TagResourceCommand_base: {
|
|
25
|
-
new (input: TagResourceCommandInput): import("@smithy/
|
|
26
|
-
new (input: TagResourceCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Assigns one or more tags (key-value pairs) to the specified resource.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
22
22
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const UntagResourceCommand_base: {
|
|
25
|
-
new (input: UntagResourceCommandInput): import("@smithy/
|
|
26
|
-
new (input: UntagResourceCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Removes a tag or tags from a resource.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { UpdateLinkRequest, UpdateLinkResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface UpdateLinkCommandInput extends UpdateLinkRequest {
|
|
|
22
22
|
export interface UpdateLinkCommandOutput extends UpdateLinkResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const UpdateLinkCommand_base: {
|
|
25
|
-
new (input: UpdateLinkCommandInput): import("@smithy/
|
|
26
|
-
new (input: UpdateLinkCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: UpdateLinkCommandInput): import("@smithy/core/client").CommandImpl<UpdateLinkCommandInput, UpdateLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateLinkCommandInput): import("@smithy/core/client").CommandImpl<UpdateLinkCommandInput, UpdateLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Updates the configuration of a link between gateways.</p> <p>Allows you to modify settings and parameters for an existing link.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { UpdateLinkModuleFlowRequest, UpdateLinkModuleFlowResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface UpdateLinkModuleFlowCommandInput extends UpdateLinkModuleFlowRe
|
|
|
22
22
|
export interface UpdateLinkModuleFlowCommandOutput extends UpdateLinkModuleFlowResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const UpdateLinkModuleFlowCommand_base: {
|
|
25
|
-
new (input: UpdateLinkModuleFlowCommandInput): import("@smithy/
|
|
26
|
-
new (input: UpdateLinkModuleFlowCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: UpdateLinkModuleFlowCommandInput): import("@smithy/core/client").CommandImpl<UpdateLinkModuleFlowCommandInput, UpdateLinkModuleFlowCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateLinkModuleFlowCommandInput): import("@smithy/core/client").CommandImpl<UpdateLinkModuleFlowCommandInput, UpdateLinkModuleFlowCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Updates a link module flow.</p>
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { UpdateLinkRoutingRuleRequest, UpdateLinkRoutingRuleResponse } from "../models/models_0";
|
|
4
|
+
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateLinkRoutingRuleCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateLinkRoutingRuleCommandInput extends UpdateLinkRoutingRuleRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateLinkRoutingRuleCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateLinkRoutingRuleCommandOutput extends UpdateLinkRoutingRuleResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateLinkRoutingRuleCommand_base: {
|
|
25
|
+
new (input: UpdateLinkRoutingRuleCommandInput): import("@smithy/core/client").CommandImpl<UpdateLinkRoutingRuleCommandInput, UpdateLinkRoutingRuleCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateLinkRoutingRuleCommandInput): import("@smithy/core/client").CommandImpl<UpdateLinkRoutingRuleCommandInput, UpdateLinkRoutingRuleCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Updates a routing rule for a link.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { RTBFabricClient, UpdateLinkRoutingRuleCommand } from "@aws-sdk/client-rtbfabric"; // ES Modules import
|
|
37
|
+
* // const { RTBFabricClient, UpdateLinkRoutingRuleCommand } = require("@aws-sdk/client-rtbfabric"); // CommonJS import
|
|
38
|
+
* // import type { RTBFabricClientConfig } from "@aws-sdk/client-rtbfabric";
|
|
39
|
+
* const config = {}; // type is RTBFabricClientConfig
|
|
40
|
+
* const client = new RTBFabricClient(config);
|
|
41
|
+
* const input = { // UpdateLinkRoutingRuleRequest
|
|
42
|
+
* gatewayId: "STRING_VALUE", // required
|
|
43
|
+
* linkId: "STRING_VALUE", // required
|
|
44
|
+
* ruleId: "STRING_VALUE", // required
|
|
45
|
+
* priority: Number("int"), // required
|
|
46
|
+
* conditions: { // RuleCondition
|
|
47
|
+
* hostHeader: "STRING_VALUE",
|
|
48
|
+
* hostHeaderWildcard: "STRING_VALUE",
|
|
49
|
+
* pathPrefix: "STRING_VALUE",
|
|
50
|
+
* pathExact: "STRING_VALUE",
|
|
51
|
+
* queryStringEquals: { // QueryStringKeyValuePair
|
|
52
|
+
* key: "STRING_VALUE", // required
|
|
53
|
+
* value: "STRING_VALUE", // required
|
|
54
|
+
* },
|
|
55
|
+
* queryStringExists: "STRING_VALUE",
|
|
56
|
+
* },
|
|
57
|
+
* };
|
|
58
|
+
* const command = new UpdateLinkRoutingRuleCommand(input);
|
|
59
|
+
* const response = await client.send(command);
|
|
60
|
+
* // { // UpdateLinkRoutingRuleResponse
|
|
61
|
+
* // ruleId: "STRING_VALUE", // required
|
|
62
|
+
* // status: "CREATION_IN_PROGRESS" || "ACTIVE" || "UPDATE_IN_PROGRESS" || "DELETION_IN_PROGRESS" || "DELETED" || "FAILED", // required
|
|
63
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* @param UpdateLinkRoutingRuleCommandInput - {@link UpdateLinkRoutingRuleCommandInput}
|
|
69
|
+
* @returns {@link UpdateLinkRoutingRuleCommandOutput}
|
|
70
|
+
* @see {@link UpdateLinkRoutingRuleCommandInput} for command's `input` shape.
|
|
71
|
+
* @see {@link UpdateLinkRoutingRuleCommandOutput} for command's `response` shape.
|
|
72
|
+
* @see {@link RTBFabricClientResolvedConfig | config} for RTBFabricClient's `config` shape.
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
75
|
+
* <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ConflictException} (client fault)
|
|
78
|
+
* <p>The request could not be completed because of a conflict in the current state of the resource.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link InternalServerException} (server fault)
|
|
81
|
+
* <p>The request could not be completed because of an internal server error. Try your call again.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
84
|
+
* <p>The request could not be completed because the resource does not exist.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
87
|
+
* <p>The request was denied due to request throttling.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ValidationException} (client fault)
|
|
90
|
+
* <p>The request could not be completed because it fails satisfy the constraints specified by the service.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link RTBFabricServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from RTBFabric service.</p>
|
|
94
|
+
*
|
|
95
|
+
*
|
|
96
|
+
* @example Update a link routing rule
|
|
97
|
+
* ```javascript
|
|
98
|
+
* // Update the conditions of a routing rule
|
|
99
|
+
* const input = {
|
|
100
|
+
* conditions: {
|
|
101
|
+
* hostHeader: "api.customer.com",
|
|
102
|
+
* pathPrefix: "/openrtb/"
|
|
103
|
+
* },
|
|
104
|
+
* gatewayId: "rtb-gw-12345678",
|
|
105
|
+
* linkId: "link-87654321",
|
|
106
|
+
* priority: 20,
|
|
107
|
+
* ruleId: "rule-abc123def456"
|
|
108
|
+
* };
|
|
109
|
+
* const command = new UpdateLinkRoutingRuleCommand(input);
|
|
110
|
+
* const response = await client.send(command);
|
|
111
|
+
* /* response is
|
|
112
|
+
* {
|
|
113
|
+
* ruleId: "rule-abc123def456",
|
|
114
|
+
* status: "UPDATE_IN_PROGRESS",
|
|
115
|
+
* updatedAt: "2024-01-01T12:30:00Z"
|
|
116
|
+
* }
|
|
117
|
+
* *\/
|
|
118
|
+
* ```
|
|
119
|
+
*
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
export declare class UpdateLinkRoutingRuleCommand extends UpdateLinkRoutingRuleCommand_base {
|
|
123
|
+
/** @internal type navigation helper, not in runtime. */
|
|
124
|
+
protected static __types: {
|
|
125
|
+
api: {
|
|
126
|
+
input: UpdateLinkRoutingRuleRequest;
|
|
127
|
+
output: UpdateLinkRoutingRuleResponse;
|
|
128
|
+
};
|
|
129
|
+
sdk: {
|
|
130
|
+
input: UpdateLinkRoutingRuleCommandInput;
|
|
131
|
+
output: UpdateLinkRoutingRuleCommandOutput;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { UpdateRequesterGatewayRequest, UpdateRequesterGatewayResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface UpdateRequesterGatewayCommandInput extends UpdateRequesterGatew
|
|
|
22
22
|
export interface UpdateRequesterGatewayCommandOutput extends UpdateRequesterGatewayResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const UpdateRequesterGatewayCommand_base: {
|
|
25
|
-
new (input: UpdateRequesterGatewayCommandInput): import("@smithy/
|
|
26
|
-
new (input: UpdateRequesterGatewayCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: UpdateRequesterGatewayCommandInput): import("@smithy/core/client").CommandImpl<UpdateRequesterGatewayCommandInput, UpdateRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateRequesterGatewayCommandInput): import("@smithy/core/client").CommandImpl<UpdateRequesterGatewayCommandInput, UpdateRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Updates a requester gateway.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { UpdateResponderGatewayRequest, UpdateResponderGatewayResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface UpdateResponderGatewayCommandInput extends UpdateResponderGatew
|
|
|
22
22
|
export interface UpdateResponderGatewayCommandOutput extends UpdateResponderGatewayResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const UpdateResponderGatewayCommand_base: {
|
|
25
|
-
new (input: UpdateResponderGatewayCommandInput): import("@smithy/
|
|
26
|
-
new (input: UpdateResponderGatewayCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: UpdateResponderGatewayCommandInput): import("@smithy/core/client").CommandImpl<UpdateResponderGatewayCommandInput, UpdateResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateResponderGatewayCommandInput): import("@smithy/core/client").CommandImpl<UpdateResponderGatewayCommandInput, UpdateResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Updates a responder gateway.</p>
|
|
@@ -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 type { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import type { HttpHandlerExtensionConfiguration } from "@smithy/
|
|
2
|
+
import type { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
3
3
|
import type { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException } from "@smithy/
|
|
1
|
+
import { type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException } from "@smithy/core/client";
|
|
2
2
|
export type { __ServiceExceptionOptions };
|
|
3
3
|
export { __ServiceException };
|
|
4
4
|
/**
|
|
@@ -84,6 +84,21 @@ export declare const LinkStatus: {
|
|
|
84
84
|
* @public
|
|
85
85
|
*/
|
|
86
86
|
export type LinkStatus = (typeof LinkStatus)[keyof typeof LinkStatus];
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* @enum
|
|
90
|
+
*/
|
|
91
|
+
export declare const CertificateAssociationStatus: {
|
|
92
|
+
readonly ASSOCIATED: "ASSOCIATED";
|
|
93
|
+
readonly DISASSOCIATED: "DISASSOCIATED";
|
|
94
|
+
readonly FAILED: "FAILED";
|
|
95
|
+
readonly PENDING_ASSOCIATION: "PENDING_ASSOCIATION";
|
|
96
|
+
readonly PENDING_DISASSOCIATION: "PENDING_DISASSOCIATION";
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export type CertificateAssociationStatus = (typeof CertificateAssociationStatus)[keyof typeof CertificateAssociationStatus];
|
|
87
102
|
/**
|
|
88
103
|
* @public
|
|
89
104
|
* @enum
|
|
@@ -96,6 +111,22 @@ export declare const Protocol: {
|
|
|
96
111
|
* @public
|
|
97
112
|
*/
|
|
98
113
|
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
* @enum
|
|
117
|
+
*/
|
|
118
|
+
export declare const RuleStatus: {
|
|
119
|
+
readonly ACTIVE: "ACTIVE";
|
|
120
|
+
readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
|
|
121
|
+
readonly DELETED: "DELETED";
|
|
122
|
+
readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS";
|
|
123
|
+
readonly FAILED: "FAILED";
|
|
124
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
export type RuleStatus = (typeof RuleStatus)[keyof typeof RuleStatus];
|
|
99
130
|
/**
|
|
100
131
|
* @public
|
|
101
132
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/
|
|
1
|
+
import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
|
|
2
2
|
import { RTBFabricServiceException as __BaseException } from "./RTBFabricServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
|