@aws-sdk/client-rtbfabric 3.928.0 → 3.930.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 +1115 -1450
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/RTBFabricClient.js +2 -0
- package/dist-es/commands/AcceptLinkCommand.js +3 -9
- package/dist-es/commands/CreateInboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/CreateLinkCommand.js +3 -9
- package/dist-es/commands/CreateOutboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/CreateRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/CreateResponderGatewayCommand.js +3 -10
- package/dist-es/commands/DeleteInboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/DeleteLinkCommand.js +3 -9
- package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/DeleteRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/DeleteResponderGatewayCommand.js +3 -9
- package/dist-es/commands/GetInboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/GetLinkCommand.js +3 -9
- package/dist-es/commands/GetOutboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/GetRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/GetResponderGatewayCommand.js +3 -10
- package/dist-es/commands/ListLinksCommand.js +3 -9
- package/dist-es/commands/ListRequesterGatewaysCommand.js +3 -9
- package/dist-es/commands/ListResponderGatewaysCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/RejectLinkCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateLinkCommand.js +3 -9
- package/dist-es/commands/UpdateLinkModuleFlowCommand.js +3 -9
- package/dist-es/commands/UpdateRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/UpdateResponderGatewayCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -76
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1051 -0
- package/dist-types/RTBFabricClient.d.ts +10 -1
- package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +17 -1
- package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +29 -0
- package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +8 -0
- package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +37 -27
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +127 -0
- package/dist-types/ts3.4/RTBFabricClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +5 -24
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +133 -0
- package/package.json +34 -35
- package/dist-es/protocols/Aws_restJson1.js +0 -1163
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -245
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -329
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AcceptLinkCommandInput, AcceptLinkCommandOutput } from "./commands/AcceptLinkCommand";
|
|
11
11
|
import { CreateInboundExternalLinkCommandInput, CreateInboundExternalLinkCommandOutput } from "./commands/CreateInboundExternalLinkCommand";
|
|
@@ -168,6 +168,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
168
168
|
* Optional extensions
|
|
169
169
|
*/
|
|
170
170
|
extensions?: RuntimeExtension[];
|
|
171
|
+
/**
|
|
172
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
173
|
+
* may be overridden. A default will always be set by the client.
|
|
174
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
175
|
+
* the client.
|
|
176
|
+
* @alpha
|
|
177
|
+
*
|
|
178
|
+
*/
|
|
179
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
171
180
|
/**
|
|
172
181
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
173
182
|
*/
|
|
@@ -52,6 +52,14 @@ declare const CreateInboundExternalLinkCommand_base: {
|
|
|
52
52
|
* ],
|
|
53
53
|
* customerProvidedId: "STRING_VALUE",
|
|
54
54
|
* },
|
|
55
|
+
* logSettings: { // LinkLogSettings
|
|
56
|
+
* applicationLogs: { // LinkApplicationLogConfiguration
|
|
57
|
+
* sampling: { // LinkApplicationLogSampling
|
|
58
|
+
* errorLog: Number("double"), // required
|
|
59
|
+
* filterLog: Number("double"), // required
|
|
60
|
+
* },
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
55
63
|
* tags: { // TagsMap
|
|
56
64
|
* "<keys>": "STRING_VALUE",
|
|
57
65
|
* },
|
|
@@ -103,7 +111,15 @@ declare const CreateInboundExternalLinkCommand_base: {
|
|
|
103
111
|
* // Create an inbound external link for a responder gateway
|
|
104
112
|
* const input = {
|
|
105
113
|
* clientToken: "randomClientToken",
|
|
106
|
-
* gatewayId: "rtb-gw-12345678"
|
|
114
|
+
* gatewayId: "rtb-gw-12345678",
|
|
115
|
+
* logSettings: {
|
|
116
|
+
* applicationLogs: {
|
|
117
|
+
* sampling: {
|
|
118
|
+
* errorLog: 100.0,
|
|
119
|
+
* filterLog: 0.0
|
|
120
|
+
* }
|
|
121
|
+
* }
|
|
122
|
+
* }
|
|
107
123
|
* };
|
|
108
124
|
* const command = new CreateInboundExternalLinkCommand(input);
|
|
109
125
|
* const response = await client.send(command);
|
|
@@ -39,7 +39,28 @@ declare const CreateOutboundExternalLinkCommand_base: {
|
|
|
39
39
|
* const input = { // CreateOutboundExternalLinkRequest
|
|
40
40
|
* clientToken: "STRING_VALUE", // required
|
|
41
41
|
* gatewayId: "STRING_VALUE", // required
|
|
42
|
+
* attributes: { // LinkAttributes
|
|
43
|
+
* responderErrorMasking: [ // ResponderErrorMasking
|
|
44
|
+
* { // ResponderErrorMaskingForHttpCode
|
|
45
|
+
* httpCode: "STRING_VALUE", // required
|
|
46
|
+
* action: "NO_BID" || "PASSTHROUGH", // required
|
|
47
|
+
* loggingTypes: [ // ResponderErrorMaskingLoggingTypes // required
|
|
48
|
+
* "NONE" || "METRIC" || "RESPONSE",
|
|
49
|
+
* ],
|
|
50
|
+
* responseLoggingPercentage: Number("float"),
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* customerProvidedId: "STRING_VALUE",
|
|
54
|
+
* },
|
|
42
55
|
* publicEndpoint: "STRING_VALUE", // required
|
|
56
|
+
* logSettings: { // LinkLogSettings
|
|
57
|
+
* applicationLogs: { // LinkApplicationLogConfiguration
|
|
58
|
+
* sampling: { // LinkApplicationLogSampling
|
|
59
|
+
* errorLog: Number("double"), // required
|
|
60
|
+
* filterLog: Number("double"), // required
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* },
|
|
43
64
|
* tags: { // TagsMap
|
|
44
65
|
* "<keys>": "STRING_VALUE",
|
|
45
66
|
* },
|
|
@@ -88,6 +109,14 @@ declare const CreateOutboundExternalLinkCommand_base: {
|
|
|
88
109
|
* const input = {
|
|
89
110
|
* clientToken: "12345678-1234-1234-1234-123456789012",
|
|
90
111
|
* gatewayId: "rtb-gw-12345678",
|
|
112
|
+
* logSettings: {
|
|
113
|
+
* applicationLogs: {
|
|
114
|
+
* sampling: {
|
|
115
|
+
* errorLog: 100.0,
|
|
116
|
+
* filterLog: 0.0
|
|
117
|
+
* }
|
|
118
|
+
* }
|
|
119
|
+
* },
|
|
91
120
|
* publicEndpoint: "https://external-responder.example.com"
|
|
92
121
|
* };
|
|
93
122
|
* const command = new CreateOutboundExternalLinkCommand(input);
|
|
@@ -153,6 +153,14 @@ declare const GetInboundExternalLinkCommand_base: {
|
|
|
153
153
|
* // tags: { // TagsMap
|
|
154
154
|
* // "<keys>": "STRING_VALUE",
|
|
155
155
|
* // },
|
|
156
|
+
* // logSettings: { // LinkLogSettings
|
|
157
|
+
* // applicationLogs: { // LinkApplicationLogConfiguration
|
|
158
|
+
* // sampling: { // LinkApplicationLogSampling
|
|
159
|
+
* // errorLog: Number("double"), // required
|
|
160
|
+
* // filterLog: Number("double"), // required
|
|
161
|
+
* // },
|
|
162
|
+
* // },
|
|
163
|
+
* // },
|
|
156
164
|
* // };
|
|
157
165
|
*
|
|
158
166
|
* ```
|
|
@@ -52,6 +52,14 @@ declare const GetOutboundExternalLinkCommand_base: {
|
|
|
52
52
|
* // tags: { // TagsMap
|
|
53
53
|
* // "<keys>": "STRING_VALUE",
|
|
54
54
|
* // },
|
|
55
|
+
* // logSettings: { // LinkLogSettings
|
|
56
|
+
* // applicationLogs: { // LinkApplicationLogConfiguration
|
|
57
|
+
* // sampling: { // LinkApplicationLogSampling
|
|
58
|
+
* // errorLog: Number("double"), // required
|
|
59
|
+
* // filterLog: Number("double"), // required
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // },
|
|
55
63
|
* // };
|
|
56
64
|
*
|
|
57
65
|
* ```
|
|
@@ -225,12 +225,15 @@ export declare namespace Action {
|
|
|
225
225
|
headerTag?: never;
|
|
226
226
|
$unknown: [string, any];
|
|
227
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* @deprecated unused in schema-serde mode.
|
|
230
|
+
*
|
|
231
|
+
*/
|
|
228
232
|
interface Visitor<T> {
|
|
229
233
|
noBid: (value: NoBidAction) => T;
|
|
230
234
|
headerTag: (value: HeaderTagAction) => T;
|
|
231
235
|
_: (name: string, value: any) => T;
|
|
232
236
|
}
|
|
233
|
-
const visit: <T>(value: Action, visitor: Visitor<T>) => T;
|
|
234
237
|
}
|
|
235
238
|
/**
|
|
236
239
|
* <p>Describes the criteria for a filter.</p>
|
|
@@ -356,13 +359,16 @@ export declare namespace ModuleParameters {
|
|
|
356
359
|
rateLimiter?: never;
|
|
357
360
|
$unknown: [string, any];
|
|
358
361
|
}
|
|
362
|
+
/**
|
|
363
|
+
* @deprecated unused in schema-serde mode.
|
|
364
|
+
*
|
|
365
|
+
*/
|
|
359
366
|
interface Visitor<T> {
|
|
360
367
|
noBid: (value: NoBidModuleParameters) => T;
|
|
361
368
|
openRtbAttribute: (value: OpenRtbAttributeModuleParameters) => T;
|
|
362
369
|
rateLimiter: (value: RateLimiterModuleParameters) => T;
|
|
363
370
|
_: (name: string, value: any) => T;
|
|
364
371
|
}
|
|
365
|
-
const visit: <T>(value: ModuleParameters, visitor: Visitor<T>) => T;
|
|
366
372
|
}
|
|
367
373
|
/**
|
|
368
374
|
* <p>Describes the configuration of a module.</p>
|
|
@@ -577,6 +583,11 @@ export interface CreateInboundExternalLinkRequest {
|
|
|
577
583
|
* @public
|
|
578
584
|
*/
|
|
579
585
|
attributes?: LinkAttributes | undefined;
|
|
586
|
+
/**
|
|
587
|
+
* <p>Describes the settings for a link log.</p>
|
|
588
|
+
* @public
|
|
589
|
+
*/
|
|
590
|
+
logSettings: LinkLogSettings | undefined;
|
|
580
591
|
/**
|
|
581
592
|
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
582
593
|
* @public
|
|
@@ -729,11 +740,21 @@ export interface CreateOutboundExternalLinkRequest {
|
|
|
729
740
|
* @public
|
|
730
741
|
*/
|
|
731
742
|
gatewayId: string | undefined;
|
|
743
|
+
/**
|
|
744
|
+
* <p>Describes the attributes of a link.</p>
|
|
745
|
+
* @public
|
|
746
|
+
*/
|
|
747
|
+
attributes?: LinkAttributes | undefined;
|
|
732
748
|
/**
|
|
733
749
|
* <p>The public endpoint of the link.</p>
|
|
734
750
|
* @public
|
|
735
751
|
*/
|
|
736
752
|
publicEndpoint: string | undefined;
|
|
753
|
+
/**
|
|
754
|
+
* <p>Describes the settings for a link log.</p>
|
|
755
|
+
* @public
|
|
756
|
+
*/
|
|
757
|
+
logSettings: LinkLogSettings | undefined;
|
|
737
758
|
/**
|
|
738
759
|
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
739
760
|
* @public
|
|
@@ -905,12 +926,15 @@ export declare namespace ManagedEndpointConfiguration {
|
|
|
905
926
|
eksEndpoints?: never;
|
|
906
927
|
$unknown: [string, any];
|
|
907
928
|
}
|
|
929
|
+
/**
|
|
930
|
+
* @deprecated unused in schema-serde mode.
|
|
931
|
+
*
|
|
932
|
+
*/
|
|
908
933
|
interface Visitor<T> {
|
|
909
934
|
autoScalingGroups: (value: AutoScalingGroupsConfiguration) => T;
|
|
910
935
|
eksEndpoints: (value: EksEndpointsConfiguration) => T;
|
|
911
936
|
_: (name: string, value: any) => T;
|
|
912
937
|
}
|
|
913
|
-
const visit: <T>(value: ManagedEndpointConfiguration, visitor: Visitor<T>) => T;
|
|
914
938
|
}
|
|
915
939
|
/**
|
|
916
940
|
* @public
|
|
@@ -1564,6 +1588,11 @@ export interface GetInboundExternalLinkResponse {
|
|
|
1564
1588
|
* @public
|
|
1565
1589
|
*/
|
|
1566
1590
|
tags?: Record<string, string> | undefined;
|
|
1591
|
+
/**
|
|
1592
|
+
* <p>Describes the settings for a link log.</p>
|
|
1593
|
+
* @public
|
|
1594
|
+
*/
|
|
1595
|
+
logSettings?: LinkLogSettings | undefined;
|
|
1567
1596
|
}
|
|
1568
1597
|
/**
|
|
1569
1598
|
* @public
|
|
@@ -1619,6 +1648,11 @@ export interface GetOutboundExternalLinkResponse {
|
|
|
1619
1648
|
* @public
|
|
1620
1649
|
*/
|
|
1621
1650
|
tags?: Record<string, string> | undefined;
|
|
1651
|
+
/**
|
|
1652
|
+
* <p>Describes the settings for a link log.</p>
|
|
1653
|
+
* @public
|
|
1654
|
+
*/
|
|
1655
|
+
logSettings?: LinkLogSettings | undefined;
|
|
1622
1656
|
}
|
|
1623
1657
|
/**
|
|
1624
1658
|
* @public
|
|
@@ -2010,27 +2044,3 @@ export interface UntagResourceRequest {
|
|
|
2010
2044
|
*/
|
|
2011
2045
|
export interface UntagResourceResponse {
|
|
2012
2046
|
}
|
|
2013
|
-
/**
|
|
2014
|
-
* @internal
|
|
2015
|
-
*/
|
|
2016
|
-
export declare const EksEndpointsConfigurationFilterSensitiveLog: (obj: EksEndpointsConfiguration) => any;
|
|
2017
|
-
/**
|
|
2018
|
-
* @internal
|
|
2019
|
-
*/
|
|
2020
|
-
export declare const ManagedEndpointConfigurationFilterSensitiveLog: (obj: ManagedEndpointConfiguration) => any;
|
|
2021
|
-
/**
|
|
2022
|
-
* @internal
|
|
2023
|
-
*/
|
|
2024
|
-
export declare const TrustStoreConfigurationFilterSensitiveLog: (obj: TrustStoreConfiguration) => any;
|
|
2025
|
-
/**
|
|
2026
|
-
* @internal
|
|
2027
|
-
*/
|
|
2028
|
-
export declare const CreateResponderGatewayRequestFilterSensitiveLog: (obj: CreateResponderGatewayRequest) => any;
|
|
2029
|
-
/**
|
|
2030
|
-
* @internal
|
|
2031
|
-
*/
|
|
2032
|
-
export declare const GetResponderGatewayResponseFilterSensitiveLog: (obj: GetResponderGatewayResponse) => any;
|
|
2033
|
-
/**
|
|
2034
|
-
* @internal
|
|
2035
|
-
*/
|
|
2036
|
-
export declare const UpdateResponderGatewayRequestFilterSensitiveLog: (obj: UpdateResponderGatewayRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -8,16 +8,13 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
8
8
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
-
logger
|
|
12
|
-
/**
|
|
13
|
-
* @internal
|
|
14
|
-
*/
|
|
15
|
-
?: import("@smithy/types").Logger;
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
16
12
|
}) => import("@smithy/types").EndpointV2;
|
|
17
13
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
18
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
|
|
19
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
20
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
21
18
|
serviceId: string;
|
|
22
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var Base64EncodedCertificateChain: StaticSimpleSchema;
|
|
3
|
+
export declare var AcceptLinkRequest: StaticStructureSchema;
|
|
4
|
+
export declare var AcceptLinkResponse: StaticStructureSchema;
|
|
5
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
6
|
+
export declare var AutoScalingGroupsConfiguration: StaticStructureSchema;
|
|
7
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
8
|
+
export declare var CreateInboundExternalLinkRequest: StaticStructureSchema;
|
|
9
|
+
export declare var CreateInboundExternalLinkResponse: StaticStructureSchema;
|
|
10
|
+
export declare var CreateLinkRequest: StaticStructureSchema;
|
|
11
|
+
export declare var CreateLinkResponse: StaticStructureSchema;
|
|
12
|
+
export declare var CreateOutboundExternalLinkRequest: StaticStructureSchema;
|
|
13
|
+
export declare var CreateOutboundExternalLinkResponse: StaticStructureSchema;
|
|
14
|
+
export declare var CreateRequesterGatewayRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateRequesterGatewayResponse: StaticStructureSchema;
|
|
16
|
+
export declare var CreateResponderGatewayRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateResponderGatewayResponse: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteInboundExternalLinkRequest: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteInboundExternalLinkResponse: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteLinkRequest: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteLinkResponse: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteOutboundExternalLinkRequest: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteOutboundExternalLinkResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteRequesterGatewayRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteRequesterGatewayResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteResponderGatewayRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteResponderGatewayResponse: StaticStructureSchema;
|
|
28
|
+
export declare var EksEndpointsConfiguration: StaticStructureSchema;
|
|
29
|
+
export declare var Filter: StaticStructureSchema;
|
|
30
|
+
export declare var FilterCriterion: StaticStructureSchema;
|
|
31
|
+
export declare var GetInboundExternalLinkRequest: StaticStructureSchema;
|
|
32
|
+
export declare var GetInboundExternalLinkResponse: StaticStructureSchema;
|
|
33
|
+
export declare var GetLinkRequest: StaticStructureSchema;
|
|
34
|
+
export declare var GetLinkResponse: StaticStructureSchema;
|
|
35
|
+
export declare var GetOutboundExternalLinkRequest: StaticStructureSchema;
|
|
36
|
+
export declare var GetOutboundExternalLinkResponse: StaticStructureSchema;
|
|
37
|
+
export declare var GetRequesterGatewayRequest: StaticStructureSchema;
|
|
38
|
+
export declare var GetRequesterGatewayResponse: StaticStructureSchema;
|
|
39
|
+
export declare var GetResponderGatewayRequest: StaticStructureSchema;
|
|
40
|
+
export declare var GetResponderGatewayResponse: StaticStructureSchema;
|
|
41
|
+
export declare var HeaderTagAction: StaticStructureSchema;
|
|
42
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
43
|
+
export declare var LinkApplicationLogConfiguration: StaticStructureSchema;
|
|
44
|
+
export declare var LinkApplicationLogSampling: StaticStructureSchema;
|
|
45
|
+
export declare var LinkAttributes: StaticStructureSchema;
|
|
46
|
+
export declare var LinkLogSettings: StaticStructureSchema;
|
|
47
|
+
export declare var ListLinksRequest: StaticStructureSchema;
|
|
48
|
+
export declare var ListLinksResponse: StaticStructureSchema;
|
|
49
|
+
export declare var ListLinksResponseStructure: StaticStructureSchema;
|
|
50
|
+
export declare var ListRequesterGatewaysRequest: StaticStructureSchema;
|
|
51
|
+
export declare var ListRequesterGatewaysResponse: StaticStructureSchema;
|
|
52
|
+
export declare var ListResponderGatewaysRequest: StaticStructureSchema;
|
|
53
|
+
export declare var ListResponderGatewaysResponse: StaticStructureSchema;
|
|
54
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
55
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
56
|
+
export declare var ModuleConfiguration: StaticStructureSchema;
|
|
57
|
+
export declare var NoBidAction: StaticStructureSchema;
|
|
58
|
+
export declare var NoBidModuleParameters: StaticStructureSchema;
|
|
59
|
+
export declare var OpenRtbAttributeModuleParameters: StaticStructureSchema;
|
|
60
|
+
export declare var RateLimiterModuleParameters: StaticStructureSchema;
|
|
61
|
+
export declare var RejectLinkRequest: StaticStructureSchema;
|
|
62
|
+
export declare var RejectLinkResponse: StaticStructureSchema;
|
|
63
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
64
|
+
export declare var ResponderErrorMaskingForHttpCode: StaticStructureSchema;
|
|
65
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
66
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
67
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
68
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
69
|
+
export declare var TrustStoreConfiguration: StaticStructureSchema;
|
|
70
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
71
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
72
|
+
export declare var UpdateLinkModuleFlowRequest: StaticStructureSchema;
|
|
73
|
+
export declare var UpdateLinkModuleFlowResponse: StaticStructureSchema;
|
|
74
|
+
export declare var UpdateLinkRequest: StaticStructureSchema;
|
|
75
|
+
export declare var UpdateLinkResponse: StaticStructureSchema;
|
|
76
|
+
export declare var UpdateRequesterGatewayRequest: StaticStructureSchema;
|
|
77
|
+
export declare var UpdateRequesterGatewayResponse: StaticStructureSchema;
|
|
78
|
+
export declare var UpdateResponderGatewayRequest: StaticStructureSchema;
|
|
79
|
+
export declare var UpdateResponderGatewayResponse: StaticStructureSchema;
|
|
80
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
81
|
+
export declare var __Unit: "unit";
|
|
82
|
+
export declare var RTBFabricServiceException: StaticErrorSchema;
|
|
83
|
+
export declare var AutoScalingGroupNameList: number;
|
|
84
|
+
export declare var CertificateAuthorityCertificates: StaticListSchema;
|
|
85
|
+
export declare var FilterConfiguration: StaticListSchema;
|
|
86
|
+
export declare var FilterCriteria: StaticListSchema;
|
|
87
|
+
export declare var FlowModuleNameList: number;
|
|
88
|
+
export declare var GatewayIdList: number;
|
|
89
|
+
export declare var LinkList: StaticListSchema;
|
|
90
|
+
export declare var ModuleConfigurationList: StaticListSchema;
|
|
91
|
+
export declare var ResponderErrorMasking: StaticListSchema;
|
|
92
|
+
export declare var ResponderErrorMaskingLoggingTypes: number;
|
|
93
|
+
export declare var SecurityGroupIdList: number;
|
|
94
|
+
export declare var SubnetIdList: number;
|
|
95
|
+
export declare var TagKeyList: number;
|
|
96
|
+
export declare var ValueList: number;
|
|
97
|
+
export declare var TagsMap: number;
|
|
98
|
+
export declare var Action: StaticStructureSchema;
|
|
99
|
+
export declare var ManagedEndpointConfiguration: StaticStructureSchema;
|
|
100
|
+
export declare var ModuleParameters: StaticStructureSchema;
|
|
101
|
+
export declare var AcceptLink: StaticOperationSchema;
|
|
102
|
+
export declare var CreateInboundExternalLink: StaticOperationSchema;
|
|
103
|
+
export declare var CreateLink: StaticOperationSchema;
|
|
104
|
+
export declare var CreateOutboundExternalLink: StaticOperationSchema;
|
|
105
|
+
export declare var CreateRequesterGateway: StaticOperationSchema;
|
|
106
|
+
export declare var CreateResponderGateway: StaticOperationSchema;
|
|
107
|
+
export declare var DeleteInboundExternalLink: StaticOperationSchema;
|
|
108
|
+
export declare var DeleteLink: StaticOperationSchema;
|
|
109
|
+
export declare var DeleteOutboundExternalLink: StaticOperationSchema;
|
|
110
|
+
export declare var DeleteRequesterGateway: StaticOperationSchema;
|
|
111
|
+
export declare var DeleteResponderGateway: StaticOperationSchema;
|
|
112
|
+
export declare var GetInboundExternalLink: StaticOperationSchema;
|
|
113
|
+
export declare var GetLink: StaticOperationSchema;
|
|
114
|
+
export declare var GetOutboundExternalLink: StaticOperationSchema;
|
|
115
|
+
export declare var GetRequesterGateway: StaticOperationSchema;
|
|
116
|
+
export declare var GetResponderGateway: StaticOperationSchema;
|
|
117
|
+
export declare var ListLinks: StaticOperationSchema;
|
|
118
|
+
export declare var ListRequesterGateways: StaticOperationSchema;
|
|
119
|
+
export declare var ListResponderGateways: StaticOperationSchema;
|
|
120
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
121
|
+
export declare var RejectLink: StaticOperationSchema;
|
|
122
|
+
export declare var TagResource: StaticOperationSchema;
|
|
123
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
124
|
+
export declare var UpdateLink: StaticOperationSchema;
|
|
125
|
+
export declare var UpdateLinkModuleFlow: StaticOperationSchema;
|
|
126
|
+
export declare var UpdateRequesterGateway: StaticOperationSchema;
|
|
127
|
+
export declare var UpdateResponderGateway: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -240,6 +243,7 @@ export interface ClientDefaults
|
|
|
240
243
|
retryMode?: string | __Provider<string>;
|
|
241
244
|
logger?: __Logger;
|
|
242
245
|
extensions?: RuntimeExtension[];
|
|
246
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
243
247
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
244
248
|
}
|
|
245
249
|
export type RTBFabricClientConfigType = Partial<
|
|
@@ -81,7 +81,6 @@ export declare namespace Action {
|
|
|
81
81
|
headerTag: (value: HeaderTagAction) => T;
|
|
82
82
|
_: (name: string, value: any) => T;
|
|
83
83
|
}
|
|
84
|
-
const visit: <T>(value: Action, visitor: Visitor<T>) => T;
|
|
85
84
|
}
|
|
86
85
|
export interface FilterCriterion {
|
|
87
86
|
path: string | undefined;
|
|
@@ -140,7 +139,6 @@ export declare namespace ModuleParameters {
|
|
|
140
139
|
rateLimiter: (value: RateLimiterModuleParameters) => T;
|
|
141
140
|
_: (name: string, value: any) => T;
|
|
142
141
|
}
|
|
143
|
-
const visit: <T>(value: ModuleParameters, visitor: Visitor<T>) => T;
|
|
144
142
|
}
|
|
145
143
|
export interface ModuleConfiguration {
|
|
146
144
|
version?: string | undefined;
|
|
@@ -226,6 +224,7 @@ export interface CreateInboundExternalLinkRequest {
|
|
|
226
224
|
clientToken?: string | undefined;
|
|
227
225
|
gatewayId: string | undefined;
|
|
228
226
|
attributes?: LinkAttributes | undefined;
|
|
227
|
+
logSettings: LinkLogSettings | undefined;
|
|
229
228
|
tags?: Record<string, string> | undefined;
|
|
230
229
|
}
|
|
231
230
|
export interface CreateInboundExternalLinkResponse {
|
|
@@ -265,7 +264,9 @@ export interface CreateLinkResponse {
|
|
|
265
264
|
export interface CreateOutboundExternalLinkRequest {
|
|
266
265
|
clientToken?: string | undefined;
|
|
267
266
|
gatewayId: string | undefined;
|
|
267
|
+
attributes?: LinkAttributes | undefined;
|
|
268
268
|
publicEndpoint: string | undefined;
|
|
269
|
+
logSettings: LinkLogSettings | undefined;
|
|
269
270
|
tags?: Record<string, string> | undefined;
|
|
270
271
|
}
|
|
271
272
|
export interface CreateOutboundExternalLinkResponse {
|
|
@@ -332,10 +333,6 @@ export declare namespace ManagedEndpointConfiguration {
|
|
|
332
333
|
eksEndpoints: (value: EksEndpointsConfiguration) => T;
|
|
333
334
|
_: (name: string, value: any) => T;
|
|
334
335
|
}
|
|
335
|
-
const visit: <T>(
|
|
336
|
-
value: ManagedEndpointConfiguration,
|
|
337
|
-
visitor: Visitor<T>
|
|
338
|
-
) => T;
|
|
339
336
|
}
|
|
340
337
|
export declare const Protocol: {
|
|
341
338
|
readonly HTTP: "HTTP";
|
|
@@ -504,6 +501,7 @@ export interface GetInboundExternalLinkResponse {
|
|
|
504
501
|
createdAt?: Date | undefined;
|
|
505
502
|
updatedAt?: Date | undefined;
|
|
506
503
|
tags?: Record<string, string> | undefined;
|
|
504
|
+
logSettings?: LinkLogSettings | undefined;
|
|
507
505
|
}
|
|
508
506
|
export interface GetOutboundExternalLinkRequest {
|
|
509
507
|
gatewayId: string | undefined;
|
|
@@ -517,6 +515,7 @@ export interface GetOutboundExternalLinkResponse {
|
|
|
517
515
|
createdAt?: Date | undefined;
|
|
518
516
|
updatedAt?: Date | undefined;
|
|
519
517
|
tags?: Record<string, string> | undefined;
|
|
518
|
+
logSettings?: LinkLogSettings | undefined;
|
|
520
519
|
}
|
|
521
520
|
export interface GetRequesterGatewayRequest {
|
|
522
521
|
gatewayId: string | undefined;
|
|
@@ -612,21 +611,3 @@ export interface UntagResourceRequest {
|
|
|
612
611
|
tagKeys: string[] | undefined;
|
|
613
612
|
}
|
|
614
613
|
export interface UntagResourceResponse {}
|
|
615
|
-
export declare const EksEndpointsConfigurationFilterSensitiveLog: (
|
|
616
|
-
obj: EksEndpointsConfiguration
|
|
617
|
-
) => any;
|
|
618
|
-
export declare const ManagedEndpointConfigurationFilterSensitiveLog: (
|
|
619
|
-
obj: ManagedEndpointConfiguration
|
|
620
|
-
) => any;
|
|
621
|
-
export declare const TrustStoreConfigurationFilterSensitiveLog: (
|
|
622
|
-
obj: TrustStoreConfiguration
|
|
623
|
-
) => any;
|
|
624
|
-
export declare const CreateResponderGatewayRequestFilterSensitiveLog: (
|
|
625
|
-
obj: CreateResponderGatewayRequest
|
|
626
|
-
) => any;
|
|
627
|
-
export declare const GetResponderGatewayResponseFilterSensitiveLog: (
|
|
628
|
-
obj: GetResponderGatewayResponse
|
|
629
|
-
) => any;
|
|
630
|
-
export declare const UpdateResponderGatewayRequestFilterSensitiveLog: (
|
|
631
|
-
obj: UpdateResponderGatewayRequest
|
|
632
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|