aws-sdk-dlm 1.30.1 → 1.35.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 +25 -8
- 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 +32 -1
- 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: c9652ab7fec055fc3ef159fc3d692c8dfdbbfc4c2b51aadd2c0704afa94c85af
|
4
|
+
data.tar.gz: ca4f85fc03e1ebfb3d430d9dcdd4ec390ccb6dcb937a4ec05015e9d849ad2ffc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 901024e1f2c0bd8806244cb793eb4dce461ce10511dfbccf4b03fc308925e9c1b18732f1f868c079c5cf1091dba70bc784631be90b7c0c90533a35a7623378e2
|
7
|
+
data.tar.gz: 8333d001f81edce136f5a8a149dc8d9e5a0094e0870468eae3bb4a2e2cc42d65c6737e3e441f2438091a17a2e34305b70874e1d0b8cd158a6fa7de804c812fe8
|
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.35.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:
|
@@ -83,13 +85,28 @@ module Aws::DLM
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
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
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::DLM
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# 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.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -768,7 +785,7 @@ module Aws::DLM
|
|
768
785
|
params: params,
|
769
786
|
config: config)
|
770
787
|
context[:gem_name] = 'aws-sdk-dlm'
|
771
|
-
context[:gem_version] = '1.
|
788
|
+
context[:gem_version] = '1.35.0'
|
772
789
|
Seahorse::Client::Request.new(handlers, context)
|
773
790
|
end
|
774
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
|
|
@@ -699,7 +720,9 @@ module Aws::DLM
|
|
699
720
|
# @return [Array<Types::Tag>]
|
700
721
|
#
|
701
722
|
# @!attribute [rw] schedules
|
702
|
-
# The
|
723
|
+
# The schedules of policy-defined actions. A policy can have up to
|
724
|
+
# four schedules - one mandatory schedule and up to three optional
|
725
|
+
# schedules.
|
703
726
|
# @return [Array<Types::Schedule>]
|
704
727
|
#
|
705
728
|
# @!attribute [rw] parameters
|
@@ -714,6 +737,7 @@ module Aws::DLM
|
|
714
737
|
:target_tags,
|
715
738
|
:schedules,
|
716
739
|
:parameters)
|
740
|
+
SENSITIVE = []
|
717
741
|
include Aws::Structure
|
718
742
|
end
|
719
743
|
|
@@ -740,6 +764,7 @@ module Aws::DLM
|
|
740
764
|
:code,
|
741
765
|
:resource_type,
|
742
766
|
:resource_ids)
|
767
|
+
SENSITIVE = []
|
743
768
|
include Aws::Structure
|
744
769
|
end
|
745
770
|
|
@@ -775,6 +800,7 @@ module Aws::DLM
|
|
775
800
|
:count,
|
776
801
|
:interval,
|
777
802
|
:interval_unit)
|
803
|
+
SENSITIVE = []
|
778
804
|
include Aws::Structure
|
779
805
|
end
|
780
806
|
|
@@ -878,6 +904,7 @@ module Aws::DLM
|
|
878
904
|
:retain_rule,
|
879
905
|
:fast_restore_rule,
|
880
906
|
:cross_region_copy_rules)
|
907
|
+
SENSITIVE = []
|
881
908
|
include Aws::Structure
|
882
909
|
end
|
883
910
|
|
@@ -904,6 +931,7 @@ module Aws::DLM
|
|
904
931
|
class Tag < Struct.new(
|
905
932
|
:key,
|
906
933
|
:value)
|
934
|
+
SENSITIVE = []
|
907
935
|
include Aws::Structure
|
908
936
|
end
|
909
937
|
|
@@ -930,6 +958,7 @@ module Aws::DLM
|
|
930
958
|
class TagResourceRequest < Struct.new(
|
931
959
|
:resource_arn,
|
932
960
|
:tags)
|
961
|
+
SENSITIVE = []
|
933
962
|
include Aws::Structure
|
934
963
|
end
|
935
964
|
|
@@ -958,6 +987,7 @@ module Aws::DLM
|
|
958
987
|
class UntagResourceRequest < Struct.new(
|
959
988
|
:resource_arn,
|
960
989
|
:tag_keys)
|
990
|
+
SENSITIVE = []
|
961
991
|
include Aws::Structure
|
962
992
|
end
|
963
993
|
|
@@ -1065,6 +1095,7 @@ module Aws::DLM
|
|
1065
1095
|
:state,
|
1066
1096
|
:description,
|
1067
1097
|
:policy_details)
|
1098
|
+
SENSITIVE = []
|
1068
1099
|
include Aws::Structure
|
1069
1100
|
end
|
1070
1101
|
|
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.35.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-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.
|
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.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|