@aws-sdk/client-service-catalog-appregistry 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,34 @@
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-service-catalog-appregistry
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
+ * **clients:** update client endpoints as of 2022-06-06 ([ef24fbc](https://github.com/aws/aws-sdk-js-v3/commit/ef24fbc7d9e21573070143a91d09782a67aa35a9))
21
+
22
+
23
+
24
+
25
+
26
+ # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
27
+
28
+ **Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry
29
+
30
+
31
+
32
+
33
+
6
34
  # [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
7
35
 
8
36
  **Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry
@@ -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 ServiceCatalogAppRegistryClient 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
  }
@@ -27,22 +27,6 @@ const regionHash = {
27
27
  },
28
28
  ],
29
29
  },
30
- "us-gov-east-1": {
31
- variants: [
32
- {
33
- hostname: "servicecatalog-appregistry.us-gov-east-1.amazonaws.com",
34
- tags: ["fips"],
35
- },
36
- ],
37
- },
38
- "us-gov-west-1": {
39
- variants: [
40
- {
41
- hostname: "servicecatalog-appregistry.us-gov-west-1.amazonaws.com",
42
- tags: ["fips"],
43
- },
44
- ],
45
- },
46
30
  "us-west-1": {
47
31
  variants: [
48
32
  {
@@ -162,7 +146,7 @@ const partitionHash = {
162
146
  ],
163
147
  },
164
148
  "aws-us-gov": {
165
- regions: ["fips-us-gov-east-1", "fips-us-gov-west-1", "us-gov-east-1", "us-gov-west-1"],
149
+ regions: ["us-gov-east-1", "us-gov-west-1"],
166
150
  regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
167
151
  variants: [
168
152
  {
@@ -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 ServiceCatalogAppRegistryClient = (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;
@@ -25,22 +25,6 @@ var regionHash = {
25
25
  },
26
26
  ],
27
27
  },
28
- "us-gov-east-1": {
29
- variants: [
30
- {
31
- hostname: "servicecatalog-appregistry.us-gov-east-1.amazonaws.com",
32
- tags: ["fips"],
33
- },
34
- ],
35
- },
36
- "us-gov-west-1": {
37
- variants: [
38
- {
39
- hostname: "servicecatalog-appregistry.us-gov-west-1.amazonaws.com",
40
- tags: ["fips"],
41
- },
42
- ],
43
- },
44
28
  "us-west-1": {
45
29
  variants: [
46
30
  {
@@ -160,7 +144,7 @@ var partitionHash = {
160
144
  ],
161
145
  },
162
146
  "aws-us-gov": {
163
- regions: ["fips-us-gov-east-1", "fips-us-gov-west-1", "us-gov-east-1", "us-gov-west-1"],
147
+ regions: ["us-gov-east-1", "us-gov-west-1"],
164
148
  regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
165
149
  variants: [
166
150
  {
@@ -32,9 +32,7 @@ export interface Application {
32
32
  /**
33
33
  * <p>Key-value pairs you can use to associate with the application.</p>
34
34
  */
35
- tags?: {
36
- [key: string]: string;
37
- };
35
+ tags?: Record<string, string>;
38
36
  }
39
37
  export declare namespace Application {
40
38
  /**
@@ -235,9 +233,7 @@ export interface AttributeGroup {
235
233
  /**
236
234
  * <p>Key-value pairs you can use to associate with the attribute group.</p>
237
235
  */
238
- tags?: {
239
- [key: string]: string;
240
- };
236
+ tags?: Record<string, string>;
241
237
  }
242
238
  export declare namespace AttributeGroup {
243
239
  /**
@@ -292,9 +288,7 @@ export interface CreateApplicationRequest {
292
288
  /**
293
289
  * <p>Key-value pairs you can use to associate with the application.</p>
294
290
  */
295
- tags?: {
296
- [key: string]: string;
297
- };
291
+ tags?: Record<string, string>;
298
292
  /**
299
293
  * <p>A unique identifier that you provide to ensure idempotency. If you retry a request that
300
294
  * completed successfully using the same client token and the same parameters, the retry succeeds
@@ -337,9 +331,7 @@ export interface CreateAttributeGroupRequest {
337
331
  /**
338
332
  * <p>Key-value pairs you can use to associate with the attribute group.</p>
339
333
  */
340
- tags?: {
341
- [key: string]: string;
342
- };
334
+ tags?: Record<string, string>;
343
335
  /**
344
336
  * <p>A unique identifier that you provide to ensure idempotency. If you retry a request that
345
337
  * completed successfully using the same client token and the same parameters, the retry succeeds
@@ -584,9 +576,7 @@ export interface GetApplicationResponse {
584
576
  /**
585
577
  * <p>Key-value pairs associated with the application.</p>
586
578
  */
587
- tags?: {
588
- [key: string]: string;
589
- };
579
+ tags?: Record<string, string>;
590
580
  /**
591
581
  * <p>The information about the integration of the application with other services, such as Resource Groups.</p>
592
582
  */
@@ -717,9 +707,7 @@ export interface GetAttributeGroupResponse {
717
707
  /**
718
708
  * <p>Key-value pairs associated with the attribute group.</p>
719
709
  */
720
- tags?: {
721
- [key: string]: string;
722
- };
710
+ tags?: Record<string, string>;
723
711
  }
724
712
  export declare namespace GetAttributeGroupResponse {
725
713
  /**
@@ -898,9 +886,7 @@ export interface ListTagsForResourceResponse {
898
886
  /**
899
887
  * <p>The tags on the resource.</p>
900
888
  */
901
- tags?: {
902
- [key: string]: string;
903
- };
889
+ tags?: Record<string, string>;
904
890
  }
905
891
  export declare namespace ListTagsForResourceResponse {
906
892
  /**
@@ -956,9 +942,7 @@ export interface TagResourceRequest {
956
942
  /**
957
943
  * <p>The new or modified tags for the resource.</p>
958
944
  */
959
- tags: {
960
- [key: string]: string;
961
- } | undefined;
945
+ tags: Record<string, string> | undefined;
962
946
  }
963
947
  export declare namespace TagResourceRequest {
964
948
  /**
@@ -15,9 +15,7 @@ export interface Application {
15
15
 
16
16
  lastUpdateTime?: Date;
17
17
 
18
- tags?: {
19
- [key: string]: string;
20
- };
18
+ tags?: Record<string, string>;
21
19
  }
22
20
  export declare namespace Application {
23
21
 
@@ -137,9 +135,7 @@ export interface AttributeGroup {
137
135
 
138
136
  lastUpdateTime?: Date;
139
137
 
140
- tags?: {
141
- [key: string]: string;
142
- };
138
+ tags?: Record<string, string>;
143
139
  }
144
140
  export declare namespace AttributeGroup {
145
141
 
@@ -170,9 +166,7 @@ export interface CreateApplicationRequest {
170
166
 
171
167
  description?: string;
172
168
 
173
- tags?: {
174
- [key: string]: string;
175
- };
169
+ tags?: Record<string, string>;
176
170
 
177
171
  clientToken?: string;
178
172
  }
@@ -196,9 +190,7 @@ export interface CreateAttributeGroupRequest {
196
190
 
197
191
  attributes: string | undefined;
198
192
 
199
- tags?: {
200
- [key: string]: string;
201
- };
193
+ tags?: Record<string, string>;
202
194
 
203
195
  clientToken?: string;
204
196
  }
@@ -342,9 +334,7 @@ export interface GetApplicationResponse {
342
334
 
343
335
  associatedResourceCount?: number;
344
336
 
345
- tags?: {
346
- [key: string]: string;
347
- };
337
+ tags?: Record<string, string>;
348
338
 
349
339
  integrations?: Integrations;
350
340
  }
@@ -420,9 +410,7 @@ export interface GetAttributeGroupResponse {
420
410
 
421
411
  lastUpdateTime?: Date;
422
412
 
423
- tags?: {
424
- [key: string]: string;
425
- };
413
+ tags?: Record<string, string>;
426
414
  }
427
415
  export declare namespace GetAttributeGroupResponse {
428
416
 
@@ -533,9 +521,7 @@ export declare namespace ListTagsForResourceRequest {
533
521
  }
534
522
  export interface ListTagsForResourceResponse {
535
523
 
536
- tags?: {
537
- [key: string]: string;
538
- };
524
+ tags?: Record<string, string>;
539
525
  }
540
526
  export declare namespace ListTagsForResourceResponse {
541
527
 
@@ -571,9 +557,7 @@ export interface TagResourceRequest {
571
557
 
572
558
  resourceArn: string | undefined;
573
559
 
574
- tags: {
575
- [key: string]: string;
576
- } | undefined;
560
+ tags: Record<string, string> | undefined;
577
561
  }
578
562
  export declare namespace TagResourceRequest {
579
563
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-service-catalog-appregistry",
3
3
  "description": "AWS SDK for JavaScript Service Catalog Appregistry 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
  "uuid": "^8.3.2"
53
54
  },