aws-sdk-importexport 1.17.0 → 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 26a5daff4bcf4ac8c98356e5ddb0f0be4a30aeee
4
- data.tar.gz: d5aabfd58ac7ac9f18177f526bd999cdbca86166
2
+ SHA256:
3
+ metadata.gz: f0f795e50b14b75df5468163db1c38a044f3ca4b3bb1681e68cc197ad32bc2f7
4
+ data.tar.gz: c8f9b6429e784a0a17e0961d25f80661245c506df42a6207b197cab71de77b2f
5
5
  SHA512:
6
- metadata.gz: 28e39f068b866f7de9b69a4812b83a5963edcbc782e4145ad4232a1034cca0c6b6aba3aa3d3908db63750afccc9fe24c938ebaaec2a6538f81e2f433e71bdd13
7
- data.tar.gz: 9503ad4bec3d9de38b34fd32cee9adbf897236c52df3b8a5a19b579324b4575875d2636885de62ae35d9cc8373cd29fbaba7356e166c894d9c03503bcb40f53f
6
+ metadata.gz: 33e29d643d6b6984564b0e488a1da60b3ac124cbf837ca10adb61da8a1645ad27797743caa61d496b8580ef9fde5fca5e628759c2062801fb659891328a6d6c1
7
+ data.tar.gz: 144c4cf4df1c2eee7c84e8ac50854051213f5adda542ba175c3b47ec42a895f4c75cc3a118ade05be33ebd58c6aded6492b3f790278c4e9c0b31bb2edc4539a6
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-importexport/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::ImportExport
47
49
 
48
- GEM_VERSION = '1.17.0'
50
+ GEM_VERSION = '1.22.0'
49
51
 
50
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v2.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/query.rb'
29
32
 
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:importexport)
32
35
  module Aws::ImportExport
33
36
  # An API client for ImportExport. To construct a client, you need to configure a `:region` and `:credentials`.
34
37
  #
35
- # client = Aws::ImportExport::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
38
+ # client = Aws::ImportExport::Client.new(
39
+ # region: region_name,
40
+ # credentials: credentials,
41
+ # # ...
42
+ # )
40
43
  #
41
44
  # For details on configuring region and credentials see
42
45
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -69,6 +72,7 @@ module Aws::ImportExport
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV2)
73
77
  add_plugin(Aws::Plugins::Protocols::Query)
74
78
 
@@ -81,13 +85,28 @@ module Aws::ImportExport
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,15 +116,15 @@ module Aws::ImportExport
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
107
126
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
127
+ # a default `:region` is searched for in the following locations:
109
128
  #
110
129
  # * `Aws.config[:region]`
111
130
  # * `ENV['AWS_REGION']`
@@ -161,7 +180,7 @@ module Aws::ImportExport
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +195,7 @@ module Aws::ImportExport
176
195
  # requests fetching endpoints information. Defaults to 60 sec.
177
196
  #
178
197
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
198
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
199
  #
181
200
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
201
  # The log formatter.
@@ -229,15 +248,19 @@ module Aws::ImportExport
229
248
  #
230
249
  # @option options [String] :retry_mode ("legacy")
231
250
  # Specifies which retry algorithm to use. Values are:
232
- # * `legacy` - The pre-existing retry behavior. This is default value if
233
- # no retry mode is provided.
234
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
- # This includes support for retry quotas, which limit the number of
236
- # unsuccessful retries a client can make.
237
- # * `adaptive` - An experimental retry mode that includes all the
238
- # functionality of `standard` mode along with automatic client side
239
- # throttling. This is a provisional mode that may change behavior
240
- # in the future.
251
+ #
252
+ # * `legacy` - The pre-existing retry behavior. This is default value if
253
+ # no retry mode is provided.
254
+ #
255
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
256
+ # This includes support for retry quotas, which limit the number of
257
+ # unsuccessful retries a client can make.
258
+ #
259
+ # * `adaptive` - An experimental retry mode that includes all the
260
+ # functionality of `standard` mode along with automatic client side
261
+ # throttling. This is a provisional mode that may change behavior
262
+ # in the future.
263
+ #
241
264
  #
242
265
  # @option options [String] :secret_access_key
243
266
  #
@@ -265,8 +288,7 @@ module Aws::ImportExport
265
288
  #
266
289
  # @option options [Integer] :http_read_timeout (60) The default
267
290
  # number of seconds to wait for response data. This value can
268
- # safely be set
269
- # per-request on the session yielded by {#session_for}.
291
+ # safely be set per-request on the session.
270
292
  #
271
293
  # @option options [Float] :http_idle_timeout (5) The number of
272
294
  # seconds a connection is allowed to sit idle before it is
@@ -278,7 +300,7 @@ module Aws::ImportExport
278
300
  # request body. This option has no effect unless the request has
279
301
  # "Expect" header set to "100-continue". Defaults to `nil` which
280
302
  # disables this behaviour. This value can safely be set per
281
- # request on the session yielded by {#session_for}.
303
+ # request on the session.
282
304
  #
283
305
  # @option options [Boolean] :http_wire_trace (false) When `true`,
284
306
  # HTTP debug output will be sent to the `:logger`.
@@ -564,6 +586,8 @@ module Aws::ImportExport
564
586
  # * {Types::ListJobsOutput#jobs #jobs} => Array<Types::Job>
565
587
  # * {Types::ListJobsOutput#is_truncated #is_truncated} => Boolean
566
588
  #
589
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
590
+ #
567
591
  # @example Request syntax with placeholder values
568
592
  #
569
593
  # resp = client.list_jobs({
@@ -654,7 +678,7 @@ module Aws::ImportExport
654
678
  params: params,
655
679
  config: config)
656
680
  context[:gem_name] = 'aws-sdk-importexport'
657
- context[:gem_version] = '1.17.0'
681
+ context[:gem_version] = '1.22.0'
658
682
  Seahorse::Client::Request.new(handlers, context)
659
683
  end
660
684
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,13 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::ImportExport
9
- # This class provides a resource oriented interface for ImportExport.
10
- # To create a resource object:
11
- # resource = Aws::ImportExport::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::ImportExport::Client.new(region: 'us-west-2')
15
- # resource = Aws::ImportExport::Resource.new(client: client)
11
+
16
12
  class Resource
17
13
 
18
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -22,6 +24,7 @@ module Aws::ImportExport
22
24
  class Artifact < Struct.new(
23
25
  :description,
24
26
  :url)
27
+ SENSITIVE = []
25
28
  include Aws::Structure
26
29
  end
27
30
 
@@ -34,6 +37,7 @@ module Aws::ImportExport
34
37
  #
35
38
  class BucketPermissionException < Struct.new(
36
39
  :message)
40
+ SENSITIVE = []
37
41
  include Aws::Structure
38
42
  end
39
43
 
@@ -58,6 +62,7 @@ module Aws::ImportExport
58
62
  class CancelJobInput < Struct.new(
59
63
  :job_id,
60
64
  :api_version)
65
+ SENSITIVE = []
61
66
  include Aws::Structure
62
67
  end
63
68
 
@@ -70,6 +75,7 @@ module Aws::ImportExport
70
75
  #
71
76
  class CancelJobOutput < Struct.new(
72
77
  :success)
78
+ SENSITIVE = []
73
79
  include Aws::Structure
74
80
  end
75
81
 
@@ -81,6 +87,7 @@ module Aws::ImportExport
81
87
  #
82
88
  class CanceledJobIdException < Struct.new(
83
89
  :message)
90
+ SENSITIVE = []
84
91
  include Aws::Structure
85
92
  end
86
93
 
@@ -124,6 +131,7 @@ module Aws::ImportExport
124
131
  :manifest_addendum,
125
132
  :validate_only,
126
133
  :api_version)
134
+ SENSITIVE = []
127
135
  include Aws::Structure
128
136
  end
129
137
 
@@ -164,6 +172,7 @@ module Aws::ImportExport
164
172
  :signature_file_contents,
165
173
  :warning_message,
166
174
  :artifact_list)
175
+ SENSITIVE = []
167
176
  include Aws::Structure
168
177
  end
169
178
 
@@ -177,6 +186,7 @@ module Aws::ImportExport
177
186
  #
178
187
  class CreateJobQuotaExceededException < Struct.new(
179
188
  :message)
189
+ SENSITIVE = []
180
190
  include Aws::Structure
181
191
  end
182
192
 
@@ -188,6 +198,7 @@ module Aws::ImportExport
188
198
  #
189
199
  class ExpiredJobIdException < Struct.new(
190
200
  :message)
201
+ SENSITIVE = []
191
202
  include Aws::Structure
192
203
  end
193
204
 
@@ -275,6 +286,7 @@ module Aws::ImportExport
275
286
  :street2,
276
287
  :street3,
277
288
  :api_version)
289
+ SENSITIVE = []
278
290
  include Aws::Structure
279
291
  end
280
292
 
@@ -287,6 +299,7 @@ module Aws::ImportExport
287
299
  class GetShippingLabelOutput < Struct.new(
288
300
  :shipping_label_url,
289
301
  :warning)
302
+ SENSITIVE = []
290
303
  include Aws::Structure
291
304
  end
292
305
 
@@ -311,6 +324,7 @@ module Aws::ImportExport
311
324
  class GetStatusInput < Struct.new(
312
325
  :job_id,
313
326
  :api_version)
327
+ SENSITIVE = []
314
328
  include Aws::Structure
315
329
  end
316
330
 
@@ -410,6 +424,7 @@ module Aws::ImportExport
410
424
  :current_manifest,
411
425
  :creation_date,
412
426
  :artifact_list)
427
+ SENSITIVE = []
413
428
  include Aws::Structure
414
429
  end
415
430
 
@@ -423,6 +438,7 @@ module Aws::ImportExport
423
438
  #
424
439
  class InvalidAccessKeyIdException < Struct.new(
425
440
  :message)
441
+ SENSITIVE = []
426
442
  include Aws::Structure
427
443
  end
428
444
 
@@ -434,6 +450,7 @@ module Aws::ImportExport
434
450
  #
435
451
  class InvalidAddressException < Struct.new(
436
452
  :message)
453
+ SENSITIVE = []
437
454
  include Aws::Structure
438
455
  end
439
456
 
@@ -446,6 +463,7 @@ module Aws::ImportExport
446
463
  #
447
464
  class InvalidCustomsException < Struct.new(
448
465
  :message)
466
+ SENSITIVE = []
449
467
  include Aws::Structure
450
468
  end
451
469
 
@@ -457,6 +475,7 @@ module Aws::ImportExport
457
475
  #
458
476
  class InvalidFileSystemException < Struct.new(
459
477
  :message)
478
+ SENSITIVE = []
460
479
  include Aws::Structure
461
480
  end
462
481
 
@@ -469,6 +488,7 @@ module Aws::ImportExport
469
488
  #
470
489
  class InvalidJobIdException < Struct.new(
471
490
  :message)
491
+ SENSITIVE = []
472
492
  include Aws::Structure
473
493
  end
474
494
 
@@ -480,6 +500,7 @@ module Aws::ImportExport
480
500
  #
481
501
  class InvalidManifestFieldException < Struct.new(
482
502
  :message)
503
+ SENSITIVE = []
483
504
  include Aws::Structure
484
505
  end
485
506
 
@@ -491,6 +512,7 @@ module Aws::ImportExport
491
512
  #
492
513
  class InvalidParameterException < Struct.new(
493
514
  :message)
515
+ SENSITIVE = []
494
516
  include Aws::Structure
495
517
  end
496
518
 
@@ -502,6 +524,7 @@ module Aws::ImportExport
502
524
  #
503
525
  class InvalidVersionException < Struct.new(
504
526
  :message)
527
+ SENSITIVE = []
505
528
  include Aws::Structure
506
529
  end
507
530
 
@@ -529,6 +552,7 @@ module Aws::ImportExport
529
552
  :creation_date,
530
553
  :is_canceled,
531
554
  :job_type)
555
+ SENSITIVE = []
532
556
  include Aws::Structure
533
557
  end
534
558
 
@@ -565,6 +589,7 @@ module Aws::ImportExport
565
589
  :max_jobs,
566
590
  :marker,
567
591
  :api_version)
592
+ SENSITIVE = []
568
593
  include Aws::Structure
569
594
  end
570
595
 
@@ -582,6 +607,7 @@ module Aws::ImportExport
582
607
  class ListJobsOutput < Struct.new(
583
608
  :jobs,
584
609
  :is_truncated)
610
+ SENSITIVE = []
585
611
  include Aws::Structure
586
612
  end
587
613
 
@@ -593,6 +619,7 @@ module Aws::ImportExport
593
619
  #
594
620
  class MalformedManifestException < Struct.new(
595
621
  :message)
622
+ SENSITIVE = []
596
623
  include Aws::Structure
597
624
  end
598
625
 
@@ -604,6 +631,7 @@ module Aws::ImportExport
604
631
  #
605
632
  class MissingCustomsException < Struct.new(
606
633
  :message)
634
+ SENSITIVE = []
607
635
  include Aws::Structure
608
636
  end
609
637
 
@@ -616,6 +644,7 @@ module Aws::ImportExport
616
644
  #
617
645
  class MissingManifestFieldException < Struct.new(
618
646
  :message)
647
+ SENSITIVE = []
619
648
  include Aws::Structure
620
649
  end
621
650
 
@@ -627,6 +656,7 @@ module Aws::ImportExport
627
656
  #
628
657
  class MissingParameterException < Struct.new(
629
658
  :message)
659
+ SENSITIVE = []
630
660
  include Aws::Structure
631
661
  end
632
662
 
@@ -639,6 +669,7 @@ module Aws::ImportExport
639
669
  #
640
670
  class MultipleRegionsException < Struct.new(
641
671
  :message)
672
+ SENSITIVE = []
642
673
  include Aws::Structure
643
674
  end
644
675
 
@@ -653,6 +684,7 @@ module Aws::ImportExport
653
684
  #
654
685
  class NoSuchBucketException < Struct.new(
655
686
  :message)
687
+ SENSITIVE = []
656
688
  include Aws::Structure
657
689
  end
658
690
 
@@ -664,6 +696,7 @@ module Aws::ImportExport
664
696
  #
665
697
  class UnableToCancelJobIdException < Struct.new(
666
698
  :message)
699
+ SENSITIVE = []
667
700
  include Aws::Structure
668
701
  end
669
702
 
@@ -675,6 +708,7 @@ module Aws::ImportExport
675
708
  #
676
709
  class UnableToUpdateJobIdException < Struct.new(
677
710
  :message)
711
+ SENSITIVE = []
678
712
  include Aws::Structure
679
713
  end
680
714
 
@@ -718,6 +752,7 @@ module Aws::ImportExport
718
752
  :job_type,
719
753
  :validate_only,
720
754
  :api_version)
755
+ SENSITIVE = []
721
756
  include Aws::Structure
722
757
  end
723
758
 
@@ -741,6 +776,7 @@ module Aws::ImportExport
741
776
  :success,
742
777
  :warning_message,
743
778
  :artifact_list)
779
+ SENSITIVE = []
744
780
  include Aws::Structure
745
781
  end
746
782
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-importexport
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.0
4
+ version: 1.22.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: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-08-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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv2
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - AWS Import/Export