@aws-sdk/client-ssm 3.848.0 → 3.849.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/README.md +1 -1
- package/dist-types/SSM.d.ts +1 -1
- package/dist-types/SSMClient.d.ts +1 -1
- package/dist-types/commands/DescribeParametersCommand.d.ts +3 -0
- package/dist-types/commands/GetParameterCommand.d.ts +3 -0
- package/dist-types/commands/GetParameterHistoryCommand.d.ts +3 -0
- package/dist-types/commands/GetParametersByPathCommand.d.ts +3 -0
- package/dist-types/commands/GetParametersCommand.d.ts +3 -0
- package/dist-types/commands/LabelParameterVersionCommand.d.ts +5 -0
- package/dist-types/commands/PutComplianceItemsCommand.d.ts +7 -0
- package/dist-types/commands/UnlabelParameterVersionCommand.d.ts +3 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +20 -5
- package/dist-types/models/models_1.d.ts +63 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Systems Manager tools</a> in the <i>Amazon Web Services Systems Manager User Gui
|
|
|
22
22
|
<li>
|
|
23
23
|
<p>For details about predefined runbooks for Automation, a tool in Amazon Web Services Systems Manager, see the
|
|
24
24
|
<i>
|
|
25
|
-
<a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation
|
|
25
|
+
<a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation Runbook Reference</a>
|
|
26
26
|
</i>.</p>
|
|
27
27
|
</li>
|
|
28
28
|
<li>
|
package/dist-types/SSM.d.ts
CHANGED
|
@@ -1071,7 +1071,7 @@ export interface SSM {
|
|
|
1071
1071
|
* <li>
|
|
1072
1072
|
* <p>For details about predefined runbooks for Automation, a tool in Amazon Web Services Systems Manager, see the
|
|
1073
1073
|
* <i>
|
|
1074
|
-
* <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation
|
|
1074
|
+
* <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation Runbook Reference</a>
|
|
1075
1075
|
* </i>.</p>
|
|
1076
1076
|
* </li>
|
|
1077
1077
|
* <li>
|
|
@@ -331,7 +331,7 @@ export interface SSMClientResolvedConfig extends SSMClientResolvedConfigType {
|
|
|
331
331
|
* <li>
|
|
332
332
|
* <p>For details about predefined runbooks for Automation, a tool in Amazon Web Services Systems Manager, see the
|
|
333
333
|
* <i>
|
|
334
|
-
* <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation
|
|
334
|
+
* <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation Runbook Reference</a>
|
|
335
335
|
* </i>.</p>
|
|
336
336
|
* </li>
|
|
337
337
|
* <li>
|
|
@@ -35,6 +35,9 @@ declare const DescribeParametersCommand_base: {
|
|
|
35
35
|
* reaches an internal limit while processing the results, it stops the operation and returns the
|
|
36
36
|
* matching values up to that point and a <code>NextToken</code>. You can specify the
|
|
37
37
|
* <code>NextToken</code> in a subsequent call to get the next set of results.</p>
|
|
38
|
+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
|
|
39
|
+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
|
|
40
|
+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
|
|
38
41
|
* <important>
|
|
39
42
|
* <p>If you change the KMS key alias for the KMS key used to encrypt a parameter,
|
|
40
43
|
* then you must also update the key alias the parameter uses to reference KMS. Otherwise,
|
|
@@ -28,6 +28,9 @@ declare const GetParameterCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Get information about a single parameter by specifying the parameter name.</p>
|
|
31
|
+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
|
|
32
|
+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
|
|
33
|
+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
|
|
31
34
|
* <note>
|
|
32
35
|
* <p>To get information about more than one parameter at a time, use the <a>GetParameters</a> operation.</p>
|
|
33
36
|
* </note>
|
|
@@ -28,6 +28,9 @@ declare const GetParameterHistoryCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Retrieves the history of all changes to a parameter.</p>
|
|
31
|
+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
|
|
32
|
+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
|
|
33
|
+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
|
|
31
34
|
* <important>
|
|
32
35
|
* <p>If you change the KMS key alias for the KMS key used to encrypt a parameter,
|
|
33
36
|
* then you must also update the key alias the parameter uses to reference KMS. Otherwise,
|
|
@@ -34,6 +34,9 @@ declare const GetParametersByPathCommand_base: {
|
|
|
34
34
|
* reaches an internal limit while processing the results, it stops the operation and returns the
|
|
35
35
|
* matching values up to that point and a <code>NextToken</code>. You can specify the
|
|
36
36
|
* <code>NextToken</code> in a subsequent call to get the next set of results.</p>
|
|
37
|
+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
|
|
38
|
+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
|
|
39
|
+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
|
|
37
40
|
* @example
|
|
38
41
|
* Use a bare-bones client and the command you need to make an API call.
|
|
39
42
|
* ```javascript
|
|
@@ -32,6 +32,9 @@ declare const GetParametersCommand_base: {
|
|
|
32
32
|
* <p>To get information about a single parameter, you can use the <a>GetParameter</a>
|
|
33
33
|
* operation instead.</p>
|
|
34
34
|
* </note>
|
|
35
|
+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
|
|
36
|
+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
|
|
37
|
+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
|
|
35
38
|
* @example
|
|
36
39
|
* Use a bare-bones client and the command you need to make an API call.
|
|
37
40
|
* ```javascript
|
|
@@ -63,6 +63,11 @@ declare const LabelParameterVersionCommand_base: {
|
|
|
63
63
|
* sensitive). If a label fails to meet these requirements, then the label isn't associated with a
|
|
64
64
|
* parameter and the system displays it in the list of InvalidLabels.</p>
|
|
65
65
|
* </li>
|
|
66
|
+
* <li>
|
|
67
|
+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for
|
|
68
|
+
* the beginning or end of a parameter name. If the specified name for a parameter contains spaces
|
|
69
|
+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
|
|
70
|
+
* </li>
|
|
66
71
|
* </ul>
|
|
67
72
|
* @example
|
|
68
73
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -43,6 +43,13 @@ declare const PutComplianceItemsCommand_base: {
|
|
|
43
43
|
* <li>
|
|
44
44
|
* <p>ExecutionTime. The time the patch, association, or custom compliance item was applied to
|
|
45
45
|
* the managed node.</p>
|
|
46
|
+
* <important>
|
|
47
|
+
* <p>For State Manager associations, this represents the time when compliance status was
|
|
48
|
+
* captured by the Systems Manager service during its internal compliance aggregation workflow, not
|
|
49
|
+
* necessarily when the association was executed on the managed node. State Manager updates
|
|
50
|
+
* compliance information for all associations on an instance whenever any association executes,
|
|
51
|
+
* which may result in multiple associations showing the same execution time.</p>
|
|
52
|
+
* </important>
|
|
46
53
|
* </li>
|
|
47
54
|
* <li>
|
|
48
55
|
* <p>Id: The patch, association, or custom compliance ID.</p>
|
|
@@ -28,6 +28,9 @@ declare const UnlabelParameterVersionCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Remove a label or labels from a parameter.</p>
|
|
31
|
+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
|
|
32
|
+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
|
|
33
|
+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
|
|
31
34
|
* @example
|
|
32
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
36
|
* ```javascript
|
package/dist-types/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
* <li>
|
|
16
16
|
* <p>For details about predefined runbooks for Automation, a tool in Amazon Web Services Systems Manager, see the
|
|
17
17
|
* <i>
|
|
18
|
-
* <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation
|
|
18
|
+
* <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation Runbook Reference</a>
|
|
19
19
|
* </i>.</p>
|
|
20
20
|
* </li>
|
|
21
21
|
* <li>
|
|
@@ -3240,7 +3240,10 @@ export interface PatchSource {
|
|
|
3240
3240
|
*/
|
|
3241
3241
|
Products: string[] | undefined;
|
|
3242
3242
|
/**
|
|
3243
|
-
* <p>The value of the
|
|
3243
|
+
* <p>The value of the repo configuration.</p>
|
|
3244
|
+
* <p>
|
|
3245
|
+
* <b>Example for yum repositories</b>
|
|
3246
|
+
* </p>
|
|
3244
3247
|
* <p>
|
|
3245
3248
|
* <code>[main]</code>
|
|
3246
3249
|
* </p>
|
|
@@ -3253,10 +3256,22 @@ export interface PatchSource {
|
|
|
3253
3256
|
* <p>
|
|
3254
3257
|
* <code>enabled=1</code>
|
|
3255
3258
|
* </p>
|
|
3256
|
-
* <
|
|
3257
|
-
*
|
|
3258
|
-
*
|
|
3259
|
-
*
|
|
3259
|
+
* <p>For information about other options available for your yum repository configuration, see
|
|
3260
|
+
* <a href="https://man7.org/linux/man-pages/man5/dnf.conf.5.html">dnf.conf(5)</a> on the
|
|
3261
|
+
* <i>man7.org</i> website.</p>
|
|
3262
|
+
* <p>
|
|
3263
|
+
* <b>Examples for Ubuntu Server and Debian Server</b>
|
|
3264
|
+
* </p>
|
|
3265
|
+
* <p>
|
|
3266
|
+
* <code>deb http://security.ubuntu.com/ubuntu jammy main</code>
|
|
3267
|
+
* </p>
|
|
3268
|
+
* <p>
|
|
3269
|
+
* <code>deb https://site.example.com/debian distribution component1 component2 component3</code>
|
|
3270
|
+
* </p>
|
|
3271
|
+
* <p>Repo information for Ubuntu Server repositories must be specifed in a single line. For more
|
|
3272
|
+
* examples and information, see <a href="https://manpages.ubuntu.com/manpages/jammy/man5/sources.list.5.html">jammy (5)
|
|
3273
|
+
* sources.list.5.gz</a> on the <i>Ubuntu Server Manuals</i> website and <a href="https://wiki.debian.org/SourcesList#sources.list_format">sources.list format</a> on the
|
|
3274
|
+
* <i>Debian Wiki</i>.</p>
|
|
3260
3275
|
* @public
|
|
3261
3276
|
*/
|
|
3262
3277
|
Configuration: string | undefined;
|
|
@@ -1653,7 +1653,7 @@ export interface Session {
|
|
|
1653
1653
|
/**
|
|
1654
1654
|
* <p>
|
|
1655
1655
|
* <code>Standard</code> access type is the default for Session Manager sessions.
|
|
1656
|
-
* <code>JustInTime</code> is the access type for <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-just-in-time-node-access.html">Just-in-time node access</a
|
|
1656
|
+
* <code>JustInTime</code> is the access type for <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-just-in-time-node-access.html">Just-in-time node access</a>.</p>
|
|
1657
1657
|
* @public
|
|
1658
1658
|
*/
|
|
1659
1659
|
AccessType?: AccessType | undefined;
|
|
@@ -2932,6 +2932,50 @@ export declare const InventoryQueryOperatorType: {
|
|
|
2932
2932
|
export type InventoryQueryOperatorType = (typeof InventoryQueryOperatorType)[keyof typeof InventoryQueryOperatorType];
|
|
2933
2933
|
/**
|
|
2934
2934
|
* <p>One or more filters. Use a filter to return a more specific list of results.</p>
|
|
2935
|
+
* <p>
|
|
2936
|
+
* <b>Example formats for the <code>aws ssm get-inventory</code>
|
|
2937
|
+
* command:</b>
|
|
2938
|
+
* </p>
|
|
2939
|
+
* <p>
|
|
2940
|
+
* <code>--filters
|
|
2941
|
+
* Key=AWS:InstanceInformation.AgentType,Values=amazon-ssm-agent,Type=Equal</code>
|
|
2942
|
+
* </p>
|
|
2943
|
+
* <p>
|
|
2944
|
+
* <code>--filters
|
|
2945
|
+
* Key=AWS:InstanceInformation.AgentVersion,Values=3.3.2299.0,Type=Equal</code>
|
|
2946
|
+
* </p>
|
|
2947
|
+
* <p>
|
|
2948
|
+
* <code>--filters
|
|
2949
|
+
* Key=AWS:InstanceInformation.ComputerName,Values=ip-192.0.2.0.us-east-2.compute.internal,Type=Equal</code>
|
|
2950
|
+
* </p>
|
|
2951
|
+
* <p>
|
|
2952
|
+
* <code>--filters
|
|
2953
|
+
* Key=AWS:InstanceInformation.InstanceId,Values=i-0a4cd6ceffEXAMPLE,i-1a2b3c4d5e6EXAMPLE,Type=Equal</code>
|
|
2954
|
+
* </p>
|
|
2955
|
+
* <p>
|
|
2956
|
+
* <code>--filters
|
|
2957
|
+
* Key=AWS:InstanceInformation.InstanceStatus,Values=Active,Type=Equal</code>
|
|
2958
|
+
* </p>
|
|
2959
|
+
* <p>
|
|
2960
|
+
* <code>--filters
|
|
2961
|
+
* Key=AWS:InstanceInformation.IpAddress,Values=198.51.100.0,Type=Equal</code>
|
|
2962
|
+
* </p>
|
|
2963
|
+
* <p>
|
|
2964
|
+
* <code>--filters Key=AWS:InstanceInformation.PlatformName,Values="Amazon
|
|
2965
|
+
* Linux",Type=Equal</code>
|
|
2966
|
+
* </p>
|
|
2967
|
+
* <p>
|
|
2968
|
+
* <code>--filters
|
|
2969
|
+
* Key=AWS:InstanceInformation.PlatformType,Values=Linux,Type=Equal</code>
|
|
2970
|
+
* </p>
|
|
2971
|
+
* <p>
|
|
2972
|
+
* <code>--filters
|
|
2973
|
+
* Key=AWS:InstanceInformation.PlatformVersion,Values=2023,Type=BeginWith</code>
|
|
2974
|
+
* </p>
|
|
2975
|
+
* <p>
|
|
2976
|
+
* <code>--filters
|
|
2977
|
+
* Key=AWS:InstanceInformation.ResourceType,Values=EC2Instance,Type=Equal</code>
|
|
2978
|
+
* </p>
|
|
2935
2979
|
* @public
|
|
2936
2980
|
*/
|
|
2937
2981
|
export interface InventoryFilter {
|
|
@@ -2941,9 +2985,7 @@ export interface InventoryFilter {
|
|
|
2941
2985
|
*/
|
|
2942
2986
|
Key: string | undefined;
|
|
2943
2987
|
/**
|
|
2944
|
-
* <p>Inventory filter values
|
|
2945
|
-
* values <code>Key=AWS:InstanceInformation.InstanceId,Values= i-a12b3c4d5e6g,
|
|
2946
|
-
* i-1a2b3c4d5e6,Type=Equal</code>. </p>
|
|
2988
|
+
* <p>Inventory filter values.</p>
|
|
2947
2989
|
* @public
|
|
2948
2990
|
*/
|
|
2949
2991
|
Values: string[] | undefined;
|
|
@@ -6404,6 +6446,12 @@ export interface ComplianceExecutionSummary {
|
|
|
6404
6446
|
* <p>The time the execution ran as a datetime object that is saved in the following format:
|
|
6405
6447
|
* <code>yyyy-MM-dd'T'HH:mm:ss'Z'</code>
|
|
6406
6448
|
* </p>
|
|
6449
|
+
* <important>
|
|
6450
|
+
* <p>For State Manager associations, this timestamp represents when the compliance status was
|
|
6451
|
+
* captured and reported by the Systems Manager service, not when the underlying association was actually
|
|
6452
|
+
* executed on the managed node. To track actual association execution times, use the <a>DescribeAssociationExecutionTargets</a> command or check the association execution
|
|
6453
|
+
* history in the Systems Manager console.</p>
|
|
6454
|
+
* </important>
|
|
6407
6455
|
* @public
|
|
6408
6456
|
*/
|
|
6409
6457
|
ExecutionTime: Date | undefined;
|
|
@@ -6499,6 +6547,14 @@ export interface ComplianceItem {
|
|
|
6499
6547
|
/**
|
|
6500
6548
|
* <p>A summary for the compliance item. The summary includes an execution ID, the execution type
|
|
6501
6549
|
* (for example, command), and the execution time.</p>
|
|
6550
|
+
* <important>
|
|
6551
|
+
* <p>For State Manager associations, the <code>ExecutionTime</code> value represents when the
|
|
6552
|
+
* compliance status was captured and aggregated by the Systems Manager service, not necessarily when the
|
|
6553
|
+
* underlying association was executed on the managed node. State Manager updates compliance status
|
|
6554
|
+
* for all associations on an instance whenever any association executes, which means multiple
|
|
6555
|
+
* associations may show the same execution time even if they were executed at different
|
|
6556
|
+
* times.</p>
|
|
6557
|
+
* </important>
|
|
6502
6558
|
* @public
|
|
6503
6559
|
*/
|
|
6504
6560
|
ExecutionSummary?: ComplianceExecutionSummary | undefined;
|
|
@@ -8844,7 +8900,9 @@ export interface PutParameterRequest {
|
|
|
8844
8900
|
* </p>
|
|
8845
8901
|
* </li>
|
|
8846
8902
|
* <li>
|
|
8847
|
-
* <p>
|
|
8903
|
+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for
|
|
8904
|
+
* the beginning or end of a parameter name. If the specified name for a parameter contains spaces
|
|
8905
|
+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
|
|
8848
8906
|
* </li>
|
|
8849
8907
|
* <li>
|
|
8850
8908
|
* <p>Parameter hierarchies are limited to a maximum depth of fifteen levels.</p>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.849.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ssm",
|