@aws-sdk/client-detective 3.431.0 → 3.433.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.
@@ -237,7 +237,7 @@ export interface MembershipDatasources {
237
237
  * @public
238
238
  * <p>Details on when a data source package was added to a behavior graph.</p>
239
239
  */
240
- DatasourcePackageIngestHistory?: Record<DatasourcePackage, Record<DatasourcePackageIngestState, TimestampForCollection>>;
240
+ DatasourcePackageIngestHistory?: Partial<Record<DatasourcePackage, Partial<Record<DatasourcePackageIngestState, TimestampForCollection>>>>;
241
241
  }
242
242
  /**
243
243
  * @public
@@ -621,12 +621,12 @@ export interface MemberDetail {
621
621
  * @public
622
622
  * <p>Details on the volume of usage for each data source package in a behavior graph.</p>
623
623
  */
624
- VolumeUsageByDatasourcePackage?: Record<DatasourcePackage, DatasourcePackageUsageInfo>;
624
+ VolumeUsageByDatasourcePackage?: Partial<Record<DatasourcePackage, DatasourcePackageUsageInfo>>;
625
625
  /**
626
626
  * @public
627
627
  * <p>The state of a data source package for the behavior graph.</p>
628
628
  */
629
- DatasourcePackageIngestStates?: Record<DatasourcePackage, DatasourcePackageIngestState>;
629
+ DatasourcePackageIngestStates?: Partial<Record<DatasourcePackage, DatasourcePackageIngestState>>;
630
630
  }
631
631
  /**
632
632
  * @public
@@ -821,7 +821,7 @@ export interface DatasourcePackageIngestDetail {
821
821
  * @public
822
822
  * <p>The date a data source package was enabled for this account</p>
823
823
  */
824
- LastIngestStateChange?: Record<DatasourcePackageIngestState, TimestampForCollection>;
824
+ LastIngestStateChange?: Partial<Record<DatasourcePackageIngestState, TimestampForCollection>>;
825
825
  }
826
826
  /**
827
827
  * @public
@@ -831,7 +831,7 @@ export interface ListDatasourcePackagesResponse {
831
831
  * @public
832
832
  * <p>Details on the data source packages active in the behavior graph.</p>
833
833
  */
834
- DatasourcePackages?: Record<DatasourcePackage, DatasourcePackageIngestDetail>;
834
+ DatasourcePackages?: Partial<Record<DatasourcePackage, DatasourcePackageIngestDetail>>;
835
835
  /**
836
836
  * @public
837
837
  * <p>For requests to get the next page of results, the pagination token that was returned
@@ -86,9 +86,11 @@ export interface TimestampForCollection {
86
86
  export interface MembershipDatasources {
87
87
  AccountId?: string;
88
88
  GraphArn?: string;
89
- DatasourcePackageIngestHistory?: Record<
90
- DatasourcePackage,
91
- Record<DatasourcePackageIngestState, TimestampForCollection>
89
+ DatasourcePackageIngestHistory?: Partial<
90
+ Record<
91
+ DatasourcePackage,
92
+ Partial<Record<DatasourcePackageIngestState, TimestampForCollection>>
93
+ >
92
94
  >;
93
95
  }
94
96
  export interface UnprocessedAccount {
@@ -170,13 +172,11 @@ export interface MemberDetail {
170
172
  PercentOfGraphUtilization?: number;
171
173
  PercentOfGraphUtilizationUpdatedTime?: Date;
172
174
  InvitationType?: InvitationType;
173
- VolumeUsageByDatasourcePackage?: Record<
174
- DatasourcePackage,
175
- DatasourcePackageUsageInfo
175
+ VolumeUsageByDatasourcePackage?: Partial<
176
+ Record<DatasourcePackage, DatasourcePackageUsageInfo>
176
177
  >;
177
- DatasourcePackageIngestStates?: Record<
178
- DatasourcePackage,
179
- DatasourcePackageIngestState
178
+ DatasourcePackageIngestStates?: Partial<
179
+ Record<DatasourcePackage, DatasourcePackageIngestState>
180
180
  >;
181
181
  }
182
182
  export interface CreateMembersResponse {
@@ -229,13 +229,14 @@ export interface ListDatasourcePackagesRequest {
229
229
  }
230
230
  export interface DatasourcePackageIngestDetail {
231
231
  DatasourcePackageIngestState?: DatasourcePackageIngestState;
232
- LastIngestStateChange?: Record<
233
- DatasourcePackageIngestState,
234
- TimestampForCollection
232
+ LastIngestStateChange?: Partial<
233
+ Record<DatasourcePackageIngestState, TimestampForCollection>
235
234
  >;
236
235
  }
237
236
  export interface ListDatasourcePackagesResponse {
238
- DatasourcePackages?: Record<DatasourcePackage, DatasourcePackageIngestDetail>;
237
+ DatasourcePackages?: Partial<
238
+ Record<DatasourcePackage, DatasourcePackageIngestDetail>
239
+ >;
239
240
  NextToken?: string;
240
241
  }
241
242
  export interface ListGraphsRequest {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-detective",
3
3
  "description": "AWS SDK for JavaScript Detective Client for Node.js, Browser and React Native",
4
- "version": "3.431.0",
4
+ "version": "3.433.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",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.431.0",
25
- "@aws-sdk/credential-provider-node": "3.431.0",
26
- "@aws-sdk/middleware-host-header": "3.431.0",
27
- "@aws-sdk/middleware-logger": "3.428.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
- "@aws-sdk/middleware-signing": "3.428.0",
30
- "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.430.0",
32
- "@aws-sdk/types": "3.428.0",
33
- "@aws-sdk/util-endpoints": "3.428.0",
34
- "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.430.0",
36
- "@smithy/config-resolver": "^2.0.15",
37
- "@smithy/fetch-http-handler": "^2.2.3",
38
- "@smithy/hash-node": "^2.0.11",
39
- "@smithy/invalid-dependency": "^2.0.11",
40
- "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.2",
42
- "@smithy/middleware-retry": "^2.0.17",
43
- "@smithy/middleware-serde": "^2.0.11",
44
- "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.2",
46
- "@smithy/node-http-handler": "^2.1.7",
47
- "@smithy/protocol-http": "^3.0.7",
48
- "@smithy/smithy-client": "^2.1.11",
49
- "@smithy/types": "^2.3.5",
50
- "@smithy/url-parser": "^2.0.11",
24
+ "@aws-sdk/client-sts": "3.433.0",
25
+ "@aws-sdk/credential-provider-node": "3.433.0",
26
+ "@aws-sdk/middleware-host-header": "3.433.0",
27
+ "@aws-sdk/middleware-logger": "3.433.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.433.0",
29
+ "@aws-sdk/middleware-signing": "3.433.0",
30
+ "@aws-sdk/middleware-user-agent": "3.433.0",
31
+ "@aws-sdk/region-config-resolver": "3.433.0",
32
+ "@aws-sdk/types": "3.433.0",
33
+ "@aws-sdk/util-endpoints": "3.433.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.433.0",
35
+ "@aws-sdk/util-user-agent-node": "3.433.0",
36
+ "@smithy/config-resolver": "^2.0.16",
37
+ "@smithy/fetch-http-handler": "^2.2.4",
38
+ "@smithy/hash-node": "^2.0.12",
39
+ "@smithy/invalid-dependency": "^2.0.12",
40
+ "@smithy/middleware-content-length": "^2.0.14",
41
+ "@smithy/middleware-endpoint": "^2.1.3",
42
+ "@smithy/middleware-retry": "^2.0.18",
43
+ "@smithy/middleware-serde": "^2.0.12",
44
+ "@smithy/middleware-stack": "^2.0.6",
45
+ "@smithy/node-config-provider": "^2.1.3",
46
+ "@smithy/node-http-handler": "^2.1.8",
47
+ "@smithy/protocol-http": "^3.0.8",
48
+ "@smithy/smithy-client": "^2.1.12",
49
+ "@smithy/types": "^2.4.0",
50
+ "@smithy/url-parser": "^2.0.12",
51
51
  "@smithy/util-base64": "^2.0.0",
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.20",
56
- "@smithy/util-retry": "^2.0.4",
54
+ "@smithy/util-defaults-mode-browser": "^2.0.16",
55
+ "@smithy/util-defaults-mode-node": "^2.0.21",
56
+ "@smithy/util-retry": "^2.0.5",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0"
59
59
  },