aws-sdk-importexport 1.19.0 → 1.24.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
2
  SHA256:
3
- metadata.gz: b10088e8d83b6b14f46ca38fa8375d4420a21c6a921dbd68e2a206960939b985
4
- data.tar.gz: c4826b26ef586af9d378a512327f7dfc9e48b60688049064551115586f2c8d3a
3
+ metadata.gz: f4b38132019c2c611830474436c948cdcb1e84007a179ff3cd3353056fa48eb4
4
+ data.tar.gz: 77f8cc2e2b5f1046d53a2cb903867b8cde94cebe984269ebc428a59cd59bd746
5
5
  SHA512:
6
- metadata.gz: e791d68b1bf6760150fbba310d84f10c1f62c30c73479ba71791056228027c9c96ae0935a1f86cf83852e455f8e82bd3da034334dcd767c6a82575cd43905af4
7
- data.tar.gz: 6eaabc7aa818d91e375ee8481d2a6c718c6850a93aceab946adb2ab0e4cbe5e19c06215a69ef971311881a1003d05601b97753b85750170a17650cdf8bc92b38
6
+ metadata.gz: c27c07f53ab9a1c6f91d4f8a62c63a9987dbccd502f4ba0b770302c329a93b3f0aac0f56982d9604e8d521948c4587fb99b50df99d9eb6431496dd15b22ade63
7
+ data.tar.gz: d0d1efb48e1d273fb91a04995a0a64ec02a3c2a0c28b598e905763e2193332f01bfbc6a3f6e5fbfaad6d9af769028c06e3daef7a5b5ed2fc1120538be9d35d9a
@@ -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:
@@ -5,6 +7,7 @@
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv2'
10
13
 
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-importexport/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::ImportExport
47
50
 
48
- GEM_VERSION = '1.19.0'
51
+ GEM_VERSION = '1.24.0'
49
52
 
50
53
  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
 
@@ -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,10 +116,10 @@ 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
@@ -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 a valid 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
@@ -659,7 +678,7 @@ module Aws::ImportExport
659
678
  params: params,
660
679
  config: config)
661
680
  context[:gem_name] = 'aws-sdk-importexport'
662
- context[:gem_version] = '1.19.0'
681
+ context[:gem_version] = '1.24.0'
663
682
  Seahorse::Client::Request.new(handlers, context)
664
683
  end
665
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:
@@ -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.19.0
4
+ version: 1.24.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-05-28 00:00:00.000000000 Z
11
+ date: 2020-09-30 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.109.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.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv2
35
35
  requirement: !ruby/object:Gem::Requirement