aws-sdk-drs 1.6.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d03afd206d3e550043df1c1bba1fa4a7ab9a979562324870a34c32ae70edc9c0
4
- data.tar.gz: 031a87d08b289ae64eb053a041206f019b095893d311d7436ce65c53782bb408
3
+ metadata.gz: 651e72261df86a49e58c6cf387389caaeb7c7e18e8c2a1557e4712a0794104a6
4
+ data.tar.gz: f81ebd7a7a7b249c7d957ba2fd39e113a39c42a710072fc9d8568c64765630bd
5
5
  SHA512:
6
- metadata.gz: 9291053abb85dfadbe75233beb7625d1cb2d1f4fc044bb15e5bb5fc3ae9717b5020b1591ba39b410f4d0ace0fa206c546ff2ae389335c2f2d62500ad1a144aa5
7
- data.tar.gz: 9170d8e2ca5f5f2c2b5d9bc6fb0cdf7be91a95896af62c2c05d3c0bdb5904e45d914e2b215a308d2edbfe6a94bbf007240fb43055fad97c64e6caca89ddffad6
6
+ metadata.gz: 25adf5cb95675add7d9f532d089c4136ec6edd8cf115cb2bc301e7a40d407b1e442922e77a43398c33879e312a4575c8c878523ec22a4da2bbb947d3c8b35141
7
+ data.tar.gz: 4515303b0428d4c58677b1cc493b8a002fc6b3cc393cc44f4e68baa49973fcf6bf9369b243d2681ba2ac9b38dd47f0b05b95d20f3be6bc8d8ebd013bbf430bee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2022-09-13)
5
+ ------------------
6
+
7
+ * Feature - Fixed the data type of lagDuration that is returned in Describe Source Server API
8
+
4
9
  1.6.0 (2022-07-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -2250,7 +2250,7 @@ module Aws::Drs
2250
2250
  params: params,
2251
2251
  config: config)
2252
2252
  context[:gem_name] = 'aws-sdk-drs'
2253
- context[:gem_version] = '1.6.0'
2253
+ context[:gem_version] = '1.7.0'
2254
2254
  Seahorse::Client::Request.new(handlers, context)
2255
2255
  end
2256
2256
 
@@ -84,6 +84,7 @@ module Aws::Drs
84
84
  GetReplicationConfigurationRequest = Shapes::StructureShape.new(name: 'GetReplicationConfigurationRequest')
85
85
  IPsList = Shapes::ListShape.new(name: 'IPsList')
86
86
  ISO8601DatetimeString = Shapes::StringShape.new(name: 'ISO8601DatetimeString')
87
+ ISO8601DurationString = Shapes::StringShape.new(name: 'ISO8601DurationString')
87
88
  IdentificationHints = Shapes::StructureShape.new(name: 'IdentificationHints')
88
89
  InitializeServiceRequest = Shapes::StructureShape.new(name: 'InitializeServiceRequest')
89
90
  InitializeServiceResponse = Shapes::StructureShape.new(name: 'InitializeServiceResponse')
@@ -271,7 +272,7 @@ module Aws::Drs
271
272
  DataReplicationInfo.add_member(:data_replication_initiation, Shapes::ShapeRef.new(shape: DataReplicationInitiation, location_name: "dataReplicationInitiation"))
272
273
  DataReplicationInfo.add_member(:data_replication_state, Shapes::ShapeRef.new(shape: DataReplicationState, location_name: "dataReplicationState"))
273
274
  DataReplicationInfo.add_member(:eta_date_time, Shapes::ShapeRef.new(shape: ISO8601DatetimeString, location_name: "etaDateTime"))
274
- DataReplicationInfo.add_member(:lag_duration, Shapes::ShapeRef.new(shape: ISO8601DatetimeString, location_name: "lagDuration"))
275
+ DataReplicationInfo.add_member(:lag_duration, Shapes::ShapeRef.new(shape: ISO8601DurationString, location_name: "lagDuration"))
275
276
  DataReplicationInfo.add_member(:replicated_disks, Shapes::ShapeRef.new(shape: DataReplicationInfoReplicatedDisks, location_name: "replicatedDisks"))
276
277
  DataReplicationInfo.struct_class = Types::DataReplicationInfo
277
278
 
@@ -479,7 +480,7 @@ module Aws::Drs
479
480
  Licensing.struct_class = Types::Licensing
480
481
 
481
482
  LifeCycle.add_member(:added_to_service_date_time, Shapes::ShapeRef.new(shape: ISO8601DatetimeString, location_name: "addedToServiceDateTime"))
482
- LifeCycle.add_member(:elapsed_replication_duration, Shapes::ShapeRef.new(shape: ISO8601DatetimeString, location_name: "elapsedReplicationDuration"))
483
+ LifeCycle.add_member(:elapsed_replication_duration, Shapes::ShapeRef.new(shape: ISO8601DurationString, location_name: "elapsedReplicationDuration"))
483
484
  LifeCycle.add_member(:first_byte_date_time, Shapes::ShapeRef.new(shape: ISO8601DatetimeString, location_name: "firstByteDateTime"))
484
485
  LifeCycle.add_member(:last_launch, Shapes::ShapeRef.new(shape: LifeCycleLastLaunch, location_name: "lastLaunch"))
485
486
  LifeCycle.add_member(:last_seen_by_service_date_time, Shapes::ShapeRef.new(shape: ISO8601DatetimeString, location_name: "lastSeenByServiceDateTime"))
data/lib/aws-sdk-drs.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-drs/customizations'
48
48
  # @!group service
49
49
  module Aws::Drs
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.7.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-drs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.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: 2022-07-15 00:00:00.000000000 Z
11
+ date: 2022-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core