aws-sdk-sagemaker 1.0.0 → 1.1.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
  SHA1:
3
- metadata.gz: 8f0564c7675ae297473f59bd72e0f9bb2978e984
4
- data.tar.gz: 14448b9c8a2ec9fd66186ac8e26732eac7935bb7
3
+ metadata.gz: 1f5ac5df89d71df99d66eedf98b95157073060d7
4
+ data.tar.gz: c5e7233229ee3f5e42171be75f025802af28a889
5
5
  SHA512:
6
- metadata.gz: ad400d24531bf38d4f23293535811377bf9fd7f6e1ec7b1dcb94161fa2ad6ba6b00d92af99448ee1c4090a3be8d58cb288811610cb92e48f0faf76b060ee29a1
7
- data.tar.gz: 16485545a89acf71adb536ff1aba4e00f635ef657619b6fbbaaebbf79ac82817d490a5dd8249bbd66823bba8afc966d0cb624013d7551bd46bcbf8f1eabfdd4c
6
+ metadata.gz: 8b3be42afcef637ac2ff638449e73e871a9c278091650990c571312091354b4d0cbe8e4c4adc62a87ddeeefc3e6f680a48f3d99ea4a9e3904813b3e65a1eb143
7
+ data.tar.gz: f0ef76def9613b4a79c0d53c34a84f8958ed57bfc2012a3615feffc7c351586da8c5587bd5cb76a960fee18f53002686ac08734e1d5e65aea2396b0e872e2636
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
43
43
  # @service
44
44
  module Aws::SageMaker
45
45
 
46
- GEM_VERSION = '1.0.0'
46
+ GEM_VERSION = '1.1.0'
47
47
 
48
48
  end
@@ -1876,143 +1876,14 @@ module Aws::SageMaker
1876
1876
  params: params,
1877
1877
  config: config)
1878
1878
  context[:gem_name] = 'aws-sdk-sagemaker'
1879
- context[:gem_version] = '1.0.0'
1879
+ context[:gem_version] = '1.1.0'
1880
1880
  Seahorse::Client::Request.new(handlers, context)
1881
1881
  end
1882
1882
 
1883
- # Polls an API operation until a resource enters a desired state.
1884
- #
1885
- # ## Basic Usage
1886
- #
1887
- # A waiter will call an API operation until:
1888
- #
1889
- # * It is successful
1890
- # * It enters a terminal state
1891
- # * It makes the maximum number of attempts
1892
- #
1893
- # In between attempts, the waiter will sleep.
1894
- #
1895
- # # polls in a loop, sleeping between attempts
1896
- # client.waiter_until(waiter_name, params)
1897
- #
1898
- # ## Configuration
1899
- #
1900
- # You can configure the maximum number of polling attempts, and the
1901
- # delay (in seconds) between each polling attempt. You can pass
1902
- # configuration as the final arguments hash.
1903
- #
1904
- # # poll for ~25 seconds
1905
- # client.wait_until(waiter_name, params, {
1906
- # max_attempts: 5,
1907
- # delay: 5,
1908
- # })
1909
- #
1910
- # ## Callbacks
1911
- #
1912
- # You can be notified before each polling attempt and before each
1913
- # delay. If you throw `:success` or `:failure` from these callbacks,
1914
- # it will terminate the waiter.
1915
- #
1916
- # started_at = Time.now
1917
- # client.wait_until(waiter_name, params, {
1918
- #
1919
- # # disable max attempts
1920
- # max_attempts: nil,
1921
- #
1922
- # # poll for 1 hour, instead of a number of attempts
1923
- # before_wait: -> (attempts, response) do
1924
- # throw :failure if Time.now - started_at > 3600
1925
- # end
1926
- # })
1927
- #
1928
- # ## Handling Errors
1929
- #
1930
- # When a waiter is unsuccessful, it will raise an error.
1931
- # All of the failure errors extend from
1932
- # {Aws::Waiters::Errors::WaiterFailed}.
1933
- #
1934
- # begin
1935
- # client.wait_until(...)
1936
- # rescue Aws::Waiters::Errors::WaiterFailed
1937
- # # resource did not enter the desired state in time
1938
- # end
1939
- #
1940
- # ## Valid Waiters
1941
- #
1942
- # The following table lists the valid waiter names, the operations they call,
1943
- # and the default `:delay` and `:max_attempts` values.
1944
- #
1945
- # | waiter_name | params | :delay | :max_attempts |
1946
- # | ------------------------- | ----------------------------- | -------- | ------------- |
1947
- # | endpoint_created | {#describe_endpoint} | 120 | 120 |
1948
- # | endpoint_deleted | {#describe_endpoint} | 120 | 120 |
1949
- # | endpoint_updated | {#describe_endpoint} | 120 | 120 |
1950
- # | notebook_instance_deleted | {#describe_notebook_instance} | 120 | 120 |
1951
- # | notebook_instance_running | {#describe_notebook_instance} | 120 | 120 |
1952
- # | notebook_instance_stopped | {#describe_notebook_instance} | 120 | 120 |
1953
- # | training_job_created | {#describe_training_job} | 120 | 120 |
1954
- # | training_job_deleted | {#describe_training_job} | 120 | 120 |
1955
- # | training_job_stopped | {#describe_training_job} | 120 | 120 |
1956
- #
1957
- # @raise [Errors::FailureStateError] Raised when the waiter terminates
1958
- # because the waiter has entered a state that it will not transition
1959
- # out of, preventing success.
1960
- #
1961
- # @raise [Errors::TooManyAttemptsError] Raised when the configured
1962
- # maximum number of attempts have been made, and the waiter is not
1963
- # yet successful.
1964
- #
1965
- # @raise [Errors::UnexpectedError] Raised when an error is encounted
1966
- # while polling for a resource that is not expected.
1967
- #
1968
- # @raise [Errors::NoSuchWaiterError] Raised when you request to wait
1969
- # for an unknown state.
1970
- #
1971
- # @return [Boolean] Returns `true` if the waiter was successful.
1972
- # @param [Symbol] waiter_name
1973
- # @param [Hash] params ({})
1974
- # @param [Hash] options ({})
1975
- # @option options [Integer] :max_attempts
1976
- # @option options [Integer] :delay
1977
- # @option options [Proc] :before_attempt
1978
- # @option options [Proc] :before_wait
1979
- def wait_until(waiter_name, params = {}, options = {})
1980
- w = waiter(waiter_name, options)
1981
- yield(w.waiter) if block_given? # deprecated
1982
- w.wait(params)
1983
- end
1984
-
1985
1883
  # @api private
1986
1884
  # @deprecated
1987
1885
  def waiter_names
1988
- waiters.keys
1989
- end
1990
-
1991
- private
1992
-
1993
- # @param [Symbol] waiter_name
1994
- # @param [Hash] options ({})
1995
- def waiter(waiter_name, options = {})
1996
- waiter_class = waiters[waiter_name]
1997
- if waiter_class
1998
- waiter_class.new(options.merge(client: self))
1999
- else
2000
- raise Aws::Waiters::Errors::NoSuchWaiterError.new(waiter_name, waiters.keys)
2001
- end
2002
- end
2003
-
2004
- def waiters
2005
- {
2006
- endpoint_created: Waiters::Endpoint_Created,
2007
- endpoint_deleted: Waiters::Endpoint_Deleted,
2008
- endpoint_updated: Waiters::Endpoint_Updated,
2009
- notebook_instance_deleted: Waiters::NotebookInstance_Deleted,
2010
- notebook_instance_running: Waiters::NotebookInstance_Running,
2011
- notebook_instance_stopped: Waiters::NotebookInstance_Stopped,
2012
- training_job_created: Waiters::TrainingJob_Created,
2013
- training_job_deleted: Waiters::TrainingJob_Deleted,
2014
- training_job_stopped: Waiters::TrainingJob_Stopped
2015
- }
1886
+ []
2016
1887
  end
2017
1888
 
2018
1889
  class << self
@@ -9,559 +9,5 @@ require 'aws-sdk-core/waiters'
9
9
 
10
10
  module Aws::SageMaker
11
11
  module Waiters
12
-
13
- class Endpoint_Created
14
-
15
- # @param [Hash] options
16
- # @option options [required, Client] :client
17
- # @option options [Integer] :max_attempts (120)
18
- # @option options [Integer] :delay (120)
19
- # @option options [Proc] :before_attempt
20
- # @option options [Proc] :before_wait
21
- def initialize(options)
22
- @client = options.fetch(:client)
23
- @waiter = Aws::Waiters::Waiter.new({
24
- max_attempts: 120,
25
- delay: 120,
26
- poller: Aws::Waiters::Poller.new(
27
- operation_name: :describe_endpoint,
28
- acceptors: [
29
- {
30
- "expected" => "InService",
31
- "matcher" => "path",
32
- "state" => "success",
33
- "argument" => "endpoint_status"
34
- },
35
- {
36
- "expected" => "Creating",
37
- "matcher" => "path",
38
- "state" => "retry",
39
- "argument" => "endpoint_status"
40
- },
41
- {
42
- "expected" => "Failed",
43
- "matcher" => "path",
44
- "state" => "failure",
45
- "argument" => "endpoint_status"
46
- },
47
- {
48
- "expected" => "ThrottlingException",
49
- "matcher" => "error",
50
- "state" => "retry"
51
- },
52
- {
53
- "expected" => "ValidationException",
54
- "matcher" => "error",
55
- "state" => "failure"
56
- }
57
- ]
58
- )
59
- }.merge(options))
60
- end
61
-
62
- # @option (see Client#describe_endpoint)
63
- # @return (see Client#describe_endpoint)
64
- def wait(params = {})
65
- @waiter.wait(client: @client, params: params)
66
- end
67
-
68
- # @api private
69
- attr_reader :waiter
70
-
71
- end
72
-
73
- class Endpoint_Deleted
74
-
75
- # @param [Hash] options
76
- # @option options [required, Client] :client
77
- # @option options [Integer] :max_attempts (120)
78
- # @option options [Integer] :delay (120)
79
- # @option options [Proc] :before_attempt
80
- # @option options [Proc] :before_wait
81
- def initialize(options)
82
- @client = options.fetch(:client)
83
- @waiter = Aws::Waiters::Waiter.new({
84
- max_attempts: 120,
85
- delay: 120,
86
- poller: Aws::Waiters::Poller.new(
87
- operation_name: :describe_endpoint,
88
- acceptors: [
89
- {
90
- "expected" => "ValidationException",
91
- "matcher" => "error",
92
- "state" => "success"
93
- },
94
- {
95
- "expected" => "Deleting",
96
- "matcher" => "path",
97
- "state" => "retry",
98
- "argument" => "endpoint_status"
99
- },
100
- {
101
- "expected" => "Failed",
102
- "matcher" => "path",
103
- "state" => "failure",
104
- "argument" => "endpoint_status"
105
- },
106
- {
107
- "expected" => "ThrottlingException",
108
- "matcher" => "error",
109
- "state" => "retry"
110
- }
111
- ]
112
- )
113
- }.merge(options))
114
- end
115
-
116
- # @option (see Client#describe_endpoint)
117
- # @return (see Client#describe_endpoint)
118
- def wait(params = {})
119
- @waiter.wait(client: @client, params: params)
120
- end
121
-
122
- # @api private
123
- attr_reader :waiter
124
-
125
- end
126
-
127
- class Endpoint_Updated
128
-
129
- # @param [Hash] options
130
- # @option options [required, Client] :client
131
- # @option options [Integer] :max_attempts (120)
132
- # @option options [Integer] :delay (120)
133
- # @option options [Proc] :before_attempt
134
- # @option options [Proc] :before_wait
135
- def initialize(options)
136
- @client = options.fetch(:client)
137
- @waiter = Aws::Waiters::Waiter.new({
138
- max_attempts: 120,
139
- delay: 120,
140
- poller: Aws::Waiters::Poller.new(
141
- operation_name: :describe_endpoint,
142
- acceptors: [
143
- {
144
- "expected" => "200",
145
- "matcher" => "path",
146
- "state" => "success",
147
- "argument" => "endpoint_name"
148
- },
149
- {
150
- "expected" => "Updating",
151
- "matcher" => "path",
152
- "state" => "retry",
153
- "argument" => "endpoint_status"
154
- },
155
- {
156
- "expected" => "RollingBack",
157
- "matcher" => "path",
158
- "state" => "retry",
159
- "argument" => "endpoint_status"
160
- },
161
- {
162
- "expected" => "Failed",
163
- "matcher" => "path",
164
- "state" => "failure",
165
- "argument" => "endpoint_status"
166
- },
167
- {
168
- "expected" => "ThrottlingException",
169
- "matcher" => "error",
170
- "state" => "retry"
171
- },
172
- {
173
- "expected" => "ValidationException",
174
- "matcher" => "error",
175
- "state" => "retry"
176
- }
177
- ]
178
- )
179
- }.merge(options))
180
- end
181
-
182
- # @option (see Client#describe_endpoint)
183
- # @return (see Client#describe_endpoint)
184
- def wait(params = {})
185
- @waiter.wait(client: @client, params: params)
186
- end
187
-
188
- # @api private
189
- attr_reader :waiter
190
-
191
- end
192
-
193
- class NotebookInstance_Deleted
194
-
195
- # @param [Hash] options
196
- # @option options [required, Client] :client
197
- # @option options [Integer] :max_attempts (120)
198
- # @option options [Integer] :delay (120)
199
- # @option options [Proc] :before_attempt
200
- # @option options [Proc] :before_wait
201
- def initialize(options)
202
- @client = options.fetch(:client)
203
- @waiter = Aws::Waiters::Waiter.new({
204
- max_attempts: 120,
205
- delay: 120,
206
- poller: Aws::Waiters::Poller.new(
207
- operation_name: :describe_notebook_instance,
208
- acceptors: [
209
- {
210
- "expected" => "ValidationException",
211
- "matcher" => "error",
212
- "state" => "success"
213
- },
214
- {
215
- "expected" => "Deleting",
216
- "matcher" => "path",
217
- "state" => "retry",
218
- "argument" => "notebook_instance_status"
219
- },
220
- {
221
- "expected" => "ThrottlingException",
222
- "matcher" => "error",
223
- "state" => "retry"
224
- },
225
- {
226
- "expected" => "Failed",
227
- "matcher" => "path",
228
- "state" => "failure",
229
- "argument" => "notebook_instance_status"
230
- }
231
- ]
232
- )
233
- }.merge(options))
234
- end
235
-
236
- # @option (see Client#describe_notebook_instance)
237
- # @return (see Client#describe_notebook_instance)
238
- def wait(params = {})
239
- @waiter.wait(client: @client, params: params)
240
- end
241
-
242
- # @api private
243
- attr_reader :waiter
244
-
245
- end
246
-
247
- class NotebookInstance_Running
248
-
249
- # @param [Hash] options
250
- # @option options [required, Client] :client
251
- # @option options [Integer] :max_attempts (120)
252
- # @option options [Integer] :delay (120)
253
- # @option options [Proc] :before_attempt
254
- # @option options [Proc] :before_wait
255
- def initialize(options)
256
- @client = options.fetch(:client)
257
- @waiter = Aws::Waiters::Waiter.new({
258
- max_attempts: 120,
259
- delay: 120,
260
- poller: Aws::Waiters::Poller.new(
261
- operation_name: :describe_notebook_instance,
262
- acceptors: [
263
- {
264
- "expected" => "InService",
265
- "matcher" => "path",
266
- "state" => "success",
267
- "argument" => "notebook_instance_status"
268
- },
269
- {
270
- "expected" => "ThrottlingException",
271
- "matcher" => "error",
272
- "state" => "retry"
273
- },
274
- {
275
- "expected" => "Failed",
276
- "matcher" => "path",
277
- "state" => "failure",
278
- "argument" => "notebook_instance_status"
279
- },
280
- {
281
- "expected" => "Stopped",
282
- "matcher" => "path",
283
- "state" => "failure",
284
- "argument" => "notebook_instance_status"
285
- },
286
- {
287
- "expected" => "Stopping",
288
- "matcher" => "path",
289
- "state" => "failure",
290
- "argument" => "notebook_instance_status"
291
- }
292
- ]
293
- )
294
- }.merge(options))
295
- end
296
-
297
- # @option (see Client#describe_notebook_instance)
298
- # @return (see Client#describe_notebook_instance)
299
- def wait(params = {})
300
- @waiter.wait(client: @client, params: params)
301
- end
302
-
303
- # @api private
304
- attr_reader :waiter
305
-
306
- end
307
-
308
- class NotebookInstance_Stopped
309
-
310
- # @param [Hash] options
311
- # @option options [required, Client] :client
312
- # @option options [Integer] :max_attempts (120)
313
- # @option options [Integer] :delay (120)
314
- # @option options [Proc] :before_attempt
315
- # @option options [Proc] :before_wait
316
- def initialize(options)
317
- @client = options.fetch(:client)
318
- @waiter = Aws::Waiters::Waiter.new({
319
- max_attempts: 120,
320
- delay: 120,
321
- poller: Aws::Waiters::Poller.new(
322
- operation_name: :describe_notebook_instance,
323
- acceptors: [
324
- {
325
- "expected" => "Stopped",
326
- "matcher" => "path",
327
- "state" => "success",
328
- "argument" => "notebook_instance_status"
329
- },
330
- {
331
- "expected" => "Stopping",
332
- "matcher" => "path",
333
- "state" => "retry",
334
- "argument" => "notebook_instance_status"
335
- },
336
- {
337
- "expected" => "ThrottlingException",
338
- "matcher" => "error",
339
- "state" => "retry"
340
- },
341
- {
342
- "expected" => "Failed",
343
- "matcher" => "path",
344
- "state" => "failure",
345
- "argument" => "notebook_instance_status"
346
- }
347
- ]
348
- )
349
- }.merge(options))
350
- end
351
-
352
- # @option (see Client#describe_notebook_instance)
353
- # @return (see Client#describe_notebook_instance)
354
- def wait(params = {})
355
- @waiter.wait(client: @client, params: params)
356
- end
357
-
358
- # @api private
359
- attr_reader :waiter
360
-
361
- end
362
-
363
- class TrainingJob_Created
364
-
365
- # @param [Hash] options
366
- # @option options [required, Client] :client
367
- # @option options [Integer] :max_attempts (120)
368
- # @option options [Integer] :delay (120)
369
- # @option options [Proc] :before_attempt
370
- # @option options [Proc] :before_wait
371
- def initialize(options)
372
- @client = options.fetch(:client)
373
- @waiter = Aws::Waiters::Waiter.new({
374
- max_attempts: 120,
375
- delay: 120,
376
- poller: Aws::Waiters::Poller.new(
377
- operation_name: :describe_training_job,
378
- acceptors: [
379
- {
380
- "expected" => "Created",
381
- "matcher" => "path",
382
- "state" => "success",
383
- "argument" => "training_job_status"
384
- },
385
- {
386
- "expected" => "Completed",
387
- "matcher" => "path",
388
- "state" => "success",
389
- "argument" => "training_job_status"
390
- },
391
- {
392
- "expected" => "InProgress",
393
- "matcher" => "path",
394
- "state" => "retry",
395
- "argument" => "training_job_status"
396
- },
397
- {
398
- "expected" => "Failed",
399
- "matcher" => "path",
400
- "state" => "failure",
401
- "argument" => "training_job_status"
402
- },
403
- {
404
- "expected" => "Stopping",
405
- "matcher" => "path",
406
- "state" => "failure",
407
- "argument" => "training_job_status"
408
- },
409
- {
410
- "expected" => "Stopped",
411
- "matcher" => "path",
412
- "state" => "failure",
413
- "argument" => "training_job_status"
414
- },
415
- {
416
- "expected" => "Deleting",
417
- "matcher" => "path",
418
- "state" => "failure",
419
- "argument" => "training_job_status"
420
- },
421
- {
422
- "expected" => "ValidationException",
423
- "matcher" => "error",
424
- "state" => "failure"
425
- },
426
- {
427
- "expected" => "ThrottlingException",
428
- "matcher" => "error",
429
- "state" => "retry"
430
- }
431
- ]
432
- )
433
- }.merge(options))
434
- end
435
-
436
- # @option (see Client#describe_training_job)
437
- # @return (see Client#describe_training_job)
438
- def wait(params = {})
439
- @waiter.wait(client: @client, params: params)
440
- end
441
-
442
- # @api private
443
- attr_reader :waiter
444
-
445
- end
446
-
447
- class TrainingJob_Deleted
448
-
449
- # @param [Hash] options
450
- # @option options [required, Client] :client
451
- # @option options [Integer] :max_attempts (120)
452
- # @option options [Integer] :delay (120)
453
- # @option options [Proc] :before_attempt
454
- # @option options [Proc] :before_wait
455
- def initialize(options)
456
- @client = options.fetch(:client)
457
- @waiter = Aws::Waiters::Waiter.new({
458
- max_attempts: 120,
459
- delay: 120,
460
- poller: Aws::Waiters::Poller.new(
461
- operation_name: :describe_training_job,
462
- acceptors: [
463
- {
464
- "expected" => "ValidationException",
465
- "matcher" => "error",
466
- "state" => "success"
467
- },
468
- {
469
- "expected" => "Deleting",
470
- "matcher" => "path",
471
- "state" => "retry",
472
- "argument" => "training_job_status"
473
- },
474
- {
475
- "expected" => "ThrottlingException",
476
- "matcher" => "error",
477
- "state" => "retry"
478
- }
479
- ]
480
- )
481
- }.merge(options))
482
- end
483
-
484
- # @option (see Client#describe_training_job)
485
- # @return (see Client#describe_training_job)
486
- def wait(params = {})
487
- @waiter.wait(client: @client, params: params)
488
- end
489
-
490
- # @api private
491
- attr_reader :waiter
492
-
493
- end
494
-
495
- class TrainingJob_Stopped
496
-
497
- # @param [Hash] options
498
- # @option options [required, Client] :client
499
- # @option options [Integer] :max_attempts (120)
500
- # @option options [Integer] :delay (120)
501
- # @option options [Proc] :before_attempt
502
- # @option options [Proc] :before_wait
503
- def initialize(options)
504
- @client = options.fetch(:client)
505
- @waiter = Aws::Waiters::Waiter.new({
506
- max_attempts: 120,
507
- delay: 120,
508
- poller: Aws::Waiters::Poller.new(
509
- operation_name: :describe_training_job,
510
- acceptors: [
511
- {
512
- "expected" => "Completed",
513
- "matcher" => "path",
514
- "state" => "success",
515
- "argument" => "training_job_status"
516
- },
517
- {
518
- "expected" => "Stopping",
519
- "matcher" => "path",
520
- "state" => "retry",
521
- "argument" => "training_job_status"
522
- },
523
- {
524
- "expected" => "Stopped",
525
- "matcher" => "path",
526
- "state" => "success",
527
- "argument" => "training_job_status"
528
- },
529
- {
530
- "expected" => "ThrottlingException",
531
- "matcher" => "error",
532
- "state" => "retry"
533
- },
534
- {
535
- "expected" => "ValidationException",
536
- "matcher" => "error",
537
- "state" => "failure"
538
- },
539
- {
540
- "expected" => "Failed",
541
- "matcher" => "path",
542
- "state" => "failure",
543
- "argument" => "training_job_status"
544
- },
545
- {
546
- "expected" => "Deleting",
547
- "matcher" => "path",
548
- "state" => "failure",
549
- "argument" => "training_job_status"
550
- }
551
- ]
552
- )
553
- }.merge(options))
554
- end
555
-
556
- # @option (see Client#describe_training_job)
557
- # @return (see Client#describe_training_job)
558
- def wait(params = {})
559
- @waiter.wait(client: @client, params: params)
560
- end
561
-
562
- # @api private
563
- attr_reader :waiter
564
-
565
- end
566
12
  end
567
13
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.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: 2017-11-29 00:00:00.000000000 Z
11
+ date: 2017-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core