aws-sdk-appintegrationsservice 1.27.0 → 1.29.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appintegrationsservice/client.rb +117 -1
- data/lib/aws-sdk-appintegrationsservice/client_api.rb +82 -10
- data/lib/aws-sdk-appintegrationsservice/endpoints.rb +28 -0
- data/lib/aws-sdk-appintegrationsservice/errors.rb +16 -0
- data/lib/aws-sdk-appintegrationsservice/plugins/endpoints.rb +5 -0
- data/lib/aws-sdk-appintegrationsservice/types.rb +117 -3
- data/lib/aws-sdk-appintegrationsservice.rb +1 -1
- data/sig/client.rbs +403 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +421 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
@@ -23,6 +23,31 @@ module Aws::AppIntegrationsService
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
+
# Summary information about the Application Association.
|
27
|
+
#
|
28
|
+
# @!attribute [rw] application_association_arn
|
29
|
+
# The Amazon Resource Name (ARN) of the Application Association.
|
30
|
+
# @return [String]
|
31
|
+
#
|
32
|
+
# @!attribute [rw] application_arn
|
33
|
+
# The Amazon Resource Name (ARN) of the Application.
|
34
|
+
# @return [String]
|
35
|
+
#
|
36
|
+
# @!attribute [rw] client_id
|
37
|
+
# The identifier for the client that is associated with the
|
38
|
+
# Application Association.
|
39
|
+
# @return [String]
|
40
|
+
#
|
41
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ApplicationAssociationSummary AWS API Documentation
|
42
|
+
#
|
43
|
+
class ApplicationAssociationSummary < Struct.new(
|
44
|
+
:application_association_arn,
|
45
|
+
:application_arn,
|
46
|
+
:client_id)
|
47
|
+
SENSITIVE = []
|
48
|
+
include Aws::Structure
|
49
|
+
end
|
50
|
+
|
26
51
|
# The configuration for where the application should be loaded from.
|
27
52
|
#
|
28
53
|
# @!attribute [rw] external_url_config
|
@@ -120,6 +145,11 @@ module Aws::AppIntegrationsService
|
|
120
145
|
# "key2":"value2"\\} \\}.
|
121
146
|
# @return [Hash<String,String>]
|
122
147
|
#
|
148
|
+
# @!attribute [rw] permissions
|
149
|
+
# The configuration of events or requests that the application has
|
150
|
+
# access to.
|
151
|
+
# @return [Array<String>]
|
152
|
+
#
|
123
153
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateApplicationRequest AWS API Documentation
|
124
154
|
#
|
125
155
|
class CreateApplicationRequest < Struct.new(
|
@@ -130,7 +160,8 @@ module Aws::AppIntegrationsService
|
|
130
160
|
:subscriptions,
|
131
161
|
:publications,
|
132
162
|
:client_token,
|
133
|
-
:tags
|
163
|
+
:tags,
|
164
|
+
:permissions)
|
134
165
|
SENSITIVE = []
|
135
166
|
include Aws::Structure
|
136
167
|
end
|
@@ -399,6 +430,22 @@ module Aws::AppIntegrationsService
|
|
399
430
|
include Aws::Structure
|
400
431
|
end
|
401
432
|
|
433
|
+
# @!attribute [rw] arn
|
434
|
+
# The Amazon Resource Name (ARN) of the Application.
|
435
|
+
# @return [String]
|
436
|
+
#
|
437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteApplicationRequest AWS API Documentation
|
438
|
+
#
|
439
|
+
class DeleteApplicationRequest < Struct.new(
|
440
|
+
:arn)
|
441
|
+
SENSITIVE = []
|
442
|
+
include Aws::Structure
|
443
|
+
end
|
444
|
+
|
445
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteApplicationResponse AWS API Documentation
|
446
|
+
#
|
447
|
+
class DeleteApplicationResponse < Aws::EmptyStructure; end
|
448
|
+
|
402
449
|
# @!attribute [rw] data_integration_identifier
|
403
450
|
# A unique identifier for the DataIntegration.
|
404
451
|
# @return [String]
|
@@ -637,6 +684,11 @@ module Aws::AppIntegrationsService
|
|
637
684
|
# "key2":"value2"\\} \\}.
|
638
685
|
# @return [Hash<String,String>]
|
639
686
|
#
|
687
|
+
# @!attribute [rw] permissions
|
688
|
+
# The configuration of events or requests that the application has
|
689
|
+
# access to.
|
690
|
+
# @return [Array<String>]
|
691
|
+
#
|
640
692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetApplicationResponse AWS API Documentation
|
641
693
|
#
|
642
694
|
class GetApplicationResponse < Struct.new(
|
@@ -650,7 +702,8 @@ module Aws::AppIntegrationsService
|
|
650
702
|
:publications,
|
651
703
|
:created_time,
|
652
704
|
:last_modified_time,
|
653
|
-
:tags
|
705
|
+
:tags,
|
706
|
+
:permissions)
|
654
707
|
SENSITIVE = []
|
655
708
|
include Aws::Structure
|
656
709
|
end
|
@@ -804,6 +857,48 @@ module Aws::AppIntegrationsService
|
|
804
857
|
include Aws::Structure
|
805
858
|
end
|
806
859
|
|
860
|
+
# @!attribute [rw] application_id
|
861
|
+
# A unique identifier for the Application.
|
862
|
+
# @return [String]
|
863
|
+
#
|
864
|
+
# @!attribute [rw] next_token
|
865
|
+
# The token for the next set of results. Use the value returned in the
|
866
|
+
# previous response in the next request to retrieve the next set of
|
867
|
+
# results.
|
868
|
+
# @return [String]
|
869
|
+
#
|
870
|
+
# @!attribute [rw] max_results
|
871
|
+
# The maximum number of results to return per page.
|
872
|
+
# @return [Integer]
|
873
|
+
#
|
874
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListApplicationAssociationsRequest AWS API Documentation
|
875
|
+
#
|
876
|
+
class ListApplicationAssociationsRequest < Struct.new(
|
877
|
+
:application_id,
|
878
|
+
:next_token,
|
879
|
+
:max_results)
|
880
|
+
SENSITIVE = []
|
881
|
+
include Aws::Structure
|
882
|
+
end
|
883
|
+
|
884
|
+
# @!attribute [rw] application_associations
|
885
|
+
# List of Application Associations for the Application.
|
886
|
+
# @return [Array<Types::ApplicationAssociationSummary>]
|
887
|
+
#
|
888
|
+
# @!attribute [rw] next_token
|
889
|
+
# If there are additional results, this is the token for the next set
|
890
|
+
# of results.
|
891
|
+
# @return [String]
|
892
|
+
#
|
893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListApplicationAssociationsResponse AWS API Documentation
|
894
|
+
#
|
895
|
+
class ListApplicationAssociationsResponse < Struct.new(
|
896
|
+
:application_associations,
|
897
|
+
:next_token)
|
898
|
+
SENSITIVE = []
|
899
|
+
include Aws::Structure
|
900
|
+
end
|
901
|
+
|
807
902
|
# @!attribute [rw] next_token
|
808
903
|
# The token for the next set of results. Use the value returned in the
|
809
904
|
# previous response in the next request to retrieve the next set of
|
@@ -1155,6 +1250,19 @@ module Aws::AppIntegrationsService
|
|
1155
1250
|
include Aws::Structure
|
1156
1251
|
end
|
1157
1252
|
|
1253
|
+
# The operation is not supported.
|
1254
|
+
#
|
1255
|
+
# @!attribute [rw] message
|
1256
|
+
# @return [String]
|
1257
|
+
#
|
1258
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UnsupportedOperationException AWS API Documentation
|
1259
|
+
#
|
1260
|
+
class UnsupportedOperationException < Struct.new(
|
1261
|
+
:message)
|
1262
|
+
SENSITIVE = []
|
1263
|
+
include Aws::Structure
|
1264
|
+
end
|
1265
|
+
|
1158
1266
|
# @!attribute [rw] resource_arn
|
1159
1267
|
# The Amazon Resource Name (ARN) of the resource.
|
1160
1268
|
# @return [String]
|
@@ -1200,6 +1308,11 @@ module Aws::AppIntegrationsService
|
|
1200
1308
|
# The events that the application publishes.
|
1201
1309
|
# @return [Array<Types::Publication>]
|
1202
1310
|
#
|
1311
|
+
# @!attribute [rw] permissions
|
1312
|
+
# The configuration of events or requests that the application has
|
1313
|
+
# access to.
|
1314
|
+
# @return [Array<String>]
|
1315
|
+
#
|
1203
1316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateApplicationRequest AWS API Documentation
|
1204
1317
|
#
|
1205
1318
|
class UpdateApplicationRequest < Struct.new(
|
@@ -1208,7 +1321,8 @@ module Aws::AppIntegrationsService
|
|
1208
1321
|
:description,
|
1209
1322
|
:application_source_config,
|
1210
1323
|
:subscriptions,
|
1211
|
-
:publications
|
1324
|
+
:publications,
|
1325
|
+
:permissions)
|
1212
1326
|
SENSITIVE = []
|
1213
1327
|
include Aws::Structure
|
1214
1328
|
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
|