aws-sdk-appintegrationsservice 1.67.0 → 1.68.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: 2e385f364f7d0ec679623f3eb24e0c0829b39e562fadc93637a9b3ba47130c53
4
- data.tar.gz: a556825a381e76bbfadb763a4db477cf0d42b74fcbb92917bcf70ef428b9f876
3
+ metadata.gz: 6e8a5230d494ebef28814bfcd9ae7feb592b61adf145043d9382c6d1075235f4
4
+ data.tar.gz: ceb3989c59ecf7ae7ec56b1a5be1374e831504c8c4689dd208cd0358ff95a979
5
5
  SHA512:
6
- metadata.gz: d9d701762728ff08afcbd016c0e1be6c20176b72f8744a6e1f229434aab64189cdbfb29f3b21bad7fa076de92369a776ef8f55a88cc77c271c82db005265f397
7
- data.tar.gz: d7f259c231a325a347c9a0635e8a321ceff2307bbed67206a3a4d25d13e9c4562a94deeb034399534980c31509e85823bf7e482f2a2a4ea959368eeee8efc63f
6
+ metadata.gz: 8d070a9430796b2310b31061fa05ef93134fde44154b94ad08bfe659e68b5631d7d9e7564ed4509ec84522d40ce4345fbe67c8b2b6956c8c1780e1bda4950eb3
7
+ data.tar.gz: ca7635a63ae5afd23980628290786ea12fbb0b25c663a43f4fc55282795c9a065e55f87e8ae349a7bfc7a582ee25f4d5738f01c3e5def6034a8fcf2bb3c82a06
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.67.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -1860,7 +1860,7 @@ module Aws::AppIntegrationsService
1860
1860
  tracer: tracer
1861
1861
  )
1862
1862
  context[:gem_name] = 'aws-sdk-appintegrationsservice'
1863
- context[:gem_version] = '1.67.0'
1863
+ context[:gem_version] = '1.68.0'
1864
1864
  Seahorse::Client::Request.new(handlers, context)
1865
1865
  end
1866
1866
 
@@ -54,7 +54,7 @@ module Aws::AppIntegrationsService
54
54
  autoload :EndpointProvider, 'aws-sdk-appintegrationsservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-appintegrationsservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.67.0'
57
+ GEM_VERSION = '1.68.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -98,14 +98,14 @@ module Aws
98
98
  {
99
99
  event: ::String,
100
100
  description: ::String?
101
- },
101
+ }
102
102
  ],
103
103
  ?publications: Array[
104
104
  {
105
105
  event: ::String,
106
106
  schema: ::String,
107
107
  description: ::String?
108
- },
108
+ }
109
109
  ],
110
110
  ?client_token: ::String,
111
111
  ?tags: Hash[::String, ::String],
@@ -173,18 +173,7 @@ module Aws
173
173
  ?destination_uri: ::String,
174
174
  ?client_association_metadata: Hash[::String, ::String],
175
175
  ?client_token: ::String,
176
- ?execution_configuration: {
177
- execution_mode: ("ON_DEMAND" | "SCHEDULED"),
178
- on_demand_configuration: {
179
- start_time: ::String,
180
- end_time: ::String?
181
- }?,
182
- schedule_configuration: {
183
- first_execution_from: ::String?,
184
- object: ::String?,
185
- schedule_expression: ::String
186
- }?
187
- }
176
+ ?execution_configuration: Params::execution_configuration
188
177
  ) -> _CreateDataIntegrationAssociationResponseSuccess
189
178
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataIntegrationAssociationResponseSuccess
190
179
 
@@ -416,14 +405,14 @@ module Aws
416
405
  {
417
406
  event: ::String,
418
407
  description: ::String?
419
- },
408
+ }
420
409
  ],
421
410
  ?publications: Array[
422
411
  {
423
412
  event: ::String,
424
413
  schema: ::String,
425
414
  description: ::String?
426
- },
415
+ }
427
416
  ],
428
417
  ?permissions: Array[::String],
429
418
  ?is_service: bool,
@@ -459,18 +448,7 @@ module Aws
459
448
  def update_data_integration_association: (
460
449
  data_integration_identifier: ::String,
461
450
  data_integration_association_identifier: ::String,
462
- execution_configuration: {
463
- execution_mode: ("ON_DEMAND" | "SCHEDULED"),
464
- on_demand_configuration: {
465
- start_time: ::String,
466
- end_time: ::String?
467
- }?,
468
- schedule_configuration: {
469
- first_execution_from: ::String?,
470
- object: ::String?,
471
- schedule_expression: ::String
472
- }?
473
- }
451
+ execution_configuration: Params::execution_configuration
474
452
  ) -> _UpdateDataIntegrationAssociationResponseSuccess
475
453
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataIntegrationAssociationResponseSuccess
476
454
 
data/sig/params.rbs ADDED
@@ -0,0 +1,26 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module AppIntegrationsService
10
+ module Params
11
+ type execution_configuration = {
12
+ execution_mode: ("ON_DEMAND" | "SCHEDULED"),
13
+ on_demand_configuration: {
14
+ start_time: ::String,
15
+ end_time: ::String?
16
+ }?,
17
+ schedule_configuration: {
18
+ first_execution_from: ::String?,
19
+ object: ::String?,
20
+ schedule_expression: ::String
21
+ }?
22
+ }
23
+
24
+ end
25
+ end
26
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appintegrationsservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.67.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-appintegrationsservice/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs