aws-sdk-vpclattice 1.47.0 → 1.48.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: 6e8cee1c662774e4a8fc60f152936c89d0a3944d3d40e7dc83411f32b7d25d78
4
- data.tar.gz: c95c38c4d1a2db8a67f147b502a2db2e5be6ad9c1f42d2602d6579c5055fbbc3
3
+ metadata.gz: 6e7cc8c4033e158a1a54b8aabf56228a5d7f8553c6d229b2cdf859916c190e38
4
+ data.tar.gz: 7ca1f1e85e4f99406e40334074312edc654257a7b0adba3020fcdc43ebf4ffbd
5
5
  SHA512:
6
- metadata.gz: 7cc7faf4eab5826d4509c976a427b66017e460ed63e6f6a0de830b1827cd7c3f8dcdc25f9705f32a1034269eeed6859925bd9fd9097bd819cf28c981a533c333
7
- data.tar.gz: 6457b59f7210a7ef6e392533dd6e8bb50e3f746f5aadf012e971a0cded6f227360335269723004db283e3e8096198e5fb8f305430e47a853ab7107c98a01cc0b
6
+ metadata.gz: b10c707bdefcfdef1c5a9444053ad106e38ccc3f61d1ddc5cc95ac416d618a3cc1fdaf485c4dcd673db6b4513ec99d49d942f9781e535b7d0104324c139a0dcf
7
+ data.tar.gz: dacccb316bb7abfff5ec2a8fe92c259ccce2d07c4f2f8bab9e258de7c552725a52d008248346d4be6800e81abc78c005c256e9a463f56dccebde9cf41caae58e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.47.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
@@ -4643,7 +4643,7 @@ module Aws::VPCLattice
4643
4643
  tracer: tracer
4644
4644
  )
4645
4645
  context[:gem_name] = 'aws-sdk-vpclattice'
4646
- context[:gem_version] = '1.47.0'
4646
+ context[:gem_version] = '1.48.0'
4647
4647
  Seahorse::Client::Request.new(handlers, context)
4648
4648
  end
4649
4649
 
@@ -55,7 +55,7 @@ module Aws::VPCLattice
55
55
  autoload :EndpointProvider, 'aws-sdk-vpclattice/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-vpclattice/endpoints'
57
57
 
58
- GEM_VERSION = '1.47.0'
58
+ GEM_VERSION = '1.48.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -90,44 +90,10 @@ module Aws
90
90
  rules: Array[
91
91
  {
92
92
  rule_identifier: ::String,
93
- match: {
94
- http_match: {
95
- method: ::String?,
96
- path_match: {
97
- match: {
98
- exact: ::String?,
99
- prefix: ::String?
100
- },
101
- case_sensitive: bool?
102
- }?,
103
- header_matches: Array[
104
- {
105
- name: ::String,
106
- match: {
107
- exact: ::String?,
108
- prefix: ::String?,
109
- contains: ::String?
110
- },
111
- case_sensitive: bool?
112
- },
113
- ]?
114
- }?
115
- }?,
93
+ match: Params::rule_match?,
116
94
  priority: ::Integer?,
117
- action: {
118
- forward: {
119
- target_groups: Array[
120
- {
121
- target_group_identifier: ::String,
122
- weight: ::Integer?
123
- },
124
- ]
125
- }?,
126
- fixed_response: {
127
- status_code: ::Integer
128
- }?
129
- }?
130
- },
95
+ action: Params::rule_action?
96
+ }
131
97
  ]
132
98
  ) -> _BatchUpdateRuleResponseSuccess
133
99
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpdateRuleResponseSuccess
@@ -168,19 +134,7 @@ module Aws
168
134
  name: ::String,
169
135
  protocol: ("HTTP" | "HTTPS" | "TLS_PASSTHROUGH"),
170
136
  ?port: ::Integer,
171
- default_action: {
172
- forward: {
173
- target_groups: Array[
174
- {
175
- target_group_identifier: ::String,
176
- weight: ::Integer?
177
- },
178
- ]
179
- }?,
180
- fixed_response: {
181
- status_code: ::Integer
182
- }?
183
- },
137
+ default_action: Params::rule_action,
184
138
  ?client_token: ::String,
185
139
  ?tags: Hash[::String, ::String]
186
140
  ) -> _CreateListenerResponseSuccess
@@ -214,18 +168,7 @@ module Aws
214
168
  ?protocol: ("TCP"),
215
169
  ?resource_gateway_identifier: ::String,
216
170
  ?resource_configuration_group_identifier: ::String,
217
- ?resource_configuration_definition: {
218
- dns_resource: {
219
- domain_name: ::String?,
220
- ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")?
221
- }?,
222
- ip_resource: {
223
- ip_address: ::String?
224
- }?,
225
- arn_resource: {
226
- arn: ::String?
227
- }?
228
- },
171
+ ?resource_configuration_definition: Params::resource_configuration_definition,
229
172
  ?allow_association_to_shareable_service_network: bool,
230
173
  ?custom_domain_name: ::String,
231
174
  ?group_domain: ::String,
@@ -276,43 +219,9 @@ module Aws
276
219
  service_identifier: ::String,
277
220
  listener_identifier: ::String,
278
221
  name: ::String,
279
- match: {
280
- http_match: {
281
- method: ::String?,
282
- path_match: {
283
- match: {
284
- exact: ::String?,
285
- prefix: ::String?
286
- },
287
- case_sensitive: bool?
288
- }?,
289
- header_matches: Array[
290
- {
291
- name: ::String,
292
- match: {
293
- exact: ::String?,
294
- prefix: ::String?,
295
- contains: ::String?
296
- },
297
- case_sensitive: bool?
298
- },
299
- ]?
300
- }?
301
- },
222
+ match: Params::rule_match,
302
223
  priority: ::Integer,
303
- action: {
304
- forward: {
305
- target_groups: Array[
306
- {
307
- target_group_identifier: ::String,
308
- weight: ::Integer?
309
- },
310
- ]
311
- }?,
312
- fixed_response: {
313
- status_code: ::Integer
314
- }?
315
- },
224
+ action: Params::rule_action,
316
225
  ?client_token: ::String,
317
226
  ?tags: Hash[::String, ::String]
318
227
  ) -> _CreateRuleResponseSuccess
@@ -440,20 +349,7 @@ module Aws
440
349
  protocol_version: ("HTTP1" | "HTTP2" | "GRPC")?,
441
350
  ip_address_type: ("IPV4" | "IPV6")?,
442
351
  vpc_identifier: ::String?,
443
- health_check: {
444
- enabled: bool?,
445
- protocol: ("HTTP" | "HTTPS" | "TCP")?,
446
- protocol_version: ("HTTP1" | "HTTP2")?,
447
- port: ::Integer?,
448
- path: ::String?,
449
- health_check_interval_seconds: ::Integer?,
450
- health_check_timeout_seconds: ::Integer?,
451
- healthy_threshold_count: ::Integer?,
452
- unhealthy_threshold_count: ::Integer?,
453
- matcher: {
454
- http_code: ::String?
455
- }?
456
- }?,
352
+ health_check: Params::health_check_config?,
457
353
  lambda_event_structure_version: ("V1" | "V2")?
458
354
  },
459
355
  ?client_token: ::String,
@@ -636,7 +532,7 @@ module Aws
636
532
  {
637
533
  id: ::String,
638
534
  port: ::Integer?
639
- },
535
+ }
640
536
  ]
641
537
  ) -> _DeregisterTargetsResponseSuccess
642
538
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterTargetsResponseSuccess
@@ -1138,7 +1034,7 @@ module Aws
1138
1034
  {
1139
1035
  id: ::String,
1140
1036
  port: ::Integer?
1141
- },
1037
+ }
1142
1038
  ]
1143
1039
  ) -> _ListTargetsResponseSuccess
1144
1040
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTargetsResponseSuccess
@@ -1177,7 +1073,7 @@ module Aws
1177
1073
  {
1178
1074
  id: ::String,
1179
1075
  port: ::Integer?
1180
- },
1076
+ }
1181
1077
  ]
1182
1078
  ) -> _RegisterTargetsResponseSuccess
1183
1079
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterTargetsResponseSuccess
@@ -1248,19 +1144,7 @@ module Aws
1248
1144
  def update_listener: (
1249
1145
  service_identifier: ::String,
1250
1146
  listener_identifier: ::String,
1251
- default_action: {
1252
- forward: {
1253
- target_groups: Array[
1254
- {
1255
- target_group_identifier: ::String,
1256
- weight: ::Integer?
1257
- },
1258
- ]
1259
- }?,
1260
- fixed_response: {
1261
- status_code: ::Integer
1262
- }?
1263
- }
1147
+ default_action: Params::rule_action
1264
1148
  ) -> _UpdateListenerResponseSuccess
1265
1149
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateListenerResponseSuccess
1266
1150
 
@@ -1281,18 +1165,7 @@ module Aws
1281
1165
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_resource_configuration-instance_method
1282
1166
  def update_resource_configuration: (
1283
1167
  resource_configuration_identifier: ::String,
1284
- ?resource_configuration_definition: {
1285
- dns_resource: {
1286
- domain_name: ::String?,
1287
- ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")?
1288
- }?,
1289
- ip_resource: {
1290
- ip_address: ::String?
1291
- }?,
1292
- arn_resource: {
1293
- arn: ::String?
1294
- }?
1295
- },
1168
+ ?resource_configuration_definition: Params::resource_configuration_definition,
1296
1169
  ?allow_association_to_shareable_service_network: bool,
1297
1170
  ?port_ranges: Array[::String]
1298
1171
  ) -> _UpdateResourceConfigurationResponseSuccess
@@ -1331,43 +1204,9 @@ module Aws
1331
1204
  service_identifier: ::String,
1332
1205
  listener_identifier: ::String,
1333
1206
  rule_identifier: ::String,
1334
- ?match: {
1335
- http_match: {
1336
- method: ::String?,
1337
- path_match: {
1338
- match: {
1339
- exact: ::String?,
1340
- prefix: ::String?
1341
- },
1342
- case_sensitive: bool?
1343
- }?,
1344
- header_matches: Array[
1345
- {
1346
- name: ::String,
1347
- match: {
1348
- exact: ::String?,
1349
- prefix: ::String?,
1350
- contains: ::String?
1351
- },
1352
- case_sensitive: bool?
1353
- },
1354
- ]?
1355
- }?
1356
- },
1207
+ ?match: Params::rule_match,
1357
1208
  ?priority: ::Integer,
1358
- ?action: {
1359
- forward: {
1360
- target_groups: Array[
1361
- {
1362
- target_group_identifier: ::String,
1363
- weight: ::Integer?
1364
- },
1365
- ]
1366
- }?,
1367
- fixed_response: {
1368
- status_code: ::Integer
1369
- }?
1370
- }
1209
+ ?action: Params::rule_action
1371
1210
  ) -> _UpdateRuleResponseSuccess
1372
1211
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRuleResponseSuccess
1373
1212
 
@@ -1429,20 +1268,7 @@ module Aws
1429
1268
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_target_group-instance_method
1430
1269
  def update_target_group: (
1431
1270
  target_group_identifier: ::String,
1432
- health_check: {
1433
- enabled: bool?,
1434
- protocol: ("HTTP" | "HTTPS" | "TCP")?,
1435
- protocol_version: ("HTTP1" | "HTTP2")?,
1436
- port: ::Integer?,
1437
- path: ::String?,
1438
- health_check_interval_seconds: ::Integer?,
1439
- health_check_timeout_seconds: ::Integer?,
1440
- healthy_threshold_count: ::Integer?,
1441
- unhealthy_threshold_count: ::Integer?,
1442
- matcher: {
1443
- http_code: ::String?
1444
- }?
1445
- }
1271
+ health_check: Params::health_check_config
1446
1272
  ) -> _UpdateTargetGroupResponseSuccess
1447
1273
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTargetGroupResponseSuccess
1448
1274
  end
data/sig/params.rbs ADDED
@@ -0,0 +1,83 @@
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 VPCLattice
10
+ module Params
11
+ type http_match = {
12
+ method: ::String?,
13
+ path_match: {
14
+ match: {
15
+ exact: ::String?,
16
+ prefix: ::String?
17
+ },
18
+ case_sensitive: bool?
19
+ }?,
20
+ header_matches: Array[
21
+ Params::header_match
22
+ ]?
23
+ }
24
+
25
+ type rule_match = {
26
+ http_match: Params::http_match?
27
+ }
28
+
29
+ type header_match = {
30
+ name: ::String,
31
+ match: {
32
+ exact: ::String?,
33
+ prefix: ::String?,
34
+ contains: ::String?
35
+ },
36
+ case_sensitive: bool?
37
+ }
38
+
39
+ type rule_action = {
40
+ forward: {
41
+ target_groups: Array[
42
+ {
43
+ target_group_identifier: ::String,
44
+ weight: ::Integer?
45
+ }
46
+ ]
47
+ }?,
48
+ fixed_response: {
49
+ status_code: ::Integer
50
+ }?
51
+ }
52
+
53
+ type resource_configuration_definition = {
54
+ dns_resource: {
55
+ domain_name: ::String?,
56
+ ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")?
57
+ }?,
58
+ ip_resource: {
59
+ ip_address: ::String?
60
+ }?,
61
+ arn_resource: {
62
+ arn: ::String?
63
+ }?
64
+ }
65
+
66
+ type health_check_config = {
67
+ enabled: bool?,
68
+ protocol: ("HTTP" | "HTTPS" | "TCP")?,
69
+ protocol_version: ("HTTP1" | "HTTP2")?,
70
+ port: ::Integer?,
71
+ path: ::String?,
72
+ health_check_interval_seconds: ::Integer?,
73
+ health_check_timeout_seconds: ::Integer?,
74
+ healthy_threshold_count: ::Integer?,
75
+ unhealthy_threshold_count: ::Integer?,
76
+ matcher: {
77
+ http_code: ::String?
78
+ }?
79
+ }
80
+
81
+ end
82
+ end
83
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-vpclattice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.47.0
4
+ version: 1.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-vpclattice/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs