@aws-sdk/client-ec2 3.467.0 → 3.468.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.
@@ -61298,6 +61298,9 @@ const de_ProcessorInfo = (output, context) => {
61298
61298
  else if (output["supportedFeatures"] !== undefined && output["supportedFeatures"]["item"] !== undefined) {
61299
61299
  contents.SupportedFeatures = de_SupportedAdditionalProcessorFeatureList((0, smithy_client_1.getArrayIfSingleItem)(output["supportedFeatures"]["item"]), context);
61300
61300
  }
61301
+ if (output["manufacturer"] !== undefined) {
61302
+ contents.Manufacturer = (0, smithy_client_1.expectString)(output["manufacturer"]);
61303
+ }
61301
61304
  return contents;
61302
61305
  };
61303
61306
  const de_ProductCode = (output, context) => {
@@ -60041,6 +60041,9 @@ const de_ProcessorInfo = (output, context) => {
60041
60041
  else if (output["supportedFeatures"] !== undefined && output["supportedFeatures"]["item"] !== undefined) {
60042
60042
  contents.SupportedFeatures = de_SupportedAdditionalProcessorFeatureList(__getArrayIfSingleItem(output["supportedFeatures"]["item"]), context);
60043
60043
  }
60044
+ if (output["manufacturer"] !== undefined) {
60045
+ contents.Manufacturer = __expectString(output["manufacturer"]);
60046
+ }
60044
60047
  return contents;
60045
60048
  };
60046
60049
  const de_ProductCode = (output, context) => {
@@ -74,6 +74,7 @@ export interface DescribeInstanceTypesCommandOutput extends DescribeInstanceType
74
74
  * // SupportedFeatures: [ // SupportedAdditionalProcessorFeatureList
75
75
  * // "amd-sev-snp",
76
76
  * // ],
77
+ * // Manufacturer: "STRING_VALUE",
77
78
  * // },
78
79
  * // VCpuInfo: { // VCpuInfo
79
80
  * // DefaultVCpus: Number("int"),
@@ -3890,6 +3890,11 @@ export interface ProcessorInfo {
3890
3890
  * AMD SEV-SNP</a>.</p>
3891
3891
  */
3892
3892
  SupportedFeatures?: SupportedAdditionalProcessorFeature[];
3893
+ /**
3894
+ * @public
3895
+ * <p>The manufacturer of the processor.</p>
3896
+ */
3897
+ Manufacturer?: string;
3893
3898
  }
3894
3899
  /**
3895
3900
  * @public
@@ -780,6 +780,7 @@ export interface ProcessorInfo {
780
780
  SupportedArchitectures?: ArchitectureType[];
781
781
  SustainedClockSpeedInGhz?: number;
782
782
  SupportedFeatures?: SupportedAdditionalProcessorFeature[];
783
+ Manufacturer?: string;
783
784
  }
784
785
  export declare const BootModeType: {
785
786
  readonly legacy_bios: "legacy-bios";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ec2",
3
3
  "description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
4
- "version": "3.467.0",
4
+ "version": "3.468.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",
@@ -20,44 +20,44 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.465.0",
24
- "@aws-sdk/core": "3.465.0",
25
- "@aws-sdk/credential-provider-node": "3.465.0",
26
- "@aws-sdk/middleware-host-header": "3.465.0",
27
- "@aws-sdk/middleware-logger": "3.465.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.465.0",
29
- "@aws-sdk/middleware-sdk-ec2": "3.465.0",
30
- "@aws-sdk/middleware-signing": "3.465.0",
31
- "@aws-sdk/middleware-user-agent": "3.465.0",
32
- "@aws-sdk/region-config-resolver": "3.465.0",
33
- "@aws-sdk/types": "3.465.0",
34
- "@aws-sdk/util-endpoints": "3.465.0",
35
- "@aws-sdk/util-user-agent-browser": "3.465.0",
36
- "@aws-sdk/util-user-agent-node": "3.465.0",
37
- "@smithy/config-resolver": "^2.0.18",
38
- "@smithy/fetch-http-handler": "^2.2.6",
39
- "@smithy/hash-node": "^2.0.15",
40
- "@smithy/invalid-dependency": "^2.0.13",
41
- "@smithy/middleware-content-length": "^2.0.15",
42
- "@smithy/middleware-endpoint": "^2.2.0",
43
- "@smithy/middleware-retry": "^2.0.20",
44
- "@smithy/middleware-serde": "^2.0.13",
45
- "@smithy/middleware-stack": "^2.0.7",
46
- "@smithy/node-config-provider": "^2.1.5",
47
- "@smithy/node-http-handler": "^2.1.9",
48
- "@smithy/protocol-http": "^3.0.9",
49
- "@smithy/smithy-client": "^2.1.15",
50
- "@smithy/types": "^2.5.0",
51
- "@smithy/url-parser": "^2.0.13",
23
+ "@aws-sdk/client-sts": "3.468.0",
24
+ "@aws-sdk/core": "3.468.0",
25
+ "@aws-sdk/credential-provider-node": "3.468.0",
26
+ "@aws-sdk/middleware-host-header": "3.468.0",
27
+ "@aws-sdk/middleware-logger": "3.468.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.468.0",
29
+ "@aws-sdk/middleware-sdk-ec2": "3.468.0",
30
+ "@aws-sdk/middleware-signing": "3.468.0",
31
+ "@aws-sdk/middleware-user-agent": "3.468.0",
32
+ "@aws-sdk/region-config-resolver": "3.468.0",
33
+ "@aws-sdk/types": "3.468.0",
34
+ "@aws-sdk/util-endpoints": "3.468.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.468.0",
36
+ "@aws-sdk/util-user-agent-node": "3.468.0",
37
+ "@smithy/config-resolver": "^2.0.20",
38
+ "@smithy/fetch-http-handler": "^2.3.1",
39
+ "@smithy/hash-node": "^2.0.17",
40
+ "@smithy/invalid-dependency": "^2.0.15",
41
+ "@smithy/middleware-content-length": "^2.0.17",
42
+ "@smithy/middleware-endpoint": "^2.2.2",
43
+ "@smithy/middleware-retry": "^2.0.23",
44
+ "@smithy/middleware-serde": "^2.0.15",
45
+ "@smithy/middleware-stack": "^2.0.9",
46
+ "@smithy/node-config-provider": "^2.1.7",
47
+ "@smithy/node-http-handler": "^2.2.1",
48
+ "@smithy/protocol-http": "^3.0.11",
49
+ "@smithy/smithy-client": "^2.1.18",
50
+ "@smithy/types": "^2.7.0",
51
+ "@smithy/url-parser": "^2.0.15",
52
52
  "@smithy/util-base64": "^2.0.1",
53
- "@smithy/util-body-length-browser": "^2.0.0",
53
+ "@smithy/util-body-length-browser": "^2.0.1",
54
54
  "@smithy/util-body-length-node": "^2.1.0",
55
- "@smithy/util-defaults-mode-browser": "^2.0.19",
56
- "@smithy/util-defaults-mode-node": "^2.0.25",
57
- "@smithy/util-endpoints": "^1.0.4",
58
- "@smithy/util-retry": "^2.0.6",
55
+ "@smithy/util-defaults-mode-browser": "^2.0.22",
56
+ "@smithy/util-defaults-mode-node": "^2.0.28",
57
+ "@smithy/util-endpoints": "^1.0.6",
58
+ "@smithy/util-retry": "^2.0.8",
59
59
  "@smithy/util-utf8": "^2.0.2",
60
- "@smithy/util-waiter": "^2.0.13",
60
+ "@smithy/util-waiter": "^2.0.15",
61
61
  "fast-xml-parser": "4.2.5",
62
62
  "tslib": "^2.5.0",
63
63
  "uuid": "^8.3.2"