@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
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "../commands/ListOperationsCommand";
|
|
3
3
|
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListOperations(config: SsmSapPaginationConfiguration, input: ListOperationsCommandInput, ...additionalArguments: any): Paginator<ListOperationsCommandOutput>;
|
|
@@ -298,123 +298,16 @@ export interface UpdateApplicationSettingsOutput {
|
|
|
298
298
|
Message?: string;
|
|
299
299
|
OperationIds?: string[];
|
|
300
300
|
}
|
|
301
|
-
export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
|
|
302
301
|
export declare const ApplicationCredentialFilterSensitiveLog: (
|
|
303
302
|
obj: ApplicationCredential
|
|
304
303
|
) => any;
|
|
305
|
-
export declare const ApplicationSummaryFilterSensitiveLog: (
|
|
306
|
-
obj: ApplicationSummary
|
|
307
|
-
) => any;
|
|
308
|
-
export declare const HostFilterSensitiveLog: (obj: Host) => any;
|
|
309
|
-
export declare const ComponentFilterSensitiveLog: (obj: Component) => any;
|
|
310
|
-
export declare const ComponentSummaryFilterSensitiveLog: (
|
|
311
|
-
obj: ComponentSummary
|
|
312
|
-
) => any;
|
|
313
304
|
export declare const DatabaseFilterSensitiveLog: (obj: Database) => any;
|
|
314
|
-
export declare const DatabaseSummaryFilterSensitiveLog: (
|
|
315
|
-
obj: DatabaseSummary
|
|
316
|
-
) => any;
|
|
317
|
-
export declare const DeleteResourcePermissionInputFilterSensitiveLog: (
|
|
318
|
-
obj: DeleteResourcePermissionInput
|
|
319
|
-
) => any;
|
|
320
|
-
export declare const DeleteResourcePermissionOutputFilterSensitiveLog: (
|
|
321
|
-
obj: DeleteResourcePermissionOutput
|
|
322
|
-
) => any;
|
|
323
|
-
export declare const DeregisterApplicationInputFilterSensitiveLog: (
|
|
324
|
-
obj: DeregisterApplicationInput
|
|
325
|
-
) => any;
|
|
326
|
-
export declare const DeregisterApplicationOutputFilterSensitiveLog: (
|
|
327
|
-
obj: DeregisterApplicationOutput
|
|
328
|
-
) => any;
|
|
329
|
-
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
330
|
-
export declare const GetApplicationInputFilterSensitiveLog: (
|
|
331
|
-
obj: GetApplicationInput
|
|
332
|
-
) => any;
|
|
333
|
-
export declare const GetApplicationOutputFilterSensitiveLog: (
|
|
334
|
-
obj: GetApplicationOutput
|
|
335
|
-
) => any;
|
|
336
|
-
export declare const GetComponentInputFilterSensitiveLog: (
|
|
337
|
-
obj: GetComponentInput
|
|
338
|
-
) => any;
|
|
339
|
-
export declare const GetComponentOutputFilterSensitiveLog: (
|
|
340
|
-
obj: GetComponentOutput
|
|
341
|
-
) => any;
|
|
342
|
-
export declare const GetDatabaseInputFilterSensitiveLog: (
|
|
343
|
-
obj: GetDatabaseInput
|
|
344
|
-
) => any;
|
|
345
305
|
export declare const GetDatabaseOutputFilterSensitiveLog: (
|
|
346
306
|
obj: GetDatabaseOutput
|
|
347
307
|
) => any;
|
|
348
|
-
export declare const GetOperationInputFilterSensitiveLog: (
|
|
349
|
-
obj: GetOperationInput
|
|
350
|
-
) => any;
|
|
351
|
-
export declare const OperationFilterSensitiveLog: (obj: Operation) => any;
|
|
352
|
-
export declare const GetOperationOutputFilterSensitiveLog: (
|
|
353
|
-
obj: GetOperationOutput
|
|
354
|
-
) => any;
|
|
355
|
-
export declare const GetResourcePermissionInputFilterSensitiveLog: (
|
|
356
|
-
obj: GetResourcePermissionInput
|
|
357
|
-
) => any;
|
|
358
|
-
export declare const GetResourcePermissionOutputFilterSensitiveLog: (
|
|
359
|
-
obj: GetResourcePermissionOutput
|
|
360
|
-
) => any;
|
|
361
|
-
export declare const ListApplicationsInputFilterSensitiveLog: (
|
|
362
|
-
obj: ListApplicationsInput
|
|
363
|
-
) => any;
|
|
364
|
-
export declare const ListApplicationsOutputFilterSensitiveLog: (
|
|
365
|
-
obj: ListApplicationsOutput
|
|
366
|
-
) => any;
|
|
367
|
-
export declare const ListComponentsInputFilterSensitiveLog: (
|
|
368
|
-
obj: ListComponentsInput
|
|
369
|
-
) => any;
|
|
370
|
-
export declare const ListComponentsOutputFilterSensitiveLog: (
|
|
371
|
-
obj: ListComponentsOutput
|
|
372
|
-
) => any;
|
|
373
|
-
export declare const ListDatabasesInputFilterSensitiveLog: (
|
|
374
|
-
obj: ListDatabasesInput
|
|
375
|
-
) => any;
|
|
376
|
-
export declare const ListDatabasesOutputFilterSensitiveLog: (
|
|
377
|
-
obj: ListDatabasesOutput
|
|
378
|
-
) => any;
|
|
379
|
-
export declare const ListOperationsInputFilterSensitiveLog: (
|
|
380
|
-
obj: ListOperationsInput
|
|
381
|
-
) => any;
|
|
382
|
-
export declare const ListOperationsOutputFilterSensitiveLog: (
|
|
383
|
-
obj: ListOperationsOutput
|
|
384
|
-
) => any;
|
|
385
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
386
|
-
obj: ListTagsForResourceRequest
|
|
387
|
-
) => any;
|
|
388
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
389
|
-
obj: ListTagsForResourceResponse
|
|
390
|
-
) => any;
|
|
391
|
-
export declare const PutResourcePermissionInputFilterSensitiveLog: (
|
|
392
|
-
obj: PutResourcePermissionInput
|
|
393
|
-
) => any;
|
|
394
|
-
export declare const PutResourcePermissionOutputFilterSensitiveLog: (
|
|
395
|
-
obj: PutResourcePermissionOutput
|
|
396
|
-
) => any;
|
|
397
308
|
export declare const RegisterApplicationInputFilterSensitiveLog: (
|
|
398
309
|
obj: RegisterApplicationInput
|
|
399
310
|
) => any;
|
|
400
|
-
export declare const RegisterApplicationOutputFilterSensitiveLog: (
|
|
401
|
-
obj: RegisterApplicationOutput
|
|
402
|
-
) => any;
|
|
403
|
-
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
404
|
-
obj: TagResourceRequest
|
|
405
|
-
) => any;
|
|
406
|
-
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
407
|
-
obj: TagResourceResponse
|
|
408
|
-
) => any;
|
|
409
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
410
|
-
obj: UntagResourceRequest
|
|
411
|
-
) => any;
|
|
412
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
413
|
-
obj: UntagResourceResponse
|
|
414
|
-
) => any;
|
|
415
311
|
export declare const UpdateApplicationSettingsInputFilterSensitiveLog: (
|
|
416
312
|
obj: UpdateApplicationSettingsInput
|
|
417
313
|
) => any;
|
|
418
|
-
export declare const UpdateApplicationSettingsOutputFilterSensitiveLog: (
|
|
419
|
-
obj: UpdateApplicationSettingsOutput
|
|
420
|
-
) => any;
|
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.298.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",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo ssm-sap"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|