@aws-sdk/client-ssm-sap 3.214.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.
Files changed (147) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +207 -0
  3. package/dist-cjs/SsmSap.js +247 -0
  4. package/dist-cjs/SsmSapClient.js +40 -0
  5. package/dist-cjs/commands/DeleteResourcePermissionCommand.js +46 -0
  6. package/dist-cjs/commands/DeregisterApplicationCommand.js +46 -0
  7. package/dist-cjs/commands/GetApplicationCommand.js +46 -0
  8. package/dist-cjs/commands/GetComponentCommand.js +46 -0
  9. package/dist-cjs/commands/GetDatabaseCommand.js +46 -0
  10. package/dist-cjs/commands/GetOperationCommand.js +46 -0
  11. package/dist-cjs/commands/GetResourcePermissionCommand.js +46 -0
  12. package/dist-cjs/commands/ListApplicationsCommand.js +46 -0
  13. package/dist-cjs/commands/ListComponentsCommand.js +46 -0
  14. package/dist-cjs/commands/ListDatabasesCommand.js +46 -0
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  16. package/dist-cjs/commands/PutResourcePermissionCommand.js +46 -0
  17. package/dist-cjs/commands/RegisterApplicationCommand.js +46 -0
  18. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  19. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  20. package/dist-cjs/commands/UpdateApplicationSettingsCommand.js +46 -0
  21. package/dist-cjs/commands/index.js +19 -0
  22. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  24. package/dist-cjs/endpoint/ruleset.js +312 -0
  25. package/dist-cjs/index.js +11 -0
  26. package/dist-cjs/models/SsmSapServiceException.js +11 -0
  27. package/dist-cjs/models/index.js +4 -0
  28. package/dist-cjs/models/models_0.js +293 -0
  29. package/dist-cjs/pagination/Interfaces.js +2 -0
  30. package/dist-cjs/pagination/ListApplicationsPaginator.js +36 -0
  31. package/dist-cjs/pagination/ListComponentsPaginator.js +36 -0
  32. package/dist-cjs/pagination/ListDatabasesPaginator.js +36 -0
  33. package/dist-cjs/pagination/index.js +7 -0
  34. package/dist-cjs/protocols/Aws_restJson1.js +1356 -0
  35. package/dist-cjs/runtimeConfig.browser.js +42 -0
  36. package/dist-cjs/runtimeConfig.js +50 -0
  37. package/dist-cjs/runtimeConfig.native.js +15 -0
  38. package/dist-cjs/runtimeConfig.shared.js +18 -0
  39. package/dist-es/SsmSap.js +243 -0
  40. package/dist-es/SsmSapClient.js +36 -0
  41. package/dist-es/commands/DeleteResourcePermissionCommand.js +42 -0
  42. package/dist-es/commands/DeregisterApplicationCommand.js +42 -0
  43. package/dist-es/commands/GetApplicationCommand.js +42 -0
  44. package/dist-es/commands/GetComponentCommand.js +42 -0
  45. package/dist-es/commands/GetDatabaseCommand.js +42 -0
  46. package/dist-es/commands/GetOperationCommand.js +42 -0
  47. package/dist-es/commands/GetResourcePermissionCommand.js +42 -0
  48. package/dist-es/commands/ListApplicationsCommand.js +42 -0
  49. package/dist-es/commands/ListComponentsCommand.js +42 -0
  50. package/dist-es/commands/ListDatabasesCommand.js +42 -0
  51. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  52. package/dist-es/commands/PutResourcePermissionCommand.js +42 -0
  53. package/dist-es/commands/RegisterApplicationCommand.js +42 -0
  54. package/dist-es/commands/TagResourceCommand.js +42 -0
  55. package/dist-es/commands/UntagResourceCommand.js +42 -0
  56. package/dist-es/commands/UpdateApplicationSettingsCommand.js +42 -0
  57. package/dist-es/commands/index.js +16 -0
  58. package/dist-es/endpoint/EndpointParameters.js +8 -0
  59. package/dist-es/endpoint/endpointResolver.js +8 -0
  60. package/dist-es/endpoint/ruleset.js +309 -0
  61. package/dist-es/index.js +6 -0
  62. package/dist-es/models/SsmSapServiceException.js +7 -0
  63. package/dist-es/models/index.js +1 -0
  64. package/dist-es/models/models_0.js +244 -0
  65. package/dist-es/pagination/Interfaces.js +1 -0
  66. package/dist-es/pagination/ListApplicationsPaginator.js +32 -0
  67. package/dist-es/pagination/ListComponentsPaginator.js +32 -0
  68. package/dist-es/pagination/ListDatabasesPaginator.js +32 -0
  69. package/dist-es/pagination/index.js +4 -0
  70. package/dist-es/protocols/Aws_restJson1.js +1321 -0
  71. package/dist-es/runtimeConfig.browser.js +37 -0
  72. package/dist-es/runtimeConfig.js +45 -0
  73. package/dist-es/runtimeConfig.native.js +11 -0
  74. package/dist-es/runtimeConfig.shared.js +14 -0
  75. package/dist-types/SsmSap.d.ts +134 -0
  76. package/dist-types/SsmSapClient.d.ts +159 -0
  77. package/dist-types/commands/DeleteResourcePermissionCommand.d.ts +37 -0
  78. package/dist-types/commands/DeregisterApplicationCommand.d.ts +38 -0
  79. package/dist-types/commands/GetApplicationCommand.d.ts +38 -0
  80. package/dist-types/commands/GetComponentCommand.d.ts +38 -0
  81. package/dist-types/commands/GetDatabaseCommand.d.ts +38 -0
  82. package/dist-types/commands/GetOperationCommand.d.ts +37 -0
  83. package/dist-types/commands/GetResourcePermissionCommand.d.ts +37 -0
  84. package/dist-types/commands/ListApplicationsCommand.d.ts +37 -0
  85. package/dist-types/commands/ListComponentsCommand.d.ts +37 -0
  86. package/dist-types/commands/ListDatabasesCommand.d.ts +38 -0
  87. package/dist-types/commands/ListTagsForResourceCommand.d.ts +38 -0
  88. package/dist-types/commands/PutResourcePermissionCommand.d.ts +37 -0
  89. package/dist-types/commands/RegisterApplicationCommand.d.ts +44 -0
  90. package/dist-types/commands/TagResourceCommand.d.ts +37 -0
  91. package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
  92. package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +37 -0
  93. package/dist-types/commands/index.d.ts +16 -0
  94. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  95. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  96. package/dist-types/endpoint/ruleset.d.ts +2 -0
  97. package/dist-types/index.d.ts +6 -0
  98. package/dist-types/models/SsmSapServiceException.d.ts +10 -0
  99. package/dist-types/models/index.d.ts +1 -0
  100. package/dist-types/models/models_0.d.ts +854 -0
  101. package/dist-types/pagination/Interfaces.d.ts +6 -0
  102. package/dist-types/pagination/ListApplicationsPaginator.d.ts +4 -0
  103. package/dist-types/pagination/ListComponentsPaginator.d.ts +4 -0
  104. package/dist-types/pagination/ListDatabasesPaginator.d.ts +4 -0
  105. package/dist-types/pagination/index.d.ts +4 -0
  106. package/dist-types/protocols/Aws_restJson1.d.ts +50 -0
  107. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  108. package/dist-types/runtimeConfig.d.ts +42 -0
  109. package/dist-types/runtimeConfig.native.d.ts +41 -0
  110. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  111. package/dist-types/ts3.4/SsmSap.d.ts +276 -0
  112. package/dist-types/ts3.4/SsmSapClient.d.ts +207 -0
  113. package/dist-types/ts3.4/commands/DeleteResourcePermissionCommand.d.ts +41 -0
  114. package/dist-types/ts3.4/commands/DeregisterApplicationCommand.d.ts +41 -0
  115. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +34 -0
  116. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +34 -0
  117. package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +34 -0
  118. package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +34 -0
  119. package/dist-types/ts3.4/commands/GetResourcePermissionCommand.d.ts +41 -0
  120. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -0
  121. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +34 -0
  122. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +34 -0
  123. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  124. package/dist-types/ts3.4/commands/PutResourcePermissionCommand.d.ts +41 -0
  125. package/dist-types/ts3.4/commands/RegisterApplicationCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  127. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
  128. package/dist-types/ts3.4/commands/UpdateApplicationSettingsCommand.d.ts +41 -0
  129. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  130. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  131. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  132. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  133. package/dist-types/ts3.4/index.d.ts +6 -0
  134. package/dist-types/ts3.4/models/SsmSapServiceException.d.ts +7 -0
  135. package/dist-types/ts3.4/models/index.d.ts +1 -0
  136. package/dist-types/ts3.4/models/models_0.d.ts +392 -0
  137. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  138. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
  139. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -0
  140. package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +11 -0
  141. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  142. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
  143. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +86 -0
  144. package/dist-types/ts3.4/runtimeConfig.d.ts +86 -0
  145. package/dist-types/ts3.4/runtimeConfig.native.d.ts +75 -0
  146. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
  147. package/package.json +101 -0
@@ -0,0 +1,854 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SsmSapServiceException as __BaseException } from "./SsmSapServiceException";
3
+ export declare enum ApplicationStatus {
4
+ ACTIVATED = "ACTIVATED",
5
+ DELETING = "DELETING",
6
+ FAILED = "FAILED",
7
+ REGISTERING = "REGISTERING",
8
+ STARTING = "STARTING",
9
+ STOPPED = "STOPPED",
10
+ STOPPING = "STOPPING",
11
+ UNKNOWN = "UNKNOWN"
12
+ }
13
+ export declare enum ApplicationType {
14
+ HANA = "HANA"
15
+ }
16
+ /**
17
+ * <p/>
18
+ */
19
+ export interface Application {
20
+ /**
21
+ * <p/>
22
+ */
23
+ Id?: string;
24
+ /**
25
+ * <p/>
26
+ */
27
+ Type?: ApplicationType | string;
28
+ /**
29
+ * <p/>
30
+ */
31
+ Arn?: string;
32
+ /**
33
+ * <p/>
34
+ */
35
+ AppRegistryArn?: string;
36
+ /**
37
+ * <p/>
38
+ */
39
+ Status?: ApplicationStatus | string;
40
+ /**
41
+ * <p/>
42
+ */
43
+ Components?: string[];
44
+ /**
45
+ * <p/>
46
+ */
47
+ LastUpdated?: Date;
48
+ /**
49
+ * <p/>
50
+ */
51
+ StatusMessage?: string;
52
+ }
53
+ export declare enum CredentialType {
54
+ ADMIN = "ADMIN"
55
+ }
56
+ /**
57
+ * <p/>
58
+ */
59
+ export interface ApplicationCredential {
60
+ /**
61
+ * <p/>
62
+ */
63
+ DatabaseName: string | undefined;
64
+ /**
65
+ * <p/>
66
+ */
67
+ CredentialType: CredentialType | string | undefined;
68
+ /**
69
+ * <p/>
70
+ */
71
+ SecretId: string | undefined;
72
+ }
73
+ /**
74
+ * <p/>
75
+ */
76
+ export interface ApplicationSummary {
77
+ /**
78
+ * <p/>
79
+ */
80
+ Id?: string;
81
+ /**
82
+ * <p/>
83
+ */
84
+ Type?: ApplicationType | string;
85
+ /**
86
+ * <p/>
87
+ */
88
+ Arn?: string;
89
+ /**
90
+ * <p/>
91
+ */
92
+ Tags?: Record<string, string>;
93
+ }
94
+ export declare enum ComponentType {
95
+ HANA = "HANA"
96
+ }
97
+ export declare enum HostRole {
98
+ LEADER = "LEADER",
99
+ STANDBY = "STANDBY",
100
+ UNKNOWN = "UNKNOWN",
101
+ WORKER = "WORKER"
102
+ }
103
+ /**
104
+ * <p/>
105
+ */
106
+ export interface Host {
107
+ /**
108
+ * <p/>
109
+ */
110
+ HostName?: string;
111
+ /**
112
+ * <p/>
113
+ */
114
+ HostRole?: HostRole | string;
115
+ /**
116
+ * <p/>
117
+ */
118
+ HostIp?: string;
119
+ /**
120
+ * <p/>
121
+ */
122
+ InstanceId?: string;
123
+ }
124
+ export declare enum ComponentStatus {
125
+ ACTIVATED = "ACTIVATED"
126
+ }
127
+ /**
128
+ * <p/>
129
+ */
130
+ export interface Component {
131
+ /**
132
+ * <p/>
133
+ */
134
+ ComponentId?: string;
135
+ /**
136
+ * <p/>
137
+ */
138
+ ApplicationId?: string;
139
+ /**
140
+ * <p/>
141
+ */
142
+ ComponentType?: ComponentType | string;
143
+ /**
144
+ * <p/>
145
+ */
146
+ Status?: ComponentStatus | string;
147
+ /**
148
+ * <p/>
149
+ */
150
+ Databases?: string[];
151
+ /**
152
+ * <p/>
153
+ */
154
+ Hosts?: Host[];
155
+ /**
156
+ * <p/>
157
+ */
158
+ PrimaryHost?: string;
159
+ /**
160
+ * <p/>
161
+ */
162
+ LastUpdated?: Date;
163
+ }
164
+ /**
165
+ * <p/>
166
+ */
167
+ export interface ComponentSummary {
168
+ /**
169
+ * <p/>
170
+ */
171
+ ApplicationId?: string;
172
+ /**
173
+ * <p/>
174
+ */
175
+ ComponentId?: string;
176
+ /**
177
+ * <p/>
178
+ */
179
+ ComponentType?: ComponentType | string;
180
+ /**
181
+ * <p/>
182
+ */
183
+ Tags?: Record<string, string>;
184
+ }
185
+ /**
186
+ * <p/>
187
+ */
188
+ export declare class ConflictException extends __BaseException {
189
+ readonly name: "ConflictException";
190
+ readonly $fault: "client";
191
+ Message?: string;
192
+ /**
193
+ * @internal
194
+ */
195
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
196
+ }
197
+ export declare enum DatabaseType {
198
+ SYSTEM = "SYSTEM",
199
+ TENANT = "TENANT"
200
+ }
201
+ export declare enum DatabaseStatus {
202
+ RUNNING = "RUNNING",
203
+ STARTING = "STARTING",
204
+ STOPPED = "STOPPED",
205
+ UNKNOWN = "UNKNOWN",
206
+ WARNING = "WARNING"
207
+ }
208
+ /**
209
+ * <p/>
210
+ */
211
+ export interface Database {
212
+ /**
213
+ * <p/>
214
+ */
215
+ ApplicationId?: string;
216
+ /**
217
+ * <p/>
218
+ */
219
+ ComponentId?: string;
220
+ /**
221
+ * <p/>
222
+ */
223
+ Credentials?: ApplicationCredential[];
224
+ /**
225
+ * <p/>
226
+ */
227
+ DatabaseId?: string;
228
+ /**
229
+ * <p/>
230
+ */
231
+ DatabaseName?: string;
232
+ /**
233
+ * <p/>
234
+ */
235
+ DatabaseType?: DatabaseType | string;
236
+ /**
237
+ * <p/>
238
+ */
239
+ Arn?: string;
240
+ /**
241
+ * <p/>
242
+ */
243
+ Status?: DatabaseStatus | string;
244
+ /**
245
+ * <p/>
246
+ */
247
+ PrimaryHost?: string;
248
+ /**
249
+ * <p/>
250
+ */
251
+ SQLPort?: number;
252
+ /**
253
+ * <p/>
254
+ */
255
+ LastUpdated?: Date;
256
+ }
257
+ /**
258
+ * <p/>
259
+ */
260
+ export interface DatabaseSummary {
261
+ /**
262
+ * <p/>
263
+ */
264
+ ApplicationId?: string;
265
+ /**
266
+ * <p/>
267
+ */
268
+ ComponentId?: string;
269
+ /**
270
+ * <p/>
271
+ */
272
+ DatabaseId?: string;
273
+ /**
274
+ * <p/>
275
+ */
276
+ DatabaseType?: DatabaseType | string;
277
+ /**
278
+ * <p/>
279
+ */
280
+ Arn?: string;
281
+ /**
282
+ * <p/>
283
+ */
284
+ Tags?: Record<string, string>;
285
+ }
286
+ export declare enum PermissionActionType {
287
+ RESTORE = "RESTORE"
288
+ }
289
+ export interface DeleteResourcePermissionInput {
290
+ /**
291
+ * <p/>
292
+ */
293
+ ActionType?: PermissionActionType | string;
294
+ /**
295
+ * <p/>
296
+ */
297
+ SourceResourceArn?: string;
298
+ /**
299
+ * <p/>
300
+ */
301
+ ResourceArn: string | undefined;
302
+ }
303
+ export interface DeleteResourcePermissionOutput {
304
+ /**
305
+ * <p/>
306
+ */
307
+ Policy?: string;
308
+ }
309
+ /**
310
+ * <p/>
311
+ */
312
+ export declare class InternalServerException extends __BaseException {
313
+ readonly name: "InternalServerException";
314
+ readonly $fault: "server";
315
+ Message?: string;
316
+ /**
317
+ * @internal
318
+ */
319
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
320
+ }
321
+ /**
322
+ * <p/>
323
+ */
324
+ export declare class ResourceNotFoundException extends __BaseException {
325
+ readonly name: "ResourceNotFoundException";
326
+ readonly $fault: "client";
327
+ Message?: string;
328
+ /**
329
+ * @internal
330
+ */
331
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
332
+ }
333
+ /**
334
+ * <p/>
335
+ */
336
+ export declare class ValidationException extends __BaseException {
337
+ readonly name: "ValidationException";
338
+ readonly $fault: "client";
339
+ Message?: string;
340
+ /**
341
+ * @internal
342
+ */
343
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
344
+ }
345
+ export interface DeregisterApplicationInput {
346
+ /**
347
+ * <p/>
348
+ */
349
+ ApplicationId: string | undefined;
350
+ }
351
+ export interface DeregisterApplicationOutput {
352
+ }
353
+ export interface GetApplicationInput {
354
+ /**
355
+ * <p/>
356
+ */
357
+ ApplicationId?: string;
358
+ /**
359
+ * <p/>
360
+ */
361
+ ApplicationArn?: string;
362
+ }
363
+ export interface GetApplicationOutput {
364
+ /**
365
+ * <p/>
366
+ */
367
+ Application?: Application;
368
+ /**
369
+ * <p/>
370
+ */
371
+ Tags?: Record<string, string>;
372
+ }
373
+ export interface GetComponentInput {
374
+ /**
375
+ * <p/>
376
+ */
377
+ ApplicationId: string | undefined;
378
+ /**
379
+ * <p/>
380
+ */
381
+ ComponentId: string | undefined;
382
+ }
383
+ export interface GetComponentOutput {
384
+ /**
385
+ * <p/>
386
+ */
387
+ Component?: Component;
388
+ }
389
+ export interface GetDatabaseInput {
390
+ /**
391
+ * <p/>
392
+ */
393
+ ApplicationId?: string;
394
+ /**
395
+ * <p/>
396
+ */
397
+ ComponentId?: string;
398
+ /**
399
+ * <p/>
400
+ */
401
+ DatabaseId?: string;
402
+ /**
403
+ * <p/>
404
+ */
405
+ DatabaseArn?: string;
406
+ }
407
+ export interface GetDatabaseOutput {
408
+ /**
409
+ * <p/>
410
+ */
411
+ Database?: Database;
412
+ /**
413
+ * <p/>
414
+ */
415
+ Tags?: Record<string, string>;
416
+ }
417
+ export interface GetOperationInput {
418
+ /**
419
+ * <p/>
420
+ */
421
+ OperationId: string | undefined;
422
+ }
423
+ export declare enum OperationStatus {
424
+ ERROR = "ERROR",
425
+ INPROGRESS = "INPROGRESS",
426
+ SUCCESS = "SUCCESS"
427
+ }
428
+ /**
429
+ * <p/>
430
+ */
431
+ export interface Operation {
432
+ /**
433
+ * <p/>
434
+ */
435
+ Id?: string;
436
+ /**
437
+ * <p/>
438
+ */
439
+ Type?: string;
440
+ /**
441
+ * <p/>
442
+ */
443
+ Status?: OperationStatus | string;
444
+ /**
445
+ * <p/>
446
+ */
447
+ StatusMessage?: string;
448
+ /**
449
+ * <p/>
450
+ */
451
+ Properties?: Record<string, string>;
452
+ /**
453
+ * <p/>
454
+ */
455
+ ResourceType?: string;
456
+ /**
457
+ * <p/>
458
+ */
459
+ ResourceId?: string;
460
+ /**
461
+ * <p/>
462
+ */
463
+ ResourceArn?: string;
464
+ /**
465
+ * <p/>
466
+ */
467
+ StartTime?: Date;
468
+ /**
469
+ * <p/>
470
+ */
471
+ EndTime?: Date;
472
+ /**
473
+ * <p/>
474
+ */
475
+ LastUpdatedTime?: Date;
476
+ }
477
+ export interface GetOperationOutput {
478
+ /**
479
+ * <p/>
480
+ */
481
+ Operation?: Operation;
482
+ }
483
+ export interface GetResourcePermissionInput {
484
+ /**
485
+ * <p/>
486
+ */
487
+ ActionType?: PermissionActionType | string;
488
+ /**
489
+ * <p/>
490
+ */
491
+ ResourceArn: string | undefined;
492
+ }
493
+ export interface GetResourcePermissionOutput {
494
+ /**
495
+ * <p/>
496
+ */
497
+ Policy?: string;
498
+ }
499
+ export interface ListApplicationsInput {
500
+ /**
501
+ * <p/>
502
+ */
503
+ NextToken?: string;
504
+ /**
505
+ * <p/>
506
+ */
507
+ MaxResults?: number;
508
+ }
509
+ export interface ListApplicationsOutput {
510
+ /**
511
+ * <p/>
512
+ */
513
+ Applications?: ApplicationSummary[];
514
+ /**
515
+ * <p/>
516
+ */
517
+ NextToken?: string;
518
+ }
519
+ export interface ListComponentsInput {
520
+ /**
521
+ * <p/>
522
+ */
523
+ ApplicationId?: string;
524
+ /**
525
+ * <p/>
526
+ */
527
+ NextToken?: string;
528
+ /**
529
+ * <p/>
530
+ */
531
+ MaxResults?: number;
532
+ }
533
+ export interface ListComponentsOutput {
534
+ /**
535
+ * <p/>
536
+ */
537
+ Components?: ComponentSummary[];
538
+ /**
539
+ * <p/>
540
+ */
541
+ NextToken?: string;
542
+ }
543
+ export interface ListDatabasesInput {
544
+ /**
545
+ * <p/>
546
+ */
547
+ ApplicationId?: string;
548
+ /**
549
+ * <p/>
550
+ */
551
+ ComponentId?: string;
552
+ /**
553
+ * <p/>
554
+ */
555
+ NextToken?: string;
556
+ /**
557
+ * <p/>
558
+ */
559
+ MaxResults?: number;
560
+ }
561
+ export interface ListDatabasesOutput {
562
+ /**
563
+ * <p/>
564
+ */
565
+ Databases?: DatabaseSummary[];
566
+ /**
567
+ * <p/>
568
+ */
569
+ NextToken?: string;
570
+ }
571
+ export interface ListTagsForResourceRequest {
572
+ /**
573
+ * <p/>
574
+ */
575
+ resourceArn: string | undefined;
576
+ }
577
+ export interface ListTagsForResourceResponse {
578
+ /**
579
+ * <p/>
580
+ */
581
+ tags?: Record<string, string>;
582
+ }
583
+ export interface PutResourcePermissionInput {
584
+ /**
585
+ * <p/>
586
+ */
587
+ ActionType: PermissionActionType | string | undefined;
588
+ /**
589
+ * <p/>
590
+ */
591
+ SourceResourceArn: string | undefined;
592
+ /**
593
+ * <p/>
594
+ */
595
+ ResourceArn: string | undefined;
596
+ }
597
+ export interface PutResourcePermissionOutput {
598
+ /**
599
+ * <p/>
600
+ */
601
+ Policy?: string;
602
+ }
603
+ export interface RegisterApplicationInput {
604
+ /**
605
+ * <p/>
606
+ */
607
+ ApplicationId: string | undefined;
608
+ /**
609
+ * <p/>
610
+ */
611
+ ApplicationType: ApplicationType | string | undefined;
612
+ /**
613
+ * <p/>
614
+ */
615
+ Instances: string[] | undefined;
616
+ /**
617
+ * <p/>
618
+ */
619
+ SapInstanceNumber?: string;
620
+ /**
621
+ * <p/>
622
+ */
623
+ Sid?: string;
624
+ /**
625
+ * <p/>
626
+ */
627
+ Tags?: Record<string, string>;
628
+ /**
629
+ * <p/>
630
+ */
631
+ Credentials: ApplicationCredential[] | undefined;
632
+ }
633
+ export interface RegisterApplicationOutput {
634
+ /**
635
+ * <p/>
636
+ */
637
+ Application?: Application;
638
+ /**
639
+ * <p/>
640
+ */
641
+ OperationId?: string;
642
+ }
643
+ export interface TagResourceRequest {
644
+ /**
645
+ * <p/>
646
+ */
647
+ resourceArn: string | undefined;
648
+ /**
649
+ * <p/>
650
+ */
651
+ tags: Record<string, string> | undefined;
652
+ }
653
+ export interface TagResourceResponse {
654
+ }
655
+ export interface UntagResourceRequest {
656
+ /**
657
+ * <p/>
658
+ */
659
+ resourceArn: string | undefined;
660
+ /**
661
+ * <p>Adds/updates or removes credentials for applications registered with AWS Systems Manager for SAP.</p>
662
+ */
663
+ tagKeys: string[] | undefined;
664
+ }
665
+ export interface UntagResourceResponse {
666
+ }
667
+ export interface UpdateApplicationSettingsInput {
668
+ /**
669
+ * <p/>
670
+ */
671
+ ApplicationId: string | undefined;
672
+ /**
673
+ * <p/>
674
+ */
675
+ CredentialsToAddOrUpdate?: ApplicationCredential[];
676
+ /**
677
+ * <p/>
678
+ */
679
+ CredentialsToRemove?: ApplicationCredential[];
680
+ }
681
+ export interface UpdateApplicationSettingsOutput {
682
+ /**
683
+ * <p/>
684
+ */
685
+ Message?: string;
686
+ /**
687
+ * <p/>
688
+ */
689
+ OperationIds?: string[];
690
+ }
691
+ /**
692
+ * @internal
693
+ */
694
+ export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
695
+ /**
696
+ * @internal
697
+ */
698
+ export declare const ApplicationCredentialFilterSensitiveLog: (obj: ApplicationCredential) => any;
699
+ /**
700
+ * @internal
701
+ */
702
+ export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
703
+ /**
704
+ * @internal
705
+ */
706
+ export declare const HostFilterSensitiveLog: (obj: Host) => any;
707
+ /**
708
+ * @internal
709
+ */
710
+ export declare const ComponentFilterSensitiveLog: (obj: Component) => any;
711
+ /**
712
+ * @internal
713
+ */
714
+ export declare const ComponentSummaryFilterSensitiveLog: (obj: ComponentSummary) => any;
715
+ /**
716
+ * @internal
717
+ */
718
+ export declare const DatabaseFilterSensitiveLog: (obj: Database) => any;
719
+ /**
720
+ * @internal
721
+ */
722
+ export declare const DatabaseSummaryFilterSensitiveLog: (obj: DatabaseSummary) => any;
723
+ /**
724
+ * @internal
725
+ */
726
+ export declare const DeleteResourcePermissionInputFilterSensitiveLog: (obj: DeleteResourcePermissionInput) => any;
727
+ /**
728
+ * @internal
729
+ */
730
+ export declare const DeleteResourcePermissionOutputFilterSensitiveLog: (obj: DeleteResourcePermissionOutput) => any;
731
+ /**
732
+ * @internal
733
+ */
734
+ export declare const DeregisterApplicationInputFilterSensitiveLog: (obj: DeregisterApplicationInput) => any;
735
+ /**
736
+ * @internal
737
+ */
738
+ export declare const DeregisterApplicationOutputFilterSensitiveLog: (obj: DeregisterApplicationOutput) => any;
739
+ /**
740
+ * @internal
741
+ */
742
+ export declare const GetApplicationInputFilterSensitiveLog: (obj: GetApplicationInput) => any;
743
+ /**
744
+ * @internal
745
+ */
746
+ export declare const GetApplicationOutputFilterSensitiveLog: (obj: GetApplicationOutput) => any;
747
+ /**
748
+ * @internal
749
+ */
750
+ export declare const GetComponentInputFilterSensitiveLog: (obj: GetComponentInput) => any;
751
+ /**
752
+ * @internal
753
+ */
754
+ export declare const GetComponentOutputFilterSensitiveLog: (obj: GetComponentOutput) => any;
755
+ /**
756
+ * @internal
757
+ */
758
+ export declare const GetDatabaseInputFilterSensitiveLog: (obj: GetDatabaseInput) => any;
759
+ /**
760
+ * @internal
761
+ */
762
+ export declare const GetDatabaseOutputFilterSensitiveLog: (obj: GetDatabaseOutput) => any;
763
+ /**
764
+ * @internal
765
+ */
766
+ export declare const GetOperationInputFilterSensitiveLog: (obj: GetOperationInput) => any;
767
+ /**
768
+ * @internal
769
+ */
770
+ export declare const OperationFilterSensitiveLog: (obj: Operation) => any;
771
+ /**
772
+ * @internal
773
+ */
774
+ export declare const GetOperationOutputFilterSensitiveLog: (obj: GetOperationOutput) => any;
775
+ /**
776
+ * @internal
777
+ */
778
+ export declare const GetResourcePermissionInputFilterSensitiveLog: (obj: GetResourcePermissionInput) => any;
779
+ /**
780
+ * @internal
781
+ */
782
+ export declare const GetResourcePermissionOutputFilterSensitiveLog: (obj: GetResourcePermissionOutput) => any;
783
+ /**
784
+ * @internal
785
+ */
786
+ export declare const ListApplicationsInputFilterSensitiveLog: (obj: ListApplicationsInput) => any;
787
+ /**
788
+ * @internal
789
+ */
790
+ export declare const ListApplicationsOutputFilterSensitiveLog: (obj: ListApplicationsOutput) => any;
791
+ /**
792
+ * @internal
793
+ */
794
+ export declare const ListComponentsInputFilterSensitiveLog: (obj: ListComponentsInput) => any;
795
+ /**
796
+ * @internal
797
+ */
798
+ export declare const ListComponentsOutputFilterSensitiveLog: (obj: ListComponentsOutput) => any;
799
+ /**
800
+ * @internal
801
+ */
802
+ export declare const ListDatabasesInputFilterSensitiveLog: (obj: ListDatabasesInput) => any;
803
+ /**
804
+ * @internal
805
+ */
806
+ export declare const ListDatabasesOutputFilterSensitiveLog: (obj: ListDatabasesOutput) => any;
807
+ /**
808
+ * @internal
809
+ */
810
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
811
+ /**
812
+ * @internal
813
+ */
814
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
815
+ /**
816
+ * @internal
817
+ */
818
+ export declare const PutResourcePermissionInputFilterSensitiveLog: (obj: PutResourcePermissionInput) => any;
819
+ /**
820
+ * @internal
821
+ */
822
+ export declare const PutResourcePermissionOutputFilterSensitiveLog: (obj: PutResourcePermissionOutput) => any;
823
+ /**
824
+ * @internal
825
+ */
826
+ export declare const RegisterApplicationInputFilterSensitiveLog: (obj: RegisterApplicationInput) => any;
827
+ /**
828
+ * @internal
829
+ */
830
+ export declare const RegisterApplicationOutputFilterSensitiveLog: (obj: RegisterApplicationOutput) => any;
831
+ /**
832
+ * @internal
833
+ */
834
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
835
+ /**
836
+ * @internal
837
+ */
838
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
839
+ /**
840
+ * @internal
841
+ */
842
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
843
+ /**
844
+ * @internal
845
+ */
846
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
847
+ /**
848
+ * @internal
849
+ */
850
+ export declare const UpdateApplicationSettingsInputFilterSensitiveLog: (obj: UpdateApplicationSettingsInput) => any;
851
+ /**
852
+ * @internal
853
+ */
854
+ export declare const UpdateApplicationSettingsOutputFilterSensitiveLog: (obj: UpdateApplicationSettingsOutput) => any;