@aws-sdk/client-service-catalog-appregistry 3.321.1 → 3.326.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/dist-types/commands/AssociateAttributeGroupCommand.d.ts +7 -0
- package/dist-types/commands/AssociateResourceCommand.d.ts +7 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +13 -0
- package/dist-types/commands/DeleteAttributeGroupCommand.d.ts +14 -0
- package/dist-types/commands/DisassociateAttributeGroupCommand.d.ts +7 -0
- package/dist-types/commands/DisassociateResourceCommand.d.ts +7 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +22 -0
- package/dist-types/commands/GetAssociatedResourceCommand.d.ts +17 -0
- package/dist-types/commands/GetAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +10 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListAssociatedAttributeGroupsCommand.d.ts +9 -0
- package/dist-types/commands/ListAssociatedResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListAttributeGroupsCommand.d.ts +17 -0
- package/dist-types/commands/ListAttributeGroupsForApplicationCommand.d.ts +14 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/PutConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/SyncResourceCommand.d.ts +8 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAttributeGroupCommand.d.ts +16 -0
- package/package.json +16 -16
|
@@ -34,6 +34,11 @@ export interface AssociateAttributeGroupCommandOutput extends AssociateAttribute
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new AssociateAttributeGroupCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // AssociateAttributeGroupResponse
|
|
38
|
+
* // applicationArn: "STRING_VALUE",
|
|
39
|
+
* // attributeGroupArn: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
39
44
|
* @param AssociateAttributeGroupCommandInput - {@link AssociateAttributeGroupCommandInput}
|
|
@@ -61,6 +66,8 @@ export interface AssociateAttributeGroupCommandOutput extends AssociateAttribute
|
|
|
61
66
|
* @throws {@link ValidationException} (client fault)
|
|
62
67
|
* <p>The request has invalid or missing parameters.</p>
|
|
63
68
|
*
|
|
69
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
64
71
|
*
|
|
65
72
|
*/
|
|
66
73
|
export declare class AssociateAttributeGroupCommand extends $Command<AssociateAttributeGroupCommandInput, AssociateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -40,6 +40,11 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new AssociateResourceCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // AssociateResourceResponse
|
|
44
|
+
* // applicationArn: "STRING_VALUE",
|
|
45
|
+
* // resourceArn: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
43
48
|
* ```
|
|
44
49
|
*
|
|
45
50
|
* @param AssociateResourceCommandInput - {@link AssociateResourceCommandInput}
|
|
@@ -74,6 +79,8 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons
|
|
|
74
79
|
* @throws {@link ValidationException} (client fault)
|
|
75
80
|
* <p>The request has invalid or missing parameters.</p>
|
|
76
81
|
*
|
|
82
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
77
84
|
*
|
|
78
85
|
*/
|
|
79
86
|
export declare class AssociateResourceCommand extends $Command<AssociateResourceCommandInput, AssociateResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -36,6 +36,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CreateApplicationCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // CreateApplicationResponse
|
|
40
|
+
* // application: { // Application
|
|
41
|
+
* // id: "STRING_VALUE",
|
|
42
|
+
* // arn: "STRING_VALUE",
|
|
43
|
+
* // name: "STRING_VALUE",
|
|
44
|
+
* // description: "STRING_VALUE",
|
|
45
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // tags: { // Tags
|
|
48
|
+
* // "<keys>": "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
39
53
|
* ```
|
|
40
54
|
*
|
|
41
55
|
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
@@ -67,6 +81,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
67
81
|
* @throws {@link ValidationException} (client fault)
|
|
68
82
|
* <p>The request has invalid or missing parameters.</p>
|
|
69
83
|
*
|
|
84
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
70
86
|
*
|
|
71
87
|
*/
|
|
72
88
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -40,6 +40,20 @@ export interface CreateAttributeGroupCommandOutput extends CreateAttributeGroupR
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new CreateAttributeGroupCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // CreateAttributeGroupResponse
|
|
44
|
+
* // attributeGroup: { // AttributeGroup
|
|
45
|
+
* // id: "STRING_VALUE",
|
|
46
|
+
* // arn: "STRING_VALUE",
|
|
47
|
+
* // name: "STRING_VALUE",
|
|
48
|
+
* // description: "STRING_VALUE",
|
|
49
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // tags: { // Tags
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
43
57
|
* ```
|
|
44
58
|
*
|
|
45
59
|
* @param CreateAttributeGroupCommandInput - {@link CreateAttributeGroupCommandInput}
|
|
@@ -64,6 +78,8 @@ export interface CreateAttributeGroupCommandOutput extends CreateAttributeGroupR
|
|
|
64
78
|
* @throws {@link ValidationException} (client fault)
|
|
65
79
|
* <p>The request has invalid or missing parameters.</p>
|
|
66
80
|
*
|
|
81
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
67
83
|
*
|
|
68
84
|
*/
|
|
69
85
|
export declare class CreateAttributeGroupCommand extends $Command<CreateAttributeGroupCommandInput, CreateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -31,6 +31,17 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteApplicationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteApplicationResponse
|
|
35
|
+
* // application: { // ApplicationSummary
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // arn: "STRING_VALUE",
|
|
38
|
+
* // name: "STRING_VALUE",
|
|
39
|
+
* // description: "STRING_VALUE",
|
|
40
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // },
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
34
45
|
* ```
|
|
35
46
|
*
|
|
36
47
|
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
@@ -48,6 +59,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
48
59
|
* @throws {@link ValidationException} (client fault)
|
|
49
60
|
* <p>The request has invalid or missing parameters.</p>
|
|
50
61
|
*
|
|
62
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
51
64
|
*
|
|
52
65
|
*/
|
|
53
66
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -31,6 +31,18 @@ export interface DeleteAttributeGroupCommandOutput extends DeleteAttributeGroupR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteAttributeGroupCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteAttributeGroupResponse
|
|
35
|
+
* // attributeGroup: { // AttributeGroupSummary
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // arn: "STRING_VALUE",
|
|
38
|
+
* // name: "STRING_VALUE",
|
|
39
|
+
* // description: "STRING_VALUE",
|
|
40
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // createdBy: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
34
46
|
* ```
|
|
35
47
|
*
|
|
36
48
|
* @param DeleteAttributeGroupCommandInput - {@link DeleteAttributeGroupCommandInput}
|
|
@@ -48,6 +60,8 @@ export interface DeleteAttributeGroupCommandOutput extends DeleteAttributeGroupR
|
|
|
48
60
|
* @throws {@link ValidationException} (client fault)
|
|
49
61
|
* <p>The request has invalid or missing parameters.</p>
|
|
50
62
|
*
|
|
63
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
51
65
|
*
|
|
52
66
|
*/
|
|
53
67
|
export declare class DeleteAttributeGroupCommand extends $Command<DeleteAttributeGroupCommandInput, DeleteAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface DisassociateAttributeGroupCommandOutput extends DisassociateAtt
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DisassociateAttributeGroupCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DisassociateAttributeGroupResponse
|
|
36
|
+
* // applicationArn: "STRING_VALUE",
|
|
37
|
+
* // attributeGroupArn: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param DisassociateAttributeGroupCommandInput - {@link DisassociateAttributeGroupCommandInput}
|
|
@@ -49,6 +54,8 @@ export interface DisassociateAttributeGroupCommandOutput extends DisassociateAtt
|
|
|
49
54
|
* @throws {@link ValidationException} (client fault)
|
|
50
55
|
* <p>The request has invalid or missing parameters.</p>
|
|
51
56
|
*
|
|
57
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
52
59
|
*
|
|
53
60
|
*/
|
|
54
61
|
export declare class DisassociateAttributeGroupCommand extends $Command<DisassociateAttributeGroupCommandInput, DisassociateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -33,6 +33,11 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DisassociateResourceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DisassociateResourceResponse
|
|
37
|
+
* // applicationArn: "STRING_VALUE",
|
|
38
|
+
* // resourceArn: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param DisassociateResourceCommandInput - {@link DisassociateResourceCommandInput}
|
|
@@ -57,6 +62,8 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR
|
|
|
57
62
|
* @throws {@link ValidationException} (client fault)
|
|
58
63
|
* <p>The request has invalid or missing parameters.</p>
|
|
59
64
|
*
|
|
65
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
60
67
|
*
|
|
61
68
|
*/
|
|
62
69
|
export declare class DisassociateResourceCommand extends $Command<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -49,6 +49,26 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new GetApplicationCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // GetApplicationResponse
|
|
53
|
+
* // id: "STRING_VALUE",
|
|
54
|
+
* // arn: "STRING_VALUE",
|
|
55
|
+
* // name: "STRING_VALUE",
|
|
56
|
+
* // description: "STRING_VALUE",
|
|
57
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
58
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
59
|
+
* // associatedResourceCount: Number("int"),
|
|
60
|
+
* // tags: { // Tags
|
|
61
|
+
* // "<keys>": "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // integrations: { // Integrations
|
|
64
|
+
* // resourceGroup: { // ResourceGroup
|
|
65
|
+
* // state: "CREATING" || "CREATE_COMPLETE" || "CREATE_FAILED" || "UPDATING" || "UPDATE_COMPLETE" || "UPDATE_FAILED",
|
|
66
|
+
* // arn: "STRING_VALUE",
|
|
67
|
+
* // errorMessage: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
52
72
|
* ```
|
|
53
73
|
*
|
|
54
74
|
* @param GetApplicationCommandInput - {@link GetApplicationCommandInput}
|
|
@@ -70,6 +90,8 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
70
90
|
* @throws {@link ValidationException} (client fault)
|
|
71
91
|
* <p>The request has invalid or missing parameters.</p>
|
|
72
92
|
*
|
|
93
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
73
95
|
*
|
|
74
96
|
*/
|
|
75
97
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -33,6 +33,21 @@ export interface GetAssociatedResourceCommandOutput extends GetAssociatedResourc
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetAssociatedResourceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetAssociatedResourceResponse
|
|
37
|
+
* // resource: { // Resource
|
|
38
|
+
* // name: "STRING_VALUE",
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // associationTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // integrations: { // ResourceIntegrations
|
|
42
|
+
* // resourceGroup: { // ResourceGroup
|
|
43
|
+
* // state: "CREATING" || "CREATE_COMPLETE" || "CREATE_FAILED" || "UPDATING" || "UPDATE_COMPLETE" || "UPDATE_FAILED",
|
|
44
|
+
* // arn: "STRING_VALUE",
|
|
45
|
+
* // errorMessage: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
36
51
|
* ```
|
|
37
52
|
*
|
|
38
53
|
* @param GetAssociatedResourceCommandInput - {@link GetAssociatedResourceCommandInput}
|
|
@@ -50,6 +65,8 @@ export interface GetAssociatedResourceCommandOutput extends GetAssociatedResourc
|
|
|
50
65
|
* @throws {@link ValidationException} (client fault)
|
|
51
66
|
* <p>The request has invalid or missing parameters.</p>
|
|
52
67
|
*
|
|
68
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
53
70
|
*
|
|
54
71
|
*/
|
|
55
72
|
export declare class GetAssociatedResourceCommand extends $Command<GetAssociatedResourceCommandInput, GetAssociatedResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -36,6 +36,20 @@ export interface GetAttributeGroupCommandOutput extends GetAttributeGroupRespons
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetAttributeGroupCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // GetAttributeGroupResponse
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // arn: "STRING_VALUE",
|
|
42
|
+
* // name: "STRING_VALUE",
|
|
43
|
+
* // description: "STRING_VALUE",
|
|
44
|
+
* // attributes: "STRING_VALUE",
|
|
45
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // tags: { // Tags
|
|
48
|
+
* // "<keys>": "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // createdBy: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
39
53
|
* ```
|
|
40
54
|
*
|
|
41
55
|
* @param GetAttributeGroupCommandInput - {@link GetAttributeGroupCommandInput}
|
|
@@ -57,6 +71,8 @@ export interface GetAttributeGroupCommandOutput extends GetAttributeGroupRespons
|
|
|
57
71
|
* @throws {@link ValidationException} (client fault)
|
|
58
72
|
* <p>The request has invalid or missing parameters.</p>
|
|
59
73
|
*
|
|
74
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
60
76
|
*
|
|
61
77
|
*/
|
|
62
78
|
export declare class GetAttributeGroupCommand extends $Command<GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -32,6 +32,14 @@ export interface GetConfigurationCommandOutput extends GetConfigurationResponse,
|
|
|
32
32
|
* const input = {};
|
|
33
33
|
* const command = new GetConfigurationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetConfigurationResponse
|
|
36
|
+
* // configuration: { // AppRegistryConfiguration
|
|
37
|
+
* // tagQueryConfiguration: { // TagQueryConfiguration
|
|
38
|
+
* // tagKey: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
35
43
|
* ```
|
|
36
44
|
*
|
|
37
45
|
* @param GetConfigurationCommandInput - {@link GetConfigurationCommandInput}
|
|
@@ -43,6 +51,8 @@ export interface GetConfigurationCommandOutput extends GetConfigurationResponse,
|
|
|
43
51
|
* @throws {@link InternalServerException} (server fault)
|
|
44
52
|
* <p>The service is experiencing internal problems.</p>
|
|
45
53
|
*
|
|
54
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
46
56
|
*
|
|
47
57
|
*/
|
|
48
58
|
export declare class GetConfigurationCommand extends $Command<GetConfigurationCommandInput, GetConfigurationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -32,6 +32,20 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListApplicationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListApplicationsResponse
|
|
36
|
+
* // applications: [ // ApplicationSummaries
|
|
37
|
+
* // { // ApplicationSummary
|
|
38
|
+
* // id: "STRING_VALUE",
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // name: "STRING_VALUE",
|
|
41
|
+
* // description: "STRING_VALUE",
|
|
42
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // nextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
35
49
|
* ```
|
|
36
50
|
*
|
|
37
51
|
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
@@ -46,6 +60,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
46
60
|
* @throws {@link ValidationException} (client fault)
|
|
47
61
|
* <p>The request has invalid or missing parameters.</p>
|
|
48
62
|
*
|
|
63
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
49
65
|
*
|
|
50
66
|
*/
|
|
51
67
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface ListAssociatedAttributeGroupsCommandOutput extends ListAssociat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListAssociatedAttributeGroupsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListAssociatedAttributeGroupsResponse
|
|
37
|
+
* // attributeGroups: [ // AttributeGroupIds
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // nextToken: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param ListAssociatedAttributeGroupsCommandInput - {@link ListAssociatedAttributeGroupsCommandInput}
|
|
@@ -50,6 +57,8 @@ export interface ListAssociatedAttributeGroupsCommandOutput extends ListAssociat
|
|
|
50
57
|
* @throws {@link ValidationException} (client fault)
|
|
51
58
|
* <p>The request has invalid or missing parameters.</p>
|
|
52
59
|
*
|
|
60
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
53
62
|
*
|
|
54
63
|
*/
|
|
55
64
|
export declare class ListAssociatedAttributeGroupsCommand extends $Command<ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -53,6 +53,20 @@ export interface ListAssociatedResourcesCommandOutput extends ListAssociatedReso
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new ListAssociatedResourcesCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // { // ListAssociatedResourcesResponse
|
|
57
|
+
* // resources: [ // Resources
|
|
58
|
+
* // { // ResourceInfo
|
|
59
|
+
* // name: "STRING_VALUE",
|
|
60
|
+
* // arn: "STRING_VALUE",
|
|
61
|
+
* // resourceType: "CFN_STACK" || "RESOURCE_TAG_VALUE",
|
|
62
|
+
* // resourceDetails: { // ResourceDetails
|
|
63
|
+
* // tagValue: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // nextToken: "STRING_VALUE",
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
56
70
|
* ```
|
|
57
71
|
*
|
|
58
72
|
* @param ListAssociatedResourcesCommandInput - {@link ListAssociatedResourcesCommandInput}
|
|
@@ -70,6 +84,8 @@ export interface ListAssociatedResourcesCommandOutput extends ListAssociatedReso
|
|
|
70
84
|
* @throws {@link ValidationException} (client fault)
|
|
71
85
|
* <p>The request has invalid or missing parameters.</p>
|
|
72
86
|
*
|
|
87
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
73
89
|
*
|
|
74
90
|
*/
|
|
75
91
|
export declare class ListAssociatedResourcesCommand extends $Command<ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -32,6 +32,21 @@ export interface ListAttributeGroupsCommandOutput extends ListAttributeGroupsRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListAttributeGroupsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListAttributeGroupsResponse
|
|
36
|
+
* // attributeGroups: [ // AttributeGroupSummaries
|
|
37
|
+
* // { // AttributeGroupSummary
|
|
38
|
+
* // id: "STRING_VALUE",
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // name: "STRING_VALUE",
|
|
41
|
+
* // description: "STRING_VALUE",
|
|
42
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // createdBy: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
35
50
|
* ```
|
|
36
51
|
*
|
|
37
52
|
* @param ListAttributeGroupsCommandInput - {@link ListAttributeGroupsCommandInput}
|
|
@@ -46,6 +61,8 @@ export interface ListAttributeGroupsCommandOutput extends ListAttributeGroupsRes
|
|
|
46
61
|
* @throws {@link ValidationException} (client fault)
|
|
47
62
|
* <p>The request has invalid or missing parameters.</p>
|
|
48
63
|
*
|
|
64
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
49
66
|
*
|
|
50
67
|
*/
|
|
51
68
|
export declare class ListAttributeGroupsCommand extends $Command<ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -33,6 +33,18 @@ export interface ListAttributeGroupsForApplicationCommandOutput extends ListAttr
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListAttributeGroupsForApplicationCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListAttributeGroupsForApplicationResponse
|
|
37
|
+
* // attributeGroupsDetails: [ // AttributeGroupDetailsList
|
|
38
|
+
* // { // AttributeGroupDetails
|
|
39
|
+
* // id: "STRING_VALUE",
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // createdBy: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // nextToken: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
36
48
|
* ```
|
|
37
49
|
*
|
|
38
50
|
* @param ListAttributeGroupsForApplicationCommandInput - {@link ListAttributeGroupsForApplicationCommandInput}
|
|
@@ -50,6 +62,8 @@ export interface ListAttributeGroupsForApplicationCommandOutput extends ListAttr
|
|
|
50
62
|
* @throws {@link ValidationException} (client fault)
|
|
51
63
|
* <p>The request has invalid or missing parameters.</p>
|
|
52
64
|
*
|
|
65
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
53
67
|
*
|
|
54
68
|
*/
|
|
55
69
|
export declare class ListAttributeGroupsForApplicationCommand extends $Command<ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // Tags
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
54
|
* @throws {@link ValidationException} (client fault)
|
|
49
55
|
* <p>The request has invalid or missing parameters.</p>
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface PutConfigurationCommandOutput extends __MetadataBearer {
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new PutConfigurationCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param PutConfigurationCommandInput - {@link PutConfigurationCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface PutConfigurationCommandOutput extends __MetadataBearer {
|
|
|
56
58
|
* @throws {@link ValidationException} (client fault)
|
|
57
59
|
* <p>The request has invalid or missing parameters.</p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class PutConfigurationCommand extends $Command<PutConfigurationCommandInput, PutConfigurationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -33,6 +33,12 @@ export interface SyncResourceCommandOutput extends SyncResourceResponse, __Metad
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new SyncResourceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // SyncResourceResponse
|
|
37
|
+
* // applicationArn: "STRING_VALUE",
|
|
38
|
+
* // resourceArn: "STRING_VALUE",
|
|
39
|
+
* // actionTaken: "START_SYNC" || "NO_ACTION",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
36
42
|
* ```
|
|
37
43
|
*
|
|
38
44
|
* @param SyncResourceCommandInput - {@link SyncResourceCommandInput}
|
|
@@ -61,6 +67,8 @@ export interface SyncResourceCommandOutput extends SyncResourceResponse, __Metad
|
|
|
61
67
|
* @throws {@link ValidationException} (client fault)
|
|
62
68
|
* <p>The request has invalid or missing parameters.</p>
|
|
63
69
|
*
|
|
70
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
64
72
|
*
|
|
65
73
|
*/
|
|
66
74
|
export declare class SyncResourceCommand extends $Command<SyncResourceCommandInput, SyncResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -36,6 +36,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new TagResourceCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
53
55
|
* @throws {@link ValidationException} (client fault)
|
|
54
56
|
* <p>The request has invalid or missing parameters.</p>
|
|
55
57
|
*
|
|
58
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
56
60
|
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UntagResourceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
52
54
|
* @throws {@link ValidationException} (client fault)
|
|
53
55
|
* <p>The request has invalid or missing parameters.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateApplicationCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdateApplicationResponse
|
|
37
|
+
* // application: { // Application
|
|
38
|
+
* // id: "STRING_VALUE",
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // name: "STRING_VALUE",
|
|
41
|
+
* // description: "STRING_VALUE",
|
|
42
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // tags: { // Tags
|
|
45
|
+
* // "<keys>": "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
|
|
@@ -61,6 +75,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
61
75
|
* @throws {@link ValidationException} (client fault)
|
|
62
76
|
* <p>The request has invalid or missing parameters.</p>
|
|
63
77
|
*
|
|
78
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
64
80
|
*
|
|
65
81
|
*/
|
|
66
82
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
@@ -34,6 +34,20 @@ export interface UpdateAttributeGroupCommandOutput extends UpdateAttributeGroupR
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateAttributeGroupCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // UpdateAttributeGroupResponse
|
|
38
|
+
* // attributeGroup: { // AttributeGroup
|
|
39
|
+
* // id: "STRING_VALUE",
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // description: "STRING_VALUE",
|
|
43
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // tags: { // Tags
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
37
51
|
* ```
|
|
38
52
|
*
|
|
39
53
|
* @param UpdateAttributeGroupCommandInput - {@link UpdateAttributeGroupCommandInput}
|
|
@@ -55,6 +69,8 @@ export interface UpdateAttributeGroupCommandOutput extends UpdateAttributeGroupR
|
|
|
55
69
|
* @throws {@link ValidationException} (client fault)
|
|
56
70
|
* <p>The request has invalid or missing parameters.</p>
|
|
57
71
|
*
|
|
72
|
+
* @throws {@link ServiceCatalogAppRegistryServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from ServiceCatalogAppRegistry service.</p>
|
|
58
74
|
*
|
|
59
75
|
*/
|
|
60
76
|
export declare class UpdateAttributeGroupCommand extends $Command<UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
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.
|
|
4
|
+
"version": "3.326.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",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|