@aws-sdk/client-outposts 3.100.0 → 3.105.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-outposts
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class OutpostsClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var OutpostsClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -540,9 +540,7 @@ export interface CreateOutpostInput {
|
|
|
540
540
|
/**
|
|
541
541
|
* <p>The tags to apply to the Outpost.</p>
|
|
542
542
|
*/
|
|
543
|
-
Tags?:
|
|
544
|
-
[key: string]: string;
|
|
545
|
-
};
|
|
543
|
+
Tags?: Record<string, string>;
|
|
546
544
|
/**
|
|
547
545
|
* <p>
|
|
548
546
|
* The type of hardware for this Outpost.
|
|
@@ -603,9 +601,7 @@ export interface Outpost {
|
|
|
603
601
|
/**
|
|
604
602
|
* <p>The Outpost tags.</p>
|
|
605
603
|
*/
|
|
606
|
-
Tags?:
|
|
607
|
-
[key: string]: string;
|
|
608
|
-
};
|
|
604
|
+
Tags?: Record<string, string>;
|
|
609
605
|
/**
|
|
610
606
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
611
607
|
*/
|
|
@@ -774,9 +770,7 @@ export interface CreateSiteInput {
|
|
|
774
770
|
* The tags to apply to a site.
|
|
775
771
|
* </p>
|
|
776
772
|
*/
|
|
777
|
-
Tags?:
|
|
778
|
-
[key: string]: string;
|
|
779
|
-
};
|
|
773
|
+
Tags?: Record<string, string>;
|
|
780
774
|
/**
|
|
781
775
|
* <p>
|
|
782
776
|
* The location to install and power on the hardware. This address might be
|
|
@@ -831,9 +825,7 @@ export interface Site {
|
|
|
831
825
|
/**
|
|
832
826
|
* <p>The site tags.</p>
|
|
833
827
|
*/
|
|
834
|
-
Tags?:
|
|
835
|
-
[key: string]: string;
|
|
836
|
-
};
|
|
828
|
+
Tags?: Record<string, string>;
|
|
837
829
|
/**
|
|
838
830
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
839
831
|
*/
|
|
@@ -1371,9 +1363,7 @@ export interface OrderSummary {
|
|
|
1371
1363
|
* The status of all line items in the order.
|
|
1372
1364
|
* </p>
|
|
1373
1365
|
*/
|
|
1374
|
-
LineItemCountsByStatus?:
|
|
1375
|
-
[key: string]: number;
|
|
1376
|
-
};
|
|
1366
|
+
LineItemCountsByStatus?: Record<string, number>;
|
|
1377
1367
|
/**
|
|
1378
1368
|
* <p>
|
|
1379
1369
|
* Submission date for the order.
|
|
@@ -1541,9 +1531,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1541
1531
|
/**
|
|
1542
1532
|
* <p>The resource tags.</p>
|
|
1543
1533
|
*/
|
|
1544
|
-
Tags?:
|
|
1545
|
-
[key: string]: string;
|
|
1546
|
-
};
|
|
1534
|
+
Tags?: Record<string, string>;
|
|
1547
1535
|
}
|
|
1548
1536
|
export declare namespace ListTagsForResourceResponse {
|
|
1549
1537
|
/**
|
|
@@ -1559,9 +1547,7 @@ export interface TagResourceRequest {
|
|
|
1559
1547
|
/**
|
|
1560
1548
|
* <p>The tags to add to the resource.</p>
|
|
1561
1549
|
*/
|
|
1562
|
-
Tags:
|
|
1563
|
-
[key: string]: string;
|
|
1564
|
-
} | undefined;
|
|
1550
|
+
Tags: Record<string, string> | undefined;
|
|
1565
1551
|
}
|
|
1566
1552
|
export declare namespace TagResourceRequest {
|
|
1567
1553
|
/**
|
|
@@ -291,9 +291,7 @@ export interface CreateOutpostInput {
|
|
|
291
291
|
|
|
292
292
|
AvailabilityZoneId?: string;
|
|
293
293
|
|
|
294
|
-
Tags?:
|
|
295
|
-
[key: string]: string;
|
|
296
|
-
};
|
|
294
|
+
Tags?: Record<string, string>;
|
|
297
295
|
|
|
298
296
|
SupportedHardwareType?: SupportedHardwareType | string;
|
|
299
297
|
}
|
|
@@ -322,9 +320,7 @@ export interface Outpost {
|
|
|
322
320
|
|
|
323
321
|
AvailabilityZoneId?: string;
|
|
324
322
|
|
|
325
|
-
Tags?:
|
|
326
|
-
[key: string]: string;
|
|
327
|
-
};
|
|
323
|
+
Tags?: Record<string, string>;
|
|
328
324
|
|
|
329
325
|
SiteArn?: string;
|
|
330
326
|
|
|
@@ -438,9 +434,7 @@ export interface CreateSiteInput {
|
|
|
438
434
|
|
|
439
435
|
Notes?: string;
|
|
440
436
|
|
|
441
|
-
Tags?:
|
|
442
|
-
[key: string]: string;
|
|
443
|
-
};
|
|
437
|
+
Tags?: Record<string, string>;
|
|
444
438
|
|
|
445
439
|
OperatingAddress?: Address;
|
|
446
440
|
|
|
@@ -463,9 +457,7 @@ export interface Site {
|
|
|
463
457
|
|
|
464
458
|
Description?: string;
|
|
465
459
|
|
|
466
|
-
Tags?:
|
|
467
|
-
[key: string]: string;
|
|
468
|
-
};
|
|
460
|
+
Tags?: Record<string, string>;
|
|
469
461
|
|
|
470
462
|
SiteArn?: string;
|
|
471
463
|
|
|
@@ -717,9 +709,7 @@ export interface OrderSummary {
|
|
|
717
709
|
|
|
718
710
|
Status?: OrderStatus | string;
|
|
719
711
|
|
|
720
|
-
LineItemCountsByStatus?:
|
|
721
|
-
[key: string]: number;
|
|
722
|
-
};
|
|
712
|
+
LineItemCountsByStatus?: Record<string, number>;
|
|
723
713
|
|
|
724
714
|
OrderSubmissionDate?: Date;
|
|
725
715
|
|
|
@@ -801,9 +791,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
801
791
|
}
|
|
802
792
|
export interface ListTagsForResourceResponse {
|
|
803
793
|
|
|
804
|
-
Tags?:
|
|
805
|
-
[key: string]: string;
|
|
806
|
-
};
|
|
794
|
+
Tags?: Record<string, string>;
|
|
807
795
|
}
|
|
808
796
|
export declare namespace ListTagsForResourceResponse {
|
|
809
797
|
|
|
@@ -813,9 +801,7 @@ export interface TagResourceRequest {
|
|
|
813
801
|
|
|
814
802
|
ResourceArn: string | undefined;
|
|
815
803
|
|
|
816
|
-
Tags:
|
|
817
|
-
[key: string]: string;
|
|
818
|
-
} | undefined;
|
|
804
|
+
Tags: Record<string, string> | undefined;
|
|
819
805
|
}
|
|
820
806
|
export declare namespace TagResourceRequest {
|
|
821
807
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-outposts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.105.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,15 +18,16 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
30
31
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
31
32
|
"@aws-sdk/middleware-serde": "3.78.0",
|
|
32
33
|
"@aws-sdk/middleware-signing": "3.78.0",
|