@aws-sdk/client-ssm-sap 3.325.0 → 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/DeleteResourcePermissionCommand.d.ts +6 -0
- package/dist-types/commands/DeregisterApplicationCommand.d.ts +4 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +20 -0
- package/dist-types/commands/GetComponentCommand.d.ts +24 -0
- package/dist-types/commands/GetDatabaseCommand.d.ts +27 -0
- package/dist-types/commands/GetOperationCommand.d.ts +20 -0
- package/dist-types/commands/GetResourcePermissionCommand.d.ts +6 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListDatabasesCommand.d.ts +18 -0
- package/dist-types/commands/ListOperationsCommand.d.ts +23 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/PutResourcePermissionCommand.d.ts +6 -0
- package/dist-types/commands/RegisterApplicationCommand.d.ts +18 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +9 -0
- package/package.json +3 -3
|
@@ -33,6 +33,10 @@ export interface DeleteResourcePermissionCommandOutput extends DeleteResourcePer
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteResourcePermissionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DeleteResourcePermissionOutput
|
|
37
|
+
* // Policy: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param DeleteResourcePermissionCommandInput - {@link DeleteResourcePermissionCommandInput}
|
|
@@ -50,6 +54,8 @@ export interface DeleteResourcePermissionCommandOutput extends DeleteResourcePer
|
|
|
50
54
|
* @throws {@link ValidationException} (client fault)
|
|
51
55
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
52
56
|
*
|
|
57
|
+
* @throws {@link SsmSapServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
53
59
|
*
|
|
54
60
|
*/
|
|
55
61
|
export declare class DeleteResourcePermissionCommand extends $Command<DeleteResourcePermissionCommandInput, DeleteResourcePermissionCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeregisterApplicationCommandOutput extends DeregisterApplicatio
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeregisterApplicationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeregisterApplicationCommandInput - {@link DeregisterApplicationCommandInput}
|
|
@@ -46,6 +48,8 @@ export interface DeregisterApplicationCommandOutput extends DeregisterApplicatio
|
|
|
46
48
|
* @throws {@link ValidationException} (client fault)
|
|
47
49
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
48
50
|
*
|
|
51
|
+
* @throws {@link SsmSapServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
49
53
|
*
|
|
50
54
|
*/
|
|
51
55
|
export declare class DeregisterApplicationCommand extends $Command<DeregisterApplicationCommandInput, DeregisterApplicationCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -34,6 +34,24 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetApplicationCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetApplicationOutput
|
|
38
|
+
* // Application: { // Application
|
|
39
|
+
* // Id: "STRING_VALUE",
|
|
40
|
+
* // Type: "STRING_VALUE",
|
|
41
|
+
* // Arn: "STRING_VALUE",
|
|
42
|
+
* // AppRegistryArn: "STRING_VALUE",
|
|
43
|
+
* // Status: "STRING_VALUE",
|
|
44
|
+
* // Components: [ // ComponentIdList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
48
|
+
* // StatusMessage: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // Tags: { // TagMap
|
|
51
|
+
* // "<keys>": "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
37
55
|
* ```
|
|
38
56
|
*
|
|
39
57
|
* @param GetApplicationCommandInput - {@link GetApplicationCommandInput}
|
|
@@ -48,6 +66,8 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
|
|
|
48
66
|
* @throws {@link ValidationException} (client fault)
|
|
49
67
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
50
68
|
*
|
|
69
|
+
* @throws {@link SsmSapServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
51
71
|
*
|
|
52
72
|
*/
|
|
53
73
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -33,6 +33,28 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetComponentCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetComponentOutput
|
|
37
|
+
* // Component: { // Component
|
|
38
|
+
* // ComponentId: "STRING_VALUE",
|
|
39
|
+
* // ApplicationId: "STRING_VALUE",
|
|
40
|
+
* // ComponentType: "STRING_VALUE",
|
|
41
|
+
* // Status: "STRING_VALUE",
|
|
42
|
+
* // Databases: [ // DatabaseIdList
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // Hosts: [ // HostList
|
|
46
|
+
* // { // Host
|
|
47
|
+
* // HostName: "STRING_VALUE",
|
|
48
|
+
* // HostRole: "STRING_VALUE",
|
|
49
|
+
* // HostIp: "STRING_VALUE",
|
|
50
|
+
* // InstanceId: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // PrimaryHost: "STRING_VALUE",
|
|
54
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
36
58
|
* ```
|
|
37
59
|
*
|
|
38
60
|
* @param GetComponentCommandInput - {@link GetComponentCommandInput}
|
|
@@ -47,6 +69,8 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat
|
|
|
47
69
|
* @throws {@link ValidationException} (client fault)
|
|
48
70
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
49
71
|
*
|
|
72
|
+
* @throws {@link SsmSapServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
50
74
|
*
|
|
51
75
|
*/
|
|
52
76
|
export declare class GetComponentCommand extends $Command<GetComponentCommandInput, GetComponentCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -35,6 +35,31 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetDatabaseCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetDatabaseOutput
|
|
39
|
+
* // Database: { // Database
|
|
40
|
+
* // ApplicationId: "STRING_VALUE",
|
|
41
|
+
* // ComponentId: "STRING_VALUE",
|
|
42
|
+
* // Credentials: [ // ApplicationCredentialList
|
|
43
|
+
* // { // ApplicationCredential
|
|
44
|
+
* // DatabaseName: "STRING_VALUE", // required
|
|
45
|
+
* // CredentialType: "STRING_VALUE", // required
|
|
46
|
+
* // SecretId: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // DatabaseId: "STRING_VALUE",
|
|
50
|
+
* // DatabaseName: "STRING_VALUE",
|
|
51
|
+
* // DatabaseType: "STRING_VALUE",
|
|
52
|
+
* // Arn: "STRING_VALUE",
|
|
53
|
+
* // Status: "STRING_VALUE",
|
|
54
|
+
* // PrimaryHost: "STRING_VALUE",
|
|
55
|
+
* // SQLPort: Number("int"),
|
|
56
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
57
|
+
* // },
|
|
58
|
+
* // Tags: { // TagMap
|
|
59
|
+
* // "<keys>": "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
38
63
|
* ```
|
|
39
64
|
*
|
|
40
65
|
* @param GetDatabaseCommandInput - {@link GetDatabaseCommandInput}
|
|
@@ -49,6 +74,8 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB
|
|
|
49
74
|
* @throws {@link ValidationException} (client fault)
|
|
50
75
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
51
76
|
*
|
|
77
|
+
* @throws {@link SsmSapServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
52
79
|
*
|
|
53
80
|
*/
|
|
54
81
|
export declare class GetDatabaseCommand extends $Command<GetDatabaseCommandInput, GetDatabaseCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -31,6 +31,24 @@ export interface GetOperationCommandOutput extends GetOperationOutput, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetOperationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetOperationOutput
|
|
35
|
+
* // Operation: { // Operation
|
|
36
|
+
* // Id: "STRING_VALUE",
|
|
37
|
+
* // Type: "STRING_VALUE",
|
|
38
|
+
* // Status: "STRING_VALUE",
|
|
39
|
+
* // StatusMessage: "STRING_VALUE",
|
|
40
|
+
* // Properties: { // OperationProperties
|
|
41
|
+
* // "<keys>": "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // ResourceType: "STRING_VALUE",
|
|
44
|
+
* // ResourceId: "STRING_VALUE",
|
|
45
|
+
* // ResourceArn: "STRING_VALUE",
|
|
46
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // },
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
34
52
|
* ```
|
|
35
53
|
*
|
|
36
54
|
* @param GetOperationCommandInput - {@link GetOperationCommandInput}
|
|
@@ -45,6 +63,8 @@ export interface GetOperationCommandOutput extends GetOperationOutput, __Metadat
|
|
|
45
63
|
* @throws {@link ValidationException} (client fault)
|
|
46
64
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
47
65
|
*
|
|
66
|
+
* @throws {@link SsmSapServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
48
68
|
*
|
|
49
69
|
*/
|
|
50
70
|
export declare class GetOperationCommand extends $Command<GetOperationCommandInput, GetOperationCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface GetResourcePermissionCommandOutput extends GetResourcePermissio
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetResourcePermissionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetResourcePermissionOutput
|
|
36
|
+
* // Policy: "STRING_VALUE",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param GetResourcePermissionCommandInput - {@link GetResourcePermissionCommandInput}
|
|
@@ -49,6 +53,8 @@ export interface GetResourcePermissionCommandOutput extends GetResourcePermissio
|
|
|
49
53
|
* @throws {@link ValidationException} (client fault)
|
|
50
54
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
51
55
|
*
|
|
56
|
+
* @throws {@link SsmSapServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
52
58
|
*
|
|
53
59
|
*/
|
|
54
60
|
export declare class GetResourcePermissionCommand extends $Command<GetResourcePermissionCommandInput, GetResourcePermissionCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -32,6 +32,20 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListApplicationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListApplicationsOutput
|
|
36
|
+
* // Applications: [ // ApplicationSummaryList
|
|
37
|
+
* // { // ApplicationSummary
|
|
38
|
+
* // Id: "STRING_VALUE",
|
|
39
|
+
* // Type: "STRING_VALUE",
|
|
40
|
+
* // Arn: "STRING_VALUE",
|
|
41
|
+
* // Tags: { // TagMap
|
|
42
|
+
* // "<keys>": "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // NextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
35
49
|
* ```
|
|
36
50
|
*
|
|
37
51
|
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
@@ -49,6 +63,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
|
|
|
49
63
|
* @throws {@link ValidationException} (client fault)
|
|
50
64
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
51
65
|
*
|
|
66
|
+
* @throws {@link SsmSapServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
52
68
|
*
|
|
53
69
|
*/
|
|
54
70
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface ListComponentsCommandOutput extends ListComponentsOutput, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListComponentsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListComponentsOutput
|
|
37
|
+
* // Components: [ // ComponentSummaryList
|
|
38
|
+
* // { // ComponentSummary
|
|
39
|
+
* // ApplicationId: "STRING_VALUE",
|
|
40
|
+
* // ComponentId: "STRING_VALUE",
|
|
41
|
+
* // ComponentType: "STRING_VALUE",
|
|
42
|
+
* // Tags: { // TagMap
|
|
43
|
+
* // "<keys>": "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // NextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param ListComponentsCommandInput - {@link ListComponentsCommandInput}
|
|
@@ -50,6 +64,8 @@ export interface ListComponentsCommandOutput extends ListComponentsOutput, __Met
|
|
|
50
64
|
* @throws {@link ValidationException} (client fault)
|
|
51
65
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
52
66
|
*
|
|
67
|
+
* @throws {@link SsmSapServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
53
69
|
*
|
|
54
70
|
*/
|
|
55
71
|
export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -35,6 +35,22 @@ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __Metad
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListDatabasesCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListDatabasesOutput
|
|
39
|
+
* // Databases: [ // DatabaseSummaryList
|
|
40
|
+
* // { // DatabaseSummary
|
|
41
|
+
* // ApplicationId: "STRING_VALUE",
|
|
42
|
+
* // ComponentId: "STRING_VALUE",
|
|
43
|
+
* // DatabaseId: "STRING_VALUE",
|
|
44
|
+
* // DatabaseType: "STRING_VALUE",
|
|
45
|
+
* // Arn: "STRING_VALUE",
|
|
46
|
+
* // Tags: { // TagMap
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // NextToken: "STRING_VALUE",
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
38
54
|
* ```
|
|
39
55
|
*
|
|
40
56
|
* @param ListDatabasesCommandInput - {@link ListDatabasesCommandInput}
|
|
@@ -52,6 +68,8 @@ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __Metad
|
|
|
52
68
|
* @throws {@link ValidationException} (client fault)
|
|
53
69
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
54
70
|
*
|
|
71
|
+
* @throws {@link SsmSapServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
55
73
|
*
|
|
56
74
|
*/
|
|
57
75
|
export declare class ListDatabasesCommand extends $Command<ListDatabasesCommandInput, ListDatabasesCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -40,6 +40,27 @@ export interface ListOperationsCommandOutput extends ListOperationsOutput, __Met
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListOperationsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListOperationsOutput
|
|
44
|
+
* // Operations: [ // OperationList
|
|
45
|
+
* // { // Operation
|
|
46
|
+
* // Id: "STRING_VALUE",
|
|
47
|
+
* // Type: "STRING_VALUE",
|
|
48
|
+
* // Status: "STRING_VALUE",
|
|
49
|
+
* // StatusMessage: "STRING_VALUE",
|
|
50
|
+
* // Properties: { // OperationProperties
|
|
51
|
+
* // "<keys>": "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ResourceType: "STRING_VALUE",
|
|
54
|
+
* // ResourceId: "STRING_VALUE",
|
|
55
|
+
* // ResourceArn: "STRING_VALUE",
|
|
56
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
57
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
58
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // NextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
43
64
|
* ```
|
|
44
65
|
*
|
|
45
66
|
* @param ListOperationsCommandInput - {@link ListOperationsCommandInput}
|
|
@@ -54,6 +75,8 @@ export interface ListOperationsCommandOutput extends ListOperationsOutput, __Met
|
|
|
54
75
|
* @throws {@link ValidationException} (client fault)
|
|
55
76
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
56
77
|
*
|
|
78
|
+
* @throws {@link SsmSapServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
57
80
|
*
|
|
58
81
|
*/
|
|
59
82
|
export declare class ListOperationsCommand extends $Command<ListOperationsCommandInput, ListOperationsCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -32,6 +32,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListTagsForResourceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListTagsForResourceResponse
|
|
36
|
+
* // tags: { // TagMap
|
|
37
|
+
* // "<keys>": "STRING_VALUE",
|
|
38
|
+
* // },
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
35
41
|
* ```
|
|
36
42
|
*
|
|
37
43
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -49,6 +55,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
49
55
|
* @throws {@link ValidationException} (client fault)
|
|
50
56
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
51
57
|
*
|
|
58
|
+
* @throws {@link SsmSapServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
52
60
|
*
|
|
53
61
|
*/
|
|
54
62
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -33,6 +33,10 @@ export interface PutResourcePermissionCommandOutput extends PutResourcePermissio
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new PutResourcePermissionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // PutResourcePermissionOutput
|
|
37
|
+
* // Policy: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param PutResourcePermissionCommandInput - {@link PutResourcePermissionCommandInput}
|
|
@@ -50,6 +54,8 @@ export interface PutResourcePermissionCommandOutput extends PutResourcePermissio
|
|
|
50
54
|
* @throws {@link ValidationException} (client fault)
|
|
51
55
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
52
56
|
*
|
|
57
|
+
* @throws {@link SsmSapServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
53
59
|
*
|
|
54
60
|
*/
|
|
55
61
|
export declare class PutResourcePermissionCommand extends $Command<PutResourcePermissionCommandInput, PutResourcePermissionCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -54,6 +54,22 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut
|
|
|
54
54
|
* };
|
|
55
55
|
* const command = new RegisterApplicationCommand(input);
|
|
56
56
|
* const response = await client.send(command);
|
|
57
|
+
* // { // RegisterApplicationOutput
|
|
58
|
+
* // Application: { // Application
|
|
59
|
+
* // Id: "STRING_VALUE",
|
|
60
|
+
* // Type: "STRING_VALUE",
|
|
61
|
+
* // Arn: "STRING_VALUE",
|
|
62
|
+
* // AppRegistryArn: "STRING_VALUE",
|
|
63
|
+
* // Status: "STRING_VALUE",
|
|
64
|
+
* // Components: [ // ComponentIdList
|
|
65
|
+
* // "STRING_VALUE",
|
|
66
|
+
* // ],
|
|
67
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
68
|
+
* // StatusMessage: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // OperationId: "STRING_VALUE",
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
57
73
|
* ```
|
|
58
74
|
*
|
|
59
75
|
* @param RegisterApplicationCommandInput - {@link RegisterApplicationCommandInput}
|
|
@@ -71,6 +87,8 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut
|
|
|
71
87
|
* @throws {@link ValidationException} (client fault)
|
|
72
88
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
73
89
|
*
|
|
90
|
+
* @throws {@link SsmSapServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
74
92
|
*
|
|
75
93
|
*/
|
|
76
94
|
export declare class RegisterApplicationCommand extends $Command<RegisterApplicationCommandInput, RegisterApplicationCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link SsmSapServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link SsmSapServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SsmSapClientResolvedConfig> {
|
|
@@ -46,6 +46,13 @@ export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicatio
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new UpdateApplicationSettingsCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // UpdateApplicationSettingsOutput
|
|
50
|
+
* // Message: "STRING_VALUE",
|
|
51
|
+
* // OperationIds: [ // OperationIdList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
49
56
|
* ```
|
|
50
57
|
*
|
|
51
58
|
* @param UpdateApplicationSettingsCommandInput - {@link UpdateApplicationSettingsCommandInput}
|
|
@@ -63,6 +70,8 @@ export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicatio
|
|
|
63
70
|
* @throws {@link ValidationException} (client fault)
|
|
64
71
|
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
65
72
|
*
|
|
73
|
+
* @throws {@link SsmSapServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
66
75
|
*
|
|
67
76
|
*/
|
|
68
77
|
export declare class UpdateApplicationSettingsCommand extends $Command<UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput, SsmSapClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-sap",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Sap 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,9 +21,9 @@
|
|
|
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",
|