@aws-sdk/client-ssm-sap 3.296.0 → 3.298.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-cjs/commands/DeleteResourcePermissionCommand.js +2 -3
- package/dist-cjs/commands/DeregisterApplicationCommand.js +2 -3
- package/dist-cjs/commands/GetApplicationCommand.js +2 -3
- package/dist-cjs/commands/GetComponentCommand.js +2 -3
- package/dist-cjs/commands/GetDatabaseCommand.js +1 -1
- package/dist-cjs/commands/GetOperationCommand.js +2 -3
- package/dist-cjs/commands/GetResourcePermissionCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -3
- package/dist-cjs/commands/ListComponentsCommand.js +2 -3
- package/dist-cjs/commands/ListDatabasesCommand.js +2 -3
- package/dist-cjs/commands/ListOperationsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/PutResourcePermissionCommand.js +2 -3
- package/dist-cjs/commands/RegisterApplicationCommand.js +1 -1
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateApplicationSettingsCommand.js +1 -1
- package/dist-cjs/models/models_0.js +1 -158
- package/dist-es/commands/DeleteResourcePermissionCommand.js +2 -3
- package/dist-es/commands/DeregisterApplicationCommand.js +2 -3
- package/dist-es/commands/GetApplicationCommand.js +2 -3
- package/dist-es/commands/GetComponentCommand.js +2 -3
- package/dist-es/commands/GetDatabaseCommand.js +2 -2
- package/dist-es/commands/GetOperationCommand.js +2 -3
- package/dist-es/commands/GetResourcePermissionCommand.js +2 -3
- package/dist-es/commands/ListApplicationsCommand.js +2 -3
- package/dist-es/commands/ListComponentsCommand.js +2 -3
- package/dist-es/commands/ListDatabasesCommand.js +2 -3
- package/dist-es/commands/ListOperationsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/PutResourcePermissionCommand.js +2 -3
- package/dist-es/commands/RegisterApplicationCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateApplicationSettingsCommand.js +2 -2
- package/dist-es/models/models_0.js +0 -117
- package/dist-types/SsmSap.d.ts +18 -0
- package/dist-types/SsmSapClient.d.ts +24 -4
- package/dist-types/commands/DeleteResourcePermissionCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentCommand.d.ts +16 -0
- package/dist-types/commands/GetDatabaseCommand.d.ts +16 -0
- package/dist-types/commands/GetOperationCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePermissionCommand.d.ts +16 -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 +16 -0
- package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePermissionCommand.d.ts +16 -0
- package/dist-types/commands/RegisterApplicationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +16 -0
- package/dist-types/models/SsmSapServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +149 -156
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDatabasesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -107
- package/package.json +4 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeregisterApplicationInput, DeregisterApplicationOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeregisterApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeregisterApplicationCommandInput extends DeregisterApplicationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeregisterApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeregisterApplicationCommandOutput extends DeregisterApplicationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deregister an SAP application with AWS Systems Manager for SAP. This action does not
|
|
18
23
|
* affect the existing setup of your SAP workloads on Amazon EC2.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeregisterApplicationCommandOutput extends DeregisterApplicatio
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeregisterApplicationCommandInput - {@link DeregisterApplicationCommandInput}
|
|
35
|
+
* @returns {@link DeregisterApplicationCommandOutput}
|
|
29
36
|
* @see {@link DeregisterApplicationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeregisterApplicationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface DeregisterApplicationCommandOutput extends DeregisterApplicatio
|
|
|
41
48
|
export declare class DeregisterApplicationCommand extends $Command<DeregisterApplicationCommandInput, DeregisterApplicationCommandOutput, SsmSapClientResolvedConfig> {
|
|
42
49
|
readonly input: DeregisterApplicationCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: DeregisterApplicationCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterApplicationCommandInput, DeregisterApplicationCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetApplicationInput, GetApplicationOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetApplicationCommandInput extends GetApplicationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetApplicationCommandOutput extends GetApplicationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets an application registered with AWS Systems Manager for SAP. It also returns the
|
|
18
23
|
* components of the application.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetApplicationCommandInput - {@link GetApplicationCommandInput}
|
|
35
|
+
* @returns {@link GetApplicationCommandOutput}
|
|
29
36
|
* @see {@link GetApplicationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetApplicationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
|
|
|
41
48
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, SsmSapClientResolvedConfig> {
|
|
42
49
|
readonly input: GetApplicationCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: GetApplicationCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetComponentInput, GetComponentOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetComponentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetComponentCommandInput extends GetComponentInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetComponentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetComponentCommandOutput extends GetComponentOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the component of an application registered with AWS Systems Manager for
|
|
18
23
|
* SAP.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetComponentCommandInput - {@link GetComponentCommandInput}
|
|
35
|
+
* @returns {@link GetComponentCommandOutput}
|
|
29
36
|
* @see {@link GetComponentCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetComponentCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat
|
|
|
41
48
|
export declare class GetComponentCommand extends $Command<GetComponentCommandInput, GetComponentCommandOutput, SsmSapClientResolvedConfig> {
|
|
42
49
|
readonly input: GetComponentCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: GetComponentCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComponentCommandInput, GetComponentCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetDatabaseInput, GetDatabaseOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDatabaseCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDatabaseCommandInput extends GetDatabaseInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDatabaseCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the SAP HANA database of an application registered with AWS Systems Manager for
|
|
18
23
|
* SAP.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetDatabaseCommandInput - {@link GetDatabaseCommandInput}
|
|
35
|
+
* @returns {@link GetDatabaseCommandOutput}
|
|
29
36
|
* @see {@link GetDatabaseCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetDatabaseCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB
|
|
|
41
48
|
export declare class GetDatabaseCommand extends $Command<GetDatabaseCommandInput, GetDatabaseCommandOutput, SsmSapClientResolvedConfig> {
|
|
42
49
|
readonly input: GetDatabaseCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: GetDatabaseCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDatabaseCommandInput, GetDatabaseCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetOperationInput, GetOperationOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetOperationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetOperationCommandInput extends GetOperationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetOperationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetOperationCommandOutput extends GetOperationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details of an operation by specifying the operation ID.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetOperationCommandOutput extends GetOperationOutput, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetOperationCommandInput - {@link GetOperationCommandInput}
|
|
34
|
+
* @returns {@link GetOperationCommandOutput}
|
|
28
35
|
* @see {@link GetOperationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetOperationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetOperationCommandOutput extends GetOperationOutput, __Metadat
|
|
|
40
47
|
export declare class GetOperationCommand extends $Command<GetOperationCommandInput, GetOperationCommandOutput, SsmSapClientResolvedConfig> {
|
|
41
48
|
readonly input: GetOperationCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetOperationCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOperationCommandInput, GetOperationCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetResourcePermissionInput, GetResourcePermissionOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourcePermissionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourcePermissionCommandInput extends GetResourcePermissionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourcePermissionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourcePermissionCommandOutput extends GetResourcePermissionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets permissions associated with the target database.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetResourcePermissionCommandOutput extends GetResourcePermissio
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetResourcePermissionCommandInput - {@link GetResourcePermissionCommandInput}
|
|
34
|
+
* @returns {@link GetResourcePermissionCommandOutput}
|
|
28
35
|
* @see {@link GetResourcePermissionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetResourcePermissionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetResourcePermissionCommandOutput extends GetResourcePermissio
|
|
|
43
50
|
export declare class GetResourcePermissionCommand extends $Command<GetResourcePermissionCommandInput, GetResourcePermissionCommandOutput, SsmSapClientResolvedConfig> {
|
|
44
51
|
readonly input: GetResourcePermissionCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetResourcePermissionCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcePermissionCommandInput, GetResourcePermissionCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListApplicationsInput, ListApplicationsOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListApplicationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListApplicationsCommandInput extends ListApplicationsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListApplicationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListApplicationsCommandOutput extends ListApplicationsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the applications registered with AWS Systems Manager for SAP.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
34
|
+
* @returns {@link ListApplicationsCommandOutput}
|
|
28
35
|
* @see {@link ListApplicationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
|
|
|
43
50
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, SsmSapClientResolvedConfig> {
|
|
44
51
|
readonly input: ListApplicationsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListApplicationsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListComponentsInput, ListComponentsOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListComponentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListComponentsCommandInput extends ListComponentsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListComponentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListComponentsCommandOutput extends ListComponentsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the components registered with AWS Systems Manager for SAP.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListComponentsCommandOutput extends ListComponentsOutput, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListComponentsCommandInput - {@link ListComponentsCommandInput}
|
|
34
|
+
* @returns {@link ListComponentsCommandOutput}
|
|
28
35
|
* @see {@link ListComponentsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListComponentsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListComponentsCommandOutput extends ListComponentsOutput, __Met
|
|
|
43
50
|
export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, SsmSapClientResolvedConfig> {
|
|
44
51
|
readonly input: ListComponentsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListComponentsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListDatabasesInput, ListDatabasesOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDatabasesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDatabasesCommandInput extends ListDatabasesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDatabasesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the SAP HANA databases of an application registered with AWS Systems Manager for
|
|
18
23
|
* SAP.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListDatabasesCommandInput - {@link ListDatabasesCommandInput}
|
|
35
|
+
* @returns {@link ListDatabasesCommandOutput}
|
|
29
36
|
* @see {@link ListDatabasesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListDatabasesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __Metad
|
|
|
44
51
|
export declare class ListDatabasesCommand extends $Command<ListDatabasesCommandInput, ListDatabasesCommandOutput, SsmSapClientResolvedConfig> {
|
|
45
52
|
readonly input: ListDatabasesCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: ListDatabasesCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatabasesCommandInput, ListDatabasesCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListOperationsInput, ListOperationsOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListOperationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListOperationsCommandInput extends ListOperationsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListOperationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListOperationsCommandOutput extends ListOperationsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the operations performed by AWS Systems Manager for SAP.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListOperationsCommandOutput extends ListOperationsOutput, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListOperationsCommandInput - {@link ListOperationsCommandInput}
|
|
34
|
+
* @returns {@link ListOperationsCommandOutput}
|
|
28
35
|
* @see {@link ListOperationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListOperationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface ListOperationsCommandOutput extends ListOperationsOutput, __Met
|
|
|
40
47
|
export declare class ListOperationsCommand extends $Command<ListOperationsCommandInput, ListOperationsCommandOutput, SsmSapClientResolvedConfig> {
|
|
41
48
|
readonly input: ListOperationsCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: ListOperationsCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOperationsCommandInput, ListOperationsCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all tags on an SAP HANA application and/or database registered with AWS Systems
|
|
18
23
|
* Manager for SAP.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
35
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
29
36
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
44
51
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SsmSapClientResolvedConfig> {
|
|
45
52
|
readonly input: ListTagsForResourceCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: ListTagsForResourceCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { PutResourcePermissionInput, PutResourcePermissionOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutResourcePermissionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutResourcePermissionCommandInput extends PutResourcePermissionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutResourcePermissionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutResourcePermissionCommandOutput extends PutResourcePermissionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds permissions to the target database.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface PutResourcePermissionCommandOutput extends PutResourcePermissio
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PutResourcePermissionCommandInput - {@link PutResourcePermissionCommandInput}
|
|
34
|
+
* @returns {@link PutResourcePermissionCommandOutput}
|
|
28
35
|
* @see {@link PutResourcePermissionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PutResourcePermissionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface PutResourcePermissionCommandOutput extends PutResourcePermissio
|
|
|
43
50
|
export declare class PutResourcePermissionCommand extends $Command<PutResourcePermissionCommandInput, PutResourcePermissionCommandOutput, SsmSapClientResolvedConfig> {
|
|
44
51
|
readonly input: PutResourcePermissionCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: PutResourcePermissionCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutResourcePermissionCommandInput, PutResourcePermissionCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RegisterApplicationInput, RegisterApplicationOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RegisterApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RegisterApplicationCommandInput extends RegisterApplicationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RegisterApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RegisterApplicationCommandOutput extends RegisterApplicationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Register an SAP application with AWS Systems Manager for SAP. You must meet the
|
|
18
23
|
* following requirements before registering. </p>
|
|
19
24
|
* <p>The SAP application you want to register with AWS Systems Manager for SAP is running
|
|
@@ -32,6 +37,8 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param RegisterApplicationCommandInput - {@link RegisterApplicationCommandInput}
|
|
41
|
+
* @returns {@link RegisterApplicationCommandOutput}
|
|
35
42
|
* @see {@link RegisterApplicationCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link RegisterApplicationCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut
|
|
|
50
57
|
export declare class RegisterApplicationCommand extends $Command<RegisterApplicationCommandInput, RegisterApplicationCommandOutput, SsmSapClientResolvedConfig> {
|
|
51
58
|
readonly input: RegisterApplicationCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: RegisterApplicationCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterApplicationCommandInput, RegisterApplicationCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|