aws-sdk-eventbridge 1.98.0 → 1.99.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 +1 -1
- data/lib/aws-sdk-eventbridge.rb +1 -1
- data/sig/client.rbs +20 -126
- data/sig/params.rbs +50 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 91e7841ddb0cd859742dbf152f04f4fde0369f044a38aebfcd1b2ef5be14e8f8
|
|
4
|
+
data.tar.gz: 11da4039e97876f2dd1c8987df0323cea615c0ffe6e2a3de2263daedf1793257
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcba88123c0471ad595c06d1bd2b5fb9e80d75729be7562777a7da41966d93b9756dd1025ff260679721642b9322630df216bd40b99df63de4599a7a66fbefc5
|
|
7
|
+
data.tar.gz: 12d970562a8ae93e9a8165082b2190569ba203736e62c99701bdc549ba77659381cf782f9eb6d019de6cbb271bf4af97570277b601683abf8ee839101b5fdbd6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.99.0
|
data/lib/aws-sdk-eventbridge.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -157,57 +157,13 @@ module Aws
|
|
|
157
157
|
},
|
|
158
158
|
authorization_endpoint: ::String,
|
|
159
159
|
http_method: ("GET" | "POST" | "PUT"),
|
|
160
|
-
o_auth_http_parameters:
|
|
161
|
-
header_parameters: Array[
|
|
162
|
-
{
|
|
163
|
-
key: ::String?,
|
|
164
|
-
value: ::String?,
|
|
165
|
-
is_value_secret: bool?
|
|
166
|
-
},
|
|
167
|
-
]?,
|
|
168
|
-
query_string_parameters: Array[
|
|
169
|
-
{
|
|
170
|
-
key: ::String?,
|
|
171
|
-
value: ::String?,
|
|
172
|
-
is_value_secret: bool?
|
|
173
|
-
},
|
|
174
|
-
]?,
|
|
175
|
-
body_parameters: Array[
|
|
176
|
-
{
|
|
177
|
-
key: ::String?,
|
|
178
|
-
value: ::String?,
|
|
179
|
-
is_value_secret: bool?
|
|
180
|
-
},
|
|
181
|
-
]?
|
|
182
|
-
}?
|
|
160
|
+
o_auth_http_parameters: Params::connection_http_parameters?
|
|
183
161
|
}?,
|
|
184
162
|
api_key_auth_parameters: {
|
|
185
163
|
api_key_name: ::String,
|
|
186
164
|
api_key_value: ::String
|
|
187
165
|
}?,
|
|
188
|
-
invocation_http_parameters:
|
|
189
|
-
header_parameters: Array[
|
|
190
|
-
{
|
|
191
|
-
key: ::String?,
|
|
192
|
-
value: ::String?,
|
|
193
|
-
is_value_secret: bool?
|
|
194
|
-
},
|
|
195
|
-
]?,
|
|
196
|
-
query_string_parameters: Array[
|
|
197
|
-
{
|
|
198
|
-
key: ::String?,
|
|
199
|
-
value: ::String?,
|
|
200
|
-
is_value_secret: bool?
|
|
201
|
-
},
|
|
202
|
-
]?,
|
|
203
|
-
body_parameters: Array[
|
|
204
|
-
{
|
|
205
|
-
key: ::String?,
|
|
206
|
-
value: ::String?,
|
|
207
|
-
is_value_secret: bool?
|
|
208
|
-
},
|
|
209
|
-
]?
|
|
210
|
-
}?,
|
|
166
|
+
invocation_http_parameters: Params::connection_http_parameters?,
|
|
211
167
|
connectivity_parameters: {
|
|
212
168
|
resource_parameters: {
|
|
213
169
|
resource_configuration_arn: ::String
|
|
@@ -237,23 +193,14 @@ module Aws
|
|
|
237
193
|
def create_endpoint: (
|
|
238
194
|
name: ::String,
|
|
239
195
|
?description: ::String,
|
|
240
|
-
routing_config:
|
|
241
|
-
failover_config: {
|
|
242
|
-
primary: {
|
|
243
|
-
health_check: ::String
|
|
244
|
-
},
|
|
245
|
-
secondary: {
|
|
246
|
-
route: ::String
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
},
|
|
196
|
+
routing_config: Params::routing_config,
|
|
250
197
|
?replication_config: {
|
|
251
198
|
state: ("ENABLED" | "DISABLED")?
|
|
252
199
|
},
|
|
253
200
|
event_buses: Array[
|
|
254
201
|
{
|
|
255
202
|
event_bus_arn: ::String
|
|
256
|
-
}
|
|
203
|
+
}
|
|
257
204
|
],
|
|
258
205
|
?role_arn: ::String
|
|
259
206
|
) -> _CreateEndpointResponseSuccess
|
|
@@ -284,7 +231,7 @@ module Aws
|
|
|
284
231
|
{
|
|
285
232
|
key: ::String,
|
|
286
233
|
value: ::String
|
|
287
|
-
}
|
|
234
|
+
}
|
|
288
235
|
]
|
|
289
236
|
) -> _CreateEventBusResponseSuccess
|
|
290
237
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventBusResponseSuccess
|
|
@@ -758,7 +705,7 @@ module Aws
|
|
|
758
705
|
detail: ::String?,
|
|
759
706
|
event_bus_name: ::String?,
|
|
760
707
|
trace_header: ::String?
|
|
761
|
-
}
|
|
708
|
+
}
|
|
762
709
|
],
|
|
763
710
|
?endpoint_id: ::String
|
|
764
711
|
) -> _PutEventsResponseSuccess
|
|
@@ -778,7 +725,7 @@ module Aws
|
|
|
778
725
|
resources: Array[::String]?,
|
|
779
726
|
detail_type: ::String?,
|
|
780
727
|
detail: ::String?
|
|
781
|
-
}
|
|
728
|
+
}
|
|
782
729
|
]
|
|
783
730
|
) -> _PutPartnerEventsResponseSuccess
|
|
784
731
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutPartnerEventsResponseSuccess
|
|
@@ -814,7 +761,7 @@ module Aws
|
|
|
814
761
|
{
|
|
815
762
|
key: ::String,
|
|
816
763
|
value: ::String
|
|
817
|
-
}
|
|
764
|
+
}
|
|
818
765
|
],
|
|
819
766
|
?event_bus_name: ::String
|
|
820
767
|
) -> _PutRuleResponseSuccess
|
|
@@ -848,7 +795,7 @@ module Aws
|
|
|
848
795
|
{
|
|
849
796
|
key: ::String,
|
|
850
797
|
values: Array[::String]
|
|
851
|
-
}
|
|
798
|
+
}
|
|
852
799
|
]
|
|
853
800
|
}?,
|
|
854
801
|
ecs_parameters: {
|
|
@@ -869,7 +816,7 @@ module Aws
|
|
|
869
816
|
capacity_provider: ::String,
|
|
870
817
|
weight: ::Integer?,
|
|
871
818
|
base: ::Integer?
|
|
872
|
-
}
|
|
819
|
+
}
|
|
873
820
|
]?,
|
|
874
821
|
enable_ecs_managed_tags: bool?,
|
|
875
822
|
enable_execute_command: bool?,
|
|
@@ -877,13 +824,13 @@ module Aws
|
|
|
877
824
|
{
|
|
878
825
|
type: ("distinctInstance" | "memberOf")?,
|
|
879
826
|
expression: ::String?
|
|
880
|
-
}
|
|
827
|
+
}
|
|
881
828
|
]?,
|
|
882
829
|
placement_strategy: Array[
|
|
883
830
|
{
|
|
884
831
|
type: ("random" | "spread" | "binpack")?,
|
|
885
832
|
field: ::String?
|
|
886
|
-
}
|
|
833
|
+
}
|
|
887
834
|
]?,
|
|
888
835
|
propagate_tags: ("TASK_DEFINITION")?,
|
|
889
836
|
reference_id: ::String?,
|
|
@@ -891,7 +838,7 @@ module Aws
|
|
|
891
838
|
{
|
|
892
839
|
key: ::String,
|
|
893
840
|
value: ::String
|
|
894
|
-
}
|
|
841
|
+
}
|
|
895
842
|
]?
|
|
896
843
|
}?,
|
|
897
844
|
batch_parameters: {
|
|
@@ -926,7 +873,7 @@ module Aws
|
|
|
926
873
|
{
|
|
927
874
|
name: ::String,
|
|
928
875
|
value: ::String
|
|
929
|
-
}
|
|
876
|
+
}
|
|
930
877
|
]?
|
|
931
878
|
}?,
|
|
932
879
|
dead_letter_config: {
|
|
@@ -939,7 +886,7 @@ module Aws
|
|
|
939
886
|
app_sync_parameters: {
|
|
940
887
|
graph_ql_operation: ::String?
|
|
941
888
|
}?
|
|
942
|
-
}
|
|
889
|
+
}
|
|
943
890
|
]
|
|
944
891
|
) -> _PutTargetsResponseSuccess
|
|
945
892
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutTargetsResponseSuccess
|
|
@@ -997,7 +944,7 @@ module Aws
|
|
|
997
944
|
{
|
|
998
945
|
key: ::String,
|
|
999
946
|
value: ::String
|
|
1000
|
-
}
|
|
947
|
+
}
|
|
1001
948
|
]
|
|
1002
949
|
) -> _TagResourceResponseSuccess
|
|
1003
950
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
|
@@ -1083,57 +1030,13 @@ module Aws
|
|
|
1083
1030
|
}?,
|
|
1084
1031
|
authorization_endpoint: ::String?,
|
|
1085
1032
|
http_method: ("GET" | "POST" | "PUT")?,
|
|
1086
|
-
o_auth_http_parameters:
|
|
1087
|
-
header_parameters: Array[
|
|
1088
|
-
{
|
|
1089
|
-
key: ::String?,
|
|
1090
|
-
value: ::String?,
|
|
1091
|
-
is_value_secret: bool?
|
|
1092
|
-
},
|
|
1093
|
-
]?,
|
|
1094
|
-
query_string_parameters: Array[
|
|
1095
|
-
{
|
|
1096
|
-
key: ::String?,
|
|
1097
|
-
value: ::String?,
|
|
1098
|
-
is_value_secret: bool?
|
|
1099
|
-
},
|
|
1100
|
-
]?,
|
|
1101
|
-
body_parameters: Array[
|
|
1102
|
-
{
|
|
1103
|
-
key: ::String?,
|
|
1104
|
-
value: ::String?,
|
|
1105
|
-
is_value_secret: bool?
|
|
1106
|
-
},
|
|
1107
|
-
]?
|
|
1108
|
-
}?
|
|
1033
|
+
o_auth_http_parameters: Params::connection_http_parameters?
|
|
1109
1034
|
}?,
|
|
1110
1035
|
api_key_auth_parameters: {
|
|
1111
1036
|
api_key_name: ::String?,
|
|
1112
1037
|
api_key_value: ::String?
|
|
1113
1038
|
}?,
|
|
1114
|
-
invocation_http_parameters:
|
|
1115
|
-
header_parameters: Array[
|
|
1116
|
-
{
|
|
1117
|
-
key: ::String?,
|
|
1118
|
-
value: ::String?,
|
|
1119
|
-
is_value_secret: bool?
|
|
1120
|
-
},
|
|
1121
|
-
]?,
|
|
1122
|
-
query_string_parameters: Array[
|
|
1123
|
-
{
|
|
1124
|
-
key: ::String?,
|
|
1125
|
-
value: ::String?,
|
|
1126
|
-
is_value_secret: bool?
|
|
1127
|
-
},
|
|
1128
|
-
]?,
|
|
1129
|
-
body_parameters: Array[
|
|
1130
|
-
{
|
|
1131
|
-
key: ::String?,
|
|
1132
|
-
value: ::String?,
|
|
1133
|
-
is_value_secret: bool?
|
|
1134
|
-
},
|
|
1135
|
-
]?
|
|
1136
|
-
}?,
|
|
1039
|
+
invocation_http_parameters: Params::connection_http_parameters?,
|
|
1137
1040
|
connectivity_parameters: {
|
|
1138
1041
|
resource_parameters: {
|
|
1139
1042
|
resource_configuration_arn: ::String
|
|
@@ -1165,23 +1068,14 @@ module Aws
|
|
|
1165
1068
|
def update_endpoint: (
|
|
1166
1069
|
name: ::String,
|
|
1167
1070
|
?description: ::String,
|
|
1168
|
-
?routing_config:
|
|
1169
|
-
failover_config: {
|
|
1170
|
-
primary: {
|
|
1171
|
-
health_check: ::String
|
|
1172
|
-
},
|
|
1173
|
-
secondary: {
|
|
1174
|
-
route: ::String
|
|
1175
|
-
}
|
|
1176
|
-
}
|
|
1177
|
-
},
|
|
1071
|
+
?routing_config: Params::routing_config,
|
|
1178
1072
|
?replication_config: {
|
|
1179
1073
|
state: ("ENABLED" | "DISABLED")?
|
|
1180
1074
|
},
|
|
1181
1075
|
?event_buses: Array[
|
|
1182
1076
|
{
|
|
1183
1077
|
event_bus_arn: ::String
|
|
1184
|
-
}
|
|
1078
|
+
}
|
|
1185
1079
|
],
|
|
1186
1080
|
?role_arn: ::String
|
|
1187
1081
|
) -> _UpdateEndpointResponseSuccess
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
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 EventBridge
|
|
10
|
+
module Params
|
|
11
|
+
type connection_http_parameters = {
|
|
12
|
+
header_parameters: Array[
|
|
13
|
+
{
|
|
14
|
+
key: ::String?,
|
|
15
|
+
value: ::String?,
|
|
16
|
+
is_value_secret: bool?
|
|
17
|
+
}
|
|
18
|
+
]?,
|
|
19
|
+
query_string_parameters: Array[
|
|
20
|
+
{
|
|
21
|
+
key: ::String?,
|
|
22
|
+
value: ::String?,
|
|
23
|
+
is_value_secret: bool?
|
|
24
|
+
}
|
|
25
|
+
]?,
|
|
26
|
+
body_parameters: Array[
|
|
27
|
+
{
|
|
28
|
+
key: ::String?,
|
|
29
|
+
value: ::String?,
|
|
30
|
+
is_value_secret: bool?
|
|
31
|
+
}
|
|
32
|
+
]?
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
type failover_config = {
|
|
36
|
+
primary: {
|
|
37
|
+
health_check: ::String
|
|
38
|
+
},
|
|
39
|
+
secondary: {
|
|
40
|
+
route: ::String
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
type routing_config = {
|
|
45
|
+
failover_config: Params::failover_config
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.99.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- lib/aws-sdk-eventbridge/types.rb
|
|
68
68
|
- sig/client.rbs
|
|
69
69
|
- sig/errors.rbs
|
|
70
|
+
- sig/params.rbs
|
|
70
71
|
- sig/resource.rbs
|
|
71
72
|
- sig/types.rbs
|
|
72
73
|
- sig/waiters.rbs
|