@aws-sdk/client-ssm 3.80.0 → 3.84.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.
@@ -407,6 +407,10 @@ export interface CreateAssociationRequest {
407
407
  TargetLocations?: TargetLocation[];
408
408
 
409
409
  ScheduleOffset?: number;
410
+
411
+ TargetMaps?: {
412
+ [key: string]: string[];
413
+ }[];
410
414
  }
411
415
  export declare namespace CreateAssociationRequest {
412
416
 
@@ -501,6 +505,10 @@ export interface AssociationDescription {
501
505
  TargetLocations?: TargetLocation[];
502
506
 
503
507
  ScheduleOffset?: number;
508
+
509
+ TargetMaps?: {
510
+ [key: string]: string[];
511
+ }[];
504
512
  }
505
513
  export declare namespace AssociationDescription {
506
514
 
@@ -555,6 +563,14 @@ export declare class InvalidTarget extends __BaseException {
555
563
  constructor(opts: __ExceptionOptionType<InvalidTarget, __BaseException>);
556
564
  }
557
565
 
566
+ export declare class InvalidTargetMaps extends __BaseException {
567
+ readonly name: "InvalidTargetMaps";
568
+ readonly $fault: "client";
569
+ Message?: string;
570
+
571
+ constructor(opts: __ExceptionOptionType<InvalidTargetMaps, __BaseException>);
572
+ }
573
+
558
574
  export declare class UnsupportedPlatformType extends __BaseException {
559
575
  readonly name: "UnsupportedPlatformType";
560
576
  readonly $fault: "client";
@@ -600,6 +616,10 @@ export interface CreateAssociationBatchRequestEntry {
600
616
  TargetLocations?: TargetLocation[];
601
617
 
602
618
  ScheduleOffset?: number;
619
+
620
+ TargetMaps?: {
621
+ [key: string]: string[];
622
+ }[];
603
623
  }
604
624
  export declare namespace CreateAssociationBatchRequestEntry {
605
625
 
@@ -2069,6 +2089,10 @@ export interface Runbook {
2069
2089
 
2070
2090
  Targets?: Target[];
2071
2091
 
2092
+ TargetMaps?: {
2093
+ [key: string]: string[];
2094
+ }[];
2095
+
2072
2096
  MaxConcurrency?: string;
2073
2097
 
2074
2098
  MaxErrors?: string;
@@ -3609,8 +3633,3 @@ export declare namespace ParameterInlinePolicy {
3609
3633
 
3610
3634
  const filterSensitiveLog: (obj: ParameterInlinePolicy) => any;
3611
3635
  }
3612
- export declare enum ParameterTier {
3613
- ADVANCED = "Advanced",
3614
- INTELLIGENT_TIERING = "Intelligent-Tiering",
3615
- STANDARD = "Standard"
3616
- }
@@ -1,6 +1,11 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { AssociationComplianceSeverity, AssociationDescription, AssociationOverview, AssociationStatus, AssociationSyncCompliance, AttachmentsSource, AutomationExecutionStatus, AutomationSubtype, DocumentDescription, DocumentFormat, DocumentHashType, DocumentPermissionType, DocumentRequires, DocumentStatus, DocumentType, ExecutionMode, InstanceAssociationOutputLocation, LoggingInfo, MaintenanceWindowExecutionStatus, MaintenanceWindowResourceType, MaintenanceWindowTaskCutoffBehavior, MaintenanceWindowTaskParameterValueExpression, MaintenanceWindowTaskType, MetadataValue, OperatingSystem, OpsItemDataValue, OpsItemNotification, OpsItemStatus, ParameterInlinePolicy, ParameterStringFilter, ParameterTier, PatchAction, PatchComplianceLevel, PatchFilterGroup, PatchOrchestratorFilter, PatchRuleGroup, PatchSource, PlatformType, RelatedOpsItem, ResolvedTargets, ResourceDataSyncAwsOrganizationsSource, ResourceDataSyncS3Destination, ResourceTypeForTagging, ReviewStatus, Runbook, StepExecution, Tag, Target, TargetLocation } from "./models_0";
2
+ import { AssociationComplianceSeverity, AssociationDescription, AssociationOverview, AssociationStatus, AssociationSyncCompliance, AttachmentsSource, AutomationExecutionStatus, AutomationSubtype, DocumentDescription, DocumentFormat, DocumentHashType, DocumentPermissionType, DocumentRequires, DocumentStatus, DocumentType, ExecutionMode, InstanceAssociationOutputLocation, LoggingInfo, MaintenanceWindowExecutionStatus, MaintenanceWindowResourceType, MaintenanceWindowTaskCutoffBehavior, MaintenanceWindowTaskParameterValueExpression, MaintenanceWindowTaskType, MetadataValue, OperatingSystem, OpsItemDataValue, OpsItemNotification, OpsItemStatus, ParameterInlinePolicy, ParameterStringFilter, PatchAction, PatchComplianceLevel, PatchFilterGroup, PatchOrchestratorFilter, PatchRuleGroup, PatchSource, PlatformType, RelatedOpsItem, ResolvedTargets, ResourceDataSyncAwsOrganizationsSource, ResourceDataSyncS3Destination, ResourceTypeForTagging, ReviewStatus, Runbook, StepExecution, Tag, Target, TargetLocation } from "./models_0";
3
3
  import { SSMServiceException as __BaseException } from "./SSMServiceException";
4
+ export declare enum ParameterTier {
5
+ ADVANCED = "Advanced",
6
+ INTELLIGENT_TIERING = "Intelligent-Tiering",
7
+ STANDARD = "Standard"
8
+ }
4
9
  export declare enum ParameterType {
5
10
  SECURE_STRING = "SecureString",
6
11
  STRING = "String",
@@ -1716,6 +1721,10 @@ export interface Association {
1716
1721
  AssociationName?: string;
1717
1722
 
1718
1723
  ScheduleOffset?: number;
1724
+
1725
+ TargetMaps?: {
1726
+ [key: string]: string[];
1727
+ }[];
1719
1728
  }
1720
1729
  export declare namespace Association {
1721
1730
 
@@ -1783,6 +1792,10 @@ export interface AssociationVersionInfo {
1783
1792
  TargetLocations?: TargetLocation[];
1784
1793
 
1785
1794
  ScheduleOffset?: number;
1795
+
1796
+ TargetMaps?: {
1797
+ [key: string]: string[];
1798
+ }[];
1786
1799
  }
1787
1800
  export declare namespace AssociationVersionInfo {
1788
1801
 
@@ -3679,6 +3692,10 @@ export interface UpdateAssociationRequest {
3679
3692
  TargetLocations?: TargetLocation[];
3680
3693
 
3681
3694
  ScheduleOffset?: number;
3695
+
3696
+ TargetMaps?: {
3697
+ [key: string]: string[];
3698
+ }[];
3682
3699
  }
3683
3700
  export declare namespace UpdateAssociationRequest {
3684
3701
 
@@ -3821,15 +3838,3 @@ export declare namespace DocumentReviews {
3821
3838
 
3822
3839
  const filterSensitiveLog: (obj: DocumentReviews) => any;
3823
3840
  }
3824
- export interface UpdateDocumentMetadataRequest {
3825
-
3826
- Name: string | undefined;
3827
-
3828
- DocumentVersion?: string;
3829
-
3830
- DocumentReviews: DocumentReviews | undefined;
3831
- }
3832
- export declare namespace UpdateDocumentMetadataRequest {
3833
-
3834
- const filterSensitiveLog: (obj: UpdateDocumentMetadataRequest) => any;
3835
- }
@@ -1,7 +1,19 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { LoggingInfo, MaintenanceWindowTaskCutoffBehavior, MaintenanceWindowTaskParameterValueExpression, MetadataValue, OperatingSystem, OpsItemDataValue, OpsItemNotification, OpsItemStatus, PatchAction, PatchComplianceLevel, PatchFilterGroup, PatchRuleGroup, PatchSource, RelatedOpsItem, ResourceDataSyncSource, Target } from "./models_0";
3
- import { InventoryFilter, InventoryGroup, MaintenanceWindowTaskInvocationParameters, OpsFilter, OpsResultAttribute, ResultAttribute } from "./models_1";
3
+ import { DocumentReviews, InventoryFilter, InventoryGroup, MaintenanceWindowTaskInvocationParameters, OpsFilter, OpsResultAttribute, ResultAttribute } from "./models_1";
4
4
  import { SSMServiceException as __BaseException } from "./SSMServiceException";
5
+ export interface UpdateDocumentMetadataRequest {
6
+
7
+ Name: string | undefined;
8
+
9
+ DocumentVersion?: string;
10
+
11
+ DocumentReviews: DocumentReviews | undefined;
12
+ }
13
+ export declare namespace UpdateDocumentMetadataRequest {
14
+
15
+ const filterSensitiveLog: (obj: UpdateDocumentMetadataRequest) => any;
16
+ }
5
17
  export interface UpdateDocumentMetadataResponse {
6
18
  }
7
19
  export declare namespace UpdateDocumentMetadataResponse {
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.80.0",
4
+ "version": "3.84.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",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.80.0",
21
+ "@aws-sdk/client-sts": "3.82.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.80.0",
23
+ "@aws-sdk/credential-provider-node": "3.82.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
@@ -33,7 +33,7 @@
33
33
  "@aws-sdk/middleware-stack": "3.78.0",
34
34
  "@aws-sdk/middleware-user-agent": "3.78.0",
35
35
  "@aws-sdk/node-config-provider": "3.80.0",
36
- "@aws-sdk/node-http-handler": "3.78.0",
36
+ "@aws-sdk/node-http-handler": "3.82.0",
37
37
  "@aws-sdk/protocol-http": "3.78.0",
38
38
  "@aws-sdk/smithy-client": "3.78.0",
39
39
  "@aws-sdk/types": "3.78.0",
@@ -43,7 +43,7 @@
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
45
  "@aws-sdk/util-defaults-mode-browser": "3.78.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.80.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.81.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.78.0",
48
48
  "@aws-sdk/util-user-agent-node": "3.80.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",