aws-sdk-eventbridge 1.73.0 → 1.74.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-eventbridge/client.rb +195 -50
- data/lib/aws-sdk-eventbridge/client_api.rb +36 -0
- data/lib/aws-sdk-eventbridge/errors.rb +22 -0
- data/lib/aws-sdk-eventbridge/types.rb +472 -135
- data/lib/aws-sdk-eventbridge.rb +1 -1
- data/sig/client.rbs +27 -6
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +40 -7
- metadata +2 -2
data/lib/aws-sdk-eventbridge.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -132,7 +132,7 @@ module Aws
|
|
132
132
|
interface _CreateConnectionResponseSuccess
|
133
133
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectionResponse]
|
134
134
|
def connection_arn: () -> ::String
|
135
|
-
def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
|
135
|
+
def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
136
136
|
def creation_time: () -> ::Time
|
137
137
|
def last_modified_time: () -> ::Time
|
138
138
|
end
|
@@ -203,7 +203,17 @@ module Aws
|
|
203
203
|
is_value_secret: bool?
|
204
204
|
},
|
205
205
|
]?
|
206
|
+
}?,
|
207
|
+
connectivity_parameters: {
|
208
|
+
resource_parameters: {
|
209
|
+
resource_configuration_arn: ::String
|
210
|
+
}
|
206
211
|
}?
|
212
|
+
},
|
213
|
+
?invocation_connectivity_parameters: {
|
214
|
+
resource_parameters: {
|
215
|
+
resource_configuration_arn: ::String
|
216
|
+
}
|
207
217
|
}
|
208
218
|
) -> _CreateConnectionResponseSuccess
|
209
219
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionResponseSuccess
|
@@ -289,7 +299,7 @@ module Aws
|
|
289
299
|
interface _DeauthorizeConnectionResponseSuccess
|
290
300
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeauthorizeConnectionResponse]
|
291
301
|
def connection_arn: () -> ::String
|
292
|
-
def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
|
302
|
+
def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
293
303
|
def creation_time: () -> ::Time
|
294
304
|
def last_modified_time: () -> ::Time
|
295
305
|
def last_authorized_time: () -> ::Time
|
@@ -321,7 +331,7 @@ module Aws
|
|
321
331
|
interface _DeleteConnectionResponseSuccess
|
322
332
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectionResponse]
|
323
333
|
def connection_arn: () -> ::String
|
324
|
-
def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
|
334
|
+
def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
325
335
|
def creation_time: () -> ::Time
|
326
336
|
def last_modified_time: () -> ::Time
|
327
337
|
def last_authorized_time: () -> ::Time
|
@@ -406,7 +416,8 @@ module Aws
|
|
406
416
|
def connection_arn: () -> ::String
|
407
417
|
def name: () -> ::String
|
408
418
|
def description: () -> ::String
|
409
|
-
def
|
419
|
+
def invocation_connectivity_parameters: () -> Types::DescribeConnectionConnectivityParameters
|
420
|
+
def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
410
421
|
def state_reason: () -> ::String
|
411
422
|
def authorization_type: () -> ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
|
412
423
|
def secret_arn: () -> ::String
|
@@ -579,7 +590,7 @@ module Aws
|
|
579
590
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_connections-instance_method
|
580
591
|
def list_connections: (
|
581
592
|
?name_prefix: ::String,
|
582
|
-
?connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING"),
|
593
|
+
?connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY"),
|
583
594
|
?next_token: ::String,
|
584
595
|
?limit: ::Integer
|
585
596
|
) -> _ListConnectionsResponseSuccess
|
@@ -1036,7 +1047,7 @@ module Aws
|
|
1036
1047
|
interface _UpdateConnectionResponseSuccess
|
1037
1048
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectionResponse]
|
1038
1049
|
def connection_arn: () -> ::String
|
1039
|
-
def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
|
1050
|
+
def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
1040
1051
|
def creation_time: () -> ::Time
|
1041
1052
|
def last_modified_time: () -> ::Time
|
1042
1053
|
def last_authorized_time: () -> ::Time
|
@@ -1108,7 +1119,17 @@ module Aws
|
|
1108
1119
|
is_value_secret: bool?
|
1109
1120
|
},
|
1110
1121
|
]?
|
1122
|
+
}?,
|
1123
|
+
connectivity_parameters: {
|
1124
|
+
resource_parameters: {
|
1125
|
+
resource_configuration_arn: ::String
|
1126
|
+
}
|
1111
1127
|
}?
|
1128
|
+
},
|
1129
|
+
?invocation_connectivity_parameters: {
|
1130
|
+
resource_parameters: {
|
1131
|
+
resource_configuration_arn: ::String
|
1132
|
+
}
|
1112
1133
|
}
|
1113
1134
|
) -> _UpdateConnectionResponseSuccess
|
1114
1135
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionResponseSuccess
|
data/sig/errors.rbs
CHANGED
@@ -11,6 +11,8 @@ module Aws
|
|
11
11
|
class ServiceError < ::Aws::Errors::ServiceError
|
12
12
|
end
|
13
13
|
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
end
|
14
16
|
class ConcurrentModificationException < ::Aws::Errors::ServiceError
|
15
17
|
end
|
16
18
|
class IllegalStatusException < ::Aws::Errors::ServiceError
|
@@ -33,6 +35,8 @@ module Aws
|
|
33
35
|
end
|
34
36
|
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
35
37
|
end
|
38
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
39
|
+
end
|
36
40
|
end
|
37
41
|
end
|
38
42
|
end
|
data/sig/types.rbs
CHANGED
@@ -8,6 +8,9 @@
|
|
8
8
|
module Aws::EventBridge
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AccessDeniedException < Aws::EmptyStructure
|
12
|
+
end
|
13
|
+
|
11
14
|
class ActivateEventSourceRequest
|
12
15
|
attr_accessor name: ::String
|
13
16
|
SENSITIVE: []
|
@@ -100,7 +103,7 @@ module Aws::EventBridge
|
|
100
103
|
class Connection
|
101
104
|
attr_accessor connection_arn: ::String
|
102
105
|
attr_accessor name: ::String
|
103
|
-
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
|
106
|
+
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
104
107
|
attr_accessor state_reason: ::String
|
105
108
|
attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
|
106
109
|
attr_accessor creation_time: ::Time
|
@@ -119,6 +122,7 @@ module Aws::EventBridge
|
|
119
122
|
attr_accessor o_auth_parameters: Types::ConnectionOAuthResponseParameters
|
120
123
|
attr_accessor api_key_auth_parameters: Types::ConnectionApiKeyAuthResponseParameters
|
121
124
|
attr_accessor invocation_http_parameters: Types::ConnectionHttpParameters
|
125
|
+
attr_accessor connectivity_parameters: Types::DescribeConnectionConnectivityParameters
|
122
126
|
SENSITIVE: []
|
123
127
|
end
|
124
128
|
|
@@ -168,6 +172,16 @@ module Aws::EventBridge
|
|
168
172
|
SENSITIVE: [:value]
|
169
173
|
end
|
170
174
|
|
175
|
+
class ConnectivityResourceConfigurationArn
|
176
|
+
attr_accessor resource_configuration_arn: ::String
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class ConnectivityResourceParameters
|
181
|
+
attr_accessor resource_parameters: Types::ConnectivityResourceConfigurationArn
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
171
185
|
class CreateApiDestinationRequest
|
172
186
|
attr_accessor name: ::String
|
173
187
|
attr_accessor description: ::String
|
@@ -214,6 +228,7 @@ module Aws::EventBridge
|
|
214
228
|
attr_accessor o_auth_parameters: Types::CreateConnectionOAuthRequestParameters
|
215
229
|
attr_accessor api_key_auth_parameters: Types::CreateConnectionApiKeyAuthRequestParameters
|
216
230
|
attr_accessor invocation_http_parameters: Types::ConnectionHttpParameters
|
231
|
+
attr_accessor connectivity_parameters: Types::ConnectivityResourceParameters
|
217
232
|
SENSITIVE: []
|
218
233
|
end
|
219
234
|
|
@@ -242,12 +257,13 @@ module Aws::EventBridge
|
|
242
257
|
attr_accessor description: ::String
|
243
258
|
attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
|
244
259
|
attr_accessor auth_parameters: Types::CreateConnectionAuthRequestParameters
|
260
|
+
attr_accessor invocation_connectivity_parameters: Types::ConnectivityResourceParameters
|
245
261
|
SENSITIVE: []
|
246
262
|
end
|
247
263
|
|
248
264
|
class CreateConnectionResponse
|
249
265
|
attr_accessor connection_arn: ::String
|
250
|
-
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
|
266
|
+
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
251
267
|
attr_accessor creation_time: ::Time
|
252
268
|
attr_accessor last_modified_time: ::Time
|
253
269
|
SENSITIVE: []
|
@@ -320,7 +336,7 @@ module Aws::EventBridge
|
|
320
336
|
|
321
337
|
class DeauthorizeConnectionResponse
|
322
338
|
attr_accessor connection_arn: ::String
|
323
|
-
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
|
339
|
+
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
324
340
|
attr_accessor creation_time: ::Time
|
325
341
|
attr_accessor last_modified_time: ::Time
|
326
342
|
attr_accessor last_authorized_time: ::Time
|
@@ -350,7 +366,7 @@ module Aws::EventBridge
|
|
350
366
|
|
351
367
|
class DeleteConnectionResponse
|
352
368
|
attr_accessor connection_arn: ::String
|
353
|
-
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
|
369
|
+
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
354
370
|
attr_accessor creation_time: ::Time
|
355
371
|
attr_accessor last_modified_time: ::Time
|
356
372
|
attr_accessor last_authorized_time: ::Time
|
@@ -422,16 +438,28 @@ module Aws::EventBridge
|
|
422
438
|
SENSITIVE: []
|
423
439
|
end
|
424
440
|
|
441
|
+
class DescribeConnectionConnectivityParameters
|
442
|
+
attr_accessor resource_parameters: Types::DescribeConnectionResourceParameters
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
425
446
|
class DescribeConnectionRequest
|
426
447
|
attr_accessor name: ::String
|
427
448
|
SENSITIVE: []
|
428
449
|
end
|
429
450
|
|
451
|
+
class DescribeConnectionResourceParameters
|
452
|
+
attr_accessor resource_configuration_arn: ::String
|
453
|
+
attr_accessor resource_association_arn: ::String
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
430
457
|
class DescribeConnectionResponse
|
431
458
|
attr_accessor connection_arn: ::String
|
432
459
|
attr_accessor name: ::String
|
433
460
|
attr_accessor description: ::String
|
434
|
-
attr_accessor
|
461
|
+
attr_accessor invocation_connectivity_parameters: Types::DescribeConnectionConnectivityParameters
|
462
|
+
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
435
463
|
attr_accessor state_reason: ::String
|
436
464
|
attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
|
437
465
|
attr_accessor secret_arn: ::String
|
@@ -691,7 +719,7 @@ module Aws::EventBridge
|
|
691
719
|
|
692
720
|
class ListConnectionsRequest
|
693
721
|
attr_accessor name_prefix: ::String
|
694
|
-
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
|
722
|
+
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
695
723
|
attr_accessor next_token: ::String
|
696
724
|
attr_accessor limit: ::Integer
|
697
725
|
SENSITIVE: []
|
@@ -1175,6 +1203,9 @@ module Aws::EventBridge
|
|
1175
1203
|
SENSITIVE: []
|
1176
1204
|
end
|
1177
1205
|
|
1206
|
+
class ThrottlingException < Aws::EmptyStructure
|
1207
|
+
end
|
1208
|
+
|
1178
1209
|
class UntagResourceRequest
|
1179
1210
|
attr_accessor resource_arn: ::String
|
1180
1211
|
attr_accessor tag_keys: ::Array[::String]
|
@@ -1229,6 +1260,7 @@ module Aws::EventBridge
|
|
1229
1260
|
attr_accessor o_auth_parameters: Types::UpdateConnectionOAuthRequestParameters
|
1230
1261
|
attr_accessor api_key_auth_parameters: Types::UpdateConnectionApiKeyAuthRequestParameters
|
1231
1262
|
attr_accessor invocation_http_parameters: Types::ConnectionHttpParameters
|
1263
|
+
attr_accessor connectivity_parameters: Types::ConnectivityResourceParameters
|
1232
1264
|
SENSITIVE: []
|
1233
1265
|
end
|
1234
1266
|
|
@@ -1257,12 +1289,13 @@ module Aws::EventBridge
|
|
1257
1289
|
attr_accessor description: ::String
|
1258
1290
|
attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
|
1259
1291
|
attr_accessor auth_parameters: Types::UpdateConnectionAuthRequestParameters
|
1292
|
+
attr_accessor invocation_connectivity_parameters: Types::ConnectivityResourceParameters
|
1260
1293
|
SENSITIVE: []
|
1261
1294
|
end
|
1262
1295
|
|
1263
1296
|
class UpdateConnectionResponse
|
1264
1297
|
attr_accessor connection_arn: ::String
|
1265
|
-
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
|
1298
|
+
attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING" | "ACTIVE" | "FAILED_CONNECTIVITY")
|
1266
1299
|
attr_accessor creation_time: ::Time
|
1267
1300
|
attr_accessor last_modified_time: ::Time
|
1268
1301
|
attr_accessor last_authorized_time: ::Time
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-eventbridge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.74.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|