@aws-sdk/client-groundstation 3.99.0 → 3.109.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,33 @@
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.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-groundstation
9
+
10
+
11
+
12
+
13
+
14
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
15
+
16
+
17
+ ### Features
18
+
19
+ * **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))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-groundstation
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-groundstation
@@ -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 GroundStationClient 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 GroundStationClient = (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;
@@ -577,9 +577,7 @@ export interface CreateConfigRequest {
577
577
  /**
578
578
  * <p>Tags assigned to a <code>Config</code>.</p>
579
579
  */
580
- tags?: {
581
- [key: string]: string;
582
- };
580
+ tags?: Record<string, string>;
583
581
  }
584
582
  export declare namespace CreateConfigRequest {
585
583
  /**
@@ -668,9 +666,7 @@ export interface GetConfigResponse {
668
666
  /**
669
667
  * <p>Tags assigned to a <code>Config</code>.</p>
670
668
  */
671
- tags?: {
672
- [key: string]: string;
673
- };
669
+ tags?: Record<string, string>;
674
670
  }
675
671
  export declare namespace GetConfigResponse {
676
672
  /**
@@ -1111,9 +1107,7 @@ export interface DescribeContactResponse {
1111
1107
  /**
1112
1108
  * <p>Tags assigned to a contact.</p>
1113
1109
  */
1114
- tags?: {
1115
- [key: string]: string;
1116
- };
1110
+ tags?: Record<string, string>;
1117
1111
  /**
1118
1112
  * <p>Region of a contact.</p>
1119
1113
  */
@@ -1227,9 +1221,7 @@ export interface ContactData {
1227
1221
  /**
1228
1222
  * <p>Tags assigned to a contact.</p>
1229
1223
  */
1230
- tags?: {
1231
- [key: string]: string;
1232
- };
1224
+ tags?: Record<string, string>;
1233
1225
  }
1234
1226
  export declare namespace ContactData {
1235
1227
  /**
@@ -1283,9 +1275,7 @@ export interface ReserveContactRequest {
1283
1275
  /**
1284
1276
  * <p>Tags assigned to a contact.</p>
1285
1277
  */
1286
- tags?: {
1287
- [key: string]: string;
1288
- };
1278
+ tags?: Record<string, string>;
1289
1279
  }
1290
1280
  export declare namespace ReserveContactRequest {
1291
1281
  /**
@@ -1304,9 +1294,7 @@ export interface CreateDataflowEndpointGroupRequest {
1304
1294
  /**
1305
1295
  * <p>Tags of a dataflow endpoint group.</p>
1306
1296
  */
1307
- tags?: {
1308
- [key: string]: string;
1309
- };
1297
+ tags?: Record<string, string>;
1310
1298
  }
1311
1299
  export declare namespace CreateDataflowEndpointGroupRequest {
1312
1300
  /**
@@ -1362,9 +1350,7 @@ export interface CreateMissionProfileRequest {
1362
1350
  /**
1363
1351
  * <p>Tags assigned to a mission profile.</p>
1364
1352
  */
1365
- tags?: {
1366
- [key: string]: string;
1367
- };
1353
+ tags?: Record<string, string>;
1368
1354
  }
1369
1355
  export declare namespace CreateMissionProfileRequest {
1370
1356
  /**
@@ -1436,9 +1422,7 @@ export interface GetDataflowEndpointGroupResponse {
1436
1422
  /**
1437
1423
  * <p>Tags assigned to a dataflow endpoint group.</p>
1438
1424
  */
1439
- tags?: {
1440
- [key: string]: string;
1441
- };
1425
+ tags?: Record<string, string>;
1442
1426
  }
1443
1427
  export declare namespace GetDataflowEndpointGroupResponse {
1444
1428
  /**
@@ -1628,9 +1612,7 @@ export interface GetMissionProfileResponse {
1628
1612
  /**
1629
1613
  * <p>Tags assigned to a mission profile.</p>
1630
1614
  */
1631
- tags?: {
1632
- [key: string]: string;
1633
- };
1615
+ tags?: Record<string, string>;
1634
1616
  }
1635
1617
  export declare namespace GetMissionProfileResponse {
1636
1618
  /**
@@ -1767,9 +1749,7 @@ export interface ListTagsForResourceResponse {
1767
1749
  /**
1768
1750
  * <p>Tags assigned to a resource.</p>
1769
1751
  */
1770
- tags?: {
1771
- [key: string]: string;
1772
- };
1752
+ tags?: Record<string, string>;
1773
1753
  }
1774
1754
  export declare namespace ListTagsForResourceResponse {
1775
1755
  /**
@@ -1959,9 +1939,7 @@ export interface TagResourceRequest {
1959
1939
  /**
1960
1940
  * <p>Tags assigned to a resource.</p>
1961
1941
  */
1962
- tags: {
1963
- [key: string]: string;
1964
- } | undefined;
1942
+ tags: Record<string, string> | undefined;
1965
1943
  }
1966
1944
  export declare namespace TagResourceRequest {
1967
1945
  /**
@@ -369,9 +369,7 @@ export interface CreateConfigRequest {
369
369
 
370
370
  configData: ConfigTypeData | undefined;
371
371
 
372
- tags?: {
373
- [key: string]: string;
374
- };
372
+ tags?: Record<string, string>;
375
373
  }
376
374
  export declare namespace CreateConfigRequest {
377
375
 
@@ -421,9 +419,7 @@ export interface GetConfigResponse {
421
419
 
422
420
  configData: ConfigTypeData | undefined;
423
421
 
424
- tags?: {
425
- [key: string]: string;
426
- };
422
+ tags?: Record<string, string>;
427
423
  }
428
424
  export declare namespace GetConfigResponse {
429
425
 
@@ -695,9 +691,7 @@ export interface DescribeContactResponse {
695
691
 
696
692
  maximumElevation?: Elevation;
697
693
 
698
- tags?: {
699
- [key: string]: string;
700
- };
694
+ tags?: Record<string, string>;
701
695
 
702
696
  region?: string;
703
697
 
@@ -757,9 +751,7 @@ export interface ContactData {
757
751
 
758
752
  region?: string;
759
753
 
760
- tags?: {
761
- [key: string]: string;
762
- };
754
+ tags?: Record<string, string>;
763
755
  }
764
756
  export declare namespace ContactData {
765
757
 
@@ -789,9 +781,7 @@ export interface ReserveContactRequest {
789
781
 
790
782
  groundStation: string | undefined;
791
783
 
792
- tags?: {
793
- [key: string]: string;
794
- };
784
+ tags?: Record<string, string>;
795
785
  }
796
786
  export declare namespace ReserveContactRequest {
797
787
 
@@ -802,9 +792,7 @@ export interface CreateDataflowEndpointGroupRequest {
802
792
 
803
793
  endpointDetails: EndpointDetails[] | undefined;
804
794
 
805
- tags?: {
806
- [key: string]: string;
807
- };
795
+ tags?: Record<string, string>;
808
796
  }
809
797
  export declare namespace CreateDataflowEndpointGroupRequest {
810
798
 
@@ -834,9 +822,7 @@ export interface CreateMissionProfileRequest {
834
822
 
835
823
  trackingConfigArn: string | undefined;
836
824
 
837
- tags?: {
838
- [key: string]: string;
839
- };
825
+ tags?: Record<string, string>;
840
826
  }
841
827
  export declare namespace CreateMissionProfileRequest {
842
828
 
@@ -878,9 +864,7 @@ export interface GetDataflowEndpointGroupResponse {
878
864
 
879
865
  endpointsDetails?: EndpointDetails[];
880
866
 
881
- tags?: {
882
- [key: string]: string;
883
- };
867
+ tags?: Record<string, string>;
884
868
  }
885
869
  export declare namespace GetDataflowEndpointGroupResponse {
886
870
 
@@ -986,9 +970,7 @@ export interface GetMissionProfileResponse {
986
970
 
987
971
  trackingConfigArn?: string;
988
972
 
989
- tags?: {
990
- [key: string]: string;
991
- };
973
+ tags?: Record<string, string>;
992
974
  }
993
975
  export declare namespace GetMissionProfileResponse {
994
976
 
@@ -1067,9 +1049,7 @@ export declare namespace ListTagsForResourceRequest {
1067
1049
 
1068
1050
  export interface ListTagsForResourceResponse {
1069
1051
 
1070
- tags?: {
1071
- [key: string]: string;
1072
- };
1052
+ tags?: Record<string, string>;
1073
1053
  }
1074
1054
  export declare namespace ListTagsForResourceResponse {
1075
1055
 
@@ -1175,9 +1155,7 @@ export interface TagResourceRequest {
1175
1155
 
1176
1156
  resourceArn: string | undefined;
1177
1157
 
1178
- tags: {
1179
- [key: string]: string;
1180
- } | undefined;
1158
+ tags: Record<string, string> | undefined;
1181
1159
  }
1182
1160
  export declare namespace TagResourceRequest {
1183
1161
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-groundstation",
3
3
  "description": "AWS SDK for JavaScript Groundstation Client for Node.js, Browser and React Native",
4
- "version": "3.99.0",
4
+ "version": "3.109.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,36 +18,37 @@
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.99.0",
22
- "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.99.0",
24
- "@aws-sdk/fetch-http-handler": "3.78.0",
25
- "@aws-sdk/hash-node": "3.78.0",
26
- "@aws-sdk/invalid-dependency": "3.78.0",
27
- "@aws-sdk/middleware-content-length": "3.78.0",
28
- "@aws-sdk/middleware-host-header": "3.78.0",
29
- "@aws-sdk/middleware-logger": "3.78.0",
30
- "@aws-sdk/middleware-retry": "3.80.0",
31
- "@aws-sdk/middleware-serde": "3.78.0",
32
- "@aws-sdk/middleware-signing": "3.78.0",
33
- "@aws-sdk/middleware-stack": "3.78.0",
34
- "@aws-sdk/middleware-user-agent": "3.78.0",
35
- "@aws-sdk/node-config-provider": "3.80.0",
36
- "@aws-sdk/node-http-handler": "3.94.0",
37
- "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.99.0",
39
- "@aws-sdk/types": "3.78.0",
40
- "@aws-sdk/url-parser": "3.78.0",
41
- "@aws-sdk/util-base64-browser": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.109.0",
22
+ "@aws-sdk/config-resolver": "3.109.0",
23
+ "@aws-sdk/credential-provider-node": "3.109.0",
24
+ "@aws-sdk/fetch-http-handler": "3.109.0",
25
+ "@aws-sdk/hash-node": "3.109.0",
26
+ "@aws-sdk/invalid-dependency": "3.109.0",
27
+ "@aws-sdk/middleware-content-length": "3.109.0",
28
+ "@aws-sdk/middleware-host-header": "3.109.0",
29
+ "@aws-sdk/middleware-logger": "3.109.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.109.0",
31
+ "@aws-sdk/middleware-retry": "3.109.0",
32
+ "@aws-sdk/middleware-serde": "3.109.0",
33
+ "@aws-sdk/middleware-signing": "3.109.0",
34
+ "@aws-sdk/middleware-stack": "3.109.0",
35
+ "@aws-sdk/middleware-user-agent": "3.109.0",
36
+ "@aws-sdk/node-config-provider": "3.109.0",
37
+ "@aws-sdk/node-http-handler": "3.109.0",
38
+ "@aws-sdk/protocol-http": "3.109.0",
39
+ "@aws-sdk/smithy-client": "3.109.0",
40
+ "@aws-sdk/types": "3.109.0",
41
+ "@aws-sdk/url-parser": "3.109.0",
42
+ "@aws-sdk/util-base64-browser": "3.109.0",
42
43
  "@aws-sdk/util-base64-node": "3.55.0",
43
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
45
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.99.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.99.0",
47
- "@aws-sdk/util-user-agent-browser": "3.78.0",
48
- "@aws-sdk/util-user-agent-node": "3.80.0",
49
- "@aws-sdk/util-utf8-browser": "3.55.0",
50
- "@aws-sdk/util-utf8-node": "3.55.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.109.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.109.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.109.0",
49
+ "@aws-sdk/util-user-agent-node": "3.109.0",
50
+ "@aws-sdk/util-utf8-browser": "3.109.0",
51
+ "@aws-sdk/util-utf8-node": "3.109.0",
51
52
  "tslib": "^2.3.1"
52
53
  },
53
54
  "devDependencies": {