@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.
@@ -32,6 +32,7 @@ import { GetDataSourceIntrospectionCommand, } from "./commands/GetDataSourceIntr
32
32
  import { GetDomainNameCommand, } from "./commands/GetDomainNameCommand";
33
33
  import { GetFunctionCommand } from "./commands/GetFunctionCommand";
34
34
  import { GetGraphqlApiCommand, } from "./commands/GetGraphqlApiCommand";
35
+ import { GetGraphqlApiEnvironmentVariablesCommand, } from "./commands/GetGraphqlApiEnvironmentVariablesCommand";
35
36
  import { GetIntrospectionSchemaCommand, } from "./commands/GetIntrospectionSchemaCommand";
36
37
  import { GetResolverCommand } from "./commands/GetResolverCommand";
37
38
  import { GetSchemaCreationStatusCommand, } from "./commands/GetSchemaCreationStatusCommand";
@@ -48,6 +49,7 @@ import { ListSourceApiAssociationsCommand, } from "./commands/ListSourceApiAssoc
48
49
  import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
49
50
  import { ListTypesByAssociationCommand, } from "./commands/ListTypesByAssociationCommand";
50
51
  import { ListTypesCommand } from "./commands/ListTypesCommand";
52
+ import { PutGraphqlApiEnvironmentVariablesCommand, } from "./commands/PutGraphqlApiEnvironmentVariablesCommand";
51
53
  import { StartDataSourceIntrospectionCommand, } from "./commands/StartDataSourceIntrospectionCommand";
52
54
  import { StartSchemaCreationCommand, } from "./commands/StartSchemaCreationCommand";
53
55
  import { StartSchemaMergeCommand, } from "./commands/StartSchemaMergeCommand";
@@ -95,6 +97,7 @@ const commands = {
95
97
  GetDomainNameCommand,
96
98
  GetFunctionCommand,
97
99
  GetGraphqlApiCommand,
100
+ GetGraphqlApiEnvironmentVariablesCommand,
98
101
  GetIntrospectionSchemaCommand,
99
102
  GetResolverCommand,
100
103
  GetSchemaCreationStatusCommand,
@@ -111,6 +114,7 @@ const commands = {
111
114
  ListTagsForResourceCommand,
112
115
  ListTypesCommand,
113
116
  ListTypesByAssociationCommand,
117
+ PutGraphqlApiEnvironmentVariablesCommand,
114
118
  StartDataSourceIntrospectionCommand,
115
119
  StartSchemaCreationCommand,
116
120
  StartSchemaMergeCommand,
@@ -0,0 +1,24 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_GetGraphqlApiEnvironmentVariablesCommand, se_GetGraphqlApiEnvironmentVariablesCommand, } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class GetGraphqlApiEnvironmentVariablesCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("AWSDeepdishControlPlaneService", "GetGraphqlApiEnvironmentVariables", {})
19
+ .n("AppSyncClient", "GetGraphqlApiEnvironmentVariablesCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_GetGraphqlApiEnvironmentVariablesCommand)
22
+ .de(de_GetGraphqlApiEnvironmentVariablesCommand)
23
+ .build() {
24
+ }
@@ -0,0 +1,24 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_PutGraphqlApiEnvironmentVariablesCommand, se_PutGraphqlApiEnvironmentVariablesCommand, } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class PutGraphqlApiEnvironmentVariablesCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("AWSDeepdishControlPlaneService", "PutGraphqlApiEnvironmentVariables", {})
19
+ .n("AppSyncClient", "PutGraphqlApiEnvironmentVariablesCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_PutGraphqlApiEnvironmentVariablesCommand)
22
+ .de(de_PutGraphqlApiEnvironmentVariablesCommand)
23
+ .build() {
24
+ }
@@ -30,6 +30,7 @@ export * from "./GetDataSourceIntrospectionCommand";
30
30
  export * from "./GetDomainNameCommand";
31
31
  export * from "./GetFunctionCommand";
32
32
  export * from "./GetGraphqlApiCommand";
33
+ export * from "./GetGraphqlApiEnvironmentVariablesCommand";
33
34
  export * from "./GetIntrospectionSchemaCommand";
34
35
  export * from "./GetResolverCommand";
35
36
  export * from "./GetSchemaCreationStatusCommand";
@@ -46,6 +47,7 @@ export * from "./ListSourceApiAssociationsCommand";
46
47
  export * from "./ListTagsForResourceCommand";
47
48
  export * from "./ListTypesByAssociationCommand";
48
49
  export * from "./ListTypesCommand";
50
+ export * from "./PutGraphqlApiEnvironmentVariablesCommand";
49
51
  export * from "./StartDataSourceIntrospectionCommand";
50
52
  export * from "./StartSchemaCreationCommand";
51
53
  export * from "./StartSchemaMergeCommand";