@aws-sdk/client-guardduty 3.556.0 → 3.558.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
@@ -685,7 +685,8 @@ var AccountDetailFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
685
685
  }), "AccountDetailFilterSensitiveLog");
686
686
  var RemoteIpDetailsFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
687
687
  ...obj,
688
- ...obj.IpAddressV4 && { IpAddressV4: import_smithy_client.SENSITIVE_STRING }
688
+ ...obj.IpAddressV4 && { IpAddressV4: import_smithy_client.SENSITIVE_STRING },
689
+ ...obj.IpAddressV6 && { IpAddressV6: import_smithy_client.SENSITIVE_STRING }
689
690
  }), "RemoteIpDetailsFilterSensitiveLog");
690
691
  var AwsApiCallActionFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
691
692
  ...obj,
@@ -697,7 +698,8 @@ var KubernetesApiCallActionFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
697
698
  }), "KubernetesApiCallActionFilterSensitiveLog");
698
699
  var LocalIpDetailsFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
699
700
  ...obj,
700
- ...obj.IpAddressV4 && { IpAddressV4: import_smithy_client.SENSITIVE_STRING }
701
+ ...obj.IpAddressV4 && { IpAddressV4: import_smithy_client.SENSITIVE_STRING },
702
+ ...obj.IpAddressV6 && { IpAddressV6: import_smithy_client.SENSITIVE_STRING }
701
703
  }), "LocalIpDetailsFilterSensitiveLog");
702
704
  var NetworkConnectionActionFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
703
705
  ...obj,
@@ -3806,7 +3808,8 @@ var de_LineageObject = /* @__PURE__ */ __name((output, context) => {
3806
3808
  }, "de_LineageObject");
3807
3809
  var de_LocalIpDetails = /* @__PURE__ */ __name((output, context) => {
3808
3810
  return (0, import_smithy_client.take)(output, {
3809
- IpAddressV4: [, import_smithy_client.expectString, `ipAddressV4`]
3811
+ IpAddressV4: [, import_smithy_client.expectString, `ipAddressV4`],
3812
+ IpAddressV6: [, import_smithy_client.expectString, `ipAddressV6`]
3810
3813
  });
3811
3814
  }, "de_LocalIpDetails");
3812
3815
  var de_LocalPortDetails = /* @__PURE__ */ __name((output, context) => {
@@ -4196,6 +4199,7 @@ var de_RemoteIpDetails = /* @__PURE__ */ __name((output, context) => {
4196
4199
  Country: [, (_) => de_Country(_, context), `country`],
4197
4200
  GeoLocation: [, (_) => de_GeoLocation(_, context), `geoLocation`],
4198
4201
  IpAddressV4: [, import_smithy_client.expectString, `ipAddressV4`],
4202
+ IpAddressV6: [, import_smithy_client.expectString, `ipAddressV6`],
4199
4203
  Organization: [, (_) => de_Organization(_, context), `organization`]
4200
4204
  });
4201
4205
  }, "de_RemoteIpDetails");
@@ -317,6 +317,7 @@ export const AccountDetailFilterSensitiveLog = (obj) => ({
317
317
  export const RemoteIpDetailsFilterSensitiveLog = (obj) => ({
318
318
  ...obj,
319
319
  ...(obj.IpAddressV4 && { IpAddressV4: SENSITIVE_STRING }),
320
+ ...(obj.IpAddressV6 && { IpAddressV6: SENSITIVE_STRING }),
320
321
  });
321
322
  export const AwsApiCallActionFilterSensitiveLog = (obj) => ({
322
323
  ...obj,
@@ -329,6 +330,7 @@ export const KubernetesApiCallActionFilterSensitiveLog = (obj) => ({
329
330
  export const LocalIpDetailsFilterSensitiveLog = (obj) => ({
330
331
  ...obj,
331
332
  ...(obj.IpAddressV4 && { IpAddressV4: SENSITIVE_STRING }),
333
+ ...(obj.IpAddressV6 && { IpAddressV6: SENSITIVE_STRING }),
332
334
  });
333
335
  export const NetworkConnectionActionFilterSensitiveLog = (obj) => ({
334
336
  ...obj,
@@ -2987,6 +2987,7 @@ const de_LineageObject = (output, context) => {
2987
2987
  const de_LocalIpDetails = (output, context) => {
2988
2988
  return take(output, {
2989
2989
  IpAddressV4: [, __expectString, `ipAddressV4`],
2990
+ IpAddressV6: [, __expectString, `ipAddressV6`],
2990
2991
  });
2991
2992
  };
2992
2993
  const de_LocalPortDetails = (output, context) => {
@@ -3404,6 +3405,7 @@ const de_RemoteIpDetails = (output, context) => {
3404
3405
  Country: [, (_) => de_Country(_, context), `country`],
3405
3406
  GeoLocation: [, (_) => de_GeoLocation(_, context), `geoLocation`],
3406
3407
  IpAddressV4: [, __expectString, `ipAddressV4`],
3408
+ IpAddressV6: [, __expectString, `ipAddressV6`],
3407
3409
  Organization: [, (_) => de_Organization(_, context), `organization`],
3408
3410
  });
3409
3411
  };
@@ -395,6 +395,7 @@ declare const GetFindingsCommand_base: {
395
395
  * // Lon: Number("double"),
396
396
  * // },
397
397
  * // IpAddressV4: "STRING_VALUE",
398
+ * // IpAddressV6: "STRING_VALUE",
398
399
  * // Organization: { // Organization
399
400
  * // Asn: "STRING_VALUE",
400
401
  * // AsnOrg: "STRING_VALUE",
@@ -427,6 +428,7 @@ declare const GetFindingsCommand_base: {
427
428
  * // Protocol: "STRING_VALUE",
428
429
  * // LocalIpDetails: { // LocalIpDetails
429
430
  * // IpAddressV4: "STRING_VALUE",
431
+ * // IpAddressV6: "STRING_VALUE",
430
432
  * // },
431
433
  * // RemoteIpDetails: {
432
434
  * // City: {
@@ -441,6 +443,7 @@ declare const GetFindingsCommand_base: {
441
443
  * // Lon: Number("double"),
442
444
  * // },
443
445
  * // IpAddressV4: "STRING_VALUE",
446
+ * // IpAddressV6: "STRING_VALUE",
444
447
  * // Organization: {
445
448
  * // Asn: "STRING_VALUE",
446
449
  * // AsnOrg: "STRING_VALUE",
@@ -463,6 +466,7 @@ declare const GetFindingsCommand_base: {
463
466
  * // },
464
467
  * // LocalIpDetails: {
465
468
  * // IpAddressV4: "STRING_VALUE",
469
+ * // IpAddressV6: "STRING_VALUE",
466
470
  * // },
467
471
  * // RemoteIpDetails: {
468
472
  * // City: {
@@ -477,6 +481,7 @@ declare const GetFindingsCommand_base: {
477
481
  * // Lon: Number("double"),
478
482
  * // },
479
483
  * // IpAddressV4: "STRING_VALUE",
484
+ * // IpAddressV6: "STRING_VALUE",
480
485
  * // Organization: {
481
486
  * // Asn: "STRING_VALUE",
482
487
  * // AsnOrg: "STRING_VALUE",
@@ -507,6 +512,7 @@ declare const GetFindingsCommand_base: {
507
512
  * // Lon: Number("double"),
508
513
  * // },
509
514
  * // IpAddressV4: "STRING_VALUE",
515
+ * // IpAddressV6: "STRING_VALUE",
510
516
  * // Organization: {
511
517
  * // Asn: "STRING_VALUE",
512
518
  * // AsnOrg: "STRING_VALUE",
@@ -535,6 +541,7 @@ declare const GetFindingsCommand_base: {
535
541
  * // Lon: Number("double"),
536
542
  * // },
537
543
  * // IpAddressV4: "STRING_VALUE",
544
+ * // IpAddressV6: "STRING_VALUE",
538
545
  * // Organization: {
539
546
  * // Asn: "STRING_VALUE",
540
547
  * // AsnOrg: "STRING_VALUE",
@@ -477,6 +477,11 @@ export interface RemoteIpDetails {
477
477
  * @public
478
478
  */
479
479
  IpAddressV4?: string;
480
+ /**
481
+ * <p>The IPv6 remote address of the connection.</p>
482
+ * @public
483
+ */
484
+ IpAddressV6?: string;
480
485
  /**
481
486
  * <p>The ISP organization information of the remote IP address.</p>
482
487
  * @public
@@ -718,6 +723,11 @@ export interface LocalIpDetails {
718
723
  * @public
719
724
  */
720
725
  IpAddressV4?: string;
726
+ /**
727
+ * <p>The IPv6 local address of the connection.</p>
728
+ * @public
729
+ */
730
+ IpAddressV6?: string;
721
731
  }
722
732
  /**
723
733
  * <p>Contains information about the port for the local connection.</p>
@@ -2288,6 +2298,9 @@ export interface CreateFilterRequest {
2288
2298
  * <p>service.action.awsApiCallAction.remoteIpDetails.ipAddressV4</p>
2289
2299
  * </li>
2290
2300
  * <li>
2301
+ * <p>service.action.awsApiCallAction.remoteIpDetails.ipAddressV6</p>
2302
+ * </li>
2303
+ * <li>
2291
2304
  * <p>service.action.awsApiCallAction.remoteIpDetails.organization.asn</p>
2292
2305
  * </li>
2293
2306
  * <li>
@@ -2324,6 +2337,9 @@ export interface CreateFilterRequest {
2324
2337
  * <p>service.action.networkConnectionAction.remoteIpDetails.ipAddressV4</p>
2325
2338
  * </li>
2326
2339
  * <li>
2340
+ * <p>service.action.networkConnectionAction.remoteIpDetails.ipAddressV6</p>
2341
+ * </li>
2342
+ * <li>
2327
2343
  * <p>service.action.networkConnectionAction.remoteIpDetails.organization.asn</p>
2328
2344
  * </li>
2329
2345
  * <li>
@@ -2339,6 +2355,9 @@ export interface CreateFilterRequest {
2339
2355
  * <p>service.action.kubernetesApiCallAction.remoteIpDetails.ipAddressV4</p>
2340
2356
  * </li>
2341
2357
  * <li>
2358
+ * <p>service.action.kubernetesApiCallAction.remoteIpDetails.ipAddressV6</p>
2359
+ * </li>
2360
+ * <li>
2342
2361
  * <p>service.action.kubernetesApiCallAction.namespace</p>
2343
2362
  * </li>
2344
2363
  * <li>
@@ -2354,6 +2373,9 @@ export interface CreateFilterRequest {
2354
2373
  * <p>service.action.networkConnectionAction.localIpDetails.ipAddressV4</p>
2355
2374
  * </li>
2356
2375
  * <li>
2376
+ * <p>service.action.networkConnectionAction.localIpDetails.ipAddressV6</p>
2377
+ * </li>
2378
+ * <li>
2357
2379
  * <p>service.action.networkConnectionAction.protocol</p>
2358
2380
  * </li>
2359
2381
  * <li>
@@ -132,6 +132,7 @@ export interface RemoteIpDetails {
132
132
  Country?: Country;
133
133
  GeoLocation?: GeoLocation;
134
134
  IpAddressV4?: string;
135
+ IpAddressV6?: string;
135
136
  Organization?: Organization;
136
137
  }
137
138
  export interface AwsApiCallAction {
@@ -184,6 +185,7 @@ export interface KubernetesRoleDetails {
184
185
  }
185
186
  export interface LocalIpDetails {
186
187
  IpAddressV4?: string;
188
+ IpAddressV6?: string;
187
189
  }
188
190
  export interface LocalPortDetails {
189
191
  Port?: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-guardduty",
3
3
  "description": "AWS SDK for JavaScript Guardduty Client for Node.js, Browser and React Native",
4
- "version": "3.556.0",
4
+ "version": "3.558.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-guardduty",