@aws-sdk/client-ssm 3.929.0 → 3.930.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/index.js CHANGED
@@ -1768,14 +1768,6 @@ const ImpactType = {
1768
1768
  NON_MUTATING: "NonMutating",
1769
1769
  UNDETERMINED: "Undetermined",
1770
1770
  };
1771
- exports.ExecutionPreview = void 0;
1772
- (function (ExecutionPreview) {
1773
- ExecutionPreview.visit = (value, visitor) => {
1774
- if (value.Automation !== undefined)
1775
- return visitor.Automation(value.Automation);
1776
- return visitor._(value.$unknown[0], value.$unknown[1]);
1777
- };
1778
- })(exports.ExecutionPreview || (exports.ExecutionPreview = {}));
1779
1771
  const ExecutionPreviewStatus = {
1780
1772
  FAILED: "Failed",
1781
1773
  IN_PROGRESS: "InProgress",
@@ -1998,14 +1990,6 @@ const ManagedStatus = {
1998
1990
  MANAGED: "Managed",
1999
1991
  UNMANAGED: "Unmanaged",
2000
1992
  };
2001
- exports.NodeType = void 0;
2002
- (function (NodeType) {
2003
- NodeType.visit = (value, visitor) => {
2004
- if (value.Instance !== undefined)
2005
- return visitor.Instance(value.Instance);
2006
- return visitor._(value.$unknown[0], value.$unknown[1]);
2007
- };
2008
- })(exports.NodeType || (exports.NodeType = {}));
2009
1993
  let UnsupportedOperationException$1 = class UnsupportedOperationException extends SSMServiceException$1 {
2010
1994
  name = "UnsupportedOperationException";
2011
1995
  $fault = "client";
@@ -2578,14 +2562,6 @@ let AutomationDefinitionNotApprovedException$1 = class AutomationDefinitionNotAp
2578
2562
  this.Message = opts.Message;
2579
2563
  }
2580
2564
  };
2581
- exports.ExecutionInputs = void 0;
2582
- (function (ExecutionInputs) {
2583
- ExecutionInputs.visit = (value, visitor) => {
2584
- if (value.Automation !== undefined)
2585
- return visitor.Automation(value.Automation);
2586
- return visitor._(value.$unknown[0], value.$unknown[1]);
2587
- };
2588
- })(exports.ExecutionInputs || (exports.ExecutionInputs = {}));
2589
2565
  let TargetNotConnected$1 = class TargetNotConnected extends SSMServiceException$1 {
2590
2566
  name = "TargetNotConnected";
2591
2567
  $fault = "client";
@@ -274,14 +274,6 @@ export const ImpactType = {
274
274
  NON_MUTATING: "NonMutating",
275
275
  UNDETERMINED: "Undetermined",
276
276
  };
277
- export var ExecutionPreview;
278
- (function (ExecutionPreview) {
279
- ExecutionPreview.visit = (value, visitor) => {
280
- if (value.Automation !== undefined)
281
- return visitor.Automation(value.Automation);
282
- return visitor._(value.$unknown[0], value.$unknown[1]);
283
- };
284
- })(ExecutionPreview || (ExecutionPreview = {}));
285
277
  export const ExecutionPreviewStatus = {
286
278
  FAILED: "Failed",
287
279
  IN_PROGRESS: "InProgress",
@@ -504,14 +496,6 @@ export const ManagedStatus = {
504
496
  MANAGED: "Managed",
505
497
  UNMANAGED: "Unmanaged",
506
498
  };
507
- export var NodeType;
508
- (function (NodeType) {
509
- NodeType.visit = (value, visitor) => {
510
- if (value.Instance !== undefined)
511
- return visitor.Instance(value.Instance);
512
- return visitor._(value.$unknown[0], value.$unknown[1]);
513
- };
514
- })(NodeType || (NodeType = {}));
515
499
  export class UnsupportedOperationException extends __BaseException {
516
500
  name = "UnsupportedOperationException";
517
501
  $fault = "client";
@@ -195,14 +195,6 @@ export class AutomationDefinitionNotApprovedException extends __BaseException {
195
195
  this.Message = opts.Message;
196
196
  }
197
197
  }
198
- export var ExecutionInputs;
199
- (function (ExecutionInputs) {
200
- ExecutionInputs.visit = (value, visitor) => {
201
- if (value.Automation !== undefined)
202
- return visitor.Automation(value.Automation);
203
- return visitor._(value.$unknown[0], value.$unknown[1]);
204
- };
205
- })(ExecutionInputs || (ExecutionInputs = {}));
206
198
  export class TargetNotConnected extends __BaseException {
207
199
  name = "TargetNotConnected";
208
200
  $fault = "client";
@@ -2944,11 +2944,14 @@ export declare namespace ExecutionPreview {
2944
2944
  Automation?: never;
2945
2945
  $unknown: [string, any];
2946
2946
  }
2947
+ /**
2948
+ * @deprecated unused in schema-serde mode.
2949
+ *
2950
+ */
2947
2951
  interface Visitor<T> {
2948
2952
  Automation: (value: AutomationExecutionPreview) => T;
2949
2953
  _: (name: string, value: any) => T;
2950
2954
  }
2951
- const visit: <T>(value: ExecutionPreview, visitor: Visitor<T>) => T;
2952
2955
  }
2953
2956
  /**
2954
2957
  * @public
@@ -7612,11 +7615,14 @@ export declare namespace NodeType {
7612
7615
  Instance?: never;
7613
7616
  $unknown: [string, any];
7614
7617
  }
7618
+ /**
7619
+ * @deprecated unused in schema-serde mode.
7620
+ *
7621
+ */
7615
7622
  interface Visitor<T> {
7616
7623
  Instance: (value: InstanceInfo) => T;
7617
7624
  _: (name: string, value: any) => T;
7618
7625
  }
7619
- const visit: <T>(value: NodeType, visitor: Visitor<T>) => T;
7620
7626
  }
7621
7627
  /**
7622
7628
  * <p>Information about ownership of a managed node.</p>
@@ -1249,11 +1249,14 @@ export declare namespace ExecutionInputs {
1249
1249
  Automation?: never;
1250
1250
  $unknown: [string, any];
1251
1251
  }
1252
+ /**
1253
+ * @deprecated unused in schema-serde mode.
1254
+ *
1255
+ */
1252
1256
  interface Visitor<T> {
1253
1257
  Automation: (value: AutomationExecutionInputs) => T;
1254
1258
  _: (name: string, value: any) => T;
1255
1259
  }
1256
- const visit: <T>(value: ExecutionInputs, visitor: Visitor<T>) => T;
1257
1260
  }
1258
1261
  /**
1259
1262
  * @public
@@ -765,7 +765,6 @@ export declare namespace ExecutionPreview {
765
765
  Automation: (value: AutomationExecutionPreview) => T;
766
766
  _: (name: string, value: any) => T;
767
767
  }
768
- const visit: <T>(value: ExecutionPreview, visitor: Visitor<T>) => T;
769
768
  }
770
769
  export declare const ExecutionPreviewStatus: {
771
770
  readonly FAILED: "Failed";
@@ -1715,7 +1714,6 @@ export declare namespace NodeType {
1715
1714
  Instance: (value: InstanceInfo) => T;
1716
1715
  _: (name: string, value: any) => T;
1717
1716
  }
1718
- const visit: <T>(value: NodeType, visitor: Visitor<T>) => T;
1719
1717
  }
1720
1718
  export interface NodeOwnerInfo {
1721
1719
  AccountId?: string | undefined;
@@ -351,7 +351,6 @@ export declare namespace ExecutionInputs {
351
351
  Automation: (value: AutomationExecutionInputs) => T;
352
352
  _: (name: string, value: any) => T;
353
353
  }
354
- const visit: <T>(value: ExecutionInputs, visitor: Visitor<T>) => T;
355
354
  }
356
355
  export interface StartExecutionPreviewRequest {
357
356
  DocumentName: string | undefined;
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.929.0",
4
+ "version": "3.930.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",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.928.0",
24
- "@aws-sdk/credential-provider-node": "3.929.0",
25
- "@aws-sdk/middleware-host-header": "3.922.0",
26
- "@aws-sdk/middleware-logger": "3.922.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.928.0",
29
- "@aws-sdk/region-config-resolver": "3.925.0",
30
- "@aws-sdk/types": "3.922.0",
31
- "@aws-sdk/util-endpoints": "3.922.0",
32
- "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.928.0",
34
- "@smithy/config-resolver": "^4.4.2",
35
- "@smithy/core": "^3.17.2",
36
- "@smithy/fetch-http-handler": "^5.3.5",
37
- "@smithy/hash-node": "^4.2.4",
38
- "@smithy/invalid-dependency": "^4.2.4",
39
- "@smithy/middleware-content-length": "^4.2.4",
40
- "@smithy/middleware-endpoint": "^4.3.6",
41
- "@smithy/middleware-retry": "^4.4.6",
42
- "@smithy/middleware-serde": "^4.2.4",
43
- "@smithy/middleware-stack": "^4.2.4",
44
- "@smithy/node-config-provider": "^4.3.4",
45
- "@smithy/node-http-handler": "^4.4.4",
46
- "@smithy/protocol-http": "^5.3.4",
47
- "@smithy/smithy-client": "^4.9.2",
48
- "@smithy/types": "^4.8.1",
49
- "@smithy/url-parser": "^4.2.4",
23
+ "@aws-sdk/core": "3.930.0",
24
+ "@aws-sdk/credential-provider-node": "3.930.0",
25
+ "@aws-sdk/middleware-host-header": "3.930.0",
26
+ "@aws-sdk/middleware-logger": "3.930.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.930.0",
28
+ "@aws-sdk/middleware-user-agent": "3.930.0",
29
+ "@aws-sdk/region-config-resolver": "3.930.0",
30
+ "@aws-sdk/types": "3.930.0",
31
+ "@aws-sdk/util-endpoints": "3.930.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.930.0",
33
+ "@aws-sdk/util-user-agent-node": "3.930.0",
34
+ "@smithy/config-resolver": "^4.4.3",
35
+ "@smithy/core": "^3.18.2",
36
+ "@smithy/fetch-http-handler": "^5.3.6",
37
+ "@smithy/hash-node": "^4.2.5",
38
+ "@smithy/invalid-dependency": "^4.2.5",
39
+ "@smithy/middleware-content-length": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.9",
41
+ "@smithy/middleware-retry": "^4.4.9",
42
+ "@smithy/middleware-serde": "^4.2.5",
43
+ "@smithy/middleware-stack": "^4.2.5",
44
+ "@smithy/node-config-provider": "^4.3.5",
45
+ "@smithy/node-http-handler": "^4.4.5",
46
+ "@smithy/protocol-http": "^5.3.5",
47
+ "@smithy/smithy-client": "^4.9.5",
48
+ "@smithy/types": "^4.9.0",
49
+ "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.5",
54
- "@smithy/util-defaults-mode-node": "^4.2.8",
55
- "@smithy/util-endpoints": "^3.2.4",
56
- "@smithy/util-middleware": "^4.2.4",
57
- "@smithy/util-retry": "^4.2.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.8",
54
+ "@smithy/util-defaults-mode-node": "^4.2.11",
55
+ "@smithy/util-endpoints": "^3.2.5",
56
+ "@smithy/util-middleware": "^4.2.5",
57
+ "@smithy/util-retry": "^4.2.5",
58
58
  "@smithy/util-utf8": "^4.2.0",
59
- "@smithy/util-waiter": "^4.2.4",
59
+ "@smithy/util-waiter": "^4.2.5",
60
60
  "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {