aws-sdk-appintegrationsservice 1.28.0 → 1.30.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: b3f9a5e9b46e076887d26bdfe203b991ea474ffd8b6c57121151b68b9b286bc4
4
- data.tar.gz: c764242cb1a4dd64605a3e8e7a8ed74b9dce0c86e98513ecf6fcd398259100a7
3
+ metadata.gz: fb26fe06936d3b325900891bce39024679aff95ac57dad820ebad0683157bbab
4
+ data.tar.gz: 0aa5b36a9654eec78155faac48eab654232aa0f857db60cc87025bd43a0dccfa
5
5
  SHA512:
6
- metadata.gz: 7f6438e4495a9045d7d48e687df7f6502c05867b1335a7da09466057e42379d7a2de550d11637ccc6e735b18270af77a150e941b92d221af465b91b90cf55afc
7
- data.tar.gz: 9ec15231e2320c848e5ed150ec0f143b90912dfccabd400a00167d45b56d3cb4701dbb16f774b9fc04d14f7336653ea8c7567a459fb89884738419f834e6ee27
6
+ metadata.gz: d7f528186607b400276218235adaf225e4a35ce1fc2e89dedca32c6c7a70317210a2d34b3587d1cabd9c4343a0d11fe4b583e39b4518a0ce23a39eae312f27b6
7
+ data.tar.gz: 520cea9733cf11e56b85ec58a9118627a21ed0dc5457411bdeb873e7a711871bcd7dcea3eb4934dcae8a569148924b78b11e7a193e2150d7c4c1d67dec2e57fd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.29.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.28.0 (2023-12-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.30.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::AppIntegrationsService
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::AppIntegrationsService
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::AppIntegrationsService
337
346
  # @option options [Aws::AppIntegrationsService::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::AppIntegrationsService::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -1563,7 +1587,7 @@ module Aws::AppIntegrationsService
1563
1587
  params: params,
1564
1588
  config: config)
1565
1589
  context[:gem_name] = 'aws-sdk-appintegrationsservice'
1566
- context[:gem_version] = '1.28.0'
1590
+ context[:gem_version] = '1.30.0'
1567
1591
  Seahorse::Client::Request.new(handlers, context)
1568
1592
  end
1569
1593
 
@@ -14,6 +14,7 @@ module Aws::AppIntegrationsService
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::AppIntegrationsService::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appintegrationsservice/customizations'
52
52
  # @!group service
53
53
  module Aws::AppIntegrationsService
54
54
 
55
- GEM_VERSION = '1.28.0'
55
+ GEM_VERSION = '1.30.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,403 @@
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
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CreateApplicationResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateApplicationResponse]
77
+ def arn: () -> ::String
78
+ def id: () -> ::String
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#create_application-instance_method
81
+ def create_application: (
82
+ name: ::String,
83
+ namespace: ::String,
84
+ ?description: ::String,
85
+ application_source_config: {
86
+ external_url_config: {
87
+ access_url: ::String,
88
+ approved_origins: Array[::String]?
89
+ }?
90
+ },
91
+ ?subscriptions: Array[
92
+ {
93
+ event: ::String,
94
+ description: ::String?
95
+ },
96
+ ],
97
+ ?publications: Array[
98
+ {
99
+ event: ::String,
100
+ schema: ::String,
101
+ description: ::String?
102
+ },
103
+ ],
104
+ ?client_token: ::String,
105
+ ?tags: Hash[::String, ::String],
106
+ ?permissions: Array[::String]
107
+ ) -> _CreateApplicationResponseSuccess
108
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
109
+
110
+ interface _CreateDataIntegrationResponseSuccess
111
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataIntegrationResponse]
112
+ def arn: () -> ::String
113
+ def id: () -> ::String
114
+ def name: () -> ::String
115
+ def description: () -> ::String
116
+ def kms_key: () -> ::String
117
+ def source_uri: () -> ::String
118
+ def schedule_configuration: () -> Types::ScheduleConfiguration
119
+ def tags: () -> ::Hash[::String, ::String]
120
+ def client_token: () -> ::String
121
+ def file_configuration: () -> Types::FileConfiguration
122
+ def object_configuration: () -> ::Hash[::String, ::Hash[::String, ::Array[::String]]]
123
+ end
124
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#create_data_integration-instance_method
125
+ def create_data_integration: (
126
+ name: ::String,
127
+ ?description: ::String,
128
+ kms_key: ::String,
129
+ source_uri: ::String,
130
+ ?schedule_config: {
131
+ first_execution_from: ::String?,
132
+ object: ::String?,
133
+ schedule_expression: ::String
134
+ },
135
+ ?tags: Hash[::String, ::String],
136
+ ?client_token: ::String,
137
+ ?file_configuration: {
138
+ folders: Array[::String],
139
+ filters: Hash[::String, Array[::String]]?
140
+ },
141
+ ?object_configuration: Hash[::String, Hash[::String, Array[::String]]]
142
+ ) -> _CreateDataIntegrationResponseSuccess
143
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataIntegrationResponseSuccess
144
+
145
+ interface _CreateEventIntegrationResponseSuccess
146
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventIntegrationResponse]
147
+ def event_integration_arn: () -> ::String
148
+ end
149
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#create_event_integration-instance_method
150
+ def create_event_integration: (
151
+ name: ::String,
152
+ ?description: ::String,
153
+ event_filter: {
154
+ source: ::String
155
+ },
156
+ event_bridge_bus: ::String,
157
+ ?client_token: ::String,
158
+ ?tags: Hash[::String, ::String]
159
+ ) -> _CreateEventIntegrationResponseSuccess
160
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventIntegrationResponseSuccess
161
+
162
+ interface _DeleteApplicationResponseSuccess
163
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationResponse]
164
+ end
165
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#delete_application-instance_method
166
+ def delete_application: (
167
+ arn: ::String
168
+ ) -> _DeleteApplicationResponseSuccess
169
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationResponseSuccess
170
+
171
+ interface _DeleteDataIntegrationResponseSuccess
172
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataIntegrationResponse]
173
+ end
174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#delete_data_integration-instance_method
175
+ def delete_data_integration: (
176
+ data_integration_identifier: ::String
177
+ ) -> _DeleteDataIntegrationResponseSuccess
178
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataIntegrationResponseSuccess
179
+
180
+ interface _DeleteEventIntegrationResponseSuccess
181
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEventIntegrationResponse]
182
+ end
183
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#delete_event_integration-instance_method
184
+ def delete_event_integration: (
185
+ name: ::String
186
+ ) -> _DeleteEventIntegrationResponseSuccess
187
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEventIntegrationResponseSuccess
188
+
189
+ interface _GetApplicationResponseSuccess
190
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetApplicationResponse]
191
+ def arn: () -> ::String
192
+ def id: () -> ::String
193
+ def name: () -> ::String
194
+ def namespace: () -> ::String
195
+ def description: () -> ::String
196
+ def application_source_config: () -> Types::ApplicationSourceConfig
197
+ def subscriptions: () -> ::Array[Types::Subscription]
198
+ def publications: () -> ::Array[Types::Publication]
199
+ def created_time: () -> ::Time
200
+ def last_modified_time: () -> ::Time
201
+ def tags: () -> ::Hash[::String, ::String]
202
+ def permissions: () -> ::Array[::String]
203
+ end
204
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#get_application-instance_method
205
+ def get_application: (
206
+ arn: ::String
207
+ ) -> _GetApplicationResponseSuccess
208
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApplicationResponseSuccess
209
+
210
+ interface _GetDataIntegrationResponseSuccess
211
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataIntegrationResponse]
212
+ def arn: () -> ::String
213
+ def id: () -> ::String
214
+ def name: () -> ::String
215
+ def description: () -> ::String
216
+ def kms_key: () -> ::String
217
+ def source_uri: () -> ::String
218
+ def schedule_configuration: () -> Types::ScheduleConfiguration
219
+ def tags: () -> ::Hash[::String, ::String]
220
+ def file_configuration: () -> Types::FileConfiguration
221
+ def object_configuration: () -> ::Hash[::String, ::Hash[::String, ::Array[::String]]]
222
+ end
223
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#get_data_integration-instance_method
224
+ def get_data_integration: (
225
+ identifier: ::String
226
+ ) -> _GetDataIntegrationResponseSuccess
227
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataIntegrationResponseSuccess
228
+
229
+ interface _GetEventIntegrationResponseSuccess
230
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEventIntegrationResponse]
231
+ def name: () -> ::String
232
+ def description: () -> ::String
233
+ def event_integration_arn: () -> ::String
234
+ def event_bridge_bus: () -> ::String
235
+ def event_filter: () -> Types::EventFilter
236
+ def tags: () -> ::Hash[::String, ::String]
237
+ end
238
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#get_event_integration-instance_method
239
+ def get_event_integration: (
240
+ name: ::String
241
+ ) -> _GetEventIntegrationResponseSuccess
242
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEventIntegrationResponseSuccess
243
+
244
+ interface _ListApplicationAssociationsResponseSuccess
245
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationAssociationsResponse]
246
+ def application_associations: () -> ::Array[Types::ApplicationAssociationSummary]
247
+ def next_token: () -> ::String
248
+ end
249
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#list_application_associations-instance_method
250
+ def list_application_associations: (
251
+ application_id: ::String,
252
+ ?next_token: ::String,
253
+ ?max_results: ::Integer
254
+ ) -> _ListApplicationAssociationsResponseSuccess
255
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationAssociationsResponseSuccess
256
+
257
+ interface _ListApplicationsResponseSuccess
258
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationsResponse]
259
+ def applications: () -> ::Array[Types::ApplicationSummary]
260
+ def next_token: () -> ::String
261
+ end
262
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#list_applications-instance_method
263
+ def list_applications: (
264
+ ?next_token: ::String,
265
+ ?max_results: ::Integer
266
+ ) -> _ListApplicationsResponseSuccess
267
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
268
+
269
+ interface _ListDataIntegrationAssociationsResponseSuccess
270
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataIntegrationAssociationsResponse]
271
+ def data_integration_associations: () -> ::Array[Types::DataIntegrationAssociationSummary]
272
+ def next_token: () -> ::String
273
+ end
274
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#list_data_integration_associations-instance_method
275
+ def list_data_integration_associations: (
276
+ data_integration_identifier: ::String,
277
+ ?next_token: ::String,
278
+ ?max_results: ::Integer
279
+ ) -> _ListDataIntegrationAssociationsResponseSuccess
280
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataIntegrationAssociationsResponseSuccess
281
+
282
+ interface _ListDataIntegrationsResponseSuccess
283
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataIntegrationsResponse]
284
+ def data_integrations: () -> ::Array[Types::DataIntegrationSummary]
285
+ def next_token: () -> ::String
286
+ end
287
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#list_data_integrations-instance_method
288
+ def list_data_integrations: (
289
+ ?next_token: ::String,
290
+ ?max_results: ::Integer
291
+ ) -> _ListDataIntegrationsResponseSuccess
292
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataIntegrationsResponseSuccess
293
+
294
+ interface _ListEventIntegrationAssociationsResponseSuccess
295
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEventIntegrationAssociationsResponse]
296
+ def event_integration_associations: () -> ::Array[Types::EventIntegrationAssociation]
297
+ def next_token: () -> ::String
298
+ end
299
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#list_event_integration_associations-instance_method
300
+ def list_event_integration_associations: (
301
+ event_integration_name: ::String,
302
+ ?next_token: ::String,
303
+ ?max_results: ::Integer
304
+ ) -> _ListEventIntegrationAssociationsResponseSuccess
305
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventIntegrationAssociationsResponseSuccess
306
+
307
+ interface _ListEventIntegrationsResponseSuccess
308
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEventIntegrationsResponse]
309
+ def event_integrations: () -> ::Array[Types::EventIntegration]
310
+ def next_token: () -> ::String
311
+ end
312
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#list_event_integrations-instance_method
313
+ def list_event_integrations: (
314
+ ?next_token: ::String,
315
+ ?max_results: ::Integer
316
+ ) -> _ListEventIntegrationsResponseSuccess
317
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventIntegrationsResponseSuccess
318
+
319
+ interface _ListTagsForResourceResponseSuccess
320
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
321
+ def tags: () -> ::Hash[::String, ::String]
322
+ end
323
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#list_tags_for_resource-instance_method
324
+ def list_tags_for_resource: (
325
+ resource_arn: ::String
326
+ ) -> _ListTagsForResourceResponseSuccess
327
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
328
+
329
+ interface _TagResourceResponseSuccess
330
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
331
+ end
332
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#tag_resource-instance_method
333
+ def tag_resource: (
334
+ resource_arn: ::String,
335
+ tags: Hash[::String, ::String]
336
+ ) -> _TagResourceResponseSuccess
337
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
338
+
339
+ interface _UntagResourceResponseSuccess
340
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
341
+ end
342
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#untag_resource-instance_method
343
+ def untag_resource: (
344
+ resource_arn: ::String,
345
+ tag_keys: Array[::String]
346
+ ) -> _UntagResourceResponseSuccess
347
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
348
+
349
+ interface _UpdateApplicationResponseSuccess
350
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApplicationResponse]
351
+ end
352
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#update_application-instance_method
353
+ def update_application: (
354
+ arn: ::String,
355
+ ?name: ::String,
356
+ ?description: ::String,
357
+ ?application_source_config: {
358
+ external_url_config: {
359
+ access_url: ::String,
360
+ approved_origins: Array[::String]?
361
+ }?
362
+ },
363
+ ?subscriptions: Array[
364
+ {
365
+ event: ::String,
366
+ description: ::String?
367
+ },
368
+ ],
369
+ ?publications: Array[
370
+ {
371
+ event: ::String,
372
+ schema: ::String,
373
+ description: ::String?
374
+ },
375
+ ],
376
+ ?permissions: Array[::String]
377
+ ) -> _UpdateApplicationResponseSuccess
378
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
379
+
380
+ interface _UpdateDataIntegrationResponseSuccess
381
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataIntegrationResponse]
382
+ end
383
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#update_data_integration-instance_method
384
+ def update_data_integration: (
385
+ identifier: ::String,
386
+ ?name: ::String,
387
+ ?description: ::String
388
+ ) -> _UpdateDataIntegrationResponseSuccess
389
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataIntegrationResponseSuccess
390
+
391
+ interface _UpdateEventIntegrationResponseSuccess
392
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEventIntegrationResponse]
393
+ end
394
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#update_event_integration-instance_method
395
+ def update_event_integration: (
396
+ name: ::String,
397
+ ?description: ::String
398
+ ) -> _UpdateEventIntegrationResponseSuccess
399
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEventIntegrationResponseSuccess
400
+ end
401
+ end
402
+ end
403
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,40 @@
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 Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class DuplicateResourceException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class InternalServiceError < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class InvalidRequestException < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class ResourceQuotaExceededException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ end
32
+ class ThrottlingException < ::Aws::Errors::ServiceError
33
+ def message: () -> ::String
34
+ end
35
+ class UnsupportedOperationException < ::Aws::Errors::ServiceError
36
+ def message: () -> ::String
37
+ end
38
+ end
39
+ end
40
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,79 @@
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
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> void
72
+ | (?Hash[Symbol, untyped]) -> void
73
+
74
+ def client: () -> Client
75
+
76
+
77
+ end
78
+ end
79
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,421 @@
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::AppIntegrationsService
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ApplicationAssociationSummary
17
+ attr_accessor application_association_arn: ::String
18
+ attr_accessor application_arn: ::String
19
+ attr_accessor client_id: ::String
20
+ SENSITIVE: []
21
+ end
22
+
23
+ class ApplicationSourceConfig
24
+ attr_accessor external_url_config: Types::ExternalUrlConfig
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class ApplicationSummary
29
+ attr_accessor arn: ::String
30
+ attr_accessor id: ::String
31
+ attr_accessor name: ::String
32
+ attr_accessor namespace: ::String
33
+ attr_accessor created_time: ::Time
34
+ attr_accessor last_modified_time: ::Time
35
+ SENSITIVE: []
36
+ end
37
+
38
+ class CreateApplicationRequest
39
+ attr_accessor name: ::String
40
+ attr_accessor namespace: ::String
41
+ attr_accessor description: ::String
42
+ attr_accessor application_source_config: Types::ApplicationSourceConfig
43
+ attr_accessor subscriptions: ::Array[Types::Subscription]
44
+ attr_accessor publications: ::Array[Types::Publication]
45
+ attr_accessor client_token: ::String
46
+ attr_accessor tags: ::Hash[::String, ::String]
47
+ attr_accessor permissions: ::Array[::String]
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class CreateApplicationResponse
52
+ attr_accessor arn: ::String
53
+ attr_accessor id: ::String
54
+ SENSITIVE: []
55
+ end
56
+
57
+ class CreateDataIntegrationRequest
58
+ attr_accessor name: ::String
59
+ attr_accessor description: ::String
60
+ attr_accessor kms_key: ::String
61
+ attr_accessor source_uri: ::String
62
+ attr_accessor schedule_config: Types::ScheduleConfiguration
63
+ attr_accessor tags: ::Hash[::String, ::String]
64
+ attr_accessor client_token: ::String
65
+ attr_accessor file_configuration: Types::FileConfiguration
66
+ attr_accessor object_configuration: ::Hash[::String, ::Hash[::String, ::Array[::String]]]
67
+ SENSITIVE: []
68
+ end
69
+
70
+ class CreateDataIntegrationResponse
71
+ attr_accessor arn: ::String
72
+ attr_accessor id: ::String
73
+ attr_accessor name: ::String
74
+ attr_accessor description: ::String
75
+ attr_accessor kms_key: ::String
76
+ attr_accessor source_uri: ::String
77
+ attr_accessor schedule_configuration: Types::ScheduleConfiguration
78
+ attr_accessor tags: ::Hash[::String, ::String]
79
+ attr_accessor client_token: ::String
80
+ attr_accessor file_configuration: Types::FileConfiguration
81
+ attr_accessor object_configuration: ::Hash[::String, ::Hash[::String, ::Array[::String]]]
82
+ SENSITIVE: []
83
+ end
84
+
85
+ class CreateEventIntegrationRequest
86
+ attr_accessor name: ::String
87
+ attr_accessor description: ::String
88
+ attr_accessor event_filter: Types::EventFilter
89
+ attr_accessor event_bridge_bus: ::String
90
+ attr_accessor client_token: ::String
91
+ attr_accessor tags: ::Hash[::String, ::String]
92
+ SENSITIVE: []
93
+ end
94
+
95
+ class CreateEventIntegrationResponse
96
+ attr_accessor event_integration_arn: ::String
97
+ SENSITIVE: []
98
+ end
99
+
100
+ class DataIntegrationAssociationSummary
101
+ attr_accessor data_integration_association_arn: ::String
102
+ attr_accessor data_integration_arn: ::String
103
+ attr_accessor client_id: ::String
104
+ SENSITIVE: []
105
+ end
106
+
107
+ class DataIntegrationSummary
108
+ attr_accessor arn: ::String
109
+ attr_accessor name: ::String
110
+ attr_accessor source_uri: ::String
111
+ SENSITIVE: []
112
+ end
113
+
114
+ class DeleteApplicationRequest
115
+ attr_accessor arn: ::String
116
+ SENSITIVE: []
117
+ end
118
+
119
+ class DeleteApplicationResponse < Aws::EmptyStructure
120
+ end
121
+
122
+ class DeleteDataIntegrationRequest
123
+ attr_accessor data_integration_identifier: ::String
124
+ SENSITIVE: []
125
+ end
126
+
127
+ class DeleteDataIntegrationResponse < Aws::EmptyStructure
128
+ end
129
+
130
+ class DeleteEventIntegrationRequest
131
+ attr_accessor name: ::String
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class DeleteEventIntegrationResponse < Aws::EmptyStructure
136
+ end
137
+
138
+ class DuplicateResourceException
139
+ attr_accessor message: ::String
140
+ SENSITIVE: []
141
+ end
142
+
143
+ class EventFilter
144
+ attr_accessor source: ::String
145
+ SENSITIVE: []
146
+ end
147
+
148
+ class EventIntegration
149
+ attr_accessor event_integration_arn: ::String
150
+ attr_accessor name: ::String
151
+ attr_accessor description: ::String
152
+ attr_accessor event_filter: Types::EventFilter
153
+ attr_accessor event_bridge_bus: ::String
154
+ attr_accessor tags: ::Hash[::String, ::String]
155
+ SENSITIVE: []
156
+ end
157
+
158
+ class EventIntegrationAssociation
159
+ attr_accessor event_integration_association_arn: ::String
160
+ attr_accessor event_integration_association_id: ::String
161
+ attr_accessor event_integration_name: ::String
162
+ attr_accessor client_id: ::String
163
+ attr_accessor event_bridge_rule_name: ::String
164
+ attr_accessor client_association_metadata: ::Hash[::String, ::String]
165
+ SENSITIVE: []
166
+ end
167
+
168
+ class ExternalUrlConfig
169
+ attr_accessor access_url: ::String
170
+ attr_accessor approved_origins: ::Array[::String]
171
+ SENSITIVE: []
172
+ end
173
+
174
+ class FileConfiguration
175
+ attr_accessor folders: ::Array[::String]
176
+ attr_accessor filters: ::Hash[::String, ::Array[::String]]
177
+ SENSITIVE: []
178
+ end
179
+
180
+ class GetApplicationRequest
181
+ attr_accessor arn: ::String
182
+ SENSITIVE: []
183
+ end
184
+
185
+ class GetApplicationResponse
186
+ attr_accessor arn: ::String
187
+ attr_accessor id: ::String
188
+ attr_accessor name: ::String
189
+ attr_accessor namespace: ::String
190
+ attr_accessor description: ::String
191
+ attr_accessor application_source_config: Types::ApplicationSourceConfig
192
+ attr_accessor subscriptions: ::Array[Types::Subscription]
193
+ attr_accessor publications: ::Array[Types::Publication]
194
+ attr_accessor created_time: ::Time
195
+ attr_accessor last_modified_time: ::Time
196
+ attr_accessor tags: ::Hash[::String, ::String]
197
+ attr_accessor permissions: ::Array[::String]
198
+ SENSITIVE: []
199
+ end
200
+
201
+ class GetDataIntegrationRequest
202
+ attr_accessor identifier: ::String
203
+ SENSITIVE: []
204
+ end
205
+
206
+ class GetDataIntegrationResponse
207
+ attr_accessor arn: ::String
208
+ attr_accessor id: ::String
209
+ attr_accessor name: ::String
210
+ attr_accessor description: ::String
211
+ attr_accessor kms_key: ::String
212
+ attr_accessor source_uri: ::String
213
+ attr_accessor schedule_configuration: Types::ScheduleConfiguration
214
+ attr_accessor tags: ::Hash[::String, ::String]
215
+ attr_accessor file_configuration: Types::FileConfiguration
216
+ attr_accessor object_configuration: ::Hash[::String, ::Hash[::String, ::Array[::String]]]
217
+ SENSITIVE: []
218
+ end
219
+
220
+ class GetEventIntegrationRequest
221
+ attr_accessor name: ::String
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class GetEventIntegrationResponse
226
+ attr_accessor name: ::String
227
+ attr_accessor description: ::String
228
+ attr_accessor event_integration_arn: ::String
229
+ attr_accessor event_bridge_bus: ::String
230
+ attr_accessor event_filter: Types::EventFilter
231
+ attr_accessor tags: ::Hash[::String, ::String]
232
+ SENSITIVE: []
233
+ end
234
+
235
+ class InternalServiceError
236
+ attr_accessor message: ::String
237
+ SENSITIVE: []
238
+ end
239
+
240
+ class InvalidRequestException
241
+ attr_accessor message: ::String
242
+ SENSITIVE: []
243
+ end
244
+
245
+ class ListApplicationAssociationsRequest
246
+ attr_accessor application_id: ::String
247
+ attr_accessor next_token: ::String
248
+ attr_accessor max_results: ::Integer
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class ListApplicationAssociationsResponse
253
+ attr_accessor application_associations: ::Array[Types::ApplicationAssociationSummary]
254
+ attr_accessor next_token: ::String
255
+ SENSITIVE: []
256
+ end
257
+
258
+ class ListApplicationsRequest
259
+ attr_accessor next_token: ::String
260
+ attr_accessor max_results: ::Integer
261
+ SENSITIVE: []
262
+ end
263
+
264
+ class ListApplicationsResponse
265
+ attr_accessor applications: ::Array[Types::ApplicationSummary]
266
+ attr_accessor next_token: ::String
267
+ SENSITIVE: []
268
+ end
269
+
270
+ class ListDataIntegrationAssociationsRequest
271
+ attr_accessor data_integration_identifier: ::String
272
+ attr_accessor next_token: ::String
273
+ attr_accessor max_results: ::Integer
274
+ SENSITIVE: []
275
+ end
276
+
277
+ class ListDataIntegrationAssociationsResponse
278
+ attr_accessor data_integration_associations: ::Array[Types::DataIntegrationAssociationSummary]
279
+ attr_accessor next_token: ::String
280
+ SENSITIVE: []
281
+ end
282
+
283
+ class ListDataIntegrationsRequest
284
+ attr_accessor next_token: ::String
285
+ attr_accessor max_results: ::Integer
286
+ SENSITIVE: []
287
+ end
288
+
289
+ class ListDataIntegrationsResponse
290
+ attr_accessor data_integrations: ::Array[Types::DataIntegrationSummary]
291
+ attr_accessor next_token: ::String
292
+ SENSITIVE: []
293
+ end
294
+
295
+ class ListEventIntegrationAssociationsRequest
296
+ attr_accessor event_integration_name: ::String
297
+ attr_accessor next_token: ::String
298
+ attr_accessor max_results: ::Integer
299
+ SENSITIVE: []
300
+ end
301
+
302
+ class ListEventIntegrationAssociationsResponse
303
+ attr_accessor event_integration_associations: ::Array[Types::EventIntegrationAssociation]
304
+ attr_accessor next_token: ::String
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class ListEventIntegrationsRequest
309
+ attr_accessor next_token: ::String
310
+ attr_accessor max_results: ::Integer
311
+ SENSITIVE: []
312
+ end
313
+
314
+ class ListEventIntegrationsResponse
315
+ attr_accessor event_integrations: ::Array[Types::EventIntegration]
316
+ attr_accessor next_token: ::String
317
+ SENSITIVE: []
318
+ end
319
+
320
+ class ListTagsForResourceRequest
321
+ attr_accessor resource_arn: ::String
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class ListTagsForResourceResponse
326
+ attr_accessor tags: ::Hash[::String, ::String]
327
+ SENSITIVE: []
328
+ end
329
+
330
+ class Publication
331
+ attr_accessor event: ::String
332
+ attr_accessor schema: ::String
333
+ attr_accessor description: ::String
334
+ SENSITIVE: []
335
+ end
336
+
337
+ class ResourceNotFoundException
338
+ attr_accessor message: ::String
339
+ SENSITIVE: []
340
+ end
341
+
342
+ class ResourceQuotaExceededException
343
+ attr_accessor message: ::String
344
+ SENSITIVE: []
345
+ end
346
+
347
+ class ScheduleConfiguration
348
+ attr_accessor first_execution_from: ::String
349
+ attr_accessor object: ::String
350
+ attr_accessor schedule_expression: ::String
351
+ SENSITIVE: []
352
+ end
353
+
354
+ class Subscription
355
+ attr_accessor event: ::String
356
+ attr_accessor description: ::String
357
+ SENSITIVE: []
358
+ end
359
+
360
+ class TagResourceRequest
361
+ attr_accessor resource_arn: ::String
362
+ attr_accessor tags: ::Hash[::String, ::String]
363
+ SENSITIVE: []
364
+ end
365
+
366
+ class TagResourceResponse < Aws::EmptyStructure
367
+ end
368
+
369
+ class ThrottlingException
370
+ attr_accessor message: ::String
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class UnsupportedOperationException
375
+ attr_accessor message: ::String
376
+ SENSITIVE: []
377
+ end
378
+
379
+ class UntagResourceRequest
380
+ attr_accessor resource_arn: ::String
381
+ attr_accessor tag_keys: ::Array[::String]
382
+ SENSITIVE: []
383
+ end
384
+
385
+ class UntagResourceResponse < Aws::EmptyStructure
386
+ end
387
+
388
+ class UpdateApplicationRequest
389
+ attr_accessor arn: ::String
390
+ attr_accessor name: ::String
391
+ attr_accessor description: ::String
392
+ attr_accessor application_source_config: Types::ApplicationSourceConfig
393
+ attr_accessor subscriptions: ::Array[Types::Subscription]
394
+ attr_accessor publications: ::Array[Types::Publication]
395
+ attr_accessor permissions: ::Array[::String]
396
+ SENSITIVE: []
397
+ end
398
+
399
+ class UpdateApplicationResponse < Aws::EmptyStructure
400
+ end
401
+
402
+ class UpdateDataIntegrationRequest
403
+ attr_accessor identifier: ::String
404
+ attr_accessor name: ::String
405
+ attr_accessor description: ::String
406
+ SENSITIVE: []
407
+ end
408
+
409
+ class UpdateDataIntegrationResponse < Aws::EmptyStructure
410
+ end
411
+
412
+ class UpdateEventIntegrationRequest
413
+ attr_accessor name: ::String
414
+ attr_accessor description: ::String
415
+ SENSITIVE: []
416
+ end
417
+
418
+ class UpdateEventIntegrationResponse < Aws::EmptyStructure
419
+ end
420
+ end
421
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
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 Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appintegrationsservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.28.0
4
+ version: 1.30.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-21 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.188.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.188.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-appintegrationsservice/plugins/endpoints.rb
67
67
  - lib/aws-sdk-appintegrationsservice/resource.rb
68
68
  - lib/aws-sdk-appintegrationsservice/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appintegrationsservice
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appintegrationsservice/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - Amazon AppIntegrations Service
94
99
  test_files: []