aws-sdk-scheduler 1.12.0 → 1.14.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-scheduler/client.rb +70 -46
- data/lib/aws-sdk-scheduler/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-scheduler.rb +1 -1
- data/sig/client.rbs +405 -0
- data/sig/errors.rbs +34 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +349 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e36c43b676b2c6baea73784b8879878177f515808c9f60cf013343f7a621123a
|
4
|
+
data.tar.gz: 38c025055b8394e3424d4004ddf833b47e7984dfc38c3295257a763b3e9a50fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51ce76f6dc3f63985490e91d866920c70884b4c05a7c99c85fb07ad0659ac3e794f272e414bd921f513141a42f94bac9f1be4ee97e4ec5ea2a054f4c63a4ae2f
|
7
|
+
data.tar.gz: 7695872c2e99ac0f2ffc00118d4b53f798a368ee4b76cec589bb78bfe5252f9016f6a2f199ae9eff966d66041112dde6c8a8ccee55bbbf8addaf40848fac676d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.14.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.13.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.12.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.14.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::Scheduler
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::Scheduler
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::Scheduler
|
|
337
346
|
# @option options [Aws::Scheduler::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Scheduler::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
365
399
|
#
|
366
|
-
# @option options [
|
367
|
-
#
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
368
402
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
372
405
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
378
|
-
#
|
379
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
380
|
-
# directory that contains the unbundled SSL certificate
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -1272,7 +1296,7 @@ module Aws::Scheduler
|
|
1272
1296
|
params: params,
|
1273
1297
|
config: config)
|
1274
1298
|
context[:gem_name] = 'aws-sdk-scheduler'
|
1275
|
-
context[:gem_version] = '1.
|
1299
|
+
context[:gem_version] = '1.14.0'
|
1276
1300
|
Seahorse::Client::Request.new(handlers, context)
|
1277
1301
|
end
|
1278
1302
|
|
@@ -14,6 +14,7 @@ module Aws::Scheduler
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Scheduler::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-scheduler.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,405 @@
|
|
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
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/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 _CreateScheduleResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateScheduleOutput]
|
77
|
+
def schedule_arn: () -> ::String
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#create_schedule-instance_method
|
80
|
+
def create_schedule: (
|
81
|
+
?action_after_completion: ("NONE" | "DELETE"),
|
82
|
+
?client_token: ::String,
|
83
|
+
?description: ::String,
|
84
|
+
?end_date: ::Time,
|
85
|
+
flexible_time_window: {
|
86
|
+
maximum_window_in_minutes: ::Integer?,
|
87
|
+
mode: ("OFF" | "FLEXIBLE")
|
88
|
+
},
|
89
|
+
?group_name: ::String,
|
90
|
+
?kms_key_arn: ::String,
|
91
|
+
name: ::String,
|
92
|
+
schedule_expression: ::String,
|
93
|
+
?schedule_expression_timezone: ::String,
|
94
|
+
?start_date: ::Time,
|
95
|
+
?state: ("ENABLED" | "DISABLED"),
|
96
|
+
target: {
|
97
|
+
arn: ::String,
|
98
|
+
dead_letter_config: {
|
99
|
+
arn: ::String?
|
100
|
+
}?,
|
101
|
+
ecs_parameters: {
|
102
|
+
capacity_provider_strategy: Array[
|
103
|
+
{
|
104
|
+
base: ::Integer?,
|
105
|
+
capacity_provider: ::String,
|
106
|
+
weight: ::Integer?
|
107
|
+
},
|
108
|
+
]?,
|
109
|
+
enable_ecs_managed_tags: bool?,
|
110
|
+
enable_execute_command: bool?,
|
111
|
+
group: ::String?,
|
112
|
+
launch_type: ("EC2" | "FARGATE" | "EXTERNAL")?,
|
113
|
+
network_configuration: {
|
114
|
+
awsvpc_configuration: {
|
115
|
+
assign_public_ip: ("ENABLED" | "DISABLED")?,
|
116
|
+
security_groups: Array[::String]?,
|
117
|
+
subnets: Array[::String]
|
118
|
+
}?
|
119
|
+
}?,
|
120
|
+
placement_constraints: Array[
|
121
|
+
{
|
122
|
+
expression: ::String?,
|
123
|
+
type: ("distinctInstance" | "memberOf")?
|
124
|
+
},
|
125
|
+
]?,
|
126
|
+
placement_strategy: Array[
|
127
|
+
{
|
128
|
+
field: ::String?,
|
129
|
+
type: ("random" | "spread" | "binpack")?
|
130
|
+
},
|
131
|
+
]?,
|
132
|
+
platform_version: ::String?,
|
133
|
+
propagate_tags: ("TASK_DEFINITION")?,
|
134
|
+
reference_id: ::String?,
|
135
|
+
tags: Array[
|
136
|
+
Hash[::String, ::String],
|
137
|
+
]?,
|
138
|
+
task_count: ::Integer?,
|
139
|
+
task_definition_arn: ::String
|
140
|
+
}?,
|
141
|
+
event_bridge_parameters: {
|
142
|
+
detail_type: ::String,
|
143
|
+
source: ::String
|
144
|
+
}?,
|
145
|
+
input: ::String?,
|
146
|
+
kinesis_parameters: {
|
147
|
+
partition_key: ::String
|
148
|
+
}?,
|
149
|
+
retry_policy: {
|
150
|
+
maximum_event_age_in_seconds: ::Integer?,
|
151
|
+
maximum_retry_attempts: ::Integer?
|
152
|
+
}?,
|
153
|
+
role_arn: ::String,
|
154
|
+
sage_maker_pipeline_parameters: {
|
155
|
+
pipeline_parameter_list: Array[
|
156
|
+
{
|
157
|
+
name: ::String,
|
158
|
+
value: ::String
|
159
|
+
},
|
160
|
+
]?
|
161
|
+
}?,
|
162
|
+
sqs_parameters: {
|
163
|
+
message_group_id: ::String?
|
164
|
+
}?
|
165
|
+
}
|
166
|
+
) -> _CreateScheduleResponseSuccess
|
167
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateScheduleResponseSuccess
|
168
|
+
|
169
|
+
interface _CreateScheduleGroupResponseSuccess
|
170
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateScheduleGroupOutput]
|
171
|
+
def schedule_group_arn: () -> ::String
|
172
|
+
end
|
173
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#create_schedule_group-instance_method
|
174
|
+
def create_schedule_group: (
|
175
|
+
?client_token: ::String,
|
176
|
+
name: ::String,
|
177
|
+
?tags: Array[
|
178
|
+
{
|
179
|
+
key: ::String,
|
180
|
+
value: ::String
|
181
|
+
},
|
182
|
+
]
|
183
|
+
) -> _CreateScheduleGroupResponseSuccess
|
184
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateScheduleGroupResponseSuccess
|
185
|
+
|
186
|
+
interface _DeleteScheduleResponseSuccess
|
187
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteScheduleOutput]
|
188
|
+
end
|
189
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#delete_schedule-instance_method
|
190
|
+
def delete_schedule: (
|
191
|
+
?client_token: ::String,
|
192
|
+
?group_name: ::String,
|
193
|
+
name: ::String
|
194
|
+
) -> _DeleteScheduleResponseSuccess
|
195
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteScheduleResponseSuccess
|
196
|
+
|
197
|
+
interface _DeleteScheduleGroupResponseSuccess
|
198
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteScheduleGroupOutput]
|
199
|
+
end
|
200
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#delete_schedule_group-instance_method
|
201
|
+
def delete_schedule_group: (
|
202
|
+
?client_token: ::String,
|
203
|
+
name: ::String
|
204
|
+
) -> _DeleteScheduleGroupResponseSuccess
|
205
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteScheduleGroupResponseSuccess
|
206
|
+
|
207
|
+
interface _GetScheduleResponseSuccess
|
208
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetScheduleOutput]
|
209
|
+
def action_after_completion: () -> ("NONE" | "DELETE")
|
210
|
+
def arn: () -> ::String
|
211
|
+
def creation_date: () -> ::Time
|
212
|
+
def description: () -> ::String
|
213
|
+
def end_date: () -> ::Time
|
214
|
+
def flexible_time_window: () -> Types::FlexibleTimeWindow
|
215
|
+
def group_name: () -> ::String
|
216
|
+
def kms_key_arn: () -> ::String
|
217
|
+
def last_modification_date: () -> ::Time
|
218
|
+
def name: () -> ::String
|
219
|
+
def schedule_expression: () -> ::String
|
220
|
+
def schedule_expression_timezone: () -> ::String
|
221
|
+
def start_date: () -> ::Time
|
222
|
+
def state: () -> ("ENABLED" | "DISABLED")
|
223
|
+
def target: () -> Types::Target
|
224
|
+
end
|
225
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#get_schedule-instance_method
|
226
|
+
def get_schedule: (
|
227
|
+
?group_name: ::String,
|
228
|
+
name: ::String
|
229
|
+
) -> _GetScheduleResponseSuccess
|
230
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetScheduleResponseSuccess
|
231
|
+
|
232
|
+
interface _GetScheduleGroupResponseSuccess
|
233
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetScheduleGroupOutput]
|
234
|
+
def arn: () -> ::String
|
235
|
+
def creation_date: () -> ::Time
|
236
|
+
def last_modification_date: () -> ::Time
|
237
|
+
def name: () -> ::String
|
238
|
+
def state: () -> ("ACTIVE" | "DELETING")
|
239
|
+
end
|
240
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#get_schedule_group-instance_method
|
241
|
+
def get_schedule_group: (
|
242
|
+
name: ::String
|
243
|
+
) -> _GetScheduleGroupResponseSuccess
|
244
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetScheduleGroupResponseSuccess
|
245
|
+
|
246
|
+
interface _ListScheduleGroupsResponseSuccess
|
247
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListScheduleGroupsOutput]
|
248
|
+
def next_token: () -> ::String
|
249
|
+
def schedule_groups: () -> ::Array[Types::ScheduleGroupSummary]
|
250
|
+
end
|
251
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#list_schedule_groups-instance_method
|
252
|
+
def list_schedule_groups: (
|
253
|
+
?max_results: ::Integer,
|
254
|
+
?name_prefix: ::String,
|
255
|
+
?next_token: ::String
|
256
|
+
) -> _ListScheduleGroupsResponseSuccess
|
257
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListScheduleGroupsResponseSuccess
|
258
|
+
|
259
|
+
interface _ListSchedulesResponseSuccess
|
260
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSchedulesOutput]
|
261
|
+
def next_token: () -> ::String
|
262
|
+
def schedules: () -> ::Array[Types::ScheduleSummary]
|
263
|
+
end
|
264
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#list_schedules-instance_method
|
265
|
+
def list_schedules: (
|
266
|
+
?group_name: ::String,
|
267
|
+
?max_results: ::Integer,
|
268
|
+
?name_prefix: ::String,
|
269
|
+
?next_token: ::String,
|
270
|
+
?state: ("ENABLED" | "DISABLED")
|
271
|
+
) -> _ListSchedulesResponseSuccess
|
272
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSchedulesResponseSuccess
|
273
|
+
|
274
|
+
interface _ListTagsForResourceResponseSuccess
|
275
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
|
276
|
+
def tags: () -> ::Array[Types::Tag]
|
277
|
+
end
|
278
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#list_tags_for_resource-instance_method
|
279
|
+
def list_tags_for_resource: (
|
280
|
+
resource_arn: ::String
|
281
|
+
) -> _ListTagsForResourceResponseSuccess
|
282
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
283
|
+
|
284
|
+
interface _TagResourceResponseSuccess
|
285
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
|
286
|
+
end
|
287
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#tag_resource-instance_method
|
288
|
+
def tag_resource: (
|
289
|
+
resource_arn: ::String,
|
290
|
+
tags: Array[
|
291
|
+
{
|
292
|
+
key: ::String,
|
293
|
+
value: ::String
|
294
|
+
},
|
295
|
+
]
|
296
|
+
) -> _TagResourceResponseSuccess
|
297
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
298
|
+
|
299
|
+
interface _UntagResourceResponseSuccess
|
300
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
|
301
|
+
end
|
302
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#untag_resource-instance_method
|
303
|
+
def untag_resource: (
|
304
|
+
resource_arn: ::String,
|
305
|
+
tag_keys: Array[::String]
|
306
|
+
) -> _UntagResourceResponseSuccess
|
307
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
308
|
+
|
309
|
+
interface _UpdateScheduleResponseSuccess
|
310
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateScheduleOutput]
|
311
|
+
def schedule_arn: () -> ::String
|
312
|
+
end
|
313
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Client.html#update_schedule-instance_method
|
314
|
+
def update_schedule: (
|
315
|
+
?action_after_completion: ("NONE" | "DELETE"),
|
316
|
+
?client_token: ::String,
|
317
|
+
?description: ::String,
|
318
|
+
?end_date: ::Time,
|
319
|
+
flexible_time_window: {
|
320
|
+
maximum_window_in_minutes: ::Integer?,
|
321
|
+
mode: ("OFF" | "FLEXIBLE")
|
322
|
+
},
|
323
|
+
?group_name: ::String,
|
324
|
+
?kms_key_arn: ::String,
|
325
|
+
name: ::String,
|
326
|
+
schedule_expression: ::String,
|
327
|
+
?schedule_expression_timezone: ::String,
|
328
|
+
?start_date: ::Time,
|
329
|
+
?state: ("ENABLED" | "DISABLED"),
|
330
|
+
target: {
|
331
|
+
arn: ::String,
|
332
|
+
dead_letter_config: {
|
333
|
+
arn: ::String?
|
334
|
+
}?,
|
335
|
+
ecs_parameters: {
|
336
|
+
capacity_provider_strategy: Array[
|
337
|
+
{
|
338
|
+
base: ::Integer?,
|
339
|
+
capacity_provider: ::String,
|
340
|
+
weight: ::Integer?
|
341
|
+
},
|
342
|
+
]?,
|
343
|
+
enable_ecs_managed_tags: bool?,
|
344
|
+
enable_execute_command: bool?,
|
345
|
+
group: ::String?,
|
346
|
+
launch_type: ("EC2" | "FARGATE" | "EXTERNAL")?,
|
347
|
+
network_configuration: {
|
348
|
+
awsvpc_configuration: {
|
349
|
+
assign_public_ip: ("ENABLED" | "DISABLED")?,
|
350
|
+
security_groups: Array[::String]?,
|
351
|
+
subnets: Array[::String]
|
352
|
+
}?
|
353
|
+
}?,
|
354
|
+
placement_constraints: Array[
|
355
|
+
{
|
356
|
+
expression: ::String?,
|
357
|
+
type: ("distinctInstance" | "memberOf")?
|
358
|
+
},
|
359
|
+
]?,
|
360
|
+
placement_strategy: Array[
|
361
|
+
{
|
362
|
+
field: ::String?,
|
363
|
+
type: ("random" | "spread" | "binpack")?
|
364
|
+
},
|
365
|
+
]?,
|
366
|
+
platform_version: ::String?,
|
367
|
+
propagate_tags: ("TASK_DEFINITION")?,
|
368
|
+
reference_id: ::String?,
|
369
|
+
tags: Array[
|
370
|
+
Hash[::String, ::String],
|
371
|
+
]?,
|
372
|
+
task_count: ::Integer?,
|
373
|
+
task_definition_arn: ::String
|
374
|
+
}?,
|
375
|
+
event_bridge_parameters: {
|
376
|
+
detail_type: ::String,
|
377
|
+
source: ::String
|
378
|
+
}?,
|
379
|
+
input: ::String?,
|
380
|
+
kinesis_parameters: {
|
381
|
+
partition_key: ::String
|
382
|
+
}?,
|
383
|
+
retry_policy: {
|
384
|
+
maximum_event_age_in_seconds: ::Integer?,
|
385
|
+
maximum_retry_attempts: ::Integer?
|
386
|
+
}?,
|
387
|
+
role_arn: ::String,
|
388
|
+
sage_maker_pipeline_parameters: {
|
389
|
+
pipeline_parameter_list: Array[
|
390
|
+
{
|
391
|
+
name: ::String,
|
392
|
+
value: ::String
|
393
|
+
},
|
394
|
+
]?
|
395
|
+
}?,
|
396
|
+
sqs_parameters: {
|
397
|
+
message_group_id: ::String?
|
398
|
+
}?
|
399
|
+
}
|
400
|
+
) -> _UpdateScheduleResponseSuccess
|
401
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateScheduleResponseSuccess
|
402
|
+
end
|
403
|
+
end
|
404
|
+
end
|
405
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,34 @@
|
|
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 Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
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
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Scheduler/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
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
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,349 @@
|
|
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::Scheduler
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AwsVpcConfiguration
|
12
|
+
attr_accessor assign_public_ip: ("ENABLED" | "DISABLED")
|
13
|
+
attr_accessor security_groups: ::Array[::String]
|
14
|
+
attr_accessor subnets: ::Array[::String]
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class CapacityProviderStrategyItem
|
19
|
+
attr_accessor base: ::Integer
|
20
|
+
attr_accessor capacity_provider: ::String
|
21
|
+
attr_accessor weight: ::Integer
|
22
|
+
SENSITIVE: []
|
23
|
+
end
|
24
|
+
|
25
|
+
class ConflictException
|
26
|
+
attr_accessor message: ::String
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class CreateScheduleGroupInput
|
31
|
+
attr_accessor client_token: ::String
|
32
|
+
attr_accessor name: ::String
|
33
|
+
attr_accessor tags: ::Array[Types::Tag]
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class CreateScheduleGroupOutput
|
38
|
+
attr_accessor schedule_group_arn: ::String
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class CreateScheduleInput
|
43
|
+
attr_accessor action_after_completion: ("NONE" | "DELETE")
|
44
|
+
attr_accessor client_token: ::String
|
45
|
+
attr_accessor description: ::String
|
46
|
+
attr_accessor end_date: ::Time
|
47
|
+
attr_accessor flexible_time_window: Types::FlexibleTimeWindow
|
48
|
+
attr_accessor group_name: ::String
|
49
|
+
attr_accessor kms_key_arn: ::String
|
50
|
+
attr_accessor name: ::String
|
51
|
+
attr_accessor schedule_expression: ::String
|
52
|
+
attr_accessor schedule_expression_timezone: ::String
|
53
|
+
attr_accessor start_date: ::Time
|
54
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
55
|
+
attr_accessor target: Types::Target
|
56
|
+
SENSITIVE: []
|
57
|
+
end
|
58
|
+
|
59
|
+
class CreateScheduleOutput
|
60
|
+
attr_accessor schedule_arn: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class DeadLetterConfig
|
65
|
+
attr_accessor arn: ::String
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class DeleteScheduleGroupInput
|
70
|
+
attr_accessor client_token: ::String
|
71
|
+
attr_accessor name: ::String
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
75
|
+
class DeleteScheduleGroupOutput < Aws::EmptyStructure
|
76
|
+
end
|
77
|
+
|
78
|
+
class DeleteScheduleInput
|
79
|
+
attr_accessor client_token: ::String
|
80
|
+
attr_accessor group_name: ::String
|
81
|
+
attr_accessor name: ::String
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class DeleteScheduleOutput < Aws::EmptyStructure
|
86
|
+
end
|
87
|
+
|
88
|
+
class EcsParameters
|
89
|
+
attr_accessor capacity_provider_strategy: ::Array[Types::CapacityProviderStrategyItem]
|
90
|
+
attr_accessor enable_ecs_managed_tags: bool
|
91
|
+
attr_accessor enable_execute_command: bool
|
92
|
+
attr_accessor group: ::String
|
93
|
+
attr_accessor launch_type: ("EC2" | "FARGATE" | "EXTERNAL")
|
94
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
95
|
+
attr_accessor placement_constraints: ::Array[Types::PlacementConstraint]
|
96
|
+
attr_accessor placement_strategy: ::Array[Types::PlacementStrategy]
|
97
|
+
attr_accessor platform_version: ::String
|
98
|
+
attr_accessor propagate_tags: ("TASK_DEFINITION")
|
99
|
+
attr_accessor reference_id: ::String
|
100
|
+
attr_accessor tags: ::Array[::Hash[::String, ::String]]
|
101
|
+
attr_accessor task_count: ::Integer
|
102
|
+
attr_accessor task_definition_arn: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class EventBridgeParameters
|
107
|
+
attr_accessor detail_type: ::String
|
108
|
+
attr_accessor source: ::String
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class FlexibleTimeWindow
|
113
|
+
attr_accessor maximum_window_in_minutes: ::Integer
|
114
|
+
attr_accessor mode: ("OFF" | "FLEXIBLE")
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class GetScheduleGroupInput
|
119
|
+
attr_accessor name: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class GetScheduleGroupOutput
|
124
|
+
attr_accessor arn: ::String
|
125
|
+
attr_accessor creation_date: ::Time
|
126
|
+
attr_accessor last_modification_date: ::Time
|
127
|
+
attr_accessor name: ::String
|
128
|
+
attr_accessor state: ("ACTIVE" | "DELETING")
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
132
|
+
class GetScheduleInput
|
133
|
+
attr_accessor group_name: ::String
|
134
|
+
attr_accessor name: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class GetScheduleOutput
|
139
|
+
attr_accessor action_after_completion: ("NONE" | "DELETE")
|
140
|
+
attr_accessor arn: ::String
|
141
|
+
attr_accessor creation_date: ::Time
|
142
|
+
attr_accessor description: ::String
|
143
|
+
attr_accessor end_date: ::Time
|
144
|
+
attr_accessor flexible_time_window: Types::FlexibleTimeWindow
|
145
|
+
attr_accessor group_name: ::String
|
146
|
+
attr_accessor kms_key_arn: ::String
|
147
|
+
attr_accessor last_modification_date: ::Time
|
148
|
+
attr_accessor name: ::String
|
149
|
+
attr_accessor schedule_expression: ::String
|
150
|
+
attr_accessor schedule_expression_timezone: ::String
|
151
|
+
attr_accessor start_date: ::Time
|
152
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
153
|
+
attr_accessor target: Types::Target
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class InternalServerException
|
158
|
+
attr_accessor message: ::String
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class KinesisParameters
|
163
|
+
attr_accessor partition_key: ::String
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
167
|
+
class ListScheduleGroupsInput
|
168
|
+
attr_accessor max_results: ::Integer
|
169
|
+
attr_accessor name_prefix: ::String
|
170
|
+
attr_accessor next_token: ::String
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class ListScheduleGroupsOutput
|
175
|
+
attr_accessor next_token: ::String
|
176
|
+
attr_accessor schedule_groups: ::Array[Types::ScheduleGroupSummary]
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class ListSchedulesInput
|
181
|
+
attr_accessor group_name: ::String
|
182
|
+
attr_accessor max_results: ::Integer
|
183
|
+
attr_accessor name_prefix: ::String
|
184
|
+
attr_accessor next_token: ::String
|
185
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class ListSchedulesOutput
|
190
|
+
attr_accessor next_token: ::String
|
191
|
+
attr_accessor schedules: ::Array[Types::ScheduleSummary]
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class ListTagsForResourceInput
|
196
|
+
attr_accessor resource_arn: ::String
|
197
|
+
SENSITIVE: []
|
198
|
+
end
|
199
|
+
|
200
|
+
class ListTagsForResourceOutput
|
201
|
+
attr_accessor tags: ::Array[Types::Tag]
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class NetworkConfiguration
|
206
|
+
attr_accessor awsvpc_configuration: Types::AwsVpcConfiguration
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class PlacementConstraint
|
211
|
+
attr_accessor expression: ::String
|
212
|
+
attr_accessor type: ("distinctInstance" | "memberOf")
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class PlacementStrategy
|
217
|
+
attr_accessor field: ::String
|
218
|
+
attr_accessor type: ("random" | "spread" | "binpack")
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class ResourceNotFoundException
|
223
|
+
attr_accessor message: ::String
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class RetryPolicy
|
228
|
+
attr_accessor maximum_event_age_in_seconds: ::Integer
|
229
|
+
attr_accessor maximum_retry_attempts: ::Integer
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class SageMakerPipelineParameter
|
234
|
+
attr_accessor name: ::String
|
235
|
+
attr_accessor value: ::String
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class SageMakerPipelineParameters
|
240
|
+
attr_accessor pipeline_parameter_list: ::Array[Types::SageMakerPipelineParameter]
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
244
|
+
class ScheduleGroupSummary
|
245
|
+
attr_accessor arn: ::String
|
246
|
+
attr_accessor creation_date: ::Time
|
247
|
+
attr_accessor last_modification_date: ::Time
|
248
|
+
attr_accessor name: ::String
|
249
|
+
attr_accessor state: ("ACTIVE" | "DELETING")
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class ScheduleSummary
|
254
|
+
attr_accessor arn: ::String
|
255
|
+
attr_accessor creation_date: ::Time
|
256
|
+
attr_accessor group_name: ::String
|
257
|
+
attr_accessor last_modification_date: ::Time
|
258
|
+
attr_accessor name: ::String
|
259
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
260
|
+
attr_accessor target: Types::TargetSummary
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class ServiceQuotaExceededException
|
265
|
+
attr_accessor message: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class SqsParameters
|
270
|
+
attr_accessor message_group_id: ::String
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class Tag
|
275
|
+
attr_accessor key: ::String
|
276
|
+
attr_accessor value: ::String
|
277
|
+
SENSITIVE: []
|
278
|
+
end
|
279
|
+
|
280
|
+
class TagResourceInput
|
281
|
+
attr_accessor resource_arn: ::String
|
282
|
+
attr_accessor tags: ::Array[Types::Tag]
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class TagResourceOutput < Aws::EmptyStructure
|
287
|
+
end
|
288
|
+
|
289
|
+
class Target
|
290
|
+
attr_accessor arn: ::String
|
291
|
+
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
292
|
+
attr_accessor ecs_parameters: Types::EcsParameters
|
293
|
+
attr_accessor event_bridge_parameters: Types::EventBridgeParameters
|
294
|
+
attr_accessor input: ::String
|
295
|
+
attr_accessor kinesis_parameters: Types::KinesisParameters
|
296
|
+
attr_accessor retry_policy: Types::RetryPolicy
|
297
|
+
attr_accessor role_arn: ::String
|
298
|
+
attr_accessor sage_maker_pipeline_parameters: Types::SageMakerPipelineParameters
|
299
|
+
attr_accessor sqs_parameters: Types::SqsParameters
|
300
|
+
SENSITIVE: []
|
301
|
+
end
|
302
|
+
|
303
|
+
class TargetSummary
|
304
|
+
attr_accessor arn: ::String
|
305
|
+
SENSITIVE: []
|
306
|
+
end
|
307
|
+
|
308
|
+
class ThrottlingException
|
309
|
+
attr_accessor message: ::String
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
|
313
|
+
class UntagResourceInput
|
314
|
+
attr_accessor resource_arn: ::String
|
315
|
+
attr_accessor tag_keys: ::Array[::String]
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
320
|
+
end
|
321
|
+
|
322
|
+
class UpdateScheduleInput
|
323
|
+
attr_accessor action_after_completion: ("NONE" | "DELETE")
|
324
|
+
attr_accessor client_token: ::String
|
325
|
+
attr_accessor description: ::String
|
326
|
+
attr_accessor end_date: ::Time
|
327
|
+
attr_accessor flexible_time_window: Types::FlexibleTimeWindow
|
328
|
+
attr_accessor group_name: ::String
|
329
|
+
attr_accessor kms_key_arn: ::String
|
330
|
+
attr_accessor name: ::String
|
331
|
+
attr_accessor schedule_expression: ::String
|
332
|
+
attr_accessor schedule_expression_timezone: ::String
|
333
|
+
attr_accessor start_date: ::Time
|
334
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
335
|
+
attr_accessor target: Types::Target
|
336
|
+
SENSITIVE: []
|
337
|
+
end
|
338
|
+
|
339
|
+
class UpdateScheduleOutput
|
340
|
+
attr_accessor schedule_arn: ::String
|
341
|
+
SENSITIVE: []
|
342
|
+
end
|
343
|
+
|
344
|
+
class ValidationException
|
345
|
+
attr_accessor message: ::String
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
end
|
349
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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 Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-scheduler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-scheduler/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-scheduler/resource.rb
|
68
68
|
- lib/aws-sdk-scheduler/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-scheduler
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-scheduler/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - Amazon EventBridge Scheduler
|
94
99
|
test_files: []
|