@aws-sdk/client-rtbfabric 3.1025.0 → 3.1026.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.
Files changed (39) hide show
  1. package/dist-cjs/index.js +182 -11
  2. package/dist-cjs/schemas/schemas_0.js +49 -36
  3. package/dist-es/RTBFabric.js +6 -0
  4. package/dist-es/models/enums.js +10 -0
  5. package/dist-es/schemas/schemas_0.js +47 -34
  6. package/dist-es/waiters/index.js +3 -0
  7. package/dist-es/waiters/waitForInboundExternalLinkDeleted.js +49 -0
  8. package/dist-es/waiters/waitForLinkDeleted.js +49 -0
  9. package/dist-es/waiters/waitForOutboundExternalLinkDeleted.js +49 -0
  10. package/dist-es/waiters/waitForRequesterGatewayDeleted.js +3 -0
  11. package/dist-es/waiters/waitForResponderGatewayDeleted.js +3 -0
  12. package/dist-types/RTBFabric.d.ts +18 -0
  13. package/dist-types/commands/AcceptLinkCommand.d.ts +10 -0
  14. package/dist-types/commands/CreateLinkCommand.d.ts +12 -2
  15. package/dist-types/commands/CreateResponderGatewayCommand.d.ts +12 -0
  16. package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +2 -1
  17. package/dist-types/commands/GetLinkCommand.d.ts +7 -4
  18. package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +102 -0
  19. package/dist-types/commands/GetResponderGatewayCommand.d.ts +7 -0
  20. package/dist-types/commands/ListLinksCommand.d.ts +10 -0
  21. package/dist-types/commands/RejectLinkCommand.d.ts +9 -0
  22. package/dist-types/commands/UpdateLinkCommand.d.ts +1 -0
  23. package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +5 -0
  24. package/dist-types/models/enums.d.ts +26 -0
  25. package/dist-types/models/models_0.d.ts +159 -8
  26. package/dist-types/schemas/schemas_0.d.ts +1 -0
  27. package/dist-types/ts3.4/RTBFabric.d.ts +27 -0
  28. package/dist-types/ts3.4/models/enums.d.ts +13 -0
  29. package/dist-types/ts3.4/models/models_0.d.ts +34 -1
  30. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  31. package/dist-types/ts3.4/waiters/index.d.ts +3 -0
  32. package/dist-types/ts3.4/waiters/waitForInboundExternalLinkDeleted.d.ts +11 -0
  33. package/dist-types/ts3.4/waiters/waitForLinkDeleted.d.ts +11 -0
  34. package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkDeleted.d.ts +11 -0
  35. package/dist-types/waiters/index.d.ts +3 -0
  36. package/dist-types/waiters/waitForInboundExternalLinkDeleted.d.ts +14 -0
  37. package/dist-types/waiters/waitForLinkDeleted.d.ts +14 -0
  38. package/dist-types/waiters/waitForOutboundExternalLinkDeleted.d.ts +14 -0
  39. package/package.json +34 -34
@@ -1,5 +1,7 @@
1
1
  import {
2
+ ConnectivityType,
2
3
  FilterType,
4
+ GatewayType,
3
5
  LinkDirection,
4
6
  LinkStatus,
5
7
  Protocol,
@@ -33,6 +35,7 @@ export interface AcceptLinkRequest {
33
35
  linkId: string | undefined;
34
36
  attributes?: LinkAttributes | undefined;
35
37
  logSettings: LinkLogSettings | undefined;
38
+ timeoutInMillis?: number | undefined;
36
39
  }
37
40
  export interface NoBidModuleParameters {
38
41
  reason?: string | undefined;
@@ -141,6 +144,8 @@ export interface AcceptLinkResponse {
141
144
  flowModules?: ModuleConfiguration[] | undefined;
142
145
  pendingFlowModules?: ModuleConfiguration[] | undefined;
143
146
  attributes?: LinkAttributes | undefined;
147
+ logSettings?: LinkLogSettings | undefined;
148
+ connectivityType?: ConnectivityType | undefined;
144
149
  linkId: string | undefined;
145
150
  }
146
151
  export interface AutoScalingGroupsConfiguration {
@@ -167,6 +172,7 @@ export interface CreateLinkRequest {
167
172
  httpResponderAllowed?: boolean | undefined;
168
173
  tags?: Record<string, string> | undefined;
169
174
  logSettings: LinkLogSettings | undefined;
175
+ timeoutInMillis?: number | undefined;
170
176
  }
171
177
  export interface CreateLinkResponse {
172
178
  gatewayId: string | undefined;
@@ -178,6 +184,8 @@ export interface CreateLinkResponse {
178
184
  flowModules?: ModuleConfiguration[] | undefined;
179
185
  pendingFlowModules?: ModuleConfiguration[] | undefined;
180
186
  attributes?: LinkAttributes | undefined;
187
+ logSettings?: LinkLogSettings | undefined;
188
+ connectivityType?: ConnectivityType | undefined;
181
189
  linkId: string | undefined;
182
190
  customerProvidedId?: string | undefined;
183
191
  }
@@ -207,6 +215,9 @@ export interface CreateRequesterGatewayResponse {
207
215
  domainName: string | undefined;
208
216
  status: RequesterGatewayStatus | undefined;
209
217
  }
218
+ export interface ListenerConfig {
219
+ protocols: Protocol[] | undefined;
220
+ }
210
221
  export interface EksEndpointsConfiguration {
211
222
  endpointsResourceName: string | undefined;
212
223
  endpointsResourceNamespace: string | undefined;
@@ -251,15 +262,19 @@ export interface CreateResponderGatewayRequest {
251
262
  domainName?: string | undefined;
252
263
  port: number | undefined;
253
264
  protocol: Protocol | undefined;
265
+ listenerConfig?: ListenerConfig | undefined;
254
266
  trustStoreConfiguration?: TrustStoreConfiguration | undefined;
255
267
  managedEndpointConfiguration?: ManagedEndpointConfiguration | undefined;
256
268
  clientToken?: string | undefined;
257
269
  description?: string | undefined;
258
270
  tags?: Record<string, string> | undefined;
271
+ gatewayType?: GatewayType | undefined;
259
272
  }
260
273
  export interface CreateResponderGatewayResponse {
261
274
  gatewayId: string | undefined;
262
275
  status: ResponderGatewayStatus | undefined;
276
+ listenerConfig?: ListenerConfig | undefined;
277
+ externalInboundEndpoint?: string | undefined;
263
278
  }
264
279
  export interface DeleteInboundExternalLinkRequest {
265
280
  gatewayId: string | undefined;
@@ -313,9 +328,12 @@ export interface GetLinkResponse {
313
328
  flowModules?: ModuleConfiguration[] | undefined;
314
329
  pendingFlowModules?: ModuleConfiguration[] | undefined;
315
330
  attributes?: LinkAttributes | undefined;
331
+ logSettings?: LinkLogSettings | undefined;
332
+ connectivityType?: ConnectivityType | undefined;
316
333
  linkId: string | undefined;
317
334
  tags?: Record<string, string> | undefined;
318
- logSettings?: LinkLogSettings | undefined;
335
+ httpResponderAllowed?: boolean | undefined;
336
+ timeoutInMillis?: number | undefined;
319
337
  }
320
338
  export interface ListLinksRequest {
321
339
  gatewayId: string | undefined;
@@ -332,8 +350,11 @@ export interface ListLinksResponseStructure {
332
350
  flowModules?: ModuleConfiguration[] | undefined;
333
351
  pendingFlowModules?: ModuleConfiguration[] | undefined;
334
352
  attributes?: LinkAttributes | undefined;
353
+ logSettings?: LinkLogSettings | undefined;
354
+ connectivityType?: ConnectivityType | undefined;
335
355
  linkId: string | undefined;
336
356
  tags?: Record<string, string> | undefined;
357
+ publicEndpoint?: string | undefined;
337
358
  }
338
359
  export interface ListLinksResponse {
339
360
  links?: ListLinksResponseStructure[] | undefined;
@@ -353,12 +374,15 @@ export interface RejectLinkResponse {
353
374
  flowModules?: ModuleConfiguration[] | undefined;
354
375
  pendingFlowModules?: ModuleConfiguration[] | undefined;
355
376
  attributes?: LinkAttributes | undefined;
377
+ logSettings?: LinkLogSettings | undefined;
378
+ connectivityType?: ConnectivityType | undefined;
356
379
  linkId: string | undefined;
357
380
  }
358
381
  export interface UpdateLinkRequest {
359
382
  gatewayId: string | undefined;
360
383
  linkId: string | undefined;
361
384
  logSettings?: LinkLogSettings | undefined;
385
+ timeoutInMillis?: number | undefined;
362
386
  }
363
387
  export interface UpdateLinkResponse {
364
388
  linkId: string | undefined;
@@ -391,6 +415,7 @@ export interface GetInboundExternalLinkResponse {
391
415
  updatedAt?: Date | undefined;
392
416
  tags?: Record<string, string> | undefined;
393
417
  logSettings?: LinkLogSettings | undefined;
418
+ connectivityType?: ConnectivityType | undefined;
394
419
  }
395
420
  export interface GetOutboundExternalLinkRequest {
396
421
  gatewayId: string | undefined;
@@ -401,10 +426,14 @@ export interface GetOutboundExternalLinkResponse {
401
426
  linkId: string | undefined;
402
427
  status: LinkStatus | undefined;
403
428
  publicEndpoint: string | undefined;
429
+ flowModules?: ModuleConfiguration[] | undefined;
430
+ pendingFlowModules?: ModuleConfiguration[] | undefined;
431
+ attributes?: LinkAttributes | undefined;
404
432
  createdAt?: Date | undefined;
405
433
  updatedAt?: Date | undefined;
406
434
  tags?: Record<string, string> | undefined;
407
435
  logSettings?: LinkLogSettings | undefined;
436
+ connectivityType?: ConnectivityType | undefined;
408
437
  }
409
438
  export interface GetRequesterGatewayRequest {
410
439
  gatewayId: string | undefined;
@@ -437,6 +466,7 @@ export interface GetResponderGatewayResponse {
437
466
  domainName?: string | undefined;
438
467
  port: number | undefined;
439
468
  protocol: Protocol | undefined;
469
+ listenerConfig?: ListenerConfig | undefined;
440
470
  trustStoreConfiguration?: TrustStoreConfiguration | undefined;
441
471
  managedEndpointConfiguration?: ManagedEndpointConfiguration | undefined;
442
472
  gatewayId: string | undefined;
@@ -444,6 +474,8 @@ export interface GetResponderGatewayResponse {
444
474
  activeLinksCount?: number | undefined;
445
475
  totalLinksCount?: number | undefined;
446
476
  inboundLinksCount?: number | undefined;
477
+ gatewayType?: GatewayType | undefined;
478
+ externalInboundEndpoint?: string | undefined;
447
479
  }
448
480
  export interface ListRequesterGatewaysRequest {
449
481
  maxResults?: number | undefined;
@@ -480,6 +512,7 @@ export interface UpdateResponderGatewayRequest {
480
512
  domainName?: string | undefined;
481
513
  port: number | undefined;
482
514
  protocol: Protocol | undefined;
515
+ listenerConfig?: ListenerConfig | undefined;
483
516
  trustStoreConfiguration?: TrustStoreConfiguration | undefined;
484
517
  managedEndpointConfiguration?: ManagedEndpointConfiguration | undefined;
485
518
  clientToken?: string | undefined;
@@ -55,6 +55,7 @@ export declare var LinkApplicationLogConfiguration$: StaticStructureSchema;
55
55
  export declare var LinkApplicationLogSampling$: StaticStructureSchema;
56
56
  export declare var LinkAttributes$: StaticStructureSchema;
57
57
  export declare var LinkLogSettings$: StaticStructureSchema;
58
+ export declare var ListenerConfig$: StaticStructureSchema;
58
59
  export declare var ListLinksRequest$: StaticStructureSchema;
59
60
  export declare var ListLinksResponse$: StaticStructureSchema;
60
61
  export declare var ListLinksResponseStructure$: StaticStructureSchema;
@@ -1,7 +1,10 @@
1
1
  export * from "./waitForInboundExternalLinkActive";
2
+ export * from "./waitForInboundExternalLinkDeleted";
2
3
  export * from "./waitForLinkAccepted";
3
4
  export * from "./waitForLinkActive";
5
+ export * from "./waitForLinkDeleted";
4
6
  export * from "./waitForOutboundExternalLinkActive";
7
+ export * from "./waitForOutboundExternalLinkDeleted";
5
8
  export * from "./waitForRequesterGatewayActive";
6
9
  export * from "./waitForRequesterGatewayDeleted";
7
10
  export * from "./waitForResponderGatewayActive";
@@ -0,0 +1,11 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetInboundExternalLinkCommandInput } from "../commands/GetInboundExternalLinkCommand";
3
+ import { RTBFabricClient } from "../RTBFabricClient";
4
+ export declare const waitForInboundExternalLinkDeleted: (
5
+ params: WaiterConfiguration<RTBFabricClient>,
6
+ input: GetInboundExternalLinkCommandInput
7
+ ) => Promise<WaiterResult>;
8
+ export declare const waitUntilInboundExternalLinkDeleted: (
9
+ params: WaiterConfiguration<RTBFabricClient>,
10
+ input: GetInboundExternalLinkCommandInput
11
+ ) => Promise<WaiterResult>;
@@ -0,0 +1,11 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetLinkCommandInput } from "../commands/GetLinkCommand";
3
+ import { RTBFabricClient } from "../RTBFabricClient";
4
+ export declare const waitForLinkDeleted: (
5
+ params: WaiterConfiguration<RTBFabricClient>,
6
+ input: GetLinkCommandInput
7
+ ) => Promise<WaiterResult>;
8
+ export declare const waitUntilLinkDeleted: (
9
+ params: WaiterConfiguration<RTBFabricClient>,
10
+ input: GetLinkCommandInput
11
+ ) => Promise<WaiterResult>;
@@ -0,0 +1,11 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetOutboundExternalLinkCommandInput } from "../commands/GetOutboundExternalLinkCommand";
3
+ import { RTBFabricClient } from "../RTBFabricClient";
4
+ export declare const waitForOutboundExternalLinkDeleted: (
5
+ params: WaiterConfiguration<RTBFabricClient>,
6
+ input: GetOutboundExternalLinkCommandInput
7
+ ) => Promise<WaiterResult>;
8
+ export declare const waitUntilOutboundExternalLinkDeleted: (
9
+ params: WaiterConfiguration<RTBFabricClient>,
10
+ input: GetOutboundExternalLinkCommandInput
11
+ ) => Promise<WaiterResult>;
@@ -1,7 +1,10 @@
1
1
  export * from "./waitForInboundExternalLinkActive";
2
+ export * from "./waitForInboundExternalLinkDeleted";
2
3
  export * from "./waitForLinkAccepted";
3
4
  export * from "./waitForLinkActive";
5
+ export * from "./waitForLinkDeleted";
4
6
  export * from "./waitForOutboundExternalLinkActive";
7
+ export * from "./waitForOutboundExternalLinkDeleted";
5
8
  export * from "./waitForRequesterGatewayActive";
6
9
  export * from "./waitForRequesterGatewayDeleted";
7
10
  export * from "./waitForResponderGatewayActive";
@@ -0,0 +1,14 @@
1
+ import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
+ import { type GetInboundExternalLinkCommandInput } from "../commands/GetInboundExternalLinkCommand";
3
+ import type { RTBFabricClient } from "../RTBFabricClient";
4
+ /**
5
+ *
6
+ * @deprecated Use waitUntilInboundExternalLinkDeleted instead. waitForInboundExternalLinkDeleted does not throw error in non-success cases.
7
+ */
8
+ export declare const waitForInboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetInboundExternalLinkCommandInput) => Promise<WaiterResult>;
9
+ /**
10
+ *
11
+ * @param params - Waiter configuration options.
12
+ * @param input - The input to GetInboundExternalLinkCommand for polling.
13
+ */
14
+ export declare const waitUntilInboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetInboundExternalLinkCommandInput) => Promise<WaiterResult>;
@@ -0,0 +1,14 @@
1
+ import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
+ import { type GetLinkCommandInput } from "../commands/GetLinkCommand";
3
+ import type { RTBFabricClient } from "../RTBFabricClient";
4
+ /**
5
+ *
6
+ * @deprecated Use waitUntilLinkDeleted instead. waitForLinkDeleted does not throw error in non-success cases.
7
+ */
8
+ export declare const waitForLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult>;
9
+ /**
10
+ *
11
+ * @param params - Waiter configuration options.
12
+ * @param input - The input to GetLinkCommand for polling.
13
+ */
14
+ export declare const waitUntilLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult>;
@@ -0,0 +1,14 @@
1
+ import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
+ import { type GetOutboundExternalLinkCommandInput } from "../commands/GetOutboundExternalLinkCommand";
3
+ import type { RTBFabricClient } from "../RTBFabricClient";
4
+ /**
5
+ *
6
+ * @deprecated Use waitUntilOutboundExternalLinkDeleted instead. waitForOutboundExternalLinkDeleted does not throw error in non-success cases.
7
+ */
8
+ export declare const waitForOutboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetOutboundExternalLinkCommandInput) => Promise<WaiterResult>;
9
+ /**
10
+ *
11
+ * @param params - Waiter configuration options.
12
+ * @param input - The input to GetOutboundExternalLinkCommand for polling.
13
+ */
14
+ export declare const waitUntilOutboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetOutboundExternalLinkCommandInput) => Promise<WaiterResult>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rtbfabric",
3
3
  "description": "AWS SDK for JavaScript Rtbfabric Client for Node.js, Browser and React Native",
4
- "version": "3.1025.0",
4
+ "version": "3.1026.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-rtbfabric",
@@ -21,43 +21,43 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.26",
25
- "@aws-sdk/credential-provider-node": "^3.972.29",
26
- "@aws-sdk/middleware-host-header": "^3.972.8",
27
- "@aws-sdk/middleware-logger": "^3.972.8",
28
- "@aws-sdk/middleware-recursion-detection": "^3.972.9",
29
- "@aws-sdk/middleware-user-agent": "^3.972.28",
30
- "@aws-sdk/region-config-resolver": "^3.972.10",
31
- "@aws-sdk/types": "^3.973.6",
32
- "@aws-sdk/util-endpoints": "^3.996.5",
33
- "@aws-sdk/util-user-agent-browser": "^3.972.8",
34
- "@aws-sdk/util-user-agent-node": "^3.973.14",
35
- "@smithy/config-resolver": "^4.4.13",
36
- "@smithy/core": "^3.23.13",
37
- "@smithy/fetch-http-handler": "^5.3.15",
38
- "@smithy/hash-node": "^4.2.12",
39
- "@smithy/invalid-dependency": "^4.2.12",
40
- "@smithy/middleware-content-length": "^4.2.12",
41
- "@smithy/middleware-endpoint": "^4.4.28",
42
- "@smithy/middleware-retry": "^4.4.46",
43
- "@smithy/middleware-serde": "^4.2.16",
44
- "@smithy/middleware-stack": "^4.2.12",
45
- "@smithy/node-config-provider": "^4.3.12",
46
- "@smithy/node-http-handler": "^4.5.1",
47
- "@smithy/protocol-http": "^5.3.12",
48
- "@smithy/smithy-client": "^4.12.8",
49
- "@smithy/types": "^4.13.1",
50
- "@smithy/url-parser": "^4.2.12",
24
+ "@aws-sdk/core": "^3.973.27",
25
+ "@aws-sdk/credential-provider-node": "^3.972.30",
26
+ "@aws-sdk/middleware-host-header": "^3.972.9",
27
+ "@aws-sdk/middleware-logger": "^3.972.9",
28
+ "@aws-sdk/middleware-recursion-detection": "^3.972.10",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.29",
30
+ "@aws-sdk/region-config-resolver": "^3.972.11",
31
+ "@aws-sdk/types": "^3.973.7",
32
+ "@aws-sdk/util-endpoints": "^3.996.6",
33
+ "@aws-sdk/util-user-agent-browser": "^3.972.9",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.15",
35
+ "@smithy/config-resolver": "^4.4.14",
36
+ "@smithy/core": "^3.23.14",
37
+ "@smithy/fetch-http-handler": "^5.3.16",
38
+ "@smithy/hash-node": "^4.2.13",
39
+ "@smithy/invalid-dependency": "^4.2.13",
40
+ "@smithy/middleware-content-length": "^4.2.13",
41
+ "@smithy/middleware-endpoint": "^4.4.29",
42
+ "@smithy/middleware-retry": "^4.5.0",
43
+ "@smithy/middleware-serde": "^4.2.17",
44
+ "@smithy/middleware-stack": "^4.2.13",
45
+ "@smithy/node-config-provider": "^4.3.13",
46
+ "@smithy/node-http-handler": "^4.5.2",
47
+ "@smithy/protocol-http": "^5.3.13",
48
+ "@smithy/smithy-client": "^4.12.9",
49
+ "@smithy/types": "^4.14.0",
50
+ "@smithy/url-parser": "^4.2.13",
51
51
  "@smithy/util-base64": "^4.3.2",
52
52
  "@smithy/util-body-length-browser": "^4.2.2",
53
53
  "@smithy/util-body-length-node": "^4.2.3",
54
- "@smithy/util-defaults-mode-browser": "^4.3.44",
55
- "@smithy/util-defaults-mode-node": "^4.2.48",
56
- "@smithy/util-endpoints": "^3.3.3",
57
- "@smithy/util-middleware": "^4.2.12",
58
- "@smithy/util-retry": "^4.2.13",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.45",
55
+ "@smithy/util-defaults-mode-node": "^4.2.49",
56
+ "@smithy/util-endpoints": "^3.3.4",
57
+ "@smithy/util-middleware": "^4.2.13",
58
+ "@smithy/util-retry": "^4.3.0",
59
59
  "@smithy/util-utf8": "^4.2.2",
60
- "@smithy/util-waiter": "^4.2.14",
60
+ "@smithy/util-waiter": "^4.2.15",
61
61
  "tslib": "^2.6.2"
62
62
  },
63
63
  "devDependencies": {