aws-sdk-dlm 1.28.0 → 1.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-dlm.rb +5 -2
- data/lib/aws-sdk-dlm/client.rb +29 -10
- data/lib/aws-sdk-dlm/client_api.rb +2 -0
- data/lib/aws-sdk-dlm/errors.rb +2 -0
- data/lib/aws-sdk-dlm/resource.rb +2 -0
- data/lib/aws-sdk-dlm/types.rb +29 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69e0280fd5baecaa021ecd3d729ec17b53b52050a78cd98c896a7876482cfe18
|
4
|
+
data.tar.gz: 23f9bd8402a4cdcab4558176399f9bfc0102cf741a7bbd85dad5a48a6fc3ea5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc6d7cbb5d3149000ce0416526d8063b66e4a33626a7b9679a128b777974ffe8dc5b5a1f8b199c9f94b68de95a75d22b3e2bfb4699aa9bb29835563928ea989b
|
7
|
+
data.tar.gz: 392c76690da0687ea90b73204fa23e26372c7c2bd1c34f7e411ccd75583ca4a0fe0b7e2f4fcf2d89e4fb8df2f91bfaa2b0a4137e60d99c01a259f6eabce87f8d
|
data/lib/aws-sdk-dlm.rb
CHANGED
@@ -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-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-dlm/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::DLM
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.33.0'
|
49
52
|
|
50
53
|
end
|
data/lib/aws-sdk-dlm/client.rb
CHANGED
@@ -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_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::DLM
|
|
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::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::DLM
|
|
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::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
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::DLM
|
|
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
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
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::DLM
|
|
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
|
@@ -176,7 +195,7 @@ module Aws::DLM
|
|
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.
|
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.
|
@@ -766,7 +785,7 @@ module Aws::DLM
|
|
766
785
|
params: params,
|
767
786
|
config: config)
|
768
787
|
context[:gem_name] = 'aws-sdk-dlm'
|
769
|
-
context[:gem_version] = '1.
|
788
|
+
context[:gem_version] = '1.33.0'
|
770
789
|
Seahorse::Client::Request.new(handlers, context)
|
771
790
|
end
|
772
791
|
|
data/lib/aws-sdk-dlm/errors.rb
CHANGED
data/lib/aws-sdk-dlm/resource.rb
CHANGED
data/lib/aws-sdk-dlm/types.rb
CHANGED
@@ -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:
|
@@ -110,6 +112,7 @@ module Aws::DLM
|
|
110
112
|
:state,
|
111
113
|
:policy_details,
|
112
114
|
:tags)
|
115
|
+
SENSITIVE = []
|
113
116
|
include Aws::Structure
|
114
117
|
end
|
115
118
|
|
@@ -121,6 +124,7 @@ module Aws::DLM
|
|
121
124
|
#
|
122
125
|
class CreateLifecyclePolicyResponse < Struct.new(
|
123
126
|
:policy_id)
|
127
|
+
SENSITIVE = []
|
124
128
|
include Aws::Structure
|
125
129
|
end
|
126
130
|
|
@@ -174,6 +178,7 @@ module Aws::DLM
|
|
174
178
|
:interval_unit,
|
175
179
|
:times,
|
176
180
|
:cron_expression)
|
181
|
+
SENSITIVE = []
|
177
182
|
include Aws::Structure
|
178
183
|
end
|
179
184
|
|
@@ -201,6 +206,7 @@ module Aws::DLM
|
|
201
206
|
class CrossRegionCopyRetainRule < Struct.new(
|
202
207
|
:interval,
|
203
208
|
:interval_unit)
|
209
|
+
SENSITIVE = []
|
204
210
|
include Aws::Structure
|
205
211
|
end
|
206
212
|
|
@@ -254,6 +260,7 @@ module Aws::DLM
|
|
254
260
|
:cmk_arn,
|
255
261
|
:copy_tags,
|
256
262
|
:retain_rule)
|
263
|
+
SENSITIVE = []
|
257
264
|
include Aws::Structure
|
258
265
|
end
|
259
266
|
|
@@ -272,6 +279,7 @@ module Aws::DLM
|
|
272
279
|
#
|
273
280
|
class DeleteLifecyclePolicyRequest < Struct.new(
|
274
281
|
:policy_id)
|
282
|
+
SENSITIVE = []
|
275
283
|
include Aws::Structure
|
276
284
|
end
|
277
285
|
|
@@ -317,6 +325,7 @@ module Aws::DLM
|
|
317
325
|
:interval,
|
318
326
|
:interval_unit,
|
319
327
|
:availability_zones)
|
328
|
+
SENSITIVE = []
|
320
329
|
include Aws::Structure
|
321
330
|
end
|
322
331
|
|
@@ -366,6 +375,7 @@ module Aws::DLM
|
|
366
375
|
:resource_types,
|
367
376
|
:target_tags,
|
368
377
|
:tags_to_add)
|
378
|
+
SENSITIVE = []
|
369
379
|
include Aws::Structure
|
370
380
|
end
|
371
381
|
|
@@ -377,6 +387,7 @@ module Aws::DLM
|
|
377
387
|
#
|
378
388
|
class GetLifecyclePoliciesResponse < Struct.new(
|
379
389
|
:policies)
|
390
|
+
SENSITIVE = []
|
380
391
|
include Aws::Structure
|
381
392
|
end
|
382
393
|
|
@@ -395,6 +406,7 @@ module Aws::DLM
|
|
395
406
|
#
|
396
407
|
class GetLifecyclePolicyRequest < Struct.new(
|
397
408
|
:policy_id)
|
409
|
+
SENSITIVE = []
|
398
410
|
include Aws::Structure
|
399
411
|
end
|
400
412
|
|
@@ -406,6 +418,7 @@ module Aws::DLM
|
|
406
418
|
#
|
407
419
|
class GetLifecyclePolicyResponse < Struct.new(
|
408
420
|
:policy)
|
421
|
+
SENSITIVE = []
|
409
422
|
include Aws::Structure
|
410
423
|
end
|
411
424
|
|
@@ -422,6 +435,7 @@ module Aws::DLM
|
|
422
435
|
class InternalServerException < Struct.new(
|
423
436
|
:message,
|
424
437
|
:code)
|
438
|
+
SENSITIVE = []
|
425
439
|
include Aws::Structure
|
426
440
|
end
|
427
441
|
|
@@ -449,6 +463,7 @@ module Aws::DLM
|
|
449
463
|
:code,
|
450
464
|
:required_parameters,
|
451
465
|
:mutually_exclusive_parameters)
|
466
|
+
SENSITIVE = []
|
452
467
|
include Aws::Structure
|
453
468
|
end
|
454
469
|
|
@@ -508,6 +523,7 @@ module Aws::DLM
|
|
508
523
|
:policy_details,
|
509
524
|
:tags,
|
510
525
|
:policy_arn)
|
526
|
+
SENSITIVE = []
|
511
527
|
include Aws::Structure
|
512
528
|
end
|
513
529
|
|
@@ -536,6 +552,7 @@ module Aws::DLM
|
|
536
552
|
:description,
|
537
553
|
:state,
|
538
554
|
:tags)
|
555
|
+
SENSITIVE = []
|
539
556
|
include Aws::Structure
|
540
557
|
end
|
541
558
|
|
@@ -557,6 +574,7 @@ module Aws::DLM
|
|
557
574
|
:message,
|
558
575
|
:code,
|
559
576
|
:resource_type)
|
577
|
+
SENSITIVE = []
|
560
578
|
include Aws::Structure
|
561
579
|
end
|
562
580
|
|
@@ -575,6 +593,7 @@ module Aws::DLM
|
|
575
593
|
#
|
576
594
|
class ListTagsForResourceRequest < Struct.new(
|
577
595
|
:resource_arn)
|
596
|
+
SENSITIVE = []
|
578
597
|
include Aws::Structure
|
579
598
|
end
|
580
599
|
|
@@ -586,6 +605,7 @@ module Aws::DLM
|
|
586
605
|
#
|
587
606
|
class ListTagsForResourceResponse < Struct.new(
|
588
607
|
:tags)
|
608
|
+
SENSITIVE = []
|
589
609
|
include Aws::Structure
|
590
610
|
end
|
591
611
|
|
@@ -614,6 +634,7 @@ module Aws::DLM
|
|
614
634
|
#
|
615
635
|
class Parameters < Struct.new(
|
616
636
|
:exclude_boot_volume)
|
637
|
+
SENSITIVE = []
|
617
638
|
include Aws::Structure
|
618
639
|
end
|
619
640
|
|
@@ -714,6 +735,7 @@ module Aws::DLM
|
|
714
735
|
:target_tags,
|
715
736
|
:schedules,
|
716
737
|
:parameters)
|
738
|
+
SENSITIVE = []
|
717
739
|
include Aws::Structure
|
718
740
|
end
|
719
741
|
|
@@ -740,6 +762,7 @@ module Aws::DLM
|
|
740
762
|
:code,
|
741
763
|
:resource_type,
|
742
764
|
:resource_ids)
|
765
|
+
SENSITIVE = []
|
743
766
|
include Aws::Structure
|
744
767
|
end
|
745
768
|
|
@@ -775,6 +798,7 @@ module Aws::DLM
|
|
775
798
|
:count,
|
776
799
|
:interval,
|
777
800
|
:interval_unit)
|
801
|
+
SENSITIVE = []
|
778
802
|
include Aws::Structure
|
779
803
|
end
|
780
804
|
|
@@ -878,6 +902,7 @@ module Aws::DLM
|
|
878
902
|
:retain_rule,
|
879
903
|
:fast_restore_rule,
|
880
904
|
:cross_region_copy_rules)
|
905
|
+
SENSITIVE = []
|
881
906
|
include Aws::Structure
|
882
907
|
end
|
883
908
|
|
@@ -904,6 +929,7 @@ module Aws::DLM
|
|
904
929
|
class Tag < Struct.new(
|
905
930
|
:key,
|
906
931
|
:value)
|
932
|
+
SENSITIVE = []
|
907
933
|
include Aws::Structure
|
908
934
|
end
|
909
935
|
|
@@ -930,6 +956,7 @@ module Aws::DLM
|
|
930
956
|
class TagResourceRequest < Struct.new(
|
931
957
|
:resource_arn,
|
932
958
|
:tags)
|
959
|
+
SENSITIVE = []
|
933
960
|
include Aws::Structure
|
934
961
|
end
|
935
962
|
|
@@ -958,6 +985,7 @@ module Aws::DLM
|
|
958
985
|
class UntagResourceRequest < Struct.new(
|
959
986
|
:resource_arn,
|
960
987
|
:tag_keys)
|
988
|
+
SENSITIVE = []
|
961
989
|
include Aws::Structure
|
962
990
|
end
|
963
991
|
|
@@ -1065,6 +1093,7 @@ module Aws::DLM
|
|
1065
1093
|
:state,
|
1066
1094
|
:description,
|
1067
1095
|
:policy_details)
|
1096
|
+
SENSITIVE = []
|
1068
1097
|
include Aws::Structure
|
1069
1098
|
end
|
1070
1099
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dlm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.33.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-
|
11
|
+
date: 2020-09-15 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.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.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|