aws-sdk-appsync 1.59.0 → 1.60.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appsync/client.rb +510 -2
- data/lib/aws-sdk-appsync/client_api.rb +257 -0
- data/lib/aws-sdk-appsync/endpoints.rb +126 -0
- data/lib/aws-sdk-appsync/plugins/endpoints.rb +18 -0
- data/lib/aws-sdk-appsync/types.rb +616 -6
- data/lib/aws-sdk-appsync.rb +1 -1
- metadata +2 -2
@@ -58,6 +58,10 @@ module Aws::AppSync
|
|
58
58
|
case context.operation_name
|
59
59
|
when :associate_api
|
60
60
|
Aws::AppSync::Endpoints::AssociateApi.build(context)
|
61
|
+
when :associate_merged_graphql_api
|
62
|
+
Aws::AppSync::Endpoints::AssociateMergedGraphqlApi.build(context)
|
63
|
+
when :associate_source_graphql_api
|
64
|
+
Aws::AppSync::Endpoints::AssociateSourceGraphqlApi.build(context)
|
61
65
|
when :create_api_cache
|
62
66
|
Aws::AppSync::Endpoints::CreateApiCache.build(context)
|
63
67
|
when :create_api_key
|
@@ -92,6 +96,10 @@ module Aws::AppSync
|
|
92
96
|
Aws::AppSync::Endpoints::DeleteType.build(context)
|
93
97
|
when :disassociate_api
|
94
98
|
Aws::AppSync::Endpoints::DisassociateApi.build(context)
|
99
|
+
when :disassociate_merged_graphql_api
|
100
|
+
Aws::AppSync::Endpoints::DisassociateMergedGraphqlApi.build(context)
|
101
|
+
when :disassociate_source_graphql_api
|
102
|
+
Aws::AppSync::Endpoints::DisassociateSourceGraphqlApi.build(context)
|
95
103
|
when :evaluate_code
|
96
104
|
Aws::AppSync::Endpoints::EvaluateCode.build(context)
|
97
105
|
when :evaluate_mapping_template
|
@@ -116,6 +124,8 @@ module Aws::AppSync
|
|
116
124
|
Aws::AppSync::Endpoints::GetResolver.build(context)
|
117
125
|
when :get_schema_creation_status
|
118
126
|
Aws::AppSync::Endpoints::GetSchemaCreationStatus.build(context)
|
127
|
+
when :get_source_api_association
|
128
|
+
Aws::AppSync::Endpoints::GetSourceApiAssociation.build(context)
|
119
129
|
when :get_type
|
120
130
|
Aws::AppSync::Endpoints::GetType.build(context)
|
121
131
|
when :list_api_keys
|
@@ -132,12 +142,18 @@ module Aws::AppSync
|
|
132
142
|
Aws::AppSync::Endpoints::ListResolvers.build(context)
|
133
143
|
when :list_resolvers_by_function
|
134
144
|
Aws::AppSync::Endpoints::ListResolversByFunction.build(context)
|
145
|
+
when :list_source_api_associations
|
146
|
+
Aws::AppSync::Endpoints::ListSourceApiAssociations.build(context)
|
135
147
|
when :list_tags_for_resource
|
136
148
|
Aws::AppSync::Endpoints::ListTagsForResource.build(context)
|
137
149
|
when :list_types
|
138
150
|
Aws::AppSync::Endpoints::ListTypes.build(context)
|
151
|
+
when :list_types_by_association
|
152
|
+
Aws::AppSync::Endpoints::ListTypesByAssociation.build(context)
|
139
153
|
when :start_schema_creation
|
140
154
|
Aws::AppSync::Endpoints::StartSchemaCreation.build(context)
|
155
|
+
when :start_schema_merge
|
156
|
+
Aws::AppSync::Endpoints::StartSchemaMerge.build(context)
|
141
157
|
when :tag_resource
|
142
158
|
Aws::AppSync::Endpoints::TagResource.build(context)
|
143
159
|
when :untag_resource
|
@@ -156,6 +172,8 @@ module Aws::AppSync
|
|
156
172
|
Aws::AppSync::Endpoints::UpdateGraphqlApi.build(context)
|
157
173
|
when :update_resolver
|
158
174
|
Aws::AppSync::Endpoints::UpdateResolver.build(context)
|
175
|
+
when :update_source_api_association
|
176
|
+
Aws::AppSync::Endpoints::UpdateSourceApiAssociation.build(context)
|
159
177
|
when :update_type
|
160
178
|
Aws::AppSync::Endpoints::UpdateType.build(context)
|
161
179
|
end
|