@aws-sdk/client-ssm-sap 3.256.0 → 3.258.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 +15 -0
- package/dist-cjs/commands/ListOperationsCommand.js +46 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +20 -2
- package/dist-cjs/pagination/ListOperationsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +91 -1
- package/dist-cjs/runtimeConfig.browser.js +0 -3
- package/dist-cjs/runtimeConfig.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +3 -0
- package/dist-es/SsmSap.js +15 -0
- package/dist-es/commands/ListOperationsCommand.js +42 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +15 -0
- package/dist-es/pagination/ListOperationsPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +88 -0
- package/dist-es/runtimeConfig.browser.js +0 -3
- package/dist-es/runtimeConfig.js +0 -3
- package/dist-es/runtimeConfig.shared.js +3 -0
- package/dist-types/SsmSap.d.ts +11 -3
- package/dist-types/SsmSapClient.d.ts +3 -2
- package/dist-types/commands/ListOperationsCommand.d.ts +37 -0
- package/dist-types/commands/RegisterApplicationCommand.d.ts +2 -2
- package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +214 -127
- package/dist-types/pagination/ListOperationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/SsmSap.d.ts +17 -0
- package/dist-types/ts3.4/SsmSapClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +28 -0
- package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +30 -31
|
@@ -14,39 +14,39 @@ export declare enum ApplicationType {
|
|
|
14
14
|
HANA = "HANA"
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* <p
|
|
17
|
+
* <p>An SAP application registered with AWS Systems Manager for SAP.</p>
|
|
18
18
|
*/
|
|
19
19
|
export interface Application {
|
|
20
20
|
/**
|
|
21
|
-
* <p
|
|
21
|
+
* <p>The ID of the application.</p>
|
|
22
22
|
*/
|
|
23
23
|
Id?: string;
|
|
24
24
|
/**
|
|
25
|
-
* <p
|
|
25
|
+
* <p>The type of the application.</p>
|
|
26
26
|
*/
|
|
27
27
|
Type?: ApplicationType | string;
|
|
28
28
|
/**
|
|
29
|
-
* <p
|
|
29
|
+
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
30
30
|
*/
|
|
31
31
|
Arn?: string;
|
|
32
32
|
/**
|
|
33
|
-
* <p
|
|
33
|
+
* <p>The Amazon Resource Name (ARN) of the Application Registry.</p>
|
|
34
34
|
*/
|
|
35
35
|
AppRegistryArn?: string;
|
|
36
36
|
/**
|
|
37
|
-
* <p
|
|
37
|
+
* <p>The status of the application.</p>
|
|
38
38
|
*/
|
|
39
39
|
Status?: ApplicationStatus | string;
|
|
40
40
|
/**
|
|
41
|
-
* <p
|
|
41
|
+
* <p>The components of the application.</p>
|
|
42
42
|
*/
|
|
43
43
|
Components?: string[];
|
|
44
44
|
/**
|
|
45
|
-
* <p
|
|
45
|
+
* <p>The time at which the application was last updated.</p>
|
|
46
46
|
*/
|
|
47
47
|
LastUpdated?: Date;
|
|
48
48
|
/**
|
|
49
|
-
* <p
|
|
49
|
+
* <p>The status message.</p>
|
|
50
50
|
*/
|
|
51
51
|
StatusMessage?: string;
|
|
52
52
|
}
|
|
@@ -54,40 +54,42 @@ export declare enum CredentialType {
|
|
|
54
54
|
ADMIN = "ADMIN"
|
|
55
55
|
}
|
|
56
56
|
/**
|
|
57
|
-
* <p
|
|
57
|
+
* <p>The credentials of your SAP application.</p>
|
|
58
58
|
*/
|
|
59
59
|
export interface ApplicationCredential {
|
|
60
60
|
/**
|
|
61
|
-
* <p
|
|
61
|
+
* <p>The name of the SAP HANA database.</p>
|
|
62
62
|
*/
|
|
63
63
|
DatabaseName: string | undefined;
|
|
64
64
|
/**
|
|
65
|
-
* <p
|
|
65
|
+
* <p>The type of the application credentials. </p>
|
|
66
66
|
*/
|
|
67
67
|
CredentialType: CredentialType | string | undefined;
|
|
68
68
|
/**
|
|
69
|
-
* <p
|
|
69
|
+
* <p>The secret ID created in AWS Secrets Manager to store the credentials of the SAP
|
|
70
|
+
* application. </p>
|
|
70
71
|
*/
|
|
71
72
|
SecretId: string | undefined;
|
|
72
73
|
}
|
|
73
74
|
/**
|
|
74
|
-
* <p
|
|
75
|
+
* <p>The summary of the SAP application registered with AWS Systems Manager for SAP.
|
|
76
|
+
* </p>
|
|
75
77
|
*/
|
|
76
78
|
export interface ApplicationSummary {
|
|
77
79
|
/**
|
|
78
|
-
* <p
|
|
80
|
+
* <p>The ID of the application.</p>
|
|
79
81
|
*/
|
|
80
82
|
Id?: string;
|
|
81
83
|
/**
|
|
82
|
-
* <p
|
|
84
|
+
* <p>The type of the application.</p>
|
|
83
85
|
*/
|
|
84
86
|
Type?: ApplicationType | string;
|
|
85
87
|
/**
|
|
86
|
-
* <p
|
|
88
|
+
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
87
89
|
*/
|
|
88
90
|
Arn?: string;
|
|
89
91
|
/**
|
|
90
|
-
* <p
|
|
92
|
+
* <p>The tags on the application.</p>
|
|
91
93
|
*/
|
|
92
94
|
Tags?: Record<string, string>;
|
|
93
95
|
}
|
|
@@ -101,23 +103,23 @@ export declare enum HostRole {
|
|
|
101
103
|
WORKER = "WORKER"
|
|
102
104
|
}
|
|
103
105
|
/**
|
|
104
|
-
* <p
|
|
106
|
+
* <p>Describes the properties of the Dedicated Host. </p>
|
|
105
107
|
*/
|
|
106
108
|
export interface Host {
|
|
107
109
|
/**
|
|
108
|
-
* <p
|
|
110
|
+
* <p>The name of the Dedicated Host.</p>
|
|
109
111
|
*/
|
|
110
112
|
HostName?: string;
|
|
111
113
|
/**
|
|
112
|
-
* <p
|
|
114
|
+
* <p>The role of the Dedicated Host.</p>
|
|
113
115
|
*/
|
|
114
116
|
HostRole?: HostRole | string;
|
|
115
117
|
/**
|
|
116
|
-
* <p
|
|
118
|
+
* <p>The IP address of the Dedicated Host. </p>
|
|
117
119
|
*/
|
|
118
120
|
HostIp?: string;
|
|
119
121
|
/**
|
|
120
|
-
* <p
|
|
122
|
+
* <p>The instance ID of the instance on the Dedicated Host.</p>
|
|
121
123
|
*/
|
|
122
124
|
InstanceId?: string;
|
|
123
125
|
}
|
|
@@ -125,65 +127,65 @@ export declare enum ComponentStatus {
|
|
|
125
127
|
ACTIVATED = "ACTIVATED"
|
|
126
128
|
}
|
|
127
129
|
/**
|
|
128
|
-
* <p
|
|
130
|
+
* <p>The SAP component of your application.</p>
|
|
129
131
|
*/
|
|
130
132
|
export interface Component {
|
|
131
133
|
/**
|
|
132
|
-
* <p
|
|
134
|
+
* <p>The ID of the component.</p>
|
|
133
135
|
*/
|
|
134
136
|
ComponentId?: string;
|
|
135
137
|
/**
|
|
136
|
-
* <p
|
|
138
|
+
* <p>The ID of the application.</p>
|
|
137
139
|
*/
|
|
138
140
|
ApplicationId?: string;
|
|
139
141
|
/**
|
|
140
|
-
* <p
|
|
142
|
+
* <p>The type of the component.</p>
|
|
141
143
|
*/
|
|
142
144
|
ComponentType?: ComponentType | string;
|
|
143
145
|
/**
|
|
144
|
-
* <p
|
|
146
|
+
* <p>The status of the component.</p>
|
|
145
147
|
*/
|
|
146
148
|
Status?: ComponentStatus | string;
|
|
147
149
|
/**
|
|
148
|
-
* <p
|
|
150
|
+
* <p>The SAP HANA databases of the component.</p>
|
|
149
151
|
*/
|
|
150
152
|
Databases?: string[];
|
|
151
153
|
/**
|
|
152
|
-
* <p
|
|
154
|
+
* <p>The hosts of the component.</p>
|
|
153
155
|
*/
|
|
154
156
|
Hosts?: Host[];
|
|
155
157
|
/**
|
|
156
|
-
* <p
|
|
158
|
+
* <p>The primary host of the component.</p>
|
|
157
159
|
*/
|
|
158
160
|
PrimaryHost?: string;
|
|
159
161
|
/**
|
|
160
|
-
* <p
|
|
162
|
+
* <p>The time at which the component was last updated.</p>
|
|
161
163
|
*/
|
|
162
164
|
LastUpdated?: Date;
|
|
163
165
|
}
|
|
164
166
|
/**
|
|
165
|
-
* <p
|
|
167
|
+
* <p>The summary of the component.</p>
|
|
166
168
|
*/
|
|
167
169
|
export interface ComponentSummary {
|
|
168
170
|
/**
|
|
169
|
-
* <p
|
|
171
|
+
* <p>The ID of the application.</p>
|
|
170
172
|
*/
|
|
171
173
|
ApplicationId?: string;
|
|
172
174
|
/**
|
|
173
|
-
* <p
|
|
175
|
+
* <p>The ID of the component.</p>
|
|
174
176
|
*/
|
|
175
177
|
ComponentId?: string;
|
|
176
178
|
/**
|
|
177
|
-
* <p
|
|
179
|
+
* <p>The type of the component.</p>
|
|
178
180
|
*/
|
|
179
181
|
ComponentType?: ComponentType | string;
|
|
180
182
|
/**
|
|
181
|
-
* <p
|
|
183
|
+
* <p>The tags of the component.</p>
|
|
182
184
|
*/
|
|
183
185
|
Tags?: Record<string, string>;
|
|
184
186
|
}
|
|
185
187
|
/**
|
|
186
|
-
* <p
|
|
188
|
+
* <p>A conflict has occurred.</p>
|
|
187
189
|
*/
|
|
188
190
|
export declare class ConflictException extends __BaseException {
|
|
189
191
|
readonly name: "ConflictException";
|
|
@@ -206,80 +208,81 @@ export declare enum DatabaseStatus {
|
|
|
206
208
|
WARNING = "WARNING"
|
|
207
209
|
}
|
|
208
210
|
/**
|
|
209
|
-
* <p
|
|
211
|
+
* <p>The SAP HANA database of the application registered with AWS Systems Manager for
|
|
212
|
+
* SAP.</p>
|
|
210
213
|
*/
|
|
211
214
|
export interface Database {
|
|
212
215
|
/**
|
|
213
|
-
* <p
|
|
216
|
+
* <p>The ID of the application.</p>
|
|
214
217
|
*/
|
|
215
218
|
ApplicationId?: string;
|
|
216
219
|
/**
|
|
217
|
-
* <p
|
|
220
|
+
* <p>The ID of the component.</p>
|
|
218
221
|
*/
|
|
219
222
|
ComponentId?: string;
|
|
220
223
|
/**
|
|
221
|
-
* <p
|
|
224
|
+
* <p>The credentials of the database.</p>
|
|
222
225
|
*/
|
|
223
226
|
Credentials?: ApplicationCredential[];
|
|
224
227
|
/**
|
|
225
|
-
* <p
|
|
228
|
+
* <p>The ID of the SAP HANA database.</p>
|
|
226
229
|
*/
|
|
227
230
|
DatabaseId?: string;
|
|
228
231
|
/**
|
|
229
|
-
* <p
|
|
232
|
+
* <p>The name of the database.</p>
|
|
230
233
|
*/
|
|
231
234
|
DatabaseName?: string;
|
|
232
235
|
/**
|
|
233
|
-
* <p
|
|
236
|
+
* <p>The type of the database.</p>
|
|
234
237
|
*/
|
|
235
238
|
DatabaseType?: DatabaseType | string;
|
|
236
239
|
/**
|
|
237
|
-
* <p
|
|
240
|
+
* <p>The Amazon Resource Name (ARN) of the database.</p>
|
|
238
241
|
*/
|
|
239
242
|
Arn?: string;
|
|
240
243
|
/**
|
|
241
|
-
* <p
|
|
244
|
+
* <p>The status of the database.</p>
|
|
242
245
|
*/
|
|
243
246
|
Status?: DatabaseStatus | string;
|
|
244
247
|
/**
|
|
245
|
-
* <p
|
|
248
|
+
* <p>The primary host of the database.</p>
|
|
246
249
|
*/
|
|
247
250
|
PrimaryHost?: string;
|
|
248
251
|
/**
|
|
249
|
-
* <p
|
|
252
|
+
* <p>The SQL port of the database.</p>
|
|
250
253
|
*/
|
|
251
254
|
SQLPort?: number;
|
|
252
255
|
/**
|
|
253
|
-
* <p
|
|
256
|
+
* <p>The time at which the database was last updated.</p>
|
|
254
257
|
*/
|
|
255
258
|
LastUpdated?: Date;
|
|
256
259
|
}
|
|
257
260
|
/**
|
|
258
|
-
* <p
|
|
261
|
+
* <p>The summary of the database.</p>
|
|
259
262
|
*/
|
|
260
263
|
export interface DatabaseSummary {
|
|
261
264
|
/**
|
|
262
|
-
* <p
|
|
265
|
+
* <p>The ID of the application.</p>
|
|
263
266
|
*/
|
|
264
267
|
ApplicationId?: string;
|
|
265
268
|
/**
|
|
266
|
-
* <p
|
|
269
|
+
* <p>The ID of the component.</p>
|
|
267
270
|
*/
|
|
268
271
|
ComponentId?: string;
|
|
269
272
|
/**
|
|
270
|
-
* <p
|
|
273
|
+
* <p>The ID of the database.</p>
|
|
271
274
|
*/
|
|
272
275
|
DatabaseId?: string;
|
|
273
276
|
/**
|
|
274
|
-
* <p
|
|
277
|
+
* <p>The type of the database.</p>
|
|
275
278
|
*/
|
|
276
279
|
DatabaseType?: DatabaseType | string;
|
|
277
280
|
/**
|
|
278
|
-
* <p
|
|
281
|
+
* <p>The Amazon Resource Name (ARN) of the database.</p>
|
|
279
282
|
*/
|
|
280
283
|
Arn?: string;
|
|
281
284
|
/**
|
|
282
|
-
* <p
|
|
285
|
+
* <p>The tags of the database.</p>
|
|
283
286
|
*/
|
|
284
287
|
Tags?: Record<string, string>;
|
|
285
288
|
}
|
|
@@ -288,26 +291,26 @@ export declare enum PermissionActionType {
|
|
|
288
291
|
}
|
|
289
292
|
export interface DeleteResourcePermissionInput {
|
|
290
293
|
/**
|
|
291
|
-
* <p
|
|
294
|
+
* <p>Delete or restore the permissions on the target database.</p>
|
|
292
295
|
*/
|
|
293
296
|
ActionType?: PermissionActionType | string;
|
|
294
297
|
/**
|
|
295
|
-
* <p
|
|
298
|
+
* <p>The Amazon Resource Name (ARN) of the source resource.</p>
|
|
296
299
|
*/
|
|
297
300
|
SourceResourceArn?: string;
|
|
298
301
|
/**
|
|
299
|
-
* <p
|
|
302
|
+
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
300
303
|
*/
|
|
301
304
|
ResourceArn: string | undefined;
|
|
302
305
|
}
|
|
303
306
|
export interface DeleteResourcePermissionOutput {
|
|
304
307
|
/**
|
|
305
|
-
* <p
|
|
308
|
+
* <p>The policy that removes permissions on the target database.</p>
|
|
306
309
|
*/
|
|
307
310
|
Policy?: string;
|
|
308
311
|
}
|
|
309
312
|
/**
|
|
310
|
-
* <p
|
|
313
|
+
* <p>An internal error has occurred.</p>
|
|
311
314
|
*/
|
|
312
315
|
export declare class InternalServerException extends __BaseException {
|
|
313
316
|
readonly name: "InternalServerException";
|
|
@@ -319,7 +322,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
319
322
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
320
323
|
}
|
|
321
324
|
/**
|
|
322
|
-
* <p
|
|
325
|
+
* <p>The resource is not available.</p>
|
|
323
326
|
*/
|
|
324
327
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
325
328
|
readonly name: "ResourceNotFoundException";
|
|
@@ -331,7 +334,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
331
334
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
332
335
|
}
|
|
333
336
|
/**
|
|
334
|
-
* <p
|
|
337
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
335
338
|
*/
|
|
336
339
|
export declare class ValidationException extends __BaseException {
|
|
337
340
|
readonly name: "ValidationException";
|
|
@@ -344,79 +347,109 @@ export declare class ValidationException extends __BaseException {
|
|
|
344
347
|
}
|
|
345
348
|
export interface DeregisterApplicationInput {
|
|
346
349
|
/**
|
|
347
|
-
* <p
|
|
350
|
+
* <p>The ID of the application.</p>
|
|
348
351
|
*/
|
|
349
352
|
ApplicationId: string | undefined;
|
|
350
353
|
}
|
|
351
354
|
export interface DeregisterApplicationOutput {
|
|
352
355
|
}
|
|
356
|
+
export declare enum FilterOperator {
|
|
357
|
+
EQUALS = "Equals",
|
|
358
|
+
GREATER_THAN_OR_EQUALS = "GreaterThanOrEquals",
|
|
359
|
+
LESS_THAN_OR_EQUALS = "LessThanOrEquals"
|
|
360
|
+
}
|
|
361
|
+
/**
|
|
362
|
+
* <p>A specific result obtained by specifying the name, value, and operator. </p>
|
|
363
|
+
*/
|
|
364
|
+
export interface Filter {
|
|
365
|
+
/**
|
|
366
|
+
* <p>The name of the filter. Filter names are case-sensitive. </p>
|
|
367
|
+
*/
|
|
368
|
+
Name: string | undefined;
|
|
369
|
+
/**
|
|
370
|
+
* <p>The filter values. Filter values are case-sensitive. If you specify multiple values for
|
|
371
|
+
* a filter, the values are joined with an OR, and the request returns all results that match
|
|
372
|
+
* any of the specified values</p>
|
|
373
|
+
*/
|
|
374
|
+
Value: string | undefined;
|
|
375
|
+
/**
|
|
376
|
+
* <p>The operator for the filter. </p>
|
|
377
|
+
*/
|
|
378
|
+
Operator: FilterOperator | string | undefined;
|
|
379
|
+
}
|
|
353
380
|
export interface GetApplicationInput {
|
|
354
381
|
/**
|
|
355
|
-
* <p
|
|
382
|
+
* <p>The ID of the application.</p>
|
|
356
383
|
*/
|
|
357
384
|
ApplicationId?: string;
|
|
358
385
|
/**
|
|
359
|
-
* <p
|
|
386
|
+
* <p>The Amazon Resource Name (ARN) of the application. </p>
|
|
360
387
|
*/
|
|
361
388
|
ApplicationArn?: string;
|
|
389
|
+
/**
|
|
390
|
+
* <p>The Amazon Resource Name (ARN) of the application registry.</p>
|
|
391
|
+
*/
|
|
392
|
+
AppRegistryArn?: string;
|
|
362
393
|
}
|
|
363
394
|
export interface GetApplicationOutput {
|
|
364
395
|
/**
|
|
365
|
-
* <p
|
|
396
|
+
* <p>Returns all of the metadata of an application registered with AWS Systems Manager for
|
|
397
|
+
* SAP.</p>
|
|
366
398
|
*/
|
|
367
399
|
Application?: Application;
|
|
368
400
|
/**
|
|
369
|
-
* <p
|
|
401
|
+
* <p>The tags of a registered application.</p>
|
|
370
402
|
*/
|
|
371
403
|
Tags?: Record<string, string>;
|
|
372
404
|
}
|
|
373
405
|
export interface GetComponentInput {
|
|
374
406
|
/**
|
|
375
|
-
* <p
|
|
407
|
+
* <p>The ID of the application.</p>
|
|
376
408
|
*/
|
|
377
409
|
ApplicationId: string | undefined;
|
|
378
410
|
/**
|
|
379
|
-
* <p
|
|
411
|
+
* <p>The ID of the component.</p>
|
|
380
412
|
*/
|
|
381
413
|
ComponentId: string | undefined;
|
|
382
414
|
}
|
|
383
415
|
export interface GetComponentOutput {
|
|
384
416
|
/**
|
|
385
|
-
* <p
|
|
417
|
+
* <p>The component of an application registered with AWS Systems Manager for SAP.</p>
|
|
386
418
|
*/
|
|
387
419
|
Component?: Component;
|
|
388
420
|
}
|
|
389
421
|
export interface GetDatabaseInput {
|
|
390
422
|
/**
|
|
391
|
-
* <p
|
|
423
|
+
* <p>The ID of the application.</p>
|
|
392
424
|
*/
|
|
393
425
|
ApplicationId?: string;
|
|
394
426
|
/**
|
|
395
|
-
* <p
|
|
427
|
+
* <p>The ID of the component.</p>
|
|
396
428
|
*/
|
|
397
429
|
ComponentId?: string;
|
|
398
430
|
/**
|
|
399
|
-
* <p
|
|
431
|
+
* <p>The ID of the database.</p>
|
|
400
432
|
*/
|
|
401
433
|
DatabaseId?: string;
|
|
402
434
|
/**
|
|
403
|
-
* <p
|
|
435
|
+
* <p>The Amazon Resource Name (ARN) of the database.</p>
|
|
404
436
|
*/
|
|
405
437
|
DatabaseArn?: string;
|
|
406
438
|
}
|
|
407
439
|
export interface GetDatabaseOutput {
|
|
408
440
|
/**
|
|
409
|
-
* <p
|
|
441
|
+
* <p>The SAP HANA database of an application registered with AWS Systems Manager for
|
|
442
|
+
* SAP.</p>
|
|
410
443
|
*/
|
|
411
444
|
Database?: Database;
|
|
412
445
|
/**
|
|
413
|
-
* <p
|
|
446
|
+
* <p>The tags of a database.</p>
|
|
414
447
|
*/
|
|
415
448
|
Tags?: Record<string, string>;
|
|
416
449
|
}
|
|
417
450
|
export interface GetOperationInput {
|
|
418
451
|
/**
|
|
419
|
-
* <p
|
|
452
|
+
* <p>The ID of the operation.</p>
|
|
420
453
|
*/
|
|
421
454
|
OperationId: string | undefined;
|
|
422
455
|
}
|
|
@@ -426,57 +459,57 @@ export declare enum OperationStatus {
|
|
|
426
459
|
SUCCESS = "SUCCESS"
|
|
427
460
|
}
|
|
428
461
|
/**
|
|
429
|
-
* <p
|
|
462
|
+
* <p>The operations performed by AWS Systems Manager for SAP.</p>
|
|
430
463
|
*/
|
|
431
464
|
export interface Operation {
|
|
432
465
|
/**
|
|
433
|
-
* <p
|
|
466
|
+
* <p>The ID of the operation.</p>
|
|
434
467
|
*/
|
|
435
468
|
Id?: string;
|
|
436
469
|
/**
|
|
437
|
-
* <p
|
|
470
|
+
* <p>The type of the operation.</p>
|
|
438
471
|
*/
|
|
439
472
|
Type?: string;
|
|
440
473
|
/**
|
|
441
|
-
* <p
|
|
474
|
+
* <p>The status of the operation.</p>
|
|
442
475
|
*/
|
|
443
476
|
Status?: OperationStatus | string;
|
|
444
477
|
/**
|
|
445
|
-
* <p
|
|
478
|
+
* <p>The status message of the operation.</p>
|
|
446
479
|
*/
|
|
447
480
|
StatusMessage?: string;
|
|
448
481
|
/**
|
|
449
|
-
* <p
|
|
482
|
+
* <p>The properties of the operation.</p>
|
|
450
483
|
*/
|
|
451
484
|
Properties?: Record<string, string>;
|
|
452
485
|
/**
|
|
453
|
-
* <p
|
|
486
|
+
* <p>The resource type of the operation.</p>
|
|
454
487
|
*/
|
|
455
488
|
ResourceType?: string;
|
|
456
489
|
/**
|
|
457
|
-
* <p
|
|
490
|
+
* <p>The resource ID of the operation.</p>
|
|
458
491
|
*/
|
|
459
492
|
ResourceId?: string;
|
|
460
493
|
/**
|
|
461
|
-
* <p
|
|
494
|
+
* <p>The Amazon Resource Name (ARN) of the operation.</p>
|
|
462
495
|
*/
|
|
463
496
|
ResourceArn?: string;
|
|
464
497
|
/**
|
|
465
|
-
* <p
|
|
498
|
+
* <p>The start time of the operation.</p>
|
|
466
499
|
*/
|
|
467
500
|
StartTime?: Date;
|
|
468
501
|
/**
|
|
469
|
-
* <p
|
|
502
|
+
* <p>The end time of the operation.</p>
|
|
470
503
|
*/
|
|
471
504
|
EndTime?: Date;
|
|
472
505
|
/**
|
|
473
|
-
* <p
|
|
506
|
+
* <p>The time at which the operation was last updated.</p>
|
|
474
507
|
*/
|
|
475
508
|
LastUpdatedTime?: Date;
|
|
476
509
|
}
|
|
477
510
|
export interface GetOperationOutput {
|
|
478
511
|
/**
|
|
479
|
-
* <p
|
|
512
|
+
* <p>Returns the details of an operation.</p>
|
|
480
513
|
*/
|
|
481
514
|
Operation?: Operation;
|
|
482
515
|
}
|
|
@@ -486,7 +519,7 @@ export interface GetResourcePermissionInput {
|
|
|
486
519
|
*/
|
|
487
520
|
ActionType?: PermissionActionType | string;
|
|
488
521
|
/**
|
|
489
|
-
* <p
|
|
522
|
+
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
490
523
|
*/
|
|
491
524
|
ResourceArn: string | undefined;
|
|
492
525
|
}
|
|
@@ -498,79 +531,120 @@ export interface GetResourcePermissionOutput {
|
|
|
498
531
|
}
|
|
499
532
|
export interface ListApplicationsInput {
|
|
500
533
|
/**
|
|
501
|
-
* <p
|
|
534
|
+
* <p>The token for the next page of results.</p>
|
|
502
535
|
*/
|
|
503
536
|
NextToken?: string;
|
|
504
537
|
/**
|
|
505
|
-
* <p
|
|
538
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
539
|
+
* results, make another call with the returned nextToken value. </p>
|
|
506
540
|
*/
|
|
507
541
|
MaxResults?: number;
|
|
508
542
|
}
|
|
509
543
|
export interface ListApplicationsOutput {
|
|
510
544
|
/**
|
|
511
|
-
* <p
|
|
545
|
+
* <p>The applications registered with AWS Systems Manager for SAP.</p>
|
|
512
546
|
*/
|
|
513
547
|
Applications?: ApplicationSummary[];
|
|
514
548
|
/**
|
|
515
|
-
* <p
|
|
549
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are
|
|
550
|
+
* no more results to return.</p>
|
|
516
551
|
*/
|
|
517
552
|
NextToken?: string;
|
|
518
553
|
}
|
|
519
554
|
export interface ListComponentsInput {
|
|
520
555
|
/**
|
|
521
|
-
* <p
|
|
556
|
+
* <p>The ID of the application.</p>
|
|
522
557
|
*/
|
|
523
558
|
ApplicationId?: string;
|
|
524
559
|
/**
|
|
525
|
-
* <p
|
|
560
|
+
* <p>The token for the next page of results.</p>
|
|
526
561
|
*/
|
|
527
562
|
NextToken?: string;
|
|
528
563
|
/**
|
|
529
|
-
* <p
|
|
564
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
565
|
+
* results, make another call with the returned nextToken value.</p>
|
|
566
|
+
* <p>If you do not specify a value for MaxResults, the request returns 50 items per page by
|
|
567
|
+
* default.</p>
|
|
530
568
|
*/
|
|
531
569
|
MaxResults?: number;
|
|
532
570
|
}
|
|
533
571
|
export interface ListComponentsOutput {
|
|
534
572
|
/**
|
|
535
|
-
* <p
|
|
573
|
+
* <p>List of components registered with AWS System Manager for SAP.</p>
|
|
536
574
|
*/
|
|
537
575
|
Components?: ComponentSummary[];
|
|
538
576
|
/**
|
|
539
|
-
* <p
|
|
577
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are
|
|
578
|
+
* no more results to return.</p>
|
|
540
579
|
*/
|
|
541
580
|
NextToken?: string;
|
|
542
581
|
}
|
|
543
582
|
export interface ListDatabasesInput {
|
|
544
583
|
/**
|
|
545
|
-
* <p
|
|
584
|
+
* <p>The ID of the application.</p>
|
|
546
585
|
*/
|
|
547
586
|
ApplicationId?: string;
|
|
548
587
|
/**
|
|
549
|
-
* <p
|
|
588
|
+
* <p>The ID of the component.</p>
|
|
550
589
|
*/
|
|
551
590
|
ComponentId?: string;
|
|
552
591
|
/**
|
|
553
|
-
* <p
|
|
592
|
+
* <p>The token for the next page of results. </p>
|
|
554
593
|
*/
|
|
555
594
|
NextToken?: string;
|
|
556
595
|
/**
|
|
557
|
-
* <p
|
|
596
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
597
|
+
* results, make another call with the returned nextToken value. If you do not specify a value
|
|
598
|
+
* for MaxResults, the request returns 50 items per page by default.</p>
|
|
558
599
|
*/
|
|
559
600
|
MaxResults?: number;
|
|
560
601
|
}
|
|
561
602
|
export interface ListDatabasesOutput {
|
|
562
603
|
/**
|
|
563
|
-
* <p
|
|
604
|
+
* <p>The SAP HANA databases of an application.</p>
|
|
564
605
|
*/
|
|
565
606
|
Databases?: DatabaseSummary[];
|
|
566
607
|
/**
|
|
567
|
-
* <p
|
|
608
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more
|
|
609
|
+
* results to return.</p>
|
|
610
|
+
*/
|
|
611
|
+
NextToken?: string;
|
|
612
|
+
}
|
|
613
|
+
export interface ListOperationsInput {
|
|
614
|
+
/**
|
|
615
|
+
* <p>The ID of the application.</p>
|
|
616
|
+
*/
|
|
617
|
+
ApplicationId: string | undefined;
|
|
618
|
+
/**
|
|
619
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make
|
|
620
|
+
* another call with the returned nextToken value.
|
|
621
|
+
* If you do not specify a value for MaxResults, the request returns 50 items per page by default.</p>
|
|
622
|
+
*/
|
|
623
|
+
MaxResults?: number;
|
|
624
|
+
/**
|
|
625
|
+
* <p>The token for the next page of results.
|
|
626
|
+
* </p>
|
|
627
|
+
*/
|
|
628
|
+
NextToken?: string;
|
|
629
|
+
/**
|
|
630
|
+
* <p>The filters of an operation.</p>
|
|
631
|
+
*/
|
|
632
|
+
Filters?: Filter[];
|
|
633
|
+
}
|
|
634
|
+
export interface ListOperationsOutput {
|
|
635
|
+
/**
|
|
636
|
+
* <p>List of operations performed by AWS Systems Manager for SAP.</p>
|
|
637
|
+
*/
|
|
638
|
+
Operations?: Operation[];
|
|
639
|
+
/**
|
|
640
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more
|
|
641
|
+
* results to return.</p>
|
|
568
642
|
*/
|
|
569
643
|
NextToken?: string;
|
|
570
644
|
}
|
|
571
645
|
export interface ListTagsForResourceRequest {
|
|
572
646
|
/**
|
|
573
|
-
* <p
|
|
647
|
+
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
574
648
|
*/
|
|
575
649
|
resourceArn: string | undefined;
|
|
576
650
|
}
|
|
@@ -602,51 +676,51 @@ export interface PutResourcePermissionOutput {
|
|
|
602
676
|
}
|
|
603
677
|
export interface RegisterApplicationInput {
|
|
604
678
|
/**
|
|
605
|
-
* <p
|
|
679
|
+
* <p>The ID of the application.</p>
|
|
606
680
|
*/
|
|
607
681
|
ApplicationId: string | undefined;
|
|
608
682
|
/**
|
|
609
|
-
* <p
|
|
683
|
+
* <p>The type of the application.</p>
|
|
610
684
|
*/
|
|
611
685
|
ApplicationType: ApplicationType | string | undefined;
|
|
612
686
|
/**
|
|
613
|
-
* <p
|
|
687
|
+
* <p>The Amazon EC2 instances on which your SAP application is running.</p>
|
|
614
688
|
*/
|
|
615
689
|
Instances: string[] | undefined;
|
|
616
690
|
/**
|
|
617
|
-
* <p
|
|
691
|
+
* <p>The SAP instance number of the application.</p>
|
|
618
692
|
*/
|
|
619
693
|
SapInstanceNumber?: string;
|
|
620
694
|
/**
|
|
621
|
-
* <p
|
|
695
|
+
* <p>The System ID of the application.</p>
|
|
622
696
|
*/
|
|
623
697
|
Sid?: string;
|
|
624
698
|
/**
|
|
625
|
-
* <p
|
|
699
|
+
* <p>The tags to be attached to the SAP application.</p>
|
|
626
700
|
*/
|
|
627
701
|
Tags?: Record<string, string>;
|
|
628
702
|
/**
|
|
629
|
-
* <p
|
|
703
|
+
* <p>The credentials of the SAP application.</p>
|
|
630
704
|
*/
|
|
631
705
|
Credentials: ApplicationCredential[] | undefined;
|
|
632
706
|
}
|
|
633
707
|
export interface RegisterApplicationOutput {
|
|
634
708
|
/**
|
|
635
|
-
* <p
|
|
709
|
+
* <p>The application registered with AWS Systems Manager for SAP.</p>
|
|
636
710
|
*/
|
|
637
711
|
Application?: Application;
|
|
638
712
|
/**
|
|
639
|
-
* <p
|
|
713
|
+
* <p>The ID of the operation.</p>
|
|
640
714
|
*/
|
|
641
715
|
OperationId?: string;
|
|
642
716
|
}
|
|
643
717
|
export interface TagResourceRequest {
|
|
644
718
|
/**
|
|
645
|
-
* <p
|
|
719
|
+
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
646
720
|
*/
|
|
647
721
|
resourceArn: string | undefined;
|
|
648
722
|
/**
|
|
649
|
-
* <p
|
|
723
|
+
* <p>The tags on a resource.</p>
|
|
650
724
|
*/
|
|
651
725
|
tags: Record<string, string> | undefined;
|
|
652
726
|
}
|
|
@@ -654,11 +728,12 @@ export interface TagResourceResponse {
|
|
|
654
728
|
}
|
|
655
729
|
export interface UntagResourceRequest {
|
|
656
730
|
/**
|
|
657
|
-
* <p
|
|
731
|
+
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
658
732
|
*/
|
|
659
733
|
resourceArn: string | undefined;
|
|
660
734
|
/**
|
|
661
|
-
* <p>Adds/updates or removes credentials for applications registered with AWS Systems
|
|
735
|
+
* <p>Adds/updates or removes credentials for applications registered with AWS Systems
|
|
736
|
+
* Manager for SAP.</p>
|
|
662
737
|
*/
|
|
663
738
|
tagKeys: string[] | undefined;
|
|
664
739
|
}
|
|
@@ -666,25 +741,25 @@ export interface UntagResourceResponse {
|
|
|
666
741
|
}
|
|
667
742
|
export interface UpdateApplicationSettingsInput {
|
|
668
743
|
/**
|
|
669
|
-
* <p
|
|
744
|
+
* <p>The ID of the application.</p>
|
|
670
745
|
*/
|
|
671
746
|
ApplicationId: string | undefined;
|
|
672
747
|
/**
|
|
673
|
-
* <p
|
|
748
|
+
* <p>The credentials to be added or updated.</p>
|
|
674
749
|
*/
|
|
675
750
|
CredentialsToAddOrUpdate?: ApplicationCredential[];
|
|
676
751
|
/**
|
|
677
|
-
* <p
|
|
752
|
+
* <p>The credentials to be removed.</p>
|
|
678
753
|
*/
|
|
679
754
|
CredentialsToRemove?: ApplicationCredential[];
|
|
680
755
|
}
|
|
681
756
|
export interface UpdateApplicationSettingsOutput {
|
|
682
757
|
/**
|
|
683
|
-
* <p
|
|
758
|
+
* <p>The update message.</p>
|
|
684
759
|
*/
|
|
685
760
|
Message?: string;
|
|
686
761
|
/**
|
|
687
|
-
* <p
|
|
762
|
+
* <p>The IDs of the operations.</p>
|
|
688
763
|
*/
|
|
689
764
|
OperationIds?: string[];
|
|
690
765
|
}
|
|
@@ -736,6 +811,10 @@ export declare const DeregisterApplicationInputFilterSensitiveLog: (obj: Deregis
|
|
|
736
811
|
* @internal
|
|
737
812
|
*/
|
|
738
813
|
export declare const DeregisterApplicationOutputFilterSensitiveLog: (obj: DeregisterApplicationOutput) => any;
|
|
814
|
+
/**
|
|
815
|
+
* @internal
|
|
816
|
+
*/
|
|
817
|
+
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
739
818
|
/**
|
|
740
819
|
* @internal
|
|
741
820
|
*/
|
|
@@ -804,6 +883,14 @@ export declare const ListDatabasesInputFilterSensitiveLog: (obj: ListDatabasesIn
|
|
|
804
883
|
* @internal
|
|
805
884
|
*/
|
|
806
885
|
export declare const ListDatabasesOutputFilterSensitiveLog: (obj: ListDatabasesOutput) => any;
|
|
886
|
+
/**
|
|
887
|
+
* @internal
|
|
888
|
+
*/
|
|
889
|
+
export declare const ListOperationsInputFilterSensitiveLog: (obj: ListOperationsInput) => any;
|
|
890
|
+
/**
|
|
891
|
+
* @internal
|
|
892
|
+
*/
|
|
893
|
+
export declare const ListOperationsOutputFilterSensitiveLog: (obj: ListOperationsOutput) => any;
|
|
807
894
|
/**
|
|
808
895
|
* @internal
|
|
809
896
|
*/
|