aws-sdk-scheduler 1.45.0 → 1.47.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: 6ffdc8235dfa4abf841f549f23e0924115ae2d15e28cf03e58bc262d6ef7a1fd
4
- data.tar.gz: b7f011d4000ccbdcaa865927ab9bca2b279a43f3be939cb75b5bc6d30b9221c0
3
+ metadata.gz: 960d247e3d07f0723e42c2c0553024617ae57aef06248b47a90a18f2dc64813e
4
+ data.tar.gz: a0a9be9abc15f1510e9bf8db656e4589cdbde6a699da86555e191edb6104c454
5
5
  SHA512:
6
- metadata.gz: 0cc4a9827ac8b75045e3fcf4f4832b2fc70c099981cd661ce74f87160f353f313e9e96db1febacc3e13626375735a2e59ef75f6f6b5595d112c765dca1452527
7
- data.tar.gz: 95b226faa072e45d9240dd6a333af90a14698839572527358e55f07ec62d8f637cc3ba94d0ca933fe1060773396d3bb4d089d8a413fc19fc1a4049ab00c6d4a4
6
+ metadata.gz: c6a4474d19726c9735b1014188a705610ec75da023f5f87f40d1ee4ddf46402266d954f2f144dac6de63b61d1d61d2a0d221b02ce711fa625bfa55b5353399bb
7
+ data.tar.gz: 439b4f3edffe5079c173cdfa4cca5cc3a8a8965908067bc421ffdacecbb543ce3443b2a56850947b87c954534dd4d243c759d7c684a1d59aad0a6d161b5ae488
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.46.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.45.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.47.0
@@ -199,7 +199,7 @@ module Aws::Scheduler
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::Scheduler
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -1365,7 +1363,7 @@ module Aws::Scheduler
1365
1363
  tracer: tracer
1366
1364
  )
1367
1365
  context[:gem_name] = 'aws-sdk-scheduler'
1368
- context[:gem_version] = '1.45.0'
1366
+ context[:gem_version] = '1.47.0'
1369
1367
  Seahorse::Client::Request.new(handlers, context)
1370
1368
  end
1371
1369
 
@@ -54,7 +54,7 @@ module Aws::Scheduler
54
54
  autoload :EndpointProvider, 'aws-sdk-scheduler/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-scheduler/endpoints'
56
56
 
57
- GEM_VERSION = '1.45.0'
57
+ GEM_VERSION = '1.47.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -99,76 +99,7 @@ module Aws
99
99
  ?schedule_expression_timezone: ::String,
100
100
  ?start_date: ::Time,
101
101
  ?state: ("ENABLED" | "DISABLED"),
102
- target: {
103
- arn: ::String,
104
- dead_letter_config: {
105
- arn: ::String?
106
- }?,
107
- ecs_parameters: {
108
- capacity_provider_strategy: Array[
109
- {
110
- base: ::Integer?,
111
- capacity_provider: ::String,
112
- weight: ::Integer?
113
- },
114
- ]?,
115
- enable_ecs_managed_tags: bool?,
116
- enable_execute_command: bool?,
117
- group: ::String?,
118
- launch_type: ("EC2" | "FARGATE" | "EXTERNAL")?,
119
- network_configuration: {
120
- awsvpc_configuration: {
121
- assign_public_ip: ("ENABLED" | "DISABLED")?,
122
- security_groups: Array[::String]?,
123
- subnets: Array[::String]
124
- }?
125
- }?,
126
- placement_constraints: Array[
127
- {
128
- expression: ::String?,
129
- type: ("distinctInstance" | "memberOf")?
130
- },
131
- ]?,
132
- placement_strategy: Array[
133
- {
134
- field: ::String?,
135
- type: ("random" | "spread" | "binpack")?
136
- },
137
- ]?,
138
- platform_version: ::String?,
139
- propagate_tags: ("TASK_DEFINITION")?,
140
- reference_id: ::String?,
141
- tags: Array[
142
- Hash[::String, ::String],
143
- ]?,
144
- task_count: ::Integer?,
145
- task_definition_arn: ::String
146
- }?,
147
- event_bridge_parameters: {
148
- detail_type: ::String,
149
- source: ::String
150
- }?,
151
- input: ::String?,
152
- kinesis_parameters: {
153
- partition_key: ::String
154
- }?,
155
- retry_policy: {
156
- maximum_event_age_in_seconds: ::Integer?,
157
- maximum_retry_attempts: ::Integer?
158
- }?,
159
- role_arn: ::String,
160
- sage_maker_pipeline_parameters: {
161
- pipeline_parameter_list: Array[
162
- {
163
- name: ::String,
164
- value: ::String
165
- },
166
- ]?
167
- }?,
168
- sqs_parameters: {
169
- message_group_id: ::String?
170
- }?
171
- }
102
+ target: Params::target
172
103
  ) -> _CreateScheduleResponseSuccess
173
104
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateScheduleResponseSuccess
174
105
 
@@ -184,7 +115,7 @@ module Aws
184
115
  {
185
116
  key: ::String,
186
117
  value: ::String
187
- },
118
+ }
188
119
  ]
189
120
  ) -> _CreateScheduleGroupResponseSuccess
190
121
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateScheduleGroupResponseSuccess
@@ -297,7 +228,7 @@ module Aws
297
228
  {
298
229
  key: ::String,
299
230
  value: ::String
300
- },
231
+ }
301
232
  ]
302
233
  ) -> _TagResourceResponseSuccess
303
234
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
@@ -333,76 +264,7 @@ module Aws
333
264
  ?schedule_expression_timezone: ::String,
334
265
  ?start_date: ::Time,
335
266
  ?state: ("ENABLED" | "DISABLED"),
336
- target: {
337
- arn: ::String,
338
- dead_letter_config: {
339
- arn: ::String?
340
- }?,
341
- ecs_parameters: {
342
- capacity_provider_strategy: Array[
343
- {
344
- base: ::Integer?,
345
- capacity_provider: ::String,
346
- weight: ::Integer?
347
- },
348
- ]?,
349
- enable_ecs_managed_tags: bool?,
350
- enable_execute_command: bool?,
351
- group: ::String?,
352
- launch_type: ("EC2" | "FARGATE" | "EXTERNAL")?,
353
- network_configuration: {
354
- awsvpc_configuration: {
355
- assign_public_ip: ("ENABLED" | "DISABLED")?,
356
- security_groups: Array[::String]?,
357
- subnets: Array[::String]
358
- }?
359
- }?,
360
- placement_constraints: Array[
361
- {
362
- expression: ::String?,
363
- type: ("distinctInstance" | "memberOf")?
364
- },
365
- ]?,
366
- placement_strategy: Array[
367
- {
368
- field: ::String?,
369
- type: ("random" | "spread" | "binpack")?
370
- },
371
- ]?,
372
- platform_version: ::String?,
373
- propagate_tags: ("TASK_DEFINITION")?,
374
- reference_id: ::String?,
375
- tags: Array[
376
- Hash[::String, ::String],
377
- ]?,
378
- task_count: ::Integer?,
379
- task_definition_arn: ::String
380
- }?,
381
- event_bridge_parameters: {
382
- detail_type: ::String,
383
- source: ::String
384
- }?,
385
- input: ::String?,
386
- kinesis_parameters: {
387
- partition_key: ::String
388
- }?,
389
- retry_policy: {
390
- maximum_event_age_in_seconds: ::Integer?,
391
- maximum_retry_attempts: ::Integer?
392
- }?,
393
- role_arn: ::String,
394
- sage_maker_pipeline_parameters: {
395
- pipeline_parameter_list: Array[
396
- {
397
- name: ::String,
398
- value: ::String
399
- },
400
- ]?
401
- }?,
402
- sqs_parameters: {
403
- message_group_id: ::String?
404
- }?
405
- }
267
+ target: Params::target
406
268
  ) -> _UpdateScheduleResponseSuccess
407
269
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateScheduleResponseSuccess
408
270
  end
data/sig/params.rbs ADDED
@@ -0,0 +1,86 @@
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 Scheduler
10
+ module Params
11
+ type ecs_parameters = {
12
+ capacity_provider_strategy: Array[
13
+ {
14
+ base: ::Integer?,
15
+ capacity_provider: ::String,
16
+ weight: ::Integer?
17
+ }
18
+ ]?,
19
+ enable_ecs_managed_tags: bool?,
20
+ enable_execute_command: bool?,
21
+ group: ::String?,
22
+ launch_type: ("EC2" | "FARGATE" | "EXTERNAL")?,
23
+ network_configuration: {
24
+ awsvpc_configuration: {
25
+ assign_public_ip: ("ENABLED" | "DISABLED")?,
26
+ security_groups: Array[::String]?,
27
+ subnets: Array[::String]
28
+ }?
29
+ }?,
30
+ placement_constraints: Array[
31
+ {
32
+ expression: ::String?,
33
+ type: ("distinctInstance" | "memberOf")?
34
+ }
35
+ ]?,
36
+ placement_strategy: Array[
37
+ {
38
+ field: ::String?,
39
+ type: ("random" | "spread" | "binpack")?
40
+ }
41
+ ]?,
42
+ platform_version: ::String?,
43
+ propagate_tags: ("TASK_DEFINITION")?,
44
+ reference_id: ::String?,
45
+ tags: Array[
46
+ Hash[::String, ::String]
47
+ ]?,
48
+ task_count: ::Integer?,
49
+ task_definition_arn: ::String
50
+ }
51
+
52
+ type target = {
53
+ arn: ::String,
54
+ dead_letter_config: {
55
+ arn: ::String?
56
+ }?,
57
+ ecs_parameters: Params::ecs_parameters?,
58
+ event_bridge_parameters: {
59
+ detail_type: ::String,
60
+ source: ::String
61
+ }?,
62
+ input: ::String?,
63
+ kinesis_parameters: {
64
+ partition_key: ::String
65
+ }?,
66
+ retry_policy: {
67
+ maximum_event_age_in_seconds: ::Integer?,
68
+ maximum_retry_attempts: ::Integer?
69
+ }?,
70
+ role_arn: ::String,
71
+ sage_maker_pipeline_parameters: {
72
+ pipeline_parameter_list: Array[
73
+ {
74
+ name: ::String,
75
+ value: ::String
76
+ }
77
+ ]?
78
+ }?,
79
+ sqs_parameters: {
80
+ message_group_id: ::String?
81
+ }?
82
+ }
83
+
84
+ end
85
+ end
86
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-scheduler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.45.0
4
+ version: 1.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-scheduler/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