@aws-sdk/client-appsync 3.454.0 → 3.459.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/README.md +76 -60
  2. package/dist-cjs/AppSync.js +4 -0
  3. package/dist-cjs/commands/GetDataSourceIntrospectionCommand.js +51 -0
  4. package/dist-cjs/commands/StartDataSourceIntrospectionCommand.js +51 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/models/models_0.js +6 -1
  7. package/dist-cjs/protocols/Aws_restJson1.js +182 -3
  8. package/dist-es/AppSync.js +4 -0
  9. package/dist-es/commands/GetDataSourceIntrospectionCommand.js +47 -0
  10. package/dist-es/commands/StartDataSourceIntrospectionCommand.js +47 -0
  11. package/dist-es/commands/index.js +2 -0
  12. package/dist-es/models/models_0.js +5 -0
  13. package/dist-es/protocols/Aws_restJson1.js +176 -1
  14. package/dist-types/AppSync.d.ts +14 -0
  15. package/dist-types/AppSyncClient.d.ts +4 -2
  16. package/dist-types/commands/GetDataSourceIntrospectionCommand.d.ts +135 -0
  17. package/dist-types/commands/StartDataSourceIntrospectionCommand.d.ts +94 -0
  18. package/dist-types/commands/index.d.ts +2 -0
  19. package/dist-types/models/models_0.d.ts +270 -0
  20. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  21. package/dist-types/ts3.4/AppSync.d.ts +34 -0
  22. package/dist-types/ts3.4/AppSyncClient.d.ts +12 -0
  23. package/dist-types/ts3.4/commands/GetDataSourceIntrospectionCommand.d.ts +42 -0
  24. package/dist-types/ts3.4/commands/StartDataSourceIntrospectionCommand.d.ts +42 -0
  25. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +58 -0
  27. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  28. package/package.json +3 -3
@@ -115,6 +115,10 @@ import {
115
115
  GetDataSourceCommandInput,
116
116
  GetDataSourceCommandOutput,
117
117
  } from "../commands/GetDataSourceCommand";
118
+ import {
119
+ GetDataSourceIntrospectionCommandInput,
120
+ GetDataSourceIntrospectionCommandOutput,
121
+ } from "../commands/GetDataSourceIntrospectionCommand";
118
122
  import {
119
123
  GetDomainNameCommandInput,
120
124
  GetDomainNameCommandOutput,
@@ -191,6 +195,10 @@ import {
191
195
  ListTypesCommandInput,
192
196
  ListTypesCommandOutput,
193
197
  } from "../commands/ListTypesCommand";
198
+ import {
199
+ StartDataSourceIntrospectionCommandInput,
200
+ StartDataSourceIntrospectionCommandOutput,
201
+ } from "../commands/StartDataSourceIntrospectionCommand";
194
202
  import {
195
203
  StartSchemaCreationCommandInput,
196
204
  StartSchemaCreationCommandOutput,
@@ -355,6 +363,10 @@ export declare const se_GetDataSourceCommand: (
355
363
  input: GetDataSourceCommandInput,
356
364
  context: __SerdeContext
357
365
  ) => Promise<__HttpRequest>;
366
+ export declare const se_GetDataSourceIntrospectionCommand: (
367
+ input: GetDataSourceIntrospectionCommandInput,
368
+ context: __SerdeContext
369
+ ) => Promise<__HttpRequest>;
358
370
  export declare const se_GetDomainNameCommand: (
359
371
  input: GetDomainNameCommandInput,
360
372
  context: __SerdeContext
@@ -431,6 +443,10 @@ export declare const se_ListTypesByAssociationCommand: (
431
443
  input: ListTypesByAssociationCommandInput,
432
444
  context: __SerdeContext
433
445
  ) => Promise<__HttpRequest>;
446
+ export declare const se_StartDataSourceIntrospectionCommand: (
447
+ input: StartDataSourceIntrospectionCommandInput,
448
+ context: __SerdeContext
449
+ ) => Promise<__HttpRequest>;
434
450
  export declare const se_StartSchemaCreationCommand: (
435
451
  input: StartSchemaCreationCommandInput,
436
452
  context: __SerdeContext
@@ -595,6 +611,10 @@ export declare const de_GetDataSourceCommand: (
595
611
  output: __HttpResponse,
596
612
  context: __SerdeContext
597
613
  ) => Promise<GetDataSourceCommandOutput>;
614
+ export declare const de_GetDataSourceIntrospectionCommand: (
615
+ output: __HttpResponse,
616
+ context: __SerdeContext
617
+ ) => Promise<GetDataSourceIntrospectionCommandOutput>;
598
618
  export declare const de_GetDomainNameCommand: (
599
619
  output: __HttpResponse,
600
620
  context: __SerdeContext
@@ -671,6 +691,10 @@ export declare const de_ListTypesByAssociationCommand: (
671
691
  output: __HttpResponse,
672
692
  context: __SerdeContext
673
693
  ) => Promise<ListTypesByAssociationCommandOutput>;
694
+ export declare const de_StartDataSourceIntrospectionCommand: (
695
+ output: __HttpResponse,
696
+ context: __SerdeContext
697
+ ) => Promise<StartDataSourceIntrospectionCommandOutput>;
674
698
  export declare const de_StartSchemaCreationCommand: (
675
699
  output: __HttpResponse,
676
700
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appsync",
3
3
  "description": "AWS SDK for JavaScript Appsync Client for Node.js, Browser and React Native",
4
- "version": "3.454.0",
4
+ "version": "3.459.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,9 +21,9 @@
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.454.0",
24
+ "@aws-sdk/client-sts": "3.458.0",
25
25
  "@aws-sdk/core": "3.451.0",
26
- "@aws-sdk/credential-provider-node": "3.451.0",
26
+ "@aws-sdk/credential-provider-node": "3.458.0",
27
27
  "@aws-sdk/middleware-host-header": "3.451.0",
28
28
  "@aws-sdk/middleware-logger": "3.451.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.451.0",