aws-sdk-dlm 1.27.0 → 1.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-dlm.rb +4 -2
- data/lib/aws-sdk-dlm/client.rb +36 -14
- data/lib/aws-sdk-dlm/client_api.rb +6 -2
- 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 +64 -13
- 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: 542442158badbe046c6bc714ec65318a95afa743441a4192eff7fcb641016031
|
4
|
+
data.tar.gz: '094a9082c41f84abc4974b62804e4b8ac2e4f070adb71b2bf87020e858ef07b2'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b22b43dec72b927f911e3c5b9684773d38ea2e76b08cbe631039dd4e001c931d1be23cf0af60febae842f2ca5da41f355e3a0b52fc8d4aae0629800474c5a44
|
7
|
+
data.tar.gz: 8f377ace0cd34553f943c8564d0a0524813c5cf15d51c3028981f3677c61599cbd3388c5072554c8bd62491415acb38c169ac2303fab8db7d192c9e183e79203
|
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:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-dlm/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::DLM
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.32.0'
|
49
51
|
|
50
52
|
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.
|
@@ -364,9 +383,10 @@ module Aws::DLM
|
|
364
383
|
# },
|
365
384
|
# ],
|
366
385
|
# create_rule: {
|
367
|
-
# interval: 1,
|
368
|
-
# interval_unit: "HOURS", #
|
386
|
+
# interval: 1,
|
387
|
+
# interval_unit: "HOURS", # accepts HOURS
|
369
388
|
# times: ["Time"],
|
389
|
+
# cron_expression: "CronExpression",
|
370
390
|
# },
|
371
391
|
# retain_rule: {
|
372
392
|
# count: 1,
|
@@ -540,6 +560,7 @@ module Aws::DLM
|
|
540
560
|
# resp.policy.policy_details.schedules[0].create_rule.interval_unit #=> String, one of "HOURS"
|
541
561
|
# resp.policy.policy_details.schedules[0].create_rule.times #=> Array
|
542
562
|
# resp.policy.policy_details.schedules[0].create_rule.times[0] #=> String
|
563
|
+
# resp.policy.policy_details.schedules[0].create_rule.cron_expression #=> String
|
543
564
|
# resp.policy.policy_details.schedules[0].retain_rule.count #=> Integer
|
544
565
|
# resp.policy.policy_details.schedules[0].retain_rule.interval #=> Integer
|
545
566
|
# resp.policy.policy_details.schedules[0].retain_rule.interval_unit #=> String, one of "DAYS", "WEEKS", "MONTHS", "YEARS"
|
@@ -706,9 +727,10 @@ module Aws::DLM
|
|
706
727
|
# },
|
707
728
|
# ],
|
708
729
|
# create_rule: {
|
709
|
-
# interval: 1,
|
710
|
-
# interval_unit: "HOURS", #
|
730
|
+
# interval: 1,
|
731
|
+
# interval_unit: "HOURS", # accepts HOURS
|
711
732
|
# times: ["Time"],
|
733
|
+
# cron_expression: "CronExpression",
|
712
734
|
# },
|
713
735
|
# retain_rule: {
|
714
736
|
# count: 1,
|
@@ -763,7 +785,7 @@ module Aws::DLM
|
|
763
785
|
params: params,
|
764
786
|
config: config)
|
765
787
|
context[:gem_name] = 'aws-sdk-dlm'
|
766
|
-
context[:gem_version] = '1.
|
788
|
+
context[:gem_version] = '1.32.0'
|
767
789
|
Seahorse::Client::Request.new(handlers, context)
|
768
790
|
end
|
769
791
|
|
@@ -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:
|
@@ -20,6 +22,7 @@ module Aws::DLM
|
|
20
22
|
CreateLifecyclePolicyRequest = Shapes::StructureShape.new(name: 'CreateLifecyclePolicyRequest')
|
21
23
|
CreateLifecyclePolicyResponse = Shapes::StructureShape.new(name: 'CreateLifecyclePolicyResponse')
|
22
24
|
CreateRule = Shapes::StructureShape.new(name: 'CreateRule')
|
25
|
+
CronExpression = Shapes::StringShape.new(name: 'CronExpression')
|
23
26
|
CrossRegionCopyRetainRule = Shapes::StructureShape.new(name: 'CrossRegionCopyRetainRule')
|
24
27
|
CrossRegionCopyRule = Shapes::StructureShape.new(name: 'CrossRegionCopyRule')
|
25
28
|
CrossRegionCopyRules = Shapes::ListShape.new(name: 'CrossRegionCopyRules')
|
@@ -100,9 +103,10 @@ module Aws::DLM
|
|
100
103
|
CreateLifecyclePolicyResponse.add_member(:policy_id, Shapes::ShapeRef.new(shape: PolicyId, location_name: "PolicyId"))
|
101
104
|
CreateLifecyclePolicyResponse.struct_class = Types::CreateLifecyclePolicyResponse
|
102
105
|
|
103
|
-
CreateRule.add_member(:interval, Shapes::ShapeRef.new(shape: Interval,
|
104
|
-
CreateRule.add_member(:interval_unit, Shapes::ShapeRef.new(shape: IntervalUnitValues,
|
106
|
+
CreateRule.add_member(:interval, Shapes::ShapeRef.new(shape: Interval, location_name: "Interval"))
|
107
|
+
CreateRule.add_member(:interval_unit, Shapes::ShapeRef.new(shape: IntervalUnitValues, location_name: "IntervalUnit"))
|
105
108
|
CreateRule.add_member(:times, Shapes::ShapeRef.new(shape: TimesList, location_name: "Times"))
|
109
|
+
CreateRule.add_member(:cron_expression, Shapes::ShapeRef.new(shape: CronExpression, location_name: "CronExpression"))
|
106
110
|
CreateRule.struct_class = Types::CreateRule
|
107
111
|
|
108
112
|
CrossRegionCopyRetainRule.add_member(:interval, Shapes::ShapeRef.new(shape: Interval, location_name: "Interval"))
|
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:
|
@@ -41,9 +43,10 @@ module Aws::DLM
|
|
41
43
|
# },
|
42
44
|
# ],
|
43
45
|
# create_rule: {
|
44
|
-
# interval: 1,
|
45
|
-
# interval_unit: "HOURS", #
|
46
|
+
# interval: 1,
|
47
|
+
# interval_unit: "HOURS", # accepts HOURS
|
46
48
|
# times: ["Time"],
|
49
|
+
# cron_expression: "CronExpression",
|
47
50
|
# },
|
48
51
|
# retain_rule: {
|
49
52
|
# count: 1,
|
@@ -109,6 +112,7 @@ module Aws::DLM
|
|
109
112
|
:state,
|
110
113
|
:policy_details,
|
111
114
|
:tags)
|
115
|
+
SENSITIVE = []
|
112
116
|
include Aws::Structure
|
113
117
|
end
|
114
118
|
|
@@ -120,18 +124,23 @@ module Aws::DLM
|
|
120
124
|
#
|
121
125
|
class CreateLifecyclePolicyResponse < Struct.new(
|
122
126
|
:policy_id)
|
127
|
+
SENSITIVE = []
|
123
128
|
include Aws::Structure
|
124
129
|
end
|
125
130
|
|
126
131
|
# Specifies when to create snapshots of EBS volumes.
|
127
132
|
#
|
133
|
+
# You must specify either a Cron expression or an interval, interval
|
134
|
+
# unit, and start time. You cannot specify both.
|
135
|
+
#
|
128
136
|
# @note When making an API call, you may pass CreateRule
|
129
137
|
# data as a hash:
|
130
138
|
#
|
131
139
|
# {
|
132
|
-
# interval: 1,
|
133
|
-
# interval_unit: "HOURS", #
|
140
|
+
# interval: 1,
|
141
|
+
# interval_unit: "HOURS", # accepts HOURS
|
134
142
|
# times: ["Time"],
|
143
|
+
# cron_expression: "CronExpression",
|
135
144
|
# }
|
136
145
|
#
|
137
146
|
# @!attribute [rw] interval
|
@@ -148,15 +157,28 @@ module Aws::DLM
|
|
148
157
|
# hh:mm.
|
149
158
|
#
|
150
159
|
# The operation occurs within a one-hour window following the
|
151
|
-
# specified time.
|
160
|
+
# specified time. If you do not specify a time, Amazon DLM selects a
|
161
|
+
# time within the next 24 hours.
|
152
162
|
# @return [Array<String>]
|
153
163
|
#
|
164
|
+
# @!attribute [rw] cron_expression
|
165
|
+
# The schedule, as a Cron expression. The schedule interval must be
|
166
|
+
# between 1 hour and 1 year. For more information, see [Cron
|
167
|
+
# expressions][1] in the *Amazon CloudWatch User Guide*.
|
168
|
+
#
|
169
|
+
#
|
170
|
+
#
|
171
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions
|
172
|
+
# @return [String]
|
173
|
+
#
|
154
174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dlm-2018-01-12/CreateRule AWS API Documentation
|
155
175
|
#
|
156
176
|
class CreateRule < Struct.new(
|
157
177
|
:interval,
|
158
178
|
:interval_unit,
|
159
|
-
:times
|
179
|
+
:times,
|
180
|
+
:cron_expression)
|
181
|
+
SENSITIVE = []
|
160
182
|
include Aws::Structure
|
161
183
|
end
|
162
184
|
|
@@ -184,6 +206,7 @@ module Aws::DLM
|
|
184
206
|
class CrossRegionCopyRetainRule < Struct.new(
|
185
207
|
:interval,
|
186
208
|
:interval_unit)
|
209
|
+
SENSITIVE = []
|
187
210
|
include Aws::Structure
|
188
211
|
end
|
189
212
|
|
@@ -237,6 +260,7 @@ module Aws::DLM
|
|
237
260
|
:cmk_arn,
|
238
261
|
:copy_tags,
|
239
262
|
:retain_rule)
|
263
|
+
SENSITIVE = []
|
240
264
|
include Aws::Structure
|
241
265
|
end
|
242
266
|
|
@@ -255,6 +279,7 @@ module Aws::DLM
|
|
255
279
|
#
|
256
280
|
class DeleteLifecyclePolicyRequest < Struct.new(
|
257
281
|
:policy_id)
|
282
|
+
SENSITIVE = []
|
258
283
|
include Aws::Structure
|
259
284
|
end
|
260
285
|
|
@@ -300,6 +325,7 @@ module Aws::DLM
|
|
300
325
|
:interval,
|
301
326
|
:interval_unit,
|
302
327
|
:availability_zones)
|
328
|
+
SENSITIVE = []
|
303
329
|
include Aws::Structure
|
304
330
|
end
|
305
331
|
|
@@ -349,6 +375,7 @@ module Aws::DLM
|
|
349
375
|
:resource_types,
|
350
376
|
:target_tags,
|
351
377
|
:tags_to_add)
|
378
|
+
SENSITIVE = []
|
352
379
|
include Aws::Structure
|
353
380
|
end
|
354
381
|
|
@@ -360,6 +387,7 @@ module Aws::DLM
|
|
360
387
|
#
|
361
388
|
class GetLifecyclePoliciesResponse < Struct.new(
|
362
389
|
:policies)
|
390
|
+
SENSITIVE = []
|
363
391
|
include Aws::Structure
|
364
392
|
end
|
365
393
|
|
@@ -378,6 +406,7 @@ module Aws::DLM
|
|
378
406
|
#
|
379
407
|
class GetLifecyclePolicyRequest < Struct.new(
|
380
408
|
:policy_id)
|
409
|
+
SENSITIVE = []
|
381
410
|
include Aws::Structure
|
382
411
|
end
|
383
412
|
|
@@ -389,6 +418,7 @@ module Aws::DLM
|
|
389
418
|
#
|
390
419
|
class GetLifecyclePolicyResponse < Struct.new(
|
391
420
|
:policy)
|
421
|
+
SENSITIVE = []
|
392
422
|
include Aws::Structure
|
393
423
|
end
|
394
424
|
|
@@ -405,6 +435,7 @@ module Aws::DLM
|
|
405
435
|
class InternalServerException < Struct.new(
|
406
436
|
:message,
|
407
437
|
:code)
|
438
|
+
SENSITIVE = []
|
408
439
|
include Aws::Structure
|
409
440
|
end
|
410
441
|
|
@@ -432,6 +463,7 @@ module Aws::DLM
|
|
432
463
|
:code,
|
433
464
|
:required_parameters,
|
434
465
|
:mutually_exclusive_parameters)
|
466
|
+
SENSITIVE = []
|
435
467
|
include Aws::Structure
|
436
468
|
end
|
437
469
|
|
@@ -491,6 +523,7 @@ module Aws::DLM
|
|
491
523
|
:policy_details,
|
492
524
|
:tags,
|
493
525
|
:policy_arn)
|
526
|
+
SENSITIVE = []
|
494
527
|
include Aws::Structure
|
495
528
|
end
|
496
529
|
|
@@ -519,6 +552,7 @@ module Aws::DLM
|
|
519
552
|
:description,
|
520
553
|
:state,
|
521
554
|
:tags)
|
555
|
+
SENSITIVE = []
|
522
556
|
include Aws::Structure
|
523
557
|
end
|
524
558
|
|
@@ -540,6 +574,7 @@ module Aws::DLM
|
|
540
574
|
:message,
|
541
575
|
:code,
|
542
576
|
:resource_type)
|
577
|
+
SENSITIVE = []
|
543
578
|
include Aws::Structure
|
544
579
|
end
|
545
580
|
|
@@ -558,6 +593,7 @@ module Aws::DLM
|
|
558
593
|
#
|
559
594
|
class ListTagsForResourceRequest < Struct.new(
|
560
595
|
:resource_arn)
|
596
|
+
SENSITIVE = []
|
561
597
|
include Aws::Structure
|
562
598
|
end
|
563
599
|
|
@@ -569,6 +605,7 @@ module Aws::DLM
|
|
569
605
|
#
|
570
606
|
class ListTagsForResourceResponse < Struct.new(
|
571
607
|
:tags)
|
608
|
+
SENSITIVE = []
|
572
609
|
include Aws::Structure
|
573
610
|
end
|
574
611
|
|
@@ -597,6 +634,7 @@ module Aws::DLM
|
|
597
634
|
#
|
598
635
|
class Parameters < Struct.new(
|
599
636
|
:exclude_boot_volume)
|
637
|
+
SENSITIVE = []
|
600
638
|
include Aws::Structure
|
601
639
|
end
|
602
640
|
|
@@ -631,9 +669,10 @@ module Aws::DLM
|
|
631
669
|
# },
|
632
670
|
# ],
|
633
671
|
# create_rule: {
|
634
|
-
# interval: 1,
|
635
|
-
# interval_unit: "HOURS", #
|
672
|
+
# interval: 1,
|
673
|
+
# interval_unit: "HOURS", # accepts HOURS
|
636
674
|
# times: ["Time"],
|
675
|
+
# cron_expression: "CronExpression",
|
637
676
|
# },
|
638
677
|
# retain_rule: {
|
639
678
|
# count: 1,
|
@@ -671,7 +710,9 @@ module Aws::DLM
|
|
671
710
|
# @return [String]
|
672
711
|
#
|
673
712
|
# @!attribute [rw] resource_types
|
674
|
-
# The resource type.
|
713
|
+
# The resource type. Use VOLUME to create snapshots of individual
|
714
|
+
# volumes or use INSTANCE to create multi-volume snapshots from the
|
715
|
+
# volumes for an instance.
|
675
716
|
# @return [Array<String>]
|
676
717
|
#
|
677
718
|
# @!attribute [rw] target_tags
|
@@ -694,6 +735,7 @@ module Aws::DLM
|
|
694
735
|
:target_tags,
|
695
736
|
:schedules,
|
696
737
|
:parameters)
|
738
|
+
SENSITIVE = []
|
697
739
|
include Aws::Structure
|
698
740
|
end
|
699
741
|
|
@@ -720,6 +762,7 @@ module Aws::DLM
|
|
720
762
|
:code,
|
721
763
|
:resource_type,
|
722
764
|
:resource_ids)
|
765
|
+
SENSITIVE = []
|
723
766
|
include Aws::Structure
|
724
767
|
end
|
725
768
|
|
@@ -755,6 +798,7 @@ module Aws::DLM
|
|
755
798
|
:count,
|
756
799
|
:interval,
|
757
800
|
:interval_unit)
|
801
|
+
SENSITIVE = []
|
758
802
|
include Aws::Structure
|
759
803
|
end
|
760
804
|
|
@@ -779,9 +823,10 @@ module Aws::DLM
|
|
779
823
|
# },
|
780
824
|
# ],
|
781
825
|
# create_rule: {
|
782
|
-
# interval: 1,
|
783
|
-
# interval_unit: "HOURS", #
|
826
|
+
# interval: 1,
|
827
|
+
# interval_unit: "HOURS", # accepts HOURS
|
784
828
|
# times: ["Time"],
|
829
|
+
# cron_expression: "CronExpression",
|
785
830
|
# },
|
786
831
|
# retain_rule: {
|
787
832
|
# count: 1,
|
@@ -857,6 +902,7 @@ module Aws::DLM
|
|
857
902
|
:retain_rule,
|
858
903
|
:fast_restore_rule,
|
859
904
|
:cross_region_copy_rules)
|
905
|
+
SENSITIVE = []
|
860
906
|
include Aws::Structure
|
861
907
|
end
|
862
908
|
|
@@ -883,6 +929,7 @@ module Aws::DLM
|
|
883
929
|
class Tag < Struct.new(
|
884
930
|
:key,
|
885
931
|
:value)
|
932
|
+
SENSITIVE = []
|
886
933
|
include Aws::Structure
|
887
934
|
end
|
888
935
|
|
@@ -909,6 +956,7 @@ module Aws::DLM
|
|
909
956
|
class TagResourceRequest < Struct.new(
|
910
957
|
:resource_arn,
|
911
958
|
:tags)
|
959
|
+
SENSITIVE = []
|
912
960
|
include Aws::Structure
|
913
961
|
end
|
914
962
|
|
@@ -937,6 +985,7 @@ module Aws::DLM
|
|
937
985
|
class UntagResourceRequest < Struct.new(
|
938
986
|
:resource_arn,
|
939
987
|
:tag_keys)
|
988
|
+
SENSITIVE = []
|
940
989
|
include Aws::Structure
|
941
990
|
end
|
942
991
|
|
@@ -978,9 +1027,10 @@ module Aws::DLM
|
|
978
1027
|
# },
|
979
1028
|
# ],
|
980
1029
|
# create_rule: {
|
981
|
-
# interval: 1,
|
982
|
-
# interval_unit: "HOURS", #
|
1030
|
+
# interval: 1,
|
1031
|
+
# interval_unit: "HOURS", # accepts HOURS
|
983
1032
|
# times: ["Time"],
|
1033
|
+
# cron_expression: "CronExpression",
|
984
1034
|
# },
|
985
1035
|
# retain_rule: {
|
986
1036
|
# count: 1,
|
@@ -1043,6 +1093,7 @@ module Aws::DLM
|
|
1043
1093
|
:state,
|
1044
1094
|
:description,
|
1045
1095
|
:policy_details)
|
1096
|
+
SENSITIVE = []
|
1046
1097
|
include Aws::Structure
|
1047
1098
|
end
|
1048
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.32.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-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.
|
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
|