aws-sdk 1.8.1.3 → 1.8.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. data/lib/aws-sdk.rb +2 -0
  2. data/lib/aws/api_config/Redshift-2012-12-01.yml +1149 -0
  3. data/lib/aws/auto_scaling.rb +2 -2
  4. data/lib/aws/auto_scaling/activity_collection.rb +1 -1
  5. data/lib/aws/auto_scaling/group_options.rb +1 -1
  6. data/lib/aws/auto_scaling/scaling_policy_options.rb +1 -1
  7. data/lib/aws/auto_scaling/scheduled_action_collection.rb +4 -4
  8. data/lib/aws/cloud_search/client.rb +1 -1
  9. data/lib/aws/cloud_watch.rb +1 -1
  10. data/lib/aws/cloud_watch/alarm.rb +1 -1
  11. data/lib/aws/cloud_watch/metric_collection.rb +1 -1
  12. data/lib/aws/core.rb +14 -10
  13. data/lib/aws/core/client.rb +12 -6
  14. data/lib/aws/core/configuration.rb +15 -12
  15. data/lib/aws/core/inflection.rb +2 -0
  16. data/lib/aws/core/response.rb +0 -12
  17. data/lib/aws/dynamo_db.rb +1 -1
  18. data/lib/aws/elastic_beanstalk.rb +1 -1
  19. data/lib/aws/rails.rb +1 -1
  20. data/lib/aws/record/abstract_base.rb +1 -1
  21. data/lib/aws/redshift.rb +52 -0
  22. data/lib/aws/redshift/client.rb +1291 -0
  23. data/lib/aws/redshift/config.rb +18 -0
  24. data/lib/aws/redshift/errors.rb +22 -0
  25. data/lib/aws/redshift/request.rb +29 -0
  26. data/lib/aws/route_53/resource_record_set.rb +47 -26
  27. data/lib/aws/s3/client.rb +1 -1
  28. data/lib/aws/simple_db.rb +2 -2
  29. data/lib/aws/simple_db/attribute_collection.rb +2 -2
  30. data/lib/aws/simple_db/item_collection.rb +4 -4
  31. data/lib/aws/simple_email_service.rb +3 -3
  32. data/lib/aws/simple_email_service/client.rb +1 -1
  33. data/lib/aws/simple_email_service/email_address_collection.rb +1 -1
  34. data/lib/aws/simple_workflow.rb +5 -5
  35. data/lib/aws/simple_workflow/activity_task.rb +6 -6
  36. data/lib/aws/simple_workflow/decision_task.rb +2 -2
  37. data/lib/aws/simple_workflow/decision_task_collection.rb +4 -4
  38. data/lib/aws/simple_workflow/domain_collection.rb +3 -3
  39. data/lib/aws/simple_workflow/history_event_collection.rb +1 -1
  40. data/lib/aws/simple_workflow/workflow_execution.rb +3 -3
  41. data/lib/aws/simple_workflow/workflow_execution_collection.rb +8 -8
  42. data/lib/aws/simple_workflow/workflow_type.rb +1 -1
  43. data/lib/aws/version.rb +1 -1
  44. metadata +8 -2
@@ -39,7 +39,7 @@ module AWS
39
39
  super
40
40
  end
41
41
 
42
- # @return [WorkflowExectuion]
42
+ # @return [WorkflowExecution]
43
43
  attr_reader :workflow_execution
44
44
 
45
45
  # @return [WorkflowExecutionCollection] Returns a collection that
@@ -157,7 +157,7 @@ module AWS
157
157
  end
158
158
  end
159
159
 
160
- # @return [Symbol] Returns the status of this exeuction. Possible
160
+ # @return [Symbol] Returns the status of this execution. Possible
161
161
  # return values are:
162
162
  #
163
163
  # * +:open+ - The execution is still running.
@@ -171,7 +171,7 @@ module AWS
171
171
  # means the current execution was completed and a new execution
172
172
  # was started to carry on the workflow.
173
173
  # * +:terminated+ - The execution was force terminated.
174
- # * +:timed_out+ - The execution did not complete in the alloted
174
+ # * +:timed_out+ - The execution did not complete in the allotted
175
175
  # time and was automatically timed out.
176
176
  #
177
177
  def status
@@ -361,7 +361,7 @@ module AWS
361
361
  # +:open+.
362
362
  #
363
363
  # @return [Integer] Returns the count of executions that share
364
- # workflow id with the curren execution.
364
+ # workflow id with the current execution.
365
365
  #
366
366
  def count_executions options = {}
367
367
  options[:workflow_id] = workflow_id
@@ -270,7 +270,7 @@ module AWS
270
270
  # be one of the listed types. Integers are treated as timestamps
271
271
  # and strings are parsed by DateTime.
272
272
  #
273
- # @return [WorkflowExecutionCollection] Returns a colleciton
273
+ # @return [WorkflowExecutionCollection] Returns a collection
274
274
  # that will only enumerate or count executions that have start
275
275
  # times that fall within the given range.
276
276
  #
@@ -289,7 +289,7 @@ module AWS
289
289
  # be one of the listed types. Integers are treated as timestamps
290
290
  # and strings are parsed by DateTime.
291
291
  #
292
- # @return [WorkflowExecutionCollection] Returns a colleciton
292
+ # @return [WorkflowExecutionCollection] Returns a collection
293
293
  # that will only enumerate or count executions that started
294
294
  # before the given time.
295
295
  #
@@ -308,7 +308,7 @@ module AWS
308
308
  # be one of the listed types. Integers are treated as timestamps
309
309
  # and strings are parsed by DateTime.
310
310
  #
311
- # @return [WorkflowExecutionCollection] Returns a colleciton
311
+ # @return [WorkflowExecutionCollection] Returns a collection
312
312
  # that will only enumerate or count executions that started
313
313
  # after the given time.
314
314
  #
@@ -328,7 +328,7 @@ module AWS
328
328
  # be one of the listed types. Integers are treated as timestamps
329
329
  # and strings are parsed by DateTime.
330
330
  #
331
- # @return [WorkflowExecutionCollection] Returns a colleciton
331
+ # @return [WorkflowExecutionCollection] Returns a collection
332
332
  # that will only enumerate or count executions that closed
333
333
  # between the given times.
334
334
  #
@@ -347,7 +347,7 @@ module AWS
347
347
  # be one of the listed types. Integers are treated as timestamps
348
348
  # and strings are parsed by DateTime.
349
349
  #
350
- # @return [WorkflowExecutionCollection] Returns a colleciton
350
+ # @return [WorkflowExecutionCollection] Returns a collection
351
351
  # that will only enumerate or count executions that closed
352
352
  # before the given time.
353
353
  #
@@ -366,7 +366,7 @@ module AWS
366
366
  # be one of the listed types. Integers are treated as timestamps
367
367
  # and strings are parsed by DateTime.
368
368
  #
369
- # @return [WorkflowExecutionCollection] Returns a colleciton
369
+ # @return [WorkflowExecutionCollection] Returns a collection
370
370
  # that will only enumerate or count executions that closed
371
371
  # after the given time.
372
372
  #
@@ -375,7 +375,7 @@ module AWS
375
375
  end
376
376
 
377
377
  # Returns a collection that enumerates workflow executions in reverse
378
- # chronological order. By default exeuctions are enumerated in
378
+ # chronological order. By default executions are enumerated in
379
379
  # ascending order of their start or close time (ordered by
380
380
  # close time when filtered by #closed_between).
381
381
  #
@@ -482,7 +482,7 @@ module AWS
482
482
  # @option (see #count)
483
483
  # @option (see Core::Collection#each)
484
484
  # @option options [Boolean] :reverse_order Enumerates the workflow
485
- # execution in reverse chronoloical order if +true+. The date
485
+ # execution in reverse chronological order if +true+. The date
486
486
  # used will be the execution start time unless filtering by
487
487
  # closed before/after (then it will sort by the closed time).
488
488
  # @return (see Core::Collection#each)
@@ -25,7 +25,7 @@ module AWS
25
25
  #
26
26
  # See {WorkflowTypeCollection#register} for a complete list of options.
27
27
  #
28
- # == Deprecating a workflwo type
28
+ # == Deprecating a workflow type
29
29
  #
30
30
  # WorkflowType inherits from the generic {Type} base class. Defined in
31
31
  # {Type} are a few useful methods including:
data/lib/aws/version.rb CHANGED
@@ -14,5 +14,5 @@
14
14
 
15
15
  module AWS
16
16
  # Current version of the AWS SDK for Ruby
17
- VERSION = '1.8.1.3'
17
+ VERSION = '1.8.2'
18
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.1.3
4
+ version: 1.8.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-12 00:00:00.000000000 Z
12
+ date: 2013-02-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: uuidtools
@@ -419,6 +419,11 @@ files:
419
419
  - lib/aws/record/validators/numericality.rb
420
420
  - lib/aws/record/validators/presence.rb
421
421
  - lib/aws/record.rb
422
+ - lib/aws/redshift/client.rb
423
+ - lib/aws/redshift/config.rb
424
+ - lib/aws/redshift/errors.rb
425
+ - lib/aws/redshift/request.rb
426
+ - lib/aws/redshift.rb
422
427
  - lib/aws/route_53/change_batch.rb
423
428
  - lib/aws/route_53/change_info.rb
424
429
  - lib/aws/route_53/client.rb
@@ -579,6 +584,7 @@ files:
579
584
  - lib/aws/api_config/IAM-2010-05-08.yml
580
585
  - lib/aws/api_config/ImportExport-2010-06-01.yml
581
586
  - lib/aws/api_config/RDS-2012-09-17.yml
587
+ - lib/aws/api_config/Redshift-2012-12-01.yml
582
588
  - lib/aws/api_config/Route53-2012-02-29.yml
583
589
  - lib/aws/api_config/SimpleDB-2009-04-15.yml
584
590
  - lib/aws/api_config/SimpleEmailService-2010-12-01.yml