@aws-sdk/client-appsync 3.504.0 → 3.508.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.
- package/README.md +16 -0
- package/dist-cjs/commands/GetGraphqlApiEnvironmentVariablesCommand.js +1 -0
- package/dist-cjs/commands/PutGraphqlApiEnvironmentVariablesCommand.js +1 -0
- package/dist-cjs/index.js +210 -1924
- package/dist-es/AppSync.js +4 -0
- package/dist-es/commands/GetGraphqlApiEnvironmentVariablesCommand.js +24 -0
- package/dist-es/commands/PutGraphqlApiEnvironmentVariablesCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +166 -1922
- package/dist-types/AppSync.d.ts +14 -0
- package/dist-types/AppSyncClient.d.ts +4 -2
- package/dist-types/commands/GetGraphqlApiEnvironmentVariablesCommand.d.ts +76 -0
- package/dist-types/commands/PutGraphqlApiEnvironmentVariablesCommand.d.ts +127 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +70 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/AppSync.d.ts +46 -0
- package/dist-types/ts3.4/AppSyncClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetGraphqlApiEnvironmentVariablesCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/PutGraphqlApiEnvironmentVariablesCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +13 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -459,6 +459,14 @@ GetGraphqlApi
|
|
|
459
459
|
|
|
460
460
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appsync/command/GetGraphqlApiCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appsync/Interface/GetGraphqlApiCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appsync/Interface/GetGraphqlApiCommandOutput/)
|
|
461
461
|
|
|
462
|
+
</details>
|
|
463
|
+
<details>
|
|
464
|
+
<summary>
|
|
465
|
+
GetGraphqlApiEnvironmentVariables
|
|
466
|
+
</summary>
|
|
467
|
+
|
|
468
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appsync/command/GetGraphqlApiEnvironmentVariablesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appsync/Interface/GetGraphqlApiEnvironmentVariablesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appsync/Interface/GetGraphqlApiEnvironmentVariablesCommandOutput/)
|
|
469
|
+
|
|
462
470
|
</details>
|
|
463
471
|
<details>
|
|
464
472
|
<summary>
|
|
@@ -587,6 +595,14 @@ ListTypesByAssociation
|
|
|
587
595
|
|
|
588
596
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appsync/command/ListTypesByAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appsync/Interface/ListTypesByAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appsync/Interface/ListTypesByAssociationCommandOutput/)
|
|
589
597
|
|
|
598
|
+
</details>
|
|
599
|
+
<details>
|
|
600
|
+
<summary>
|
|
601
|
+
PutGraphqlApiEnvironmentVariables
|
|
602
|
+
</summary>
|
|
603
|
+
|
|
604
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appsync/command/PutGraphqlApiEnvironmentVariablesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appsync/Interface/PutGraphqlApiEnvironmentVariablesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appsync/Interface/PutGraphqlApiEnvironmentVariablesCommandOutput/)
|
|
605
|
+
|
|
590
606
|
</details>
|
|
591
607
|
<details>
|
|
592
608
|
<summary>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../index.js");
|