@aws-sdk/client-rtbfabric 3.952.0 → 3.953.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/dist-cjs/index.js +363 -260
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AcceptLinkCommand.js +2 -2
- package/dist-es/commands/CreateInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/CreateLinkCommand.js +2 -2
- 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/DeleteOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/DeleteRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteResponderGatewayCommand.js +2 -2
- package/dist-es/commands/GetInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/GetLinkCommand.js +2 -2
- 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/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/UpdateRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/UpdateResponderGatewayCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +214 -220
- package/dist-types/RTBFabricClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +110 -126
- package/dist-types/ts3.4/RTBFabricClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +109 -127
- package/package.json +35 -35
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.rtbfabric",
|
|
32
|
+
version: "2023-05-15",
|
|
33
|
+
serviceTarget: "RTBFabric",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "RTBFabric",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AcceptLink } from "../schemas/schemas_0";
|
|
4
|
+
import { AcceptLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AcceptLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AcceptLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "AcceptLink", {})
|
|
13
13
|
.n("RTBFabricClient", "AcceptLinkCommand")
|
|
14
|
-
.sc(AcceptLink)
|
|
14
|
+
.sc(AcceptLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateInboundExternalLink } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateInboundExternalLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateInboundExternalLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateInboundExternalLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "CreateInboundExternalLink", {})
|
|
13
13
|
.n("RTBFabricClient", "CreateInboundExternalLinkCommand")
|
|
14
|
-
.sc(CreateInboundExternalLink)
|
|
14
|
+
.sc(CreateInboundExternalLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLink } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "CreateLink", {})
|
|
13
13
|
.n("RTBFabricClient", "CreateLinkCommand")
|
|
14
|
-
.sc(CreateLink)
|
|
14
|
+
.sc(CreateLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateOutboundExternalLink } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateOutboundExternalLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateOutboundExternalLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateOutboundExternalLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "CreateOutboundExternalLink", {})
|
|
13
13
|
.n("RTBFabricClient", "CreateOutboundExternalLinkCommand")
|
|
14
|
-
.sc(CreateOutboundExternalLink)
|
|
14
|
+
.sc(CreateOutboundExternalLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRequesterGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRequesterGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRequesterGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRequesterGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "CreateRequesterGateway", {})
|
|
13
13
|
.n("RTBFabricClient", "CreateRequesterGatewayCommand")
|
|
14
|
-
.sc(CreateRequesterGateway)
|
|
14
|
+
.sc(CreateRequesterGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateResponderGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateResponderGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateResponderGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateResponderGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "CreateResponderGateway", {})
|
|
13
13
|
.n("RTBFabricClient", "CreateResponderGatewayCommand")
|
|
14
|
-
.sc(CreateResponderGateway)
|
|
14
|
+
.sc(CreateResponderGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteInboundExternalLink } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteInboundExternalLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteInboundExternalLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteInboundExternalLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "DeleteInboundExternalLink", {})
|
|
13
13
|
.n("RTBFabricClient", "DeleteInboundExternalLinkCommand")
|
|
14
|
-
.sc(DeleteInboundExternalLink)
|
|
14
|
+
.sc(DeleteInboundExternalLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLink } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "DeleteLink", {})
|
|
13
13
|
.n("RTBFabricClient", "DeleteLinkCommand")
|
|
14
|
-
.sc(DeleteLink)
|
|
14
|
+
.sc(DeleteLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteOutboundExternalLink } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteOutboundExternalLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteOutboundExternalLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteOutboundExternalLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "DeleteOutboundExternalLink", {})
|
|
13
13
|
.n("RTBFabricClient", "DeleteOutboundExternalLinkCommand")
|
|
14
|
-
.sc(DeleteOutboundExternalLink)
|
|
14
|
+
.sc(DeleteOutboundExternalLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRequesterGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRequesterGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRequesterGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRequesterGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "DeleteRequesterGateway", {})
|
|
13
13
|
.n("RTBFabricClient", "DeleteRequesterGatewayCommand")
|
|
14
|
-
.sc(DeleteRequesterGateway)
|
|
14
|
+
.sc(DeleteRequesterGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteResponderGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteResponderGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteResponderGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteResponderGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "DeleteResponderGateway", {})
|
|
13
13
|
.n("RTBFabricClient", "DeleteResponderGatewayCommand")
|
|
14
|
-
.sc(DeleteResponderGateway)
|
|
14
|
+
.sc(DeleteResponderGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetInboundExternalLink } from "../schemas/schemas_0";
|
|
4
|
+
import { GetInboundExternalLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetInboundExternalLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetInboundExternalLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "GetInboundExternalLink", {})
|
|
13
13
|
.n("RTBFabricClient", "GetInboundExternalLinkCommand")
|
|
14
|
-
.sc(GetInboundExternalLink)
|
|
14
|
+
.sc(GetInboundExternalLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetLink } from "../schemas/schemas_0";
|
|
4
|
+
import { GetLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "GetLink", {})
|
|
13
13
|
.n("RTBFabricClient", "GetLinkCommand")
|
|
14
|
-
.sc(GetLink)
|
|
14
|
+
.sc(GetLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetOutboundExternalLink } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOutboundExternalLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOutboundExternalLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOutboundExternalLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "GetOutboundExternalLink", {})
|
|
13
13
|
.n("RTBFabricClient", "GetOutboundExternalLinkCommand")
|
|
14
|
-
.sc(GetOutboundExternalLink)
|
|
14
|
+
.sc(GetOutboundExternalLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRequesterGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRequesterGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRequesterGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRequesterGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "GetRequesterGateway", {})
|
|
13
13
|
.n("RTBFabricClient", "GetRequesterGatewayCommand")
|
|
14
|
-
.sc(GetRequesterGateway)
|
|
14
|
+
.sc(GetRequesterGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetResponderGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResponderGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResponderGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetResponderGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "GetResponderGateway", {})
|
|
13
13
|
.n("RTBFabricClient", "GetResponderGatewayCommand")
|
|
14
|
-
.sc(GetResponderGateway)
|
|
14
|
+
.sc(GetResponderGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListLinks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLinks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLinksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLinksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "ListLinks", {})
|
|
13
13
|
.n("RTBFabricClient", "ListLinksCommand")
|
|
14
|
-
.sc(ListLinks)
|
|
14
|
+
.sc(ListLinks$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRequesterGateways } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRequesterGateways$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRequesterGatewaysCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRequesterGatewaysCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "ListRequesterGateways", {})
|
|
13
13
|
.n("RTBFabricClient", "ListRequesterGatewaysCommand")
|
|
14
|
-
.sc(ListRequesterGateways)
|
|
14
|
+
.sc(ListRequesterGateways$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListResponderGateways } from "../schemas/schemas_0";
|
|
4
|
+
import { ListResponderGateways$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListResponderGatewaysCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListResponderGatewaysCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "ListResponderGateways", {})
|
|
13
13
|
.n("RTBFabricClient", "ListResponderGatewaysCommand")
|
|
14
|
-
.sc(ListResponderGateways)
|
|
14
|
+
.sc(ListResponderGateways$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "ListTagsForResource", {})
|
|
13
13
|
.n("RTBFabricClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RejectLink } from "../schemas/schemas_0";
|
|
4
|
+
import { RejectLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RejectLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RejectLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "RejectLink", {})
|
|
13
13
|
.n("RTBFabricClient", "RejectLinkCommand")
|
|
14
|
-
.sc(RejectLink)
|
|
14
|
+
.sc(RejectLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "TagResource", {})
|
|
13
13
|
.n("RTBFabricClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "UntagResource", {})
|
|
13
13
|
.n("RTBFabricClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateLink } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "UpdateLink", {})
|
|
13
13
|
.n("RTBFabricClient", "UpdateLinkCommand")
|
|
14
|
-
.sc(UpdateLink)
|
|
14
|
+
.sc(UpdateLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateLinkModuleFlow } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateLinkModuleFlow$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateLinkModuleFlowCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateLinkModuleFlowCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "UpdateLinkModuleFlow", {})
|
|
13
13
|
.n("RTBFabricClient", "UpdateLinkModuleFlowCommand")
|
|
14
|
-
.sc(UpdateLinkModuleFlow)
|
|
14
|
+
.sc(UpdateLinkModuleFlow$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateRequesterGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateRequesterGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateRequesterGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateRequesterGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "UpdateRequesterGateway", {})
|
|
13
13
|
.n("RTBFabricClient", "UpdateRequesterGatewayCommand")
|
|
14
|
-
.sc(UpdateRequesterGateway)
|
|
14
|
+
.sc(UpdateRequesterGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateResponderGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateResponderGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateResponderGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateResponderGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RTBFabric", "UpdateResponderGateway", {})
|
|
13
13
|
.n("RTBFabricClient", "UpdateResponderGatewayCommand")
|
|
14
|
-
.sc(UpdateResponderGateway)
|
|
14
|
+
.sc(UpdateResponderGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.rtbfabric",
|
|
29
|
+
version: "2023-05-15",
|
|
30
|
+
serviceTarget: "RTBFabric",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "RTBFabric",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|