@aws-sdk/client-datazone 3.1000.0 → 3.1002.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 (37) hide show
  1. package/README.md +7 -0
  2. package/dist-cjs/index.js +39 -8
  3. package/dist-cjs/schemas/schemas_0.js +113 -40
  4. package/dist-es/DataZone.js +4 -0
  5. package/dist-es/commands/QueryGraphCommand.js +16 -0
  6. package/dist-es/commands/index.js +1 -0
  7. package/dist-es/models/enums.js +18 -8
  8. package/dist-es/pagination/QueryGraphPaginator.js +4 -0
  9. package/dist-es/pagination/index.js +1 -0
  10. package/dist-es/schemas/schemas_0.js +96 -23
  11. package/dist-types/DataZone.d.ts +14 -0
  12. package/dist-types/DataZoneClient.d.ts +3 -2
  13. package/dist-types/commands/CreateSubscriptionTargetCommand.d.ts +2 -1
  14. package/dist-types/commands/QueryGraphCommand.d.ts +169 -0
  15. package/dist-types/commands/SearchListingsCommand.d.ts +1 -2
  16. package/dist-types/commands/index.d.ts +1 -0
  17. package/dist-types/models/enums.d.ts +50 -16
  18. package/dist-types/models/models_0.d.ts +11 -85
  19. package/dist-types/models/models_1.d.ts +263 -274
  20. package/dist-types/models/models_2.d.ts +345 -3
  21. package/dist-types/pagination/QueryGraphPaginator.d.ts +7 -0
  22. package/dist-types/pagination/index.d.ts +1 -0
  23. package/dist-types/schemas/schemas_0.d.ts +9 -0
  24. package/dist-types/ts3.4/DataZone.d.ts +24 -0
  25. package/dist-types/ts3.4/DataZoneClient.d.ts +6 -0
  26. package/dist-types/ts3.4/commands/CreateSubscriptionTargetCommand.d.ts +2 -4
  27. package/dist-types/ts3.4/commands/QueryGraphCommand.d.ts +48 -0
  28. package/dist-types/ts3.4/commands/SearchListingsCommand.d.ts +1 -2
  29. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/enums.d.ts +25 -10
  31. package/dist-types/ts3.4/models/models_0.d.ts +3 -18
  32. package/dist-types/ts3.4/models/models_1.d.ts +69 -104
  33. package/dist-types/ts3.4/models/models_2.d.ts +143 -1
  34. package/dist-types/ts3.4/pagination/QueryGraphPaginator.d.ts +11 -0
  35. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  36. package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  37. package/package.json +14 -14
package/README.md CHANGED
@@ -1181,6 +1181,13 @@ PutEnvironmentBlueprintConfiguration
1181
1181
  </details>
1182
1182
  <details>
1183
1183
  <summary>
1184
+ QueryGraph
1185
+ </summary>
1186
+
1187
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/datazone/command/QueryGraphCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-datazone/Interface/QueryGraphCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-datazone/Interface/QueryGraphCommandOutput/)
1188
+ </details>
1189
+ <details>
1190
+ <summary>
1184
1191
  RejectPredictions
1185
1192
  </summary>
1186
1193
 
package/dist-cjs/index.js CHANGED
@@ -1791,6 +1791,18 @@ class PutEnvironmentBlueprintConfigurationCommand extends smithyClient.Command
1791
1791
  .build() {
1792
1792
  }
1793
1793
 
1794
+ class QueryGraphCommand extends smithyClient.Command
1795
+ .classBuilder()
1796
+ .ep(commonParams)
1797
+ .m(function (Command, cs, config, o) {
1798
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1799
+ })
1800
+ .s("DataZone", "QueryGraph", {})
1801
+ .n("DataZoneClient", "QueryGraphCommand")
1802
+ .sc(schemas_0.QueryGraph$)
1803
+ .build() {
1804
+ }
1805
+
1794
1806
  class RejectPredictionsCommand extends smithyClient.Command
1795
1807
  .classBuilder()
1796
1808
  .ep(commonParams)
@@ -2275,6 +2287,8 @@ const paginateListSubscriptionTargets = core.createPaginator(DataZoneClient, Lis
2275
2287
 
2276
2288
  const paginateListTimeSeriesDataPoints = core.createPaginator(DataZoneClient, ListTimeSeriesDataPointsCommand, "nextToken", "nextToken", "maxResults");
2277
2289
 
2290
+ const paginateQueryGraph = core.createPaginator(DataZoneClient, QueryGraphCommand, "nextToken", "nextToken", "maxResults");
2291
+
2278
2292
  const paginateSearchGroupProfiles = core.createPaginator(DataZoneClient, SearchGroupProfilesCommand, "nextToken", "nextToken", "maxResults");
2279
2293
 
2280
2294
  const paginateSearchListings = core.createPaginator(DataZoneClient, SearchListingsCommand, "nextToken", "nextToken", "maxResults");
@@ -2426,6 +2440,7 @@ const commands = {
2426
2440
  PostTimeSeriesDataPointsCommand,
2427
2441
  PutDataExportConfigurationCommand,
2428
2442
  PutEnvironmentBlueprintConfigurationCommand,
2443
+ QueryGraphCommand,
2429
2444
  RejectPredictionsCommand,
2430
2445
  RejectSubscriptionRequestCommand,
2431
2446
  RemoveEntityOwnerCommand,
@@ -2495,6 +2510,7 @@ const paginators = {
2495
2510
  paginateListSubscriptions,
2496
2511
  paginateListSubscriptionTargets,
2497
2512
  paginateListTimeSeriesDataPoints,
2513
+ paginateQueryGraph,
2498
2514
  paginateSearch,
2499
2515
  paginateSearchGroupProfiles,
2500
2516
  paginateSearchListings,
@@ -3055,14 +3071,8 @@ const MetadataGenerationRunStatus = {
3055
3071
  const MetadataGenerationTargetType = {
3056
3072
  ASSET: "ASSET",
3057
3073
  };
3058
- const RejectRuleBehavior = {
3059
- ALL: "ALL",
3060
- NONE: "NONE",
3061
- };
3062
- const SearchOutputAdditionalAttribute = {
3063
- FORMS: "FORMS",
3064
- TEXT_MATCH_RATIONALE: "TEXT_MATCH_RATIONALE",
3065
- TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS",
3074
+ const GraphEntityType = {
3075
+ LINEAGE_NODE: "LINEAGE_NODE",
3066
3076
  };
3067
3077
  const FilterOperator = {
3068
3078
  EQ: "EQ",
@@ -3072,6 +3082,22 @@ const FilterOperator = {
3072
3082
  LT: "LT",
3073
3083
  TEXT_SEARCH: "TEXT_SEARCH",
3074
3084
  };
3085
+ const RelationDirection = {
3086
+ IN: "IN",
3087
+ OUT: "OUT",
3088
+ };
3089
+ const RelationType = {
3090
+ LINEAGE: "LINEAGE",
3091
+ };
3092
+ const RejectRuleBehavior = {
3093
+ ALL: "ALL",
3094
+ NONE: "NONE",
3095
+ };
3096
+ const SearchOutputAdditionalAttribute = {
3097
+ FORMS: "FORMS",
3098
+ TEXT_MATCH_RATIONALE: "TEXT_MATCH_RATIONALE",
3099
+ TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS",
3100
+ };
3075
3101
  const InventorySearchScope = {
3076
3102
  ASSET: "ASSET",
3077
3103
  DATA_PRODUCT: "DATA_PRODUCT",
@@ -3241,6 +3267,7 @@ exports.GlossaryUsageRestriction = GlossaryUsageRestriction;
3241
3267
  exports.GlueConnectionType = GlueConnectionType;
3242
3268
  exports.GovernanceType = GovernanceType;
3243
3269
  exports.GovernedEntityType = GovernedEntityType;
3270
+ exports.GraphEntityType = GraphEntityType;
3244
3271
  exports.GroupProfileStatus = GroupProfileStatus;
3245
3272
  exports.GroupSearchType = GroupSearchType;
3246
3273
  exports.HyperPodOrchestrator = HyperPodOrchestrator;
@@ -3301,9 +3328,12 @@ exports.ProjectStatus = ProjectStatus;
3301
3328
  exports.Protocol = Protocol;
3302
3329
  exports.PutDataExportConfigurationCommand = PutDataExportConfigurationCommand;
3303
3330
  exports.PutEnvironmentBlueprintConfigurationCommand = PutEnvironmentBlueprintConfigurationCommand;
3331
+ exports.QueryGraphCommand = QueryGraphCommand;
3304
3332
  exports.RejectPredictionsCommand = RejectPredictionsCommand;
3305
3333
  exports.RejectRuleBehavior = RejectRuleBehavior;
3306
3334
  exports.RejectSubscriptionRequestCommand = RejectSubscriptionRequestCommand;
3335
+ exports.RelationDirection = RelationDirection;
3336
+ exports.RelationType = RelationType;
3307
3337
  exports.RemoveEntityOwnerCommand = RemoveEntityOwnerCommand;
3308
3338
  exports.RemovePolicyGrantCommand = RemovePolicyGrantCommand;
3309
3339
  exports.ResolutionStrategy = ResolutionStrategy;
@@ -3400,6 +3430,7 @@ exports.paginateListSubscriptionRequests = paginateListSubscriptionRequests;
3400
3430
  exports.paginateListSubscriptionTargets = paginateListSubscriptionTargets;
3401
3431
  exports.paginateListSubscriptions = paginateListSubscriptions;
3402
3432
  exports.paginateListTimeSeriesDataPoints = paginateListTimeSeriesDataPoints;
3433
+ exports.paginateQueryGraph = paginateQueryGraph;
3403
3434
  exports.paginateSearch = paginateSearch;
3404
3435
  exports.paginateSearchGroupProfiles = paginateSearchGroupProfiles;
3405
3436
  exports.paginateSearchListings = paginateSearchListings;