aws-sdk-appsync 1.115.0 → 1.116.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63e692e38c258b4a8d76714d6948af040ef728d7510b4184cc30dd41bd1bd94b
4
- data.tar.gz: cf379818fd63eb3834d648f0dd64c830d9db43b6a2a456107bf3b382db67893e
3
+ metadata.gz: ab818e28a1085910c413dbc074bf46542f71a0b4dde76b1c2c19613d8a985b74
4
+ data.tar.gz: 7e3ff75cb45b14c52a5f889527e261231952535e8c32d89ca25ef91bbc2a6e05
5
5
  SHA512:
6
- metadata.gz: ab9b9a4a13d0747b6a5911786001ff7f7fe0e2a97c6915734a647f34b8c50881a330c14db6c6a40898345a9f20e8901fedad0756c2ca495c066fd552a1e7a191
7
- data.tar.gz: 2e4f6a03dc3a7267243e38ee33307ce01fd75027cb5272159af07474da232c507d5ca83d132aa75f220791372baf56ffcd703a0a1a3f21e368529ece23892fcd
6
+ metadata.gz: 1fcbf9879fe6dc11f4ba15edac657d3798bb8598da835900e05b0174fd1474fcd6ef066e1f104958a82cea3985eb3635f1300312c30835e25c27dcfdff19732a
7
+ data.tar.gz: fe39499d4d4847ee33efe5f5944f49d8ffcc7ed744f2d3bdf76ee57141894283d01881cda85893de318e2b8fa4ba9e7e5990b9658fa4a77632087c6576c52fa2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.116.0 (2025-12-09)
5
+ ------------------
6
+
7
+ * Feature - Update Event API to require EventConfig parameter in creation and update requests.
8
+
4
9
  1.115.0 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.115.0
1
+ 1.116.0
@@ -647,7 +647,7 @@ module Aws::AppSync
647
647
  # @option params [Hash<String,String>] :tags
648
648
  # A map with keys of `TagKey` objects and values of `TagValue` objects.
649
649
  #
650
- # @option params [Types::EventConfig] :event_config
650
+ # @option params [required, Types::EventConfig] :event_config
651
651
  # The Event API configuration. This includes the default authorization
652
652
  # configuration for connecting, publishing, and subscribing to an Event
653
653
  # API.
@@ -664,7 +664,7 @@ module Aws::AppSync
664
664
  # tags: {
665
665
  # "TagKey" => "TagValue",
666
666
  # },
667
- # event_config: {
667
+ # event_config: { # required
668
668
  # auth_providers: [ # required
669
669
  # {
670
670
  # auth_type: "API_KEY", # required, accepts API_KEY, AWS_IAM, AMAZON_COGNITO_USER_POOLS, OPENID_CONNECT, AWS_LAMBDA
@@ -3991,7 +3991,7 @@ module Aws::AppSync
3991
3991
  # @option params [String] :owner_contact
3992
3992
  # The owner contact information for the `Api`.
3993
3993
  #
3994
- # @option params [Types::EventConfig] :event_config
3994
+ # @option params [required, Types::EventConfig] :event_config
3995
3995
  # The new event configuration. This includes the default authorization
3996
3996
  # configuration for connecting, publishing, and subscribing to an Event
3997
3997
  # API.
@@ -4006,7 +4006,7 @@ module Aws::AppSync
4006
4006
  # api_id: "String", # required
4007
4007
  # name: "ApiName", # required
4008
4008
  # owner_contact: "String",
4009
- # event_config: {
4009
+ # event_config: { # required
4010
4010
  # auth_providers: [ # required
4011
4011
  # {
4012
4012
  # auth_type: "API_KEY", # required, accepts API_KEY, AWS_IAM, AMAZON_COGNITO_USER_POOLS, OPENID_CONNECT, AWS_LAMBDA
@@ -5115,7 +5115,7 @@ module Aws::AppSync
5115
5115
  tracer: tracer
5116
5116
  )
5117
5117
  context[:gem_name] = 'aws-sdk-appsync'
5118
- context[:gem_version] = '1.115.0'
5118
+ context[:gem_version] = '1.116.0'
5119
5119
  Seahorse::Client::Request.new(handlers, context)
5120
5120
  end
5121
5121
 
@@ -518,7 +518,7 @@ module Aws::AppSync
518
518
  CreateApiRequest.add_member(:name, Shapes::ShapeRef.new(shape: ApiName, required: true, location_name: "name"))
519
519
  CreateApiRequest.add_member(:owner_contact, Shapes::ShapeRef.new(shape: String, location_name: "ownerContact"))
520
520
  CreateApiRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
521
- CreateApiRequest.add_member(:event_config, Shapes::ShapeRef.new(shape: EventConfig, location_name: "eventConfig"))
521
+ CreateApiRequest.add_member(:event_config, Shapes::ShapeRef.new(shape: EventConfig, required: true, location_name: "eventConfig"))
522
522
  CreateApiRequest.struct_class = Types::CreateApiRequest
523
523
 
524
524
  CreateApiResponse.add_member(:api, Shapes::ShapeRef.new(shape: Api, location_name: "api"))
@@ -1328,7 +1328,7 @@ module Aws::AppSync
1328
1328
  UpdateApiRequest.add_member(:api_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "apiId"))
1329
1329
  UpdateApiRequest.add_member(:name, Shapes::ShapeRef.new(shape: ApiName, required: true, location_name: "name"))
1330
1330
  UpdateApiRequest.add_member(:owner_contact, Shapes::ShapeRef.new(shape: String, location_name: "ownerContact"))
1331
- UpdateApiRequest.add_member(:event_config, Shapes::ShapeRef.new(shape: EventConfig, location_name: "eventConfig"))
1331
+ UpdateApiRequest.add_member(:event_config, Shapes::ShapeRef.new(shape: EventConfig, required: true, location_name: "eventConfig"))
1332
1332
  UpdateApiRequest.struct_class = Types::UpdateApiRequest
1333
1333
 
1334
1334
  UpdateApiResponse.add_member(:api, Shapes::ShapeRef.new(shape: Api, location_name: "api"))
@@ -54,7 +54,7 @@ module Aws::AppSync
54
54
  autoload :EndpointProvider, 'aws-sdk-appsync/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-appsync/endpoints'
56
56
 
57
- GEM_VERSION = '1.115.0'
57
+ GEM_VERSION = '1.116.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -128,7 +128,7 @@ module Aws
128
128
  name: ::String,
129
129
  ?owner_contact: ::String,
130
130
  ?tags: Hash[::String, ::String],
131
- ?event_config: {
131
+ event_config: {
132
132
  auth_providers: Array[
133
133
  {
134
134
  auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
@@ -1048,7 +1048,7 @@ module Aws
1048
1048
  api_id: ::String,
1049
1049
  name: ::String,
1050
1050
  ?owner_contact: ::String,
1051
- ?event_config: {
1051
+ event_config: {
1052
1052
  auth_providers: Array[
1053
1053
  {
1054
1054
  auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appsync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.115.0
4
+ version: 1.116.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services