@aws-sdk/client-ssm 3.696.0 → 3.699.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 (67) hide show
  1. package/README.md +39 -7
  2. package/dist-cjs/index.js +834 -437
  3. package/dist-es/SSM.js +8 -0
  4. package/dist-es/commands/GetExecutionPreviewCommand.js +22 -0
  5. package/dist-es/commands/ListNodesCommand.js +23 -0
  6. package/dist-es/commands/ListNodesSummaryCommand.js +22 -0
  7. package/dist-es/commands/SendCommandCommand.js +1 -1
  8. package/dist-es/commands/StartExecutionPreviewCommand.js +22 -0
  9. package/dist-es/commands/index.js +4 -0
  10. package/dist-es/models/models_1.js +99 -144
  11. package/dist-es/models/models_2.js +167 -1
  12. package/dist-es/pagination/ListNodesPaginator.js +4 -0
  13. package/dist-es/pagination/ListNodesSummaryPaginator.js +4 -0
  14. package/dist-es/pagination/index.js +2 -0
  15. package/dist-es/protocols/Aws_json1_1.js +159 -3
  16. package/dist-types/SSM.d.ts +29 -0
  17. package/dist-types/SSMClient.d.ts +6 -2
  18. package/dist-types/commands/CreateResourceDataSyncCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteActivationCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeActivationsCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeInstancePatchesCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +1 -1
  24. package/dist-types/commands/GetExecutionPreviewCommand.d.ts +127 -0
  25. package/dist-types/commands/GetInventoryCommand.d.ts +3 -4
  26. package/dist-types/commands/GetOpsSummaryCommand.d.ts +3 -4
  27. package/dist-types/commands/ListComplianceItemsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListComplianceSummariesCommand.d.ts +1 -1
  29. package/dist-types/commands/ListInventoryEntriesCommand.d.ts +1 -1
  30. package/dist-types/commands/ListNodesCommand.d.ts +175 -0
  31. package/dist-types/commands/ListNodesSummaryCommand.d.ts +166 -0
  32. package/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +1 -1
  33. package/dist-types/commands/ResetServiceSettingCommand.d.ts +2 -1
  34. package/dist-types/commands/ResumeSessionCommand.d.ts +1 -1
  35. package/dist-types/commands/SendAutomationSignalCommand.d.ts +1 -1
  36. package/dist-types/commands/SendCommandCommand.d.ts +1 -1
  37. package/dist-types/commands/StartAssociationsOnceCommand.d.ts +1 -1
  38. package/dist-types/commands/StartAutomationExecutionCommand.d.ts +1 -1
  39. package/dist-types/commands/StartExecutionPreviewCommand.d.ts +157 -0
  40. package/dist-types/commands/index.d.ts +4 -0
  41. package/dist-types/models/models_0.d.ts +9 -4
  42. package/dist-types/models/models_1.d.ts +955 -989
  43. package/dist-types/models/models_2.d.ts +770 -5
  44. package/dist-types/pagination/ListNodesPaginator.d.ts +7 -0
  45. package/dist-types/pagination/ListNodesSummaryPaginator.d.ts +7 -0
  46. package/dist-types/pagination/index.d.ts +2 -0
  47. package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
  48. package/dist-types/ts3.4/SSM.d.ts +69 -0
  49. package/dist-types/ts3.4/SSMClient.d.ts +24 -0
  50. package/dist-types/ts3.4/commands/GetExecutionPreviewCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +47 -0
  52. package/dist-types/ts3.4/commands/ListNodesSummaryCommand.d.ts +48 -0
  53. package/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +2 -4
  54. package/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/SendCommandCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/StartExecutionPreviewCommand.d.ts +51 -0
  60. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  61. package/dist-types/ts3.4/models/models_1.d.ts +176 -170
  62. package/dist-types/ts3.4/models/models_2.d.ts +236 -0
  63. package/dist-types/ts3.4/pagination/ListNodesPaginator.d.ts +11 -0
  64. package/dist-types/ts3.4/pagination/ListNodesSummaryPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  66. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
  67. package/package.json +4 -4
@@ -3218,6 +3218,10 @@ export interface CreatePatchBaselineRequest {
3218
3218
  Name: string | undefined;
3219
3219
  /**
3220
3220
  * <p>A set of global filters used to include patches in the baseline.</p>
3221
+ * <important>
3222
+ * <p>The <code>GlobalFilters</code> parameter can be configured only by using the CLI or an Amazon Web Services SDK. It can't be configured from the Patch Manager
3223
+ * console, and its value isn't displayed in the console.</p>
3224
+ * </important>
3221
3225
  * @public
3222
3226
  */
3223
3227
  GlobalFilters?: PatchFilterGroup | undefined;
@@ -3575,7 +3579,7 @@ export declare class InvalidActivation extends __BaseException {
3575
3579
  constructor(opts: __ExceptionOptionType<InvalidActivation, __BaseException>);
3576
3580
  }
3577
3581
  /**
3578
- * <p>The activation ID isn't valid. Verify the you entered the correct ActivationId or
3582
+ * <p>The activation ID isn't valid. Verify that you entered the correct ActivationId or
3579
3583
  * ActivationCode and try again.</p>
3580
3584
  * @public
3581
3585
  */
@@ -4346,7 +4350,7 @@ export interface DescribeActivationsResult {
4346
4350
  NextToken?: string | undefined;
4347
4351
  }
4348
4352
  /**
4349
- * <p>The filter name isn't valid. Verify the you entered the correct name and try again.</p>
4353
+ * <p>The filter name isn't valid. Verify that you entered the correct name and try again.</p>
4350
4354
  * @public
4351
4355
  */
4352
4356
  export declare class InvalidFilter extends __BaseException {
@@ -6462,7 +6466,7 @@ export interface InstanceInformation {
6462
6466
  */
6463
6467
  IsLatestVersion?: boolean | undefined;
6464
6468
  /**
6465
- * <p>The operating system platform type. </p>
6469
+ * <p>The operating system platform type.</p>
6466
6470
  * @public
6467
6471
  */
6468
6472
  PlatformType?: PlatformType | undefined;
@@ -7325,7 +7329,8 @@ export interface InstanceProperty {
7325
7329
  */
7326
7330
  AgentVersion?: string | undefined;
7327
7331
  /**
7328
- * <p>The operating system platform type of the managed node. For example, Windows.</p>
7332
+ * <p>The operating system platform type of the managed node. For example, Windows Server or
7333
+ * Amazon Linux 2.</p>
7329
7334
  * @public
7330
7335
  */
7331
7336
  PlatformType?: PlatformType | undefined;