@aws-sdk/client-datazone 3.1052.0 → 3.1054.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.
Files changed (28) hide show
  1. package/dist-cjs/index.js +1 -0
  2. package/dist-cjs/schemas/schemas_0.js +69 -24
  3. package/dist-es/models/enums.js +1 -0
  4. package/dist-es/schemas/schemas_0.js +60 -16
  5. package/dist-types/commands/CreateConnectionCommand.d.ts +20 -2
  6. package/dist-types/commands/GetConnectionCommand.d.ts +13 -2
  7. package/dist-types/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +12 -0
  8. package/dist-types/commands/ListConnectionsCommand.d.ts +14 -3
  9. package/dist-types/commands/ListEnvironmentBlueprintConfigurationsCommand.d.ts +12 -0
  10. package/dist-types/commands/PostLineageEventCommand.d.ts +1 -1
  11. package/dist-types/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +23 -0
  12. package/dist-types/commands/StartNotebookRunCommand.d.ts +2 -1
  13. package/dist-types/commands/StopNotebookRunCommand.d.ts +1 -1
  14. package/dist-types/commands/UpdateConnectionCommand.d.ts +20 -2
  15. package/dist-types/models/enums.d.ts +1 -0
  16. package/dist-types/models/models_0.d.ts +177 -82
  17. package/dist-types/models/models_1.d.ts +177 -197
  18. package/dist-types/models/models_2.d.ts +198 -3
  19. package/dist-types/schemas/schemas_0.d.ts +5 -0
  20. package/dist-types/ts3.4/commands/PostLineageEventCommand.d.ts +1 -1
  21. package/dist-types/ts3.4/commands/StartNotebookRunCommand.d.ts +2 -4
  22. package/dist-types/ts3.4/commands/StopNotebookRunCommand.d.ts +1 -1
  23. package/dist-types/ts3.4/models/enums.d.ts +1 -0
  24. package/dist-types/ts3.4/models/models_0.d.ts +108 -19
  25. package/dist-types/ts3.4/models/models_1.d.ts +42 -46
  26. package/dist-types/ts3.4/models/models_2.d.ts +55 -2
  27. package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
  28. package/package.json +3 -3
@@ -14,6 +14,7 @@ import {
14
14
  GroupSearchType,
15
15
  InventorySearchScope,
16
16
  ManagedPolicyType,
17
+ NotebookRunStatus,
17
18
  NotebookStatus,
18
19
  ProjectStatus,
19
20
  RejectRuleBehavior,
@@ -48,7 +49,9 @@ import {
48
49
  AssetListingItem,
49
50
  AssetTypeItem,
50
51
  AwsLocation,
52
+ CellInformation,
51
53
  ColumnFilterConfiguration,
54
+ ComputeConfig,
52
55
  ConfigurableEnvironmentAction,
53
56
  Configuration,
54
57
  ConnectionPropertiesOutput,
@@ -56,11 +59,11 @@ import {
56
59
  CustomParameter,
57
60
  Deployment,
58
61
  DeploymentProperties,
62
+ EnvironmentConfig,
59
63
  EnvironmentConfiguration,
60
64
  EnvironmentConfigurationUserParameter,
61
65
  EnvironmentDeploymentDetails,
62
66
  EnvironmentParameter,
63
- FailureCause,
64
67
  FormEntryOutput,
65
68
  FormOutput,
66
69
  MatchRationaleItem,
@@ -77,7 +80,6 @@ import {
77
80
  RuleDetail,
78
81
  RuleScope,
79
82
  RuleTarget,
80
- SubscribedAsset,
81
83
  SubscribedListing,
82
84
  SubscribedPrincipal,
83
85
  TermRelations,
@@ -87,11 +89,62 @@ import {
87
89
  DataProductListingItem,
88
90
  DataProductResultItem,
89
91
  EncryptionConfiguration,
92
+ FailureCause,
90
93
  GrantedEntity,
91
94
  Import,
95
+ NetworkConfig,
96
+ NotebookRunError,
97
+ StorageConfig,
98
+ SubscribedAsset,
92
99
  SubscriptionTargetForm,
100
+ TimeoutConfig,
93
101
  TimeSeriesDataPointFormOutput,
102
+ TriggerSource,
94
103
  } from "./models_1";
104
+ export interface StartNotebookRunOutput {
105
+ id: string | undefined;
106
+ domainId: string | undefined;
107
+ owningProjectId: string | undefined;
108
+ notebookId: string | undefined;
109
+ scheduleId?: string | undefined;
110
+ status: NotebookRunStatus | undefined;
111
+ cellOrder?: CellInformation[] | undefined;
112
+ metadata?: Record<string, string> | undefined;
113
+ parameters?: Record<string, string> | undefined;
114
+ computeConfiguration?: ComputeConfig | undefined;
115
+ networkConfiguration?: NetworkConfig | undefined;
116
+ timeoutConfiguration?: TimeoutConfig | undefined;
117
+ environmentConfiguration?: EnvironmentConfig | undefined;
118
+ storageConfiguration?: StorageConfig | undefined;
119
+ triggerSource?: TriggerSource | undefined;
120
+ error?: NotebookRunError | undefined;
121
+ createdAt?: Date | undefined;
122
+ createdBy?: string | undefined;
123
+ updatedAt?: Date | undefined;
124
+ updatedBy?: string | undefined;
125
+ startedAt?: Date | undefined;
126
+ completedAt?: Date | undefined;
127
+ }
128
+ export interface StopNotebookRunInput {
129
+ domainIdentifier: string | undefined;
130
+ identifier: string | undefined;
131
+ clientToken?: string | undefined;
132
+ }
133
+ export interface StopNotebookRunOutput {
134
+ id: string | undefined;
135
+ domainId: string | undefined;
136
+ owningProjectId: string | undefined;
137
+ status: NotebookRunStatus | undefined;
138
+ }
139
+ export interface PostLineageEventInput {
140
+ domainIdentifier: string | undefined;
141
+ event: Uint8Array | undefined;
142
+ clientToken?: string | undefined;
143
+ }
144
+ export interface PostLineageEventOutput {
145
+ id?: string | undefined;
146
+ domainId?: string | undefined;
147
+ }
95
148
  export interface TimeSeriesDataPointFormInput {
96
149
  formName: string | undefined;
97
150
  typeIdentifier: string | undefined;
@@ -506,6 +506,7 @@ export declare var PutDataExportConfigurationInput$: StaticStructureSchema;
506
506
  export declare var PutDataExportConfigurationOutput$: StaticStructureSchema;
507
507
  export declare var PutEnvironmentBlueprintConfigurationInput$: StaticStructureSchema;
508
508
  export declare var PutEnvironmentBlueprintConfigurationOutput$: StaticStructureSchema;
509
+ export declare var PutResourceConfiguration$: StaticStructureSchema;
509
510
  export declare var QueryGraphInput$: StaticStructureSchema;
510
511
  export declare var QueryGraphOutput$: StaticStructureSchema;
511
512
  export declare var RecommendationConfiguration$: StaticStructureSchema;
@@ -533,6 +534,7 @@ export declare var RemoveEntityOwnerOutput$: StaticStructureSchema;
533
534
  export declare var RemovePolicyGrantInput$: StaticStructureSchema;
534
535
  export declare var RemovePolicyGrantOutput$: StaticStructureSchema;
535
536
  export declare var Resource$: StaticStructureSchema;
537
+ export declare var ResourceConfiguration$: StaticStructureSchema;
536
538
  export declare var ResourceTag$: StaticStructureSchema;
537
539
  export declare var ResourceTagParameter$: StaticStructureSchema;
538
540
  export declare var RevokeSubscriptionInput$: StaticStructureSchema;
@@ -661,6 +663,9 @@ export declare var UseAssetTypePolicyGrantDetail$: StaticStructureSchema;
661
663
  export declare var UserDetails$: StaticStructureSchema;
662
664
  export declare var UsernamePassword$: StaticStructureSchema;
663
665
  export declare var UserProfileSummary$: StaticStructureSchema;
666
+ export declare var VpcPropertiesInput$: StaticStructureSchema;
667
+ export declare var VpcPropertiesOutput$: StaticStructureSchema;
668
+ export declare var VpcPropertiesPatch$: StaticStructureSchema;
664
669
  export declare var WorkflowsMwaaPropertiesInput$: StaticStructureSchema;
665
670
  export declare var WorkflowsMwaaPropertiesOutput$: StaticStructureSchema;
666
671
  export declare var WorkflowsServerlessPropertiesInput$: StaticStructureSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-datazone",
3
3
  "description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
4
- "version": "3.1052.0",
4
+ "version": "3.1054.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-datazone",
@@ -21,8 +21,8 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.13",
25
- "@aws-sdk/credential-provider-node": "^3.972.44",
24
+ "@aws-sdk/core": "^3.974.14",
25
+ "@aws-sdk/credential-provider-node": "^3.972.45",
26
26
  "@aws-sdk/types": "^3.973.9",
27
27
  "@smithy/core": "^3.24.3",
28
28
  "@smithy/fetch-http-handler": "^5.4.3",