@aws-sdk/client-rtbfabric 3.915.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/LICENSE +201 -0
- package/README.md +421 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +2476 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-es/RTBFabric.js +61 -0
- package/dist-es/RTBFabricClient.js +48 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AcceptLinkCommand.js +22 -0
- package/dist-es/commands/CreateInboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/CreateLinkCommand.js +22 -0
- package/dist-es/commands/CreateOutboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/CreateRequesterGatewayCommand.js +22 -0
- package/dist-es/commands/CreateResponderGatewayCommand.js +23 -0
- package/dist-es/commands/DeleteInboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/DeleteLinkCommand.js +22 -0
- package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/DeleteRequesterGatewayCommand.js +22 -0
- package/dist-es/commands/DeleteResponderGatewayCommand.js +22 -0
- package/dist-es/commands/GetInboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/GetLinkCommand.js +22 -0
- package/dist-es/commands/GetOutboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/GetRequesterGatewayCommand.js +22 -0
- package/dist-es/commands/GetResponderGatewayCommand.js +23 -0
- package/dist-es/commands/ListLinksCommand.js +22 -0
- package/dist-es/commands/ListRequesterGatewaysCommand.js +22 -0
- package/dist-es/commands/ListResponderGatewaysCommand.js +22 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
- package/dist-es/commands/RejectLinkCommand.js +22 -0
- package/dist-es/commands/TagResourceCommand.js +22 -0
- package/dist-es/commands/UntagResourceCommand.js +22 -0
- package/dist-es/commands/UpdateLinkCommand.js +22 -0
- package/dist-es/commands/UpdateLinkModuleFlowCommand.js +22 -0
- package/dist-es/commands/UpdateRequesterGatewayCommand.js +22 -0
- package/dist-es/commands/UpdateResponderGatewayCommand.js +23 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/endpoint/EndpointParameters.js +13 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/RTBFabricServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +219 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListLinksPaginator.js +4 -0
- package/dist-es/pagination/ListRequesterGatewaysPaginator.js +4 -0
- package/dist-es/pagination/ListResponderGatewaysPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +1147 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/waiters/index.js +8 -0
- package/dist-es/waiters/waitForInboundExternalLinkActive.js +67 -0
- package/dist-es/waiters/waitForLinkAccepted.js +58 -0
- package/dist-es/waiters/waitForLinkActive.js +58 -0
- package/dist-es/waiters/waitForOutboundExternalLinkActive.js +67 -0
- package/dist-es/waiters/waitForRequesterGatewayActive.js +49 -0
- package/dist-es/waiters/waitForRequesterGatewayDeleted.js +40 -0
- package/dist-es/waiters/waitForResponderGatewayActive.js +49 -0
- package/dist-es/waiters/waitForResponderGatewayDeleted.js +40 -0
- package/dist-types/RTBFabric.d.ts +201 -0
- package/dist-types/RTBFabricClient.d.ts +214 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AcceptLinkCommand.d.ts +244 -0
- package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +134 -0
- package/dist-types/commands/CreateLinkCommand.d.ts +252 -0
- package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +118 -0
- package/dist-types/commands/CreateRequesterGatewayCommand.d.ts +131 -0
- package/dist-types/commands/CreateResponderGatewayCommand.d.ts +155 -0
- package/dist-types/commands/DeleteInboundExternalLinkCommand.d.ts +111 -0
- package/dist-types/commands/DeleteLinkCommand.d.ts +111 -0
- package/dist-types/commands/DeleteOutboundExternalLinkCommand.d.ts +111 -0
- package/dist-types/commands/DeleteRequesterGatewayCommand.d.ts +106 -0
- package/dist-types/commands/DeleteResponderGatewayCommand.d.ts +106 -0
- package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +214 -0
- package/dist-types/commands/GetLinkCommand.d.ts +226 -0
- package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +119 -0
- package/dist-types/commands/GetRequesterGatewayCommand.d.ts +136 -0
- package/dist-types/commands/GetResponderGatewayCommand.d.ts +162 -0
- package/dist-types/commands/ListLinksCommand.d.ts +225 -0
- package/dist-types/commands/ListRequesterGatewaysCommand.d.ts +122 -0
- package/dist-types/commands/ListResponderGatewaysCommand.d.ts +122 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +109 -0
- package/dist-types/commands/RejectLinkCommand.d.ts +215 -0
- package/dist-types/commands/TagResourceCommand.d.ts +107 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +107 -0
- package/dist-types/commands/UpdateLinkCommand.d.ts +127 -0
- package/dist-types/commands/UpdateLinkModuleFlowCommand.d.ts +173 -0
- package/dist-types/commands/UpdateRequesterGatewayCommand.d.ts +113 -0
- package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +139 -0
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +15 -0
- package/dist-types/models/RTBFabricServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2011 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListLinksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRequesterGatewaysPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResponderGatewaysPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +245 -0
- package/dist-types/runtimeConfig.browser.d.ts +50 -0
- package/dist-types/runtimeConfig.d.ts +50 -0
- package/dist-types/runtimeConfig.native.d.ts +49 -0
- package/dist-types/runtimeConfig.shared.d.ts +25 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/RTBFabric.d.ts +466 -0
- package/dist-types/ts3.4/RTBFabricClient.d.ts +281 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AcceptLinkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateInboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateLinkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateOutboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateRequesterGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateResponderGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteInboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteLinkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteOutboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRequesterGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResponderGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetInboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetLinkCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetOutboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRequesterGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResponderGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListLinksCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListRequesterGatewaysCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListResponderGatewaysCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RejectLinkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateLinkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateLinkModuleFlowCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRequesterGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateResponderGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/RTBFabricServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +618 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListLinksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRequesterGatewaysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResponderGatewaysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +329 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +92 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/waiters/index.d.ts +8 -0
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForLinkAccepted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForLinkActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForResponderGatewayActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForResponderGatewayDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +8 -0
- package/dist-types/waiters/waitForInboundExternalLinkActive.d.ts +14 -0
- package/dist-types/waiters/waitForLinkAccepted.d.ts +14 -0
- package/dist-types/waiters/waitForLinkActive.d.ts +14 -0
- package/dist-types/waiters/waitForOutboundExternalLinkActive.d.ts +14 -0
- package/dist-types/waiters/waitForRequesterGatewayActive.d.ts +14 -0
- package/dist-types/waiters/waitForRequesterGatewayDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForResponderGatewayActive.d.ts +14 -0
- package/dist-types/waiters/waitForResponderGatewayDeleted.d.ts +14 -0
- package/package.json +101 -0
|
@@ -0,0 +1,618 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { RTBFabricServiceException as __BaseException } from "./RTBFabricServiceException";
|
|
3
|
+
export declare const ResponderErrorMaskingAction: {
|
|
4
|
+
readonly NO_BID: "NO_BID";
|
|
5
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
6
|
+
};
|
|
7
|
+
export type ResponderErrorMaskingAction =
|
|
8
|
+
(typeof ResponderErrorMaskingAction)[keyof typeof ResponderErrorMaskingAction];
|
|
9
|
+
export declare const ResponderErrorMaskingLoggingType: {
|
|
10
|
+
readonly METRIC: "METRIC";
|
|
11
|
+
readonly NONE: "NONE";
|
|
12
|
+
readonly RESPONSE: "RESPONSE";
|
|
13
|
+
};
|
|
14
|
+
export type ResponderErrorMaskingLoggingType =
|
|
15
|
+
(typeof ResponderErrorMaskingLoggingType)[keyof typeof ResponderErrorMaskingLoggingType];
|
|
16
|
+
export interface ResponderErrorMaskingForHttpCode {
|
|
17
|
+
httpCode: string | undefined;
|
|
18
|
+
action: ResponderErrorMaskingAction | undefined;
|
|
19
|
+
loggingTypes: ResponderErrorMaskingLoggingType[] | undefined;
|
|
20
|
+
responseLoggingPercentage?: number | undefined;
|
|
21
|
+
}
|
|
22
|
+
export interface LinkAttributes {
|
|
23
|
+
responderErrorMasking?: ResponderErrorMaskingForHttpCode[] | undefined;
|
|
24
|
+
customerProvidedId?: string | undefined;
|
|
25
|
+
}
|
|
26
|
+
export interface LinkApplicationLogSampling {
|
|
27
|
+
errorLog: number | undefined;
|
|
28
|
+
filterLog: number | undefined;
|
|
29
|
+
}
|
|
30
|
+
export interface LinkApplicationLogConfiguration {
|
|
31
|
+
sampling: LinkApplicationLogSampling | undefined;
|
|
32
|
+
}
|
|
33
|
+
export interface LinkLogSettings {
|
|
34
|
+
applicationLogs: LinkApplicationLogConfiguration | undefined;
|
|
35
|
+
}
|
|
36
|
+
export interface AcceptLinkRequest {
|
|
37
|
+
gatewayId: string | undefined;
|
|
38
|
+
linkId: string | undefined;
|
|
39
|
+
attributes?: LinkAttributes | undefined;
|
|
40
|
+
logSettings: LinkLogSettings | undefined;
|
|
41
|
+
}
|
|
42
|
+
export declare const LinkDirection: {
|
|
43
|
+
readonly REQUEST: "REQUEST";
|
|
44
|
+
readonly RESPONSE: "RESPONSE";
|
|
45
|
+
};
|
|
46
|
+
export type LinkDirection = (typeof LinkDirection)[keyof typeof LinkDirection];
|
|
47
|
+
export interface NoBidModuleParameters {
|
|
48
|
+
reason?: string | undefined;
|
|
49
|
+
reasonCode?: number | undefined;
|
|
50
|
+
passThroughPercentage?: number | undefined;
|
|
51
|
+
}
|
|
52
|
+
export interface HeaderTagAction {
|
|
53
|
+
name: string | undefined;
|
|
54
|
+
value: string | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface NoBidAction {
|
|
57
|
+
noBidReasonCode?: number | undefined;
|
|
58
|
+
}
|
|
59
|
+
export type Action =
|
|
60
|
+
| Action.HeaderTagMember
|
|
61
|
+
| Action.NoBidMember
|
|
62
|
+
| Action.$UnknownMember;
|
|
63
|
+
export declare namespace Action {
|
|
64
|
+
interface NoBidMember {
|
|
65
|
+
noBid: NoBidAction;
|
|
66
|
+
headerTag?: never;
|
|
67
|
+
$unknown?: never;
|
|
68
|
+
}
|
|
69
|
+
interface HeaderTagMember {
|
|
70
|
+
noBid?: never;
|
|
71
|
+
headerTag: HeaderTagAction;
|
|
72
|
+
$unknown?: never;
|
|
73
|
+
}
|
|
74
|
+
interface $UnknownMember {
|
|
75
|
+
noBid?: never;
|
|
76
|
+
headerTag?: never;
|
|
77
|
+
$unknown: [string, any];
|
|
78
|
+
}
|
|
79
|
+
interface Visitor<T> {
|
|
80
|
+
noBid: (value: NoBidAction) => T;
|
|
81
|
+
headerTag: (value: HeaderTagAction) => T;
|
|
82
|
+
_: (name: string, value: any) => T;
|
|
83
|
+
}
|
|
84
|
+
const visit: <T>(value: Action, visitor: Visitor<T>) => T;
|
|
85
|
+
}
|
|
86
|
+
export interface FilterCriterion {
|
|
87
|
+
path: string | undefined;
|
|
88
|
+
values: string[] | undefined;
|
|
89
|
+
}
|
|
90
|
+
export interface Filter {
|
|
91
|
+
criteria: FilterCriterion[] | undefined;
|
|
92
|
+
}
|
|
93
|
+
export declare const FilterType: {
|
|
94
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
95
|
+
readonly INCLUDE: "INCLUDE";
|
|
96
|
+
};
|
|
97
|
+
export type FilterType = (typeof FilterType)[keyof typeof FilterType];
|
|
98
|
+
export interface OpenRtbAttributeModuleParameters {
|
|
99
|
+
filterType: FilterType | undefined;
|
|
100
|
+
filterConfiguration: Filter[] | undefined;
|
|
101
|
+
action: Action | undefined;
|
|
102
|
+
holdbackPercentage: number | undefined;
|
|
103
|
+
}
|
|
104
|
+
export type ModuleParameters =
|
|
105
|
+
| ModuleParameters.NoBidMember
|
|
106
|
+
| ModuleParameters.OpenRtbAttributeMember
|
|
107
|
+
| ModuleParameters.$UnknownMember;
|
|
108
|
+
export declare namespace ModuleParameters {
|
|
109
|
+
interface NoBidMember {
|
|
110
|
+
noBid: NoBidModuleParameters;
|
|
111
|
+
openRtbAttribute?: never;
|
|
112
|
+
$unknown?: never;
|
|
113
|
+
}
|
|
114
|
+
interface OpenRtbAttributeMember {
|
|
115
|
+
noBid?: never;
|
|
116
|
+
openRtbAttribute: OpenRtbAttributeModuleParameters;
|
|
117
|
+
$unknown?: never;
|
|
118
|
+
}
|
|
119
|
+
interface $UnknownMember {
|
|
120
|
+
noBid?: never;
|
|
121
|
+
openRtbAttribute?: never;
|
|
122
|
+
$unknown: [string, any];
|
|
123
|
+
}
|
|
124
|
+
interface Visitor<T> {
|
|
125
|
+
noBid: (value: NoBidModuleParameters) => T;
|
|
126
|
+
openRtbAttribute: (value: OpenRtbAttributeModuleParameters) => T;
|
|
127
|
+
_: (name: string, value: any) => T;
|
|
128
|
+
}
|
|
129
|
+
const visit: <T>(value: ModuleParameters, visitor: Visitor<T>) => T;
|
|
130
|
+
}
|
|
131
|
+
export interface ModuleConfiguration {
|
|
132
|
+
version?: string | undefined;
|
|
133
|
+
name: string | undefined;
|
|
134
|
+
dependsOn?: string[] | undefined;
|
|
135
|
+
moduleParameters?: ModuleParameters | undefined;
|
|
136
|
+
}
|
|
137
|
+
export declare const LinkStatus: {
|
|
138
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
139
|
+
readonly ACTIVE: "ACTIVE";
|
|
140
|
+
readonly DELETED: "DELETED";
|
|
141
|
+
readonly FAILED: "FAILED";
|
|
142
|
+
readonly ISOLATED: "ISOLATED";
|
|
143
|
+
readonly PENDING_CREATION: "PENDING_CREATION";
|
|
144
|
+
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
145
|
+
readonly PENDING_ISOLATION: "PENDING_ISOLATION";
|
|
146
|
+
readonly PENDING_REQUEST: "PENDING_REQUEST";
|
|
147
|
+
readonly PENDING_RESTORATION: "PENDING_RESTORATION";
|
|
148
|
+
readonly PENDING_UPDATE: "PENDING_UPDATE";
|
|
149
|
+
readonly REJECTED: "REJECTED";
|
|
150
|
+
readonly REQUESTED: "REQUESTED";
|
|
151
|
+
};
|
|
152
|
+
export type LinkStatus = (typeof LinkStatus)[keyof typeof LinkStatus];
|
|
153
|
+
export interface AcceptLinkResponse {
|
|
154
|
+
gatewayId: string | undefined;
|
|
155
|
+
peerGatewayId: string | undefined;
|
|
156
|
+
status: LinkStatus | undefined;
|
|
157
|
+
createdAt: Date | undefined;
|
|
158
|
+
updatedAt: Date | undefined;
|
|
159
|
+
direction?: LinkDirection | undefined;
|
|
160
|
+
flowModules?: ModuleConfiguration[] | undefined;
|
|
161
|
+
pendingFlowModules?: ModuleConfiguration[] | undefined;
|
|
162
|
+
attributes?: LinkAttributes | undefined;
|
|
163
|
+
linkId: string | undefined;
|
|
164
|
+
}
|
|
165
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
166
|
+
readonly name: "AccessDeniedException";
|
|
167
|
+
readonly $fault: "client";
|
|
168
|
+
constructor(
|
|
169
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
170
|
+
);
|
|
171
|
+
}
|
|
172
|
+
export declare class ConflictException extends __BaseException {
|
|
173
|
+
readonly name: "ConflictException";
|
|
174
|
+
readonly $fault: "client";
|
|
175
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
176
|
+
}
|
|
177
|
+
export declare class InternalServerException extends __BaseException {
|
|
178
|
+
readonly name: "InternalServerException";
|
|
179
|
+
readonly $fault: "server";
|
|
180
|
+
$retryable: {};
|
|
181
|
+
constructor(
|
|
182
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
183
|
+
);
|
|
184
|
+
}
|
|
185
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
186
|
+
readonly name: "ResourceNotFoundException";
|
|
187
|
+
readonly $fault: "client";
|
|
188
|
+
constructor(
|
|
189
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
190
|
+
);
|
|
191
|
+
}
|
|
192
|
+
export declare class ThrottlingException extends __BaseException {
|
|
193
|
+
readonly name: "ThrottlingException";
|
|
194
|
+
readonly $fault: "client";
|
|
195
|
+
$retryable: {};
|
|
196
|
+
constructor(
|
|
197
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
198
|
+
);
|
|
199
|
+
}
|
|
200
|
+
export declare class ValidationException extends __BaseException {
|
|
201
|
+
readonly name: "ValidationException";
|
|
202
|
+
readonly $fault: "client";
|
|
203
|
+
constructor(
|
|
204
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
205
|
+
);
|
|
206
|
+
}
|
|
207
|
+
export interface AutoScalingGroupsConfiguration {
|
|
208
|
+
autoScalingGroupNames: string[] | undefined;
|
|
209
|
+
roleArn: string | undefined;
|
|
210
|
+
}
|
|
211
|
+
export interface CreateInboundExternalLinkRequest {
|
|
212
|
+
clientToken?: string | undefined;
|
|
213
|
+
gatewayId: string | undefined;
|
|
214
|
+
attributes?: LinkAttributes | undefined;
|
|
215
|
+
tags?: Record<string, string> | undefined;
|
|
216
|
+
}
|
|
217
|
+
export interface CreateInboundExternalLinkResponse {
|
|
218
|
+
gatewayId: string | undefined;
|
|
219
|
+
linkId: string | undefined;
|
|
220
|
+
status: LinkStatus | undefined;
|
|
221
|
+
domainName: string | undefined;
|
|
222
|
+
}
|
|
223
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
224
|
+
readonly name: "ServiceQuotaExceededException";
|
|
225
|
+
readonly $fault: "client";
|
|
226
|
+
constructor(
|
|
227
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
228
|
+
);
|
|
229
|
+
}
|
|
230
|
+
export interface CreateLinkRequest {
|
|
231
|
+
gatewayId: string | undefined;
|
|
232
|
+
peerGatewayId: string | undefined;
|
|
233
|
+
attributes?: LinkAttributes | undefined;
|
|
234
|
+
httpResponderAllowed?: boolean | undefined;
|
|
235
|
+
tags?: Record<string, string> | undefined;
|
|
236
|
+
logSettings: LinkLogSettings | undefined;
|
|
237
|
+
}
|
|
238
|
+
export interface CreateLinkResponse {
|
|
239
|
+
gatewayId: string | undefined;
|
|
240
|
+
peerGatewayId: string | undefined;
|
|
241
|
+
status: LinkStatus | undefined;
|
|
242
|
+
createdAt: Date | undefined;
|
|
243
|
+
updatedAt: Date | undefined;
|
|
244
|
+
direction?: LinkDirection | undefined;
|
|
245
|
+
flowModules?: ModuleConfiguration[] | undefined;
|
|
246
|
+
pendingFlowModules?: ModuleConfiguration[] | undefined;
|
|
247
|
+
attributes?: LinkAttributes | undefined;
|
|
248
|
+
linkId: string | undefined;
|
|
249
|
+
customerProvidedId?: string | undefined;
|
|
250
|
+
}
|
|
251
|
+
export interface CreateOutboundExternalLinkRequest {
|
|
252
|
+
clientToken?: string | undefined;
|
|
253
|
+
gatewayId: string | undefined;
|
|
254
|
+
publicEndpoint: string | undefined;
|
|
255
|
+
tags?: Record<string, string> | undefined;
|
|
256
|
+
}
|
|
257
|
+
export interface CreateOutboundExternalLinkResponse {
|
|
258
|
+
gatewayId: string | undefined;
|
|
259
|
+
linkId: string | undefined;
|
|
260
|
+
status: LinkStatus | undefined;
|
|
261
|
+
}
|
|
262
|
+
export interface CreateRequesterGatewayRequest {
|
|
263
|
+
vpcId: string | undefined;
|
|
264
|
+
subnetIds: string[] | undefined;
|
|
265
|
+
securityGroupIds: string[] | undefined;
|
|
266
|
+
clientToken?: string | undefined;
|
|
267
|
+
description?: string | undefined;
|
|
268
|
+
tags?: Record<string, string> | undefined;
|
|
269
|
+
}
|
|
270
|
+
export declare const RequesterGatewayStatus: {
|
|
271
|
+
readonly ACTIVE: "ACTIVE";
|
|
272
|
+
readonly DELETED: "DELETED";
|
|
273
|
+
readonly ERROR: "ERROR";
|
|
274
|
+
readonly ISOLATED: "ISOLATED";
|
|
275
|
+
readonly PENDING_CREATION: "PENDING_CREATION";
|
|
276
|
+
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
277
|
+
readonly PENDING_ISOLATION: "PENDING_ISOLATION";
|
|
278
|
+
readonly PENDING_RESTORATION: "PENDING_RESTORATION";
|
|
279
|
+
readonly PENDING_UPDATE: "PENDING_UPDATE";
|
|
280
|
+
};
|
|
281
|
+
export type RequesterGatewayStatus =
|
|
282
|
+
(typeof RequesterGatewayStatus)[keyof typeof RequesterGatewayStatus];
|
|
283
|
+
export interface CreateRequesterGatewayResponse {
|
|
284
|
+
gatewayId: string | undefined;
|
|
285
|
+
domainName: string | undefined;
|
|
286
|
+
status: RequesterGatewayStatus | undefined;
|
|
287
|
+
}
|
|
288
|
+
export interface EksEndpointsConfiguration {
|
|
289
|
+
endpointsResourceName: string | undefined;
|
|
290
|
+
endpointsResourceNamespace: string | undefined;
|
|
291
|
+
clusterApiServerEndpointUri: string | undefined;
|
|
292
|
+
clusterApiServerCaCertificateChain: string | undefined;
|
|
293
|
+
clusterName: string | undefined;
|
|
294
|
+
roleArn: string | undefined;
|
|
295
|
+
}
|
|
296
|
+
export type ManagedEndpointConfiguration =
|
|
297
|
+
| ManagedEndpointConfiguration.AutoScalingGroupsMember
|
|
298
|
+
| ManagedEndpointConfiguration.EksEndpointsMember
|
|
299
|
+
| ManagedEndpointConfiguration.$UnknownMember;
|
|
300
|
+
export declare namespace ManagedEndpointConfiguration {
|
|
301
|
+
interface AutoScalingGroupsMember {
|
|
302
|
+
autoScalingGroups: AutoScalingGroupsConfiguration;
|
|
303
|
+
eksEndpoints?: never;
|
|
304
|
+
$unknown?: never;
|
|
305
|
+
}
|
|
306
|
+
interface EksEndpointsMember {
|
|
307
|
+
autoScalingGroups?: never;
|
|
308
|
+
eksEndpoints: EksEndpointsConfiguration;
|
|
309
|
+
$unknown?: never;
|
|
310
|
+
}
|
|
311
|
+
interface $UnknownMember {
|
|
312
|
+
autoScalingGroups?: never;
|
|
313
|
+
eksEndpoints?: never;
|
|
314
|
+
$unknown: [string, any];
|
|
315
|
+
}
|
|
316
|
+
interface Visitor<T> {
|
|
317
|
+
autoScalingGroups: (value: AutoScalingGroupsConfiguration) => T;
|
|
318
|
+
eksEndpoints: (value: EksEndpointsConfiguration) => T;
|
|
319
|
+
_: (name: string, value: any) => T;
|
|
320
|
+
}
|
|
321
|
+
const visit: <T>(
|
|
322
|
+
value: ManagedEndpointConfiguration,
|
|
323
|
+
visitor: Visitor<T>
|
|
324
|
+
) => T;
|
|
325
|
+
}
|
|
326
|
+
export declare const Protocol: {
|
|
327
|
+
readonly HTTP: "HTTP";
|
|
328
|
+
readonly HTTPS: "HTTPS";
|
|
329
|
+
};
|
|
330
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
331
|
+
export interface TrustStoreConfiguration {
|
|
332
|
+
certificateAuthorityCertificates: string[] | undefined;
|
|
333
|
+
}
|
|
334
|
+
export interface CreateResponderGatewayRequest {
|
|
335
|
+
vpcId: string | undefined;
|
|
336
|
+
subnetIds: string[] | undefined;
|
|
337
|
+
securityGroupIds: string[] | undefined;
|
|
338
|
+
domainName?: string | undefined;
|
|
339
|
+
port: number | undefined;
|
|
340
|
+
protocol: Protocol | undefined;
|
|
341
|
+
trustStoreConfiguration?: TrustStoreConfiguration | undefined;
|
|
342
|
+
managedEndpointConfiguration?: ManagedEndpointConfiguration | undefined;
|
|
343
|
+
clientToken?: string | undefined;
|
|
344
|
+
description?: string | undefined;
|
|
345
|
+
tags?: Record<string, string> | undefined;
|
|
346
|
+
}
|
|
347
|
+
export declare const ResponderGatewayStatus: {
|
|
348
|
+
readonly ACTIVE: "ACTIVE";
|
|
349
|
+
readonly DELETED: "DELETED";
|
|
350
|
+
readonly ERROR: "ERROR";
|
|
351
|
+
readonly ISOLATED: "ISOLATED";
|
|
352
|
+
readonly PENDING_CREATION: "PENDING_CREATION";
|
|
353
|
+
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
354
|
+
readonly PENDING_ISOLATION: "PENDING_ISOLATION";
|
|
355
|
+
readonly PENDING_RESTORATION: "PENDING_RESTORATION";
|
|
356
|
+
readonly PENDING_UPDATE: "PENDING_UPDATE";
|
|
357
|
+
};
|
|
358
|
+
export type ResponderGatewayStatus =
|
|
359
|
+
(typeof ResponderGatewayStatus)[keyof typeof ResponderGatewayStatus];
|
|
360
|
+
export interface CreateResponderGatewayResponse {
|
|
361
|
+
gatewayId: string | undefined;
|
|
362
|
+
status: ResponderGatewayStatus | undefined;
|
|
363
|
+
}
|
|
364
|
+
export interface DeleteInboundExternalLinkRequest {
|
|
365
|
+
gatewayId: string | undefined;
|
|
366
|
+
linkId: string | undefined;
|
|
367
|
+
}
|
|
368
|
+
export interface DeleteInboundExternalLinkResponse {
|
|
369
|
+
linkId: string | undefined;
|
|
370
|
+
status: LinkStatus | undefined;
|
|
371
|
+
}
|
|
372
|
+
export interface DeleteLinkRequest {
|
|
373
|
+
gatewayId: string | undefined;
|
|
374
|
+
linkId: string | undefined;
|
|
375
|
+
}
|
|
376
|
+
export interface DeleteLinkResponse {
|
|
377
|
+
linkId: string | undefined;
|
|
378
|
+
status: LinkStatus | undefined;
|
|
379
|
+
}
|
|
380
|
+
export interface DeleteOutboundExternalLinkRequest {
|
|
381
|
+
gatewayId: string | undefined;
|
|
382
|
+
linkId: string | undefined;
|
|
383
|
+
}
|
|
384
|
+
export interface DeleteOutboundExternalLinkResponse {
|
|
385
|
+
linkId: string | undefined;
|
|
386
|
+
status: LinkStatus | undefined;
|
|
387
|
+
}
|
|
388
|
+
export interface DeleteRequesterGatewayRequest {
|
|
389
|
+
gatewayId: string | undefined;
|
|
390
|
+
}
|
|
391
|
+
export interface DeleteRequesterGatewayResponse {
|
|
392
|
+
gatewayId: string | undefined;
|
|
393
|
+
status: RequesterGatewayStatus | undefined;
|
|
394
|
+
}
|
|
395
|
+
export interface DeleteResponderGatewayRequest {
|
|
396
|
+
gatewayId: string | undefined;
|
|
397
|
+
}
|
|
398
|
+
export interface DeleteResponderGatewayResponse {
|
|
399
|
+
gatewayId: string | undefined;
|
|
400
|
+
status: ResponderGatewayStatus | undefined;
|
|
401
|
+
}
|
|
402
|
+
export interface GetLinkRequest {
|
|
403
|
+
gatewayId: string | undefined;
|
|
404
|
+
linkId: string | undefined;
|
|
405
|
+
}
|
|
406
|
+
export interface GetLinkResponse {
|
|
407
|
+
gatewayId: string | undefined;
|
|
408
|
+
peerGatewayId: string | undefined;
|
|
409
|
+
status: LinkStatus | undefined;
|
|
410
|
+
createdAt: Date | undefined;
|
|
411
|
+
updatedAt: Date | undefined;
|
|
412
|
+
direction?: LinkDirection | undefined;
|
|
413
|
+
flowModules?: ModuleConfiguration[] | undefined;
|
|
414
|
+
pendingFlowModules?: ModuleConfiguration[] | undefined;
|
|
415
|
+
attributes?: LinkAttributes | undefined;
|
|
416
|
+
linkId: string | undefined;
|
|
417
|
+
tags?: Record<string, string> | undefined;
|
|
418
|
+
logSettings?: LinkLogSettings | undefined;
|
|
419
|
+
}
|
|
420
|
+
export interface ListLinksRequest {
|
|
421
|
+
gatewayId: string | undefined;
|
|
422
|
+
nextToken?: string | undefined;
|
|
423
|
+
maxResults?: number | undefined;
|
|
424
|
+
}
|
|
425
|
+
export interface ListLinksResponseStructure {
|
|
426
|
+
gatewayId: string | undefined;
|
|
427
|
+
peerGatewayId: string | undefined;
|
|
428
|
+
status: LinkStatus | undefined;
|
|
429
|
+
createdAt: Date | undefined;
|
|
430
|
+
updatedAt: Date | undefined;
|
|
431
|
+
direction?: LinkDirection | undefined;
|
|
432
|
+
flowModules?: ModuleConfiguration[] | undefined;
|
|
433
|
+
pendingFlowModules?: ModuleConfiguration[] | undefined;
|
|
434
|
+
attributes?: LinkAttributes | undefined;
|
|
435
|
+
linkId: string | undefined;
|
|
436
|
+
tags?: Record<string, string> | undefined;
|
|
437
|
+
}
|
|
438
|
+
export interface ListLinksResponse {
|
|
439
|
+
links?: ListLinksResponseStructure[] | undefined;
|
|
440
|
+
nextToken?: string | undefined;
|
|
441
|
+
}
|
|
442
|
+
export interface RejectLinkRequest {
|
|
443
|
+
gatewayId: string | undefined;
|
|
444
|
+
linkId: string | undefined;
|
|
445
|
+
}
|
|
446
|
+
export interface RejectLinkResponse {
|
|
447
|
+
gatewayId: string | undefined;
|
|
448
|
+
peerGatewayId: string | undefined;
|
|
449
|
+
status: LinkStatus | undefined;
|
|
450
|
+
createdAt: Date | undefined;
|
|
451
|
+
updatedAt: Date | undefined;
|
|
452
|
+
direction?: LinkDirection | undefined;
|
|
453
|
+
flowModules?: ModuleConfiguration[] | undefined;
|
|
454
|
+
pendingFlowModules?: ModuleConfiguration[] | undefined;
|
|
455
|
+
attributes?: LinkAttributes | undefined;
|
|
456
|
+
linkId: string | undefined;
|
|
457
|
+
}
|
|
458
|
+
export interface UpdateLinkRequest {
|
|
459
|
+
gatewayId: string | undefined;
|
|
460
|
+
linkId: string | undefined;
|
|
461
|
+
logSettings?: LinkLogSettings | undefined;
|
|
462
|
+
}
|
|
463
|
+
export interface UpdateLinkResponse {
|
|
464
|
+
linkId: string | undefined;
|
|
465
|
+
status: LinkStatus | undefined;
|
|
466
|
+
}
|
|
467
|
+
export interface UpdateLinkModuleFlowRequest {
|
|
468
|
+
clientToken?: string | undefined;
|
|
469
|
+
gatewayId: string | undefined;
|
|
470
|
+
linkId: string | undefined;
|
|
471
|
+
modules: ModuleConfiguration[] | undefined;
|
|
472
|
+
}
|
|
473
|
+
export interface UpdateLinkModuleFlowResponse {
|
|
474
|
+
gatewayId: string | undefined;
|
|
475
|
+
linkId: string | undefined;
|
|
476
|
+
status: LinkStatus | undefined;
|
|
477
|
+
}
|
|
478
|
+
export interface GetInboundExternalLinkRequest {
|
|
479
|
+
gatewayId: string | undefined;
|
|
480
|
+
linkId: string | undefined;
|
|
481
|
+
}
|
|
482
|
+
export interface GetInboundExternalLinkResponse {
|
|
483
|
+
gatewayId: string | undefined;
|
|
484
|
+
linkId: string | undefined;
|
|
485
|
+
status: LinkStatus | undefined;
|
|
486
|
+
domainName: string | undefined;
|
|
487
|
+
flowModules?: ModuleConfiguration[] | undefined;
|
|
488
|
+
pendingFlowModules?: ModuleConfiguration[] | undefined;
|
|
489
|
+
attributes?: LinkAttributes | undefined;
|
|
490
|
+
createdAt?: Date | undefined;
|
|
491
|
+
updatedAt?: Date | undefined;
|
|
492
|
+
tags?: Record<string, string> | undefined;
|
|
493
|
+
}
|
|
494
|
+
export interface GetOutboundExternalLinkRequest {
|
|
495
|
+
gatewayId: string | undefined;
|
|
496
|
+
linkId: string | undefined;
|
|
497
|
+
}
|
|
498
|
+
export interface GetOutboundExternalLinkResponse {
|
|
499
|
+
gatewayId: string | undefined;
|
|
500
|
+
linkId: string | undefined;
|
|
501
|
+
status: LinkStatus | undefined;
|
|
502
|
+
publicEndpoint: string | undefined;
|
|
503
|
+
createdAt?: Date | undefined;
|
|
504
|
+
updatedAt?: Date | undefined;
|
|
505
|
+
tags?: Record<string, string> | undefined;
|
|
506
|
+
}
|
|
507
|
+
export interface GetRequesterGatewayRequest {
|
|
508
|
+
gatewayId: string | undefined;
|
|
509
|
+
}
|
|
510
|
+
export interface GetRequesterGatewayResponse {
|
|
511
|
+
status: RequesterGatewayStatus | undefined;
|
|
512
|
+
domainName: string | undefined;
|
|
513
|
+
description?: string | undefined;
|
|
514
|
+
createdAt?: Date | undefined;
|
|
515
|
+
updatedAt?: Date | undefined;
|
|
516
|
+
vpcId: string | undefined;
|
|
517
|
+
subnetIds: string[] | undefined;
|
|
518
|
+
securityGroupIds: string[] | undefined;
|
|
519
|
+
gatewayId: string | undefined;
|
|
520
|
+
tags?: Record<string, string> | undefined;
|
|
521
|
+
activeLinksCount?: number | undefined;
|
|
522
|
+
totalLinksCount?: number | undefined;
|
|
523
|
+
}
|
|
524
|
+
export interface GetResponderGatewayRequest {
|
|
525
|
+
gatewayId: string | undefined;
|
|
526
|
+
}
|
|
527
|
+
export interface GetResponderGatewayResponse {
|
|
528
|
+
vpcId: string | undefined;
|
|
529
|
+
subnetIds: string[] | undefined;
|
|
530
|
+
securityGroupIds: string[] | undefined;
|
|
531
|
+
status: ResponderGatewayStatus | undefined;
|
|
532
|
+
description?: string | undefined;
|
|
533
|
+
createdAt?: Date | undefined;
|
|
534
|
+
updatedAt?: Date | undefined;
|
|
535
|
+
domainName?: string | undefined;
|
|
536
|
+
port: number | undefined;
|
|
537
|
+
protocol: Protocol | undefined;
|
|
538
|
+
trustStoreConfiguration?: TrustStoreConfiguration | undefined;
|
|
539
|
+
managedEndpointConfiguration?: ManagedEndpointConfiguration | undefined;
|
|
540
|
+
gatewayId: string | undefined;
|
|
541
|
+
tags?: Record<string, string> | undefined;
|
|
542
|
+
activeLinksCount?: number | undefined;
|
|
543
|
+
totalLinksCount?: number | undefined;
|
|
544
|
+
inboundLinksCount?: number | undefined;
|
|
545
|
+
}
|
|
546
|
+
export interface ListRequesterGatewaysRequest {
|
|
547
|
+
maxResults?: number | undefined;
|
|
548
|
+
nextToken?: string | undefined;
|
|
549
|
+
}
|
|
550
|
+
export interface ListRequesterGatewaysResponse {
|
|
551
|
+
gatewayIds?: string[] | undefined;
|
|
552
|
+
nextToken?: string | undefined;
|
|
553
|
+
}
|
|
554
|
+
export interface ListResponderGatewaysRequest {
|
|
555
|
+
maxResults?: number | undefined;
|
|
556
|
+
nextToken?: string | undefined;
|
|
557
|
+
}
|
|
558
|
+
export interface ListResponderGatewaysResponse {
|
|
559
|
+
gatewayIds?: string[] | undefined;
|
|
560
|
+
nextToken?: string | undefined;
|
|
561
|
+
}
|
|
562
|
+
export interface ListTagsForResourceRequest {
|
|
563
|
+
resourceArn: string | undefined;
|
|
564
|
+
}
|
|
565
|
+
export interface ListTagsForResourceResponse {
|
|
566
|
+
tags?: Record<string, string> | undefined;
|
|
567
|
+
}
|
|
568
|
+
export interface UpdateRequesterGatewayRequest {
|
|
569
|
+
clientToken?: string | undefined;
|
|
570
|
+
gatewayId: string | undefined;
|
|
571
|
+
description?: string | undefined;
|
|
572
|
+
}
|
|
573
|
+
export interface UpdateRequesterGatewayResponse {
|
|
574
|
+
gatewayId: string | undefined;
|
|
575
|
+
status: RequesterGatewayStatus | undefined;
|
|
576
|
+
}
|
|
577
|
+
export interface UpdateResponderGatewayRequest {
|
|
578
|
+
domainName?: string | undefined;
|
|
579
|
+
port: number | undefined;
|
|
580
|
+
protocol: Protocol | undefined;
|
|
581
|
+
trustStoreConfiguration?: TrustStoreConfiguration | undefined;
|
|
582
|
+
managedEndpointConfiguration?: ManagedEndpointConfiguration | undefined;
|
|
583
|
+
clientToken?: string | undefined;
|
|
584
|
+
gatewayId: string | undefined;
|
|
585
|
+
description?: string | undefined;
|
|
586
|
+
}
|
|
587
|
+
export interface UpdateResponderGatewayResponse {
|
|
588
|
+
gatewayId: string | undefined;
|
|
589
|
+
status: ResponderGatewayStatus | undefined;
|
|
590
|
+
}
|
|
591
|
+
export interface TagResourceRequest {
|
|
592
|
+
resourceArn: string | undefined;
|
|
593
|
+
tags: Record<string, string> | undefined;
|
|
594
|
+
}
|
|
595
|
+
export interface TagResourceResponse {}
|
|
596
|
+
export interface UntagResourceRequest {
|
|
597
|
+
resourceArn: string | undefined;
|
|
598
|
+
tagKeys: string[] | undefined;
|
|
599
|
+
}
|
|
600
|
+
export interface UntagResourceResponse {}
|
|
601
|
+
export declare const EksEndpointsConfigurationFilterSensitiveLog: (
|
|
602
|
+
obj: EksEndpointsConfiguration
|
|
603
|
+
) => any;
|
|
604
|
+
export declare const ManagedEndpointConfigurationFilterSensitiveLog: (
|
|
605
|
+
obj: ManagedEndpointConfiguration
|
|
606
|
+
) => any;
|
|
607
|
+
export declare const TrustStoreConfigurationFilterSensitiveLog: (
|
|
608
|
+
obj: TrustStoreConfiguration
|
|
609
|
+
) => any;
|
|
610
|
+
export declare const CreateResponderGatewayRequestFilterSensitiveLog: (
|
|
611
|
+
obj: CreateResponderGatewayRequest
|
|
612
|
+
) => any;
|
|
613
|
+
export declare const GetResponderGatewayResponseFilterSensitiveLog: (
|
|
614
|
+
obj: GetResponderGatewayResponse
|
|
615
|
+
) => any;
|
|
616
|
+
export declare const UpdateResponderGatewayRequestFilterSensitiveLog: (
|
|
617
|
+
obj: UpdateResponderGatewayRequest
|
|
618
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListLinksCommandInput,
|
|
4
|
+
ListLinksCommandOutput,
|
|
5
|
+
} from "../commands/ListLinksCommand";
|
|
6
|
+
import { RTBFabricPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListLinks: (
|
|
8
|
+
config: RTBFabricPaginationConfiguration,
|
|
9
|
+
input: ListLinksCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListLinksCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRequesterGatewaysCommandInput,
|
|
4
|
+
ListRequesterGatewaysCommandOutput,
|
|
5
|
+
} from "../commands/ListRequesterGatewaysCommand";
|
|
6
|
+
import { RTBFabricPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRequesterGateways: (
|
|
8
|
+
config: RTBFabricPaginationConfiguration,
|
|
9
|
+
input: ListRequesterGatewaysCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRequesterGatewaysCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListResponderGatewaysCommandInput,
|
|
4
|
+
ListResponderGatewaysCommandOutput,
|
|
5
|
+
} from "../commands/ListResponderGatewaysCommand";
|
|
6
|
+
import { RTBFabricPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListResponderGateways: (
|
|
8
|
+
config: RTBFabricPaginationConfiguration,
|
|
9
|
+
input: ListResponderGatewaysCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListResponderGatewaysCommandOutput>;
|