@aws-sdk/client-ssm-sap 3.312.0 → 3.316.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/SsmSap.js +21 -238
- package/dist-cjs/protocols/Aws_restJson1.js +235 -447
- package/dist-es/SsmSap.js +21 -238
- package/dist-es/protocols/Aws_restJson1.js +214 -426
- package/dist-types/SsmSap.d.ts +26 -55
- package/dist-types/ts3.4/SsmSap.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/SsmSap.d.ts
CHANGED
|
@@ -17,144 +17,115 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
17
17
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
18
18
|
import { UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput } from "./commands/UpdateApplicationSettingsCommand";
|
|
19
19
|
import { SsmSapClient } from "./SsmSapClient";
|
|
20
|
-
|
|
21
|
-
* @public
|
|
22
|
-
* <p>This API reference provides descriptions, syntax, and other details about each of the
|
|
23
|
-
* actions and data types for AWS Systems Manager for SAP. The topic for each action shows
|
|
24
|
-
* the API request parameters and responses. </p>
|
|
25
|
-
*/
|
|
26
|
-
export declare class SsmSap extends SsmSapClient {
|
|
20
|
+
export interface SsmSap {
|
|
27
21
|
/**
|
|
28
|
-
* @
|
|
29
|
-
* <p>Removes permissions associated with the target database.</p>
|
|
22
|
+
* @see {@link DeleteResourcePermissionCommand}
|
|
30
23
|
*/
|
|
31
24
|
deleteResourcePermission(args: DeleteResourcePermissionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePermissionCommandOutput>;
|
|
32
25
|
deleteResourcePermission(args: DeleteResourcePermissionCommandInput, cb: (err: any, data?: DeleteResourcePermissionCommandOutput) => void): void;
|
|
33
26
|
deleteResourcePermission(args: DeleteResourcePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePermissionCommandOutput) => void): void;
|
|
34
27
|
/**
|
|
35
|
-
* @
|
|
36
|
-
* <p>Deregister an SAP application with AWS Systems Manager for SAP. This action does not
|
|
37
|
-
* affect the existing setup of your SAP workloads on Amazon EC2.</p>
|
|
28
|
+
* @see {@link DeregisterApplicationCommand}
|
|
38
29
|
*/
|
|
39
30
|
deregisterApplication(args: DeregisterApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterApplicationCommandOutput>;
|
|
40
31
|
deregisterApplication(args: DeregisterApplicationCommandInput, cb: (err: any, data?: DeregisterApplicationCommandOutput) => void): void;
|
|
41
32
|
deregisterApplication(args: DeregisterApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterApplicationCommandOutput) => void): void;
|
|
42
33
|
/**
|
|
43
|
-
* @
|
|
44
|
-
* <p>Gets an application registered with AWS Systems Manager for SAP. It also returns the
|
|
45
|
-
* components of the application.</p>
|
|
34
|
+
* @see {@link GetApplicationCommand}
|
|
46
35
|
*/
|
|
47
36
|
getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
|
|
48
37
|
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
49
38
|
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
50
39
|
/**
|
|
51
|
-
* @
|
|
52
|
-
* <p>Gets the component of an application registered with AWS Systems Manager for
|
|
53
|
-
* SAP.</p>
|
|
40
|
+
* @see {@link GetComponentCommand}
|
|
54
41
|
*/
|
|
55
42
|
getComponent(args: GetComponentCommandInput, options?: __HttpHandlerOptions): Promise<GetComponentCommandOutput>;
|
|
56
43
|
getComponent(args: GetComponentCommandInput, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
|
|
57
44
|
getComponent(args: GetComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
|
|
58
45
|
/**
|
|
59
|
-
* @
|
|
60
|
-
* <p>Gets the SAP HANA database of an application registered with AWS Systems Manager for
|
|
61
|
-
* SAP.</p>
|
|
46
|
+
* @see {@link GetDatabaseCommand}
|
|
62
47
|
*/
|
|
63
48
|
getDatabase(args: GetDatabaseCommandInput, options?: __HttpHandlerOptions): Promise<GetDatabaseCommandOutput>;
|
|
64
49
|
getDatabase(args: GetDatabaseCommandInput, cb: (err: any, data?: GetDatabaseCommandOutput) => void): void;
|
|
65
50
|
getDatabase(args: GetDatabaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDatabaseCommandOutput) => void): void;
|
|
66
51
|
/**
|
|
67
|
-
* @
|
|
68
|
-
* <p>Gets the details of an operation by specifying the operation ID.</p>
|
|
52
|
+
* @see {@link GetOperationCommand}
|
|
69
53
|
*/
|
|
70
54
|
getOperation(args: GetOperationCommandInput, options?: __HttpHandlerOptions): Promise<GetOperationCommandOutput>;
|
|
71
55
|
getOperation(args: GetOperationCommandInput, cb: (err: any, data?: GetOperationCommandOutput) => void): void;
|
|
72
56
|
getOperation(args: GetOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOperationCommandOutput) => void): void;
|
|
73
57
|
/**
|
|
74
|
-
* @
|
|
75
|
-
* <p>Gets permissions associated with the target database.</p>
|
|
58
|
+
* @see {@link GetResourcePermissionCommand}
|
|
76
59
|
*/
|
|
77
60
|
getResourcePermission(args: GetResourcePermissionCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePermissionCommandOutput>;
|
|
78
61
|
getResourcePermission(args: GetResourcePermissionCommandInput, cb: (err: any, data?: GetResourcePermissionCommandOutput) => void): void;
|
|
79
62
|
getResourcePermission(args: GetResourcePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePermissionCommandOutput) => void): void;
|
|
80
63
|
/**
|
|
81
|
-
* @
|
|
82
|
-
* <p>Lists all the applications registered with AWS Systems Manager for SAP.</p>
|
|
64
|
+
* @see {@link ListApplicationsCommand}
|
|
83
65
|
*/
|
|
84
66
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
85
67
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
86
68
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
87
69
|
/**
|
|
88
|
-
* @
|
|
89
|
-
* <p>Lists all the components registered with AWS Systems Manager for SAP.</p>
|
|
70
|
+
* @see {@link ListComponentsCommand}
|
|
90
71
|
*/
|
|
91
72
|
listComponents(args: ListComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentsCommandOutput>;
|
|
92
73
|
listComponents(args: ListComponentsCommandInput, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
93
74
|
listComponents(args: ListComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
94
75
|
/**
|
|
95
|
-
* @
|
|
96
|
-
* <p>Lists the SAP HANA databases of an application registered with AWS Systems Manager for
|
|
97
|
-
* SAP.</p>
|
|
76
|
+
* @see {@link ListDatabasesCommand}
|
|
98
77
|
*/
|
|
99
78
|
listDatabases(args: ListDatabasesCommandInput, options?: __HttpHandlerOptions): Promise<ListDatabasesCommandOutput>;
|
|
100
79
|
listDatabases(args: ListDatabasesCommandInput, cb: (err: any, data?: ListDatabasesCommandOutput) => void): void;
|
|
101
80
|
listDatabases(args: ListDatabasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatabasesCommandOutput) => void): void;
|
|
102
81
|
/**
|
|
103
|
-
* @
|
|
104
|
-
* <p>Lists the operations performed by AWS Systems Manager for SAP.</p>
|
|
82
|
+
* @see {@link ListOperationsCommand}
|
|
105
83
|
*/
|
|
106
84
|
listOperations(args: ListOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListOperationsCommandOutput>;
|
|
107
85
|
listOperations(args: ListOperationsCommandInput, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
108
86
|
listOperations(args: ListOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
109
87
|
/**
|
|
110
|
-
* @
|
|
111
|
-
* <p>Lists all tags on an SAP HANA application and/or database registered with AWS Systems
|
|
112
|
-
* Manager for SAP.</p>
|
|
88
|
+
* @see {@link ListTagsForResourceCommand}
|
|
113
89
|
*/
|
|
114
90
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
115
91
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
116
92
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
117
93
|
/**
|
|
118
|
-
* @
|
|
119
|
-
* <p>Adds permissions to the target database.</p>
|
|
94
|
+
* @see {@link PutResourcePermissionCommand}
|
|
120
95
|
*/
|
|
121
96
|
putResourcePermission(args: PutResourcePermissionCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePermissionCommandOutput>;
|
|
122
97
|
putResourcePermission(args: PutResourcePermissionCommandInput, cb: (err: any, data?: PutResourcePermissionCommandOutput) => void): void;
|
|
123
98
|
putResourcePermission(args: PutResourcePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePermissionCommandOutput) => void): void;
|
|
124
99
|
/**
|
|
125
|
-
* @
|
|
126
|
-
* <p>Register an SAP application with AWS Systems Manager for SAP. You must meet the
|
|
127
|
-
* following requirements before registering. </p>
|
|
128
|
-
* <p>The SAP application you want to register with AWS Systems Manager for SAP is running
|
|
129
|
-
* on Amazon EC2.</p>
|
|
130
|
-
* <p>AWS Systems Manager Agent must be setup on an Amazon EC2 instance along with the required
|
|
131
|
-
* IAM permissions.</p>
|
|
132
|
-
* <p>Amazon EC2 instance(s) must have access to the secrets created in AWS Secrets Manager to
|
|
133
|
-
* manage SAP applications and components.</p>
|
|
100
|
+
* @see {@link RegisterApplicationCommand}
|
|
134
101
|
*/
|
|
135
102
|
registerApplication(args: RegisterApplicationCommandInput, options?: __HttpHandlerOptions): Promise<RegisterApplicationCommandOutput>;
|
|
136
103
|
registerApplication(args: RegisterApplicationCommandInput, cb: (err: any, data?: RegisterApplicationCommandOutput) => void): void;
|
|
137
104
|
registerApplication(args: RegisterApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterApplicationCommandOutput) => void): void;
|
|
138
105
|
/**
|
|
139
|
-
* @
|
|
140
|
-
* <p>Creates tag for a resource by specifying the ARN.</p>
|
|
106
|
+
* @see {@link TagResourceCommand}
|
|
141
107
|
*/
|
|
142
108
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
143
109
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
144
110
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
145
111
|
/**
|
|
146
|
-
* @
|
|
147
|
-
* <p>Delete the tags for a resource.</p>
|
|
112
|
+
* @see {@link UntagResourceCommand}
|
|
148
113
|
*/
|
|
149
114
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
150
115
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
151
116
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
152
117
|
/**
|
|
153
|
-
* @
|
|
154
|
-
* <p>Updates the settings of an application registered with AWS Systems Manager for
|
|
155
|
-
* SAP.</p>
|
|
118
|
+
* @see {@link UpdateApplicationSettingsCommand}
|
|
156
119
|
*/
|
|
157
120
|
updateApplicationSettings(args: UpdateApplicationSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationSettingsCommandOutput>;
|
|
158
121
|
updateApplicationSettings(args: UpdateApplicationSettingsCommandInput, cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void): void;
|
|
159
122
|
updateApplicationSettings(args: UpdateApplicationSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void): void;
|
|
160
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* @public
|
|
126
|
+
* <p>This API reference provides descriptions, syntax, and other details about each of the
|
|
127
|
+
* actions and data types for AWS Systems Manager for SAP. The topic for each action shows
|
|
128
|
+
* the API request parameters and responses. </p>
|
|
129
|
+
*/
|
|
130
|
+
export declare class SsmSap extends SsmSapClient implements SsmSap {
|
|
131
|
+
}
|
|
@@ -68,7 +68,7 @@ import {
|
|
|
68
68
|
UpdateApplicationSettingsCommandOutput,
|
|
69
69
|
} from "./commands/UpdateApplicationSettingsCommand";
|
|
70
70
|
import { SsmSapClient } from "./SsmSapClient";
|
|
71
|
-
export
|
|
71
|
+
export interface SsmSap {
|
|
72
72
|
deleteResourcePermission(
|
|
73
73
|
args: DeleteResourcePermissionCommandInput,
|
|
74
74
|
options?: __HttpHandlerOptions
|
|
@@ -291,3 +291,4 @@ export declare class SsmSap extends SsmSapClient {
|
|
|
291
291
|
cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void
|
|
292
292
|
): void;
|
|
293
293
|
}
|
|
294
|
+
export declare class SsmSap extends SsmSapClient implements SsmSap {}
|
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.316.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.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.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",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.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.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|