@aws-sdk/client-neptunedata 3.890.0 → 3.893.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 (44) hide show
  1. package/dist-types/commands/CancelGremlinQueryCommand.d.ts +2 -0
  2. package/dist-types/commands/CancelLoaderJobCommand.d.ts +2 -0
  3. package/dist-types/commands/CancelMLDataProcessingJobCommand.d.ts +2 -0
  4. package/dist-types/commands/CancelMLModelTrainingJobCommand.d.ts +2 -0
  5. package/dist-types/commands/CancelMLModelTransformJobCommand.d.ts +2 -0
  6. package/dist-types/commands/CancelOpenCypherQueryCommand.d.ts +2 -0
  7. package/dist-types/commands/CreateMLEndpointCommand.d.ts +2 -0
  8. package/dist-types/commands/DeleteMLEndpointCommand.d.ts +2 -0
  9. package/dist-types/commands/DeletePropertygraphStatisticsCommand.d.ts +2 -0
  10. package/dist-types/commands/DeleteSparqlStatisticsCommand.d.ts +2 -0
  11. package/dist-types/commands/ExecuteFastResetCommand.d.ts +2 -0
  12. package/dist-types/commands/ExecuteGremlinExplainQueryCommand.d.ts +2 -0
  13. package/dist-types/commands/ExecuteGremlinProfileQueryCommand.d.ts +2 -0
  14. package/dist-types/commands/ExecuteGremlinQueryCommand.d.ts +2 -0
  15. package/dist-types/commands/ExecuteOpenCypherExplainQueryCommand.d.ts +2 -0
  16. package/dist-types/commands/ExecuteOpenCypherQueryCommand.d.ts +2 -0
  17. package/dist-types/commands/GetEngineStatusCommand.d.ts +2 -0
  18. package/dist-types/commands/GetGremlinQueryStatusCommand.d.ts +2 -0
  19. package/dist-types/commands/GetLoaderJobStatusCommand.d.ts +2 -0
  20. package/dist-types/commands/GetMLDataProcessingJobCommand.d.ts +2 -0
  21. package/dist-types/commands/GetMLEndpointCommand.d.ts +2 -0
  22. package/dist-types/commands/GetMLModelTrainingJobCommand.d.ts +2 -0
  23. package/dist-types/commands/GetMLModelTransformJobCommand.d.ts +2 -0
  24. package/dist-types/commands/GetOpenCypherQueryStatusCommand.d.ts +2 -0
  25. package/dist-types/commands/GetPropertygraphStatisticsCommand.d.ts +2 -0
  26. package/dist-types/commands/GetPropertygraphStreamCommand.d.ts +2 -0
  27. package/dist-types/commands/GetPropertygraphSummaryCommand.d.ts +2 -0
  28. package/dist-types/commands/GetRDFGraphSummaryCommand.d.ts +2 -0
  29. package/dist-types/commands/GetSparqlStatisticsCommand.d.ts +2 -0
  30. package/dist-types/commands/GetSparqlStreamCommand.d.ts +2 -0
  31. package/dist-types/commands/ListGremlinQueriesCommand.d.ts +2 -0
  32. package/dist-types/commands/ListLoaderJobsCommand.d.ts +2 -0
  33. package/dist-types/commands/ListMLDataProcessingJobsCommand.d.ts +2 -0
  34. package/dist-types/commands/ListMLEndpointsCommand.d.ts +2 -0
  35. package/dist-types/commands/ListMLModelTrainingJobsCommand.d.ts +2 -0
  36. package/dist-types/commands/ListMLModelTransformJobsCommand.d.ts +2 -0
  37. package/dist-types/commands/ListOpenCypherQueriesCommand.d.ts +2 -0
  38. package/dist-types/commands/ManagePropertygraphStatisticsCommand.d.ts +2 -0
  39. package/dist-types/commands/ManageSparqlStatisticsCommand.d.ts +2 -0
  40. package/dist-types/commands/StartLoaderJobCommand.d.ts +2 -0
  41. package/dist-types/commands/StartMLDataProcessingJobCommand.d.ts +2 -0
  42. package/dist-types/commands/StartMLModelTrainingJobCommand.d.ts +2 -0
  43. package/dist-types/commands/StartMLModelTransformJobCommand.d.ts +2 -0
  44. package/package.json +20 -20
@@ -33,6 +33,8 @@ declare const CancelGremlinQueryCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, CancelGremlinQueryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, CancelGremlinQueryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // CancelGremlinQueryInput
38
40
  * queryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CancelLoaderJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, CancelLoaderJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, CancelLoaderJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // CancelLoaderJobInput
38
40
  * loadId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CancelMLDataProcessingJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, CancelMLDataProcessingJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, CancelMLDataProcessingJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // CancelMLDataProcessingJobInput
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CancelMLModelTrainingJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, CancelMLModelTrainingJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, CancelMLModelTrainingJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // CancelMLModelTrainingJobInput
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CancelMLModelTransformJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, CancelMLModelTransformJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, CancelMLModelTransformJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // CancelMLModelTransformJobInput
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CancelOpenCypherQueryCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, CancelOpenCypherQueryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, CancelOpenCypherQueryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // CancelOpenCypherQueryInput
38
40
  * queryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateMLEndpointCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, CreateMLEndpointCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, CreateMLEndpointCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // CreateMLEndpointInput
38
40
  * id: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const DeleteMLEndpointCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, DeleteMLEndpointCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, DeleteMLEndpointCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // DeleteMLEndpointInput
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeletePropertygraphStatisticsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, DeletePropertygraphStatisticsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, DeletePropertygraphStatisticsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = {};
38
40
  * const command = new DeletePropertygraphStatisticsCommand(input);
@@ -33,6 +33,8 @@ declare const DeleteSparqlStatisticsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, DeleteSparqlStatisticsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, DeleteSparqlStatisticsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = {};
38
40
  * const command = new DeleteSparqlStatisticsCommand(input);
@@ -33,6 +33,8 @@ declare const ExecuteFastResetCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ExecuteFastResetCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ExecuteFastResetCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ExecuteFastResetInput
38
40
  * action: "initiateDatabaseReset" || "performDatabaseReset", // required
@@ -40,6 +40,8 @@ declare const ExecuteGremlinExplainQueryCommand_base: {
40
40
  * ```javascript
41
41
  * import { NeptunedataClient, ExecuteGremlinExplainQueryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
42
42
  * // const { NeptunedataClient, ExecuteGremlinExplainQueryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
43
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
44
+ * const config = {}; // type is NeptunedataClientConfig
43
45
  * const client = new NeptunedataClient(config);
44
46
  * const input = { // ExecuteGremlinExplainQueryInput
45
47
  * gremlinQuery: "STRING_VALUE", // required
@@ -40,6 +40,8 @@ declare const ExecuteGremlinProfileQueryCommand_base: {
40
40
  * ```javascript
41
41
  * import { NeptunedataClient, ExecuteGremlinProfileQueryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
42
42
  * // const { NeptunedataClient, ExecuteGremlinProfileQueryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
43
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
44
+ * const config = {}; // type is NeptunedataClientConfig
43
45
  * const client = new NeptunedataClient(config);
44
46
  * const input = { // ExecuteGremlinProfileQueryInput
45
47
  * gremlinQuery: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ExecuteGremlinQueryCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ExecuteGremlinQueryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ExecuteGremlinQueryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ExecuteGremlinQueryInput
38
40
  * gremlinQuery: "STRING_VALUE", // required
@@ -40,6 +40,8 @@ declare const ExecuteOpenCypherExplainQueryCommand_base: {
40
40
  * ```javascript
41
41
  * import { NeptunedataClient, ExecuteOpenCypherExplainQueryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
42
42
  * // const { NeptunedataClient, ExecuteOpenCypherExplainQueryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
43
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
44
+ * const config = {}; // type is NeptunedataClientConfig
43
45
  * const client = new NeptunedataClient(config);
44
46
  * const input = { // ExecuteOpenCypherExplainQueryInput
45
47
  * openCypherQuery: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ExecuteOpenCypherQueryCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ExecuteOpenCypherQueryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ExecuteOpenCypherQueryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ExecuteOpenCypherQueryInput
38
40
  * openCypherQuery: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetEngineStatusCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetEngineStatusCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetEngineStatusCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = {};
38
40
  * const command = new GetEngineStatusCommand(input);
@@ -33,6 +33,8 @@ declare const GetGremlinQueryStatusCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetGremlinQueryStatusCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetGremlinQueryStatusCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetGremlinQueryStatusInput
38
40
  * queryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetLoaderJobStatusCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetLoaderJobStatusCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetLoaderJobStatusCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetLoaderJobStatusInput
38
40
  * loadId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetMLDataProcessingJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetMLDataProcessingJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetMLDataProcessingJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetMLDataProcessingJobInput
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetMLEndpointCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetMLEndpointCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetMLEndpointCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetMLEndpointInput
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetMLModelTrainingJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetMLModelTrainingJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetMLModelTrainingJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetMLModelTrainingJobInput
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetMLModelTransformJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetMLModelTransformJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetMLModelTransformJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetMLModelTransformJobInput
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetOpenCypherQueryStatusCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetOpenCypherQueryStatusCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetOpenCypherQueryStatusCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetOpenCypherQueryStatusInput
38
40
  * queryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetPropertygraphStatisticsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetPropertygraphStatisticsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetPropertygraphStatisticsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = {};
38
40
  * const command = new GetPropertygraphStatisticsCommand(input);
@@ -33,6 +33,8 @@ declare const GetPropertygraphStreamCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetPropertygraphStreamCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetPropertygraphStreamCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetPropertygraphStreamInput
38
40
  * limit: Number("long"),
@@ -33,6 +33,8 @@ declare const GetPropertygraphSummaryCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetPropertygraphSummaryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetPropertygraphSummaryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetPropertygraphSummaryInput
38
40
  * mode: "basic" || "detailed",
@@ -33,6 +33,8 @@ declare const GetRDFGraphSummaryCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetRDFGraphSummaryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetRDFGraphSummaryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetRDFGraphSummaryInput
38
40
  * mode: "basic" || "detailed",
@@ -33,6 +33,8 @@ declare const GetSparqlStatisticsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetSparqlStatisticsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetSparqlStatisticsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = {};
38
40
  * const command = new GetSparqlStatisticsCommand(input);
@@ -33,6 +33,8 @@ declare const GetSparqlStreamCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, GetSparqlStreamCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, GetSparqlStreamCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // GetSparqlStreamInput
38
40
  * limit: Number("long"),
@@ -33,6 +33,8 @@ declare const ListGremlinQueriesCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ListGremlinQueriesCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ListGremlinQueriesCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ListGremlinQueriesInput
38
40
  * includeWaiting: true || false,
@@ -33,6 +33,8 @@ declare const ListLoaderJobsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ListLoaderJobsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ListLoaderJobsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ListLoaderJobsInput
38
40
  * limit: Number("int"),
@@ -33,6 +33,8 @@ declare const ListMLDataProcessingJobsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ListMLDataProcessingJobsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ListMLDataProcessingJobsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ListMLDataProcessingJobsInput
38
40
  * maxItems: Number("int"),
@@ -33,6 +33,8 @@ declare const ListMLEndpointsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ListMLEndpointsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ListMLEndpointsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ListMLEndpointsInput
38
40
  * maxItems: Number("int"),
@@ -33,6 +33,8 @@ declare const ListMLModelTrainingJobsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ListMLModelTrainingJobsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ListMLModelTrainingJobsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ListMLModelTrainingJobsInput
38
40
  * maxItems: Number("int"),
@@ -33,6 +33,8 @@ declare const ListMLModelTransformJobsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ListMLModelTransformJobsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ListMLModelTransformJobsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ListMLModelTransformJobsInput
38
40
  * maxItems: Number("int"),
@@ -33,6 +33,8 @@ declare const ListOpenCypherQueriesCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ListOpenCypherQueriesCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ListOpenCypherQueriesCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ListOpenCypherQueriesInput
38
40
  * includeWaiting: true || false,
@@ -33,6 +33,8 @@ declare const ManagePropertygraphStatisticsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ManagePropertygraphStatisticsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ManagePropertygraphStatisticsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ManagePropertygraphStatisticsInput
38
40
  * mode: "disableAutoCompute" || "enableAutoCompute" || "refresh",
@@ -33,6 +33,8 @@ declare const ManageSparqlStatisticsCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, ManageSparqlStatisticsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, ManageSparqlStatisticsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // ManageSparqlStatisticsInput
38
40
  * mode: "disableAutoCompute" || "enableAutoCompute" || "refresh",
@@ -33,6 +33,8 @@ declare const StartLoaderJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, StartLoaderJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, StartLoaderJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // StartLoaderJobInput
38
40
  * source: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const StartMLDataProcessingJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, StartMLDataProcessingJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, StartMLDataProcessingJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // StartMLDataProcessingJobInput
38
40
  * id: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const StartMLModelTrainingJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, StartMLModelTrainingJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, StartMLModelTrainingJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // StartMLModelTrainingJobInput
38
40
  * id: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const StartMLModelTransformJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { NeptunedataClient, StartMLModelTransformJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
35
35
  * // const { NeptunedataClient, StartMLModelTransformJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
36
+ * // import type { NeptunedataClientConfig } from "@aws-sdk/client-neptunedata";
37
+ * const config = {}; // type is NeptunedataClientConfig
36
38
  * const client = new NeptunedataClient(config);
37
39
  * const input = { // StartMLModelTransformJobInput
38
40
  * id: "STRING_VALUE",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-neptunedata",
3
3
  "description": "AWS SDK for JavaScript Neptunedata Client for Node.js, Browser and React Native",
4
- "version": "3.890.0",
4
+ "version": "3.893.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-neptunedata",
@@ -20,42 +20,42 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.890.0",
24
- "@aws-sdk/credential-provider-node": "3.890.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.890.0",
29
- "@aws-sdk/region-config-resolver": "3.890.0",
30
- "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.890.0",
32
- "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.890.0",
23
+ "@aws-sdk/core": "3.893.0",
24
+ "@aws-sdk/credential-provider-node": "3.893.0",
25
+ "@aws-sdk/middleware-host-header": "3.893.0",
26
+ "@aws-sdk/middleware-logger": "3.893.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.893.0",
28
+ "@aws-sdk/middleware-user-agent": "3.893.0",
29
+ "@aws-sdk/region-config-resolver": "3.893.0",
30
+ "@aws-sdk/types": "3.893.0",
31
+ "@aws-sdk/util-endpoints": "3.893.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.893.0",
33
+ "@aws-sdk/util-user-agent-node": "3.893.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
- "@smithy/core": "^3.11.0",
35
+ "@smithy/core": "^3.11.1",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
37
37
  "@smithy/hash-node": "^4.1.1",
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.2",
41
- "@smithy/middleware-retry": "^4.2.2",
40
+ "@smithy/middleware-endpoint": "^4.2.3",
41
+ "@smithy/middleware-retry": "^4.2.4",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
44
  "@smithy/node-config-provider": "^4.2.2",
45
45
  "@smithy/node-http-handler": "^4.2.1",
46
46
  "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.2",
47
+ "@smithy/smithy-client": "^4.6.3",
48
48
  "@smithy/types": "^4.5.0",
49
49
  "@smithy/url-parser": "^4.1.1",
50
50
  "@smithy/util-base64": "^4.1.0",
51
51
  "@smithy/util-body-length-browser": "^4.1.0",
52
52
  "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.2",
54
- "@smithy/util-defaults-mode-node": "^4.1.2",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.3",
54
+ "@smithy/util-defaults-mode-node": "^4.1.3",
55
55
  "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.1",
58
- "@smithy/util-stream": "^4.3.1",
57
+ "@smithy/util-retry": "^4.1.2",
58
+ "@smithy/util-stream": "^4.3.2",
59
59
  "@smithy/util-utf8": "^4.1.0",
60
60
  "tslib": "^2.6.2"
61
61
  },