aws-sdk-drs 1.19.0 → 1.20.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: b2e4583218fcf3c03a2eb5888d4d68d649deef4fa0117351a6b83df38a1078a9
4
- data.tar.gz: '079223d3f3aa44e62255d2a22dd1ff606b8d5701fe5e03d160df00d939115f00'
3
+ metadata.gz: 6e2015ca80983d1a75140dd328cdbe70c943acf84332c0b24985461739140010
4
+ data.tar.gz: 42ea1574b16bf9aafd63b2807b5587a5d985eaa98aca1eb46fd7fa3942afa7d7
5
5
  SHA512:
6
- metadata.gz: 6c4949df1c967e7e4f6526b7e5c1b4b180fb0f1f79bd7bae7fbcee42acd4ef9f7a7c6960df1639b1269577716002c63376e9f8dee6cba2d86f2dee5d3884a23f
7
- data.tar.gz: f177e5fd21406ea5a7a6e88813d10cdb6968999f2d03a529c4588f136e71bfdd76e98af31557b02e6e42b82362f1b454db6705a8755dc08cfc8802de5ccdca8e
6
+ metadata.gz: 220a20fd5070aaeb225be95f9decc7a40cf50ca3f5b2f41d09a67e689db8b04dfc7507c477f921634d7355262b974ee7a19d3955feec06d38a7109e0aac9e9a8
7
+ data.tar.gz: 04bd8cc36d1dab79c140a6b7d46b32d13cbf00dfcf03d14e8359d2c5b6f05491f430b2d98f73a11ab3ed7f2aa132eaca8040260484716d7b86cab1517a4a5064
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2023-07-31)
5
+ ------------------
6
+
7
+ * Feature - Add support for in-aws right sizing
8
+
4
9
  1.19.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.20.0
@@ -574,7 +574,7 @@ module Aws::Drs
574
574
  # tags: {
575
575
  # "TagKey" => "TagValue",
576
576
  # },
577
- # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
577
+ # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC, IN_AWS
578
578
  # })
579
579
  #
580
580
  # @example Response structure
@@ -588,7 +588,7 @@ module Aws::Drs
588
588
  # resp.launch_configuration_template.licensing.os_byol #=> Boolean
589
589
  # resp.launch_configuration_template.tags #=> Hash
590
590
  # resp.launch_configuration_template.tags["TagKey"] #=> String
591
- # resp.launch_configuration_template.target_instance_type_right_sizing_method #=> String, one of "NONE", "BASIC"
591
+ # resp.launch_configuration_template.target_instance_type_right_sizing_method #=> String, one of "NONE", "BASIC", "IN_AWS"
592
592
  #
593
593
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/CreateLaunchConfigurationTemplate AWS API Documentation
594
594
  #
@@ -1085,7 +1085,7 @@ module Aws::Drs
1085
1085
  # resp.items[0].licensing.os_byol #=> Boolean
1086
1086
  # resp.items[0].tags #=> Hash
1087
1087
  # resp.items[0].tags["TagKey"] #=> String
1088
- # resp.items[0].target_instance_type_right_sizing_method #=> String, one of "NONE", "BASIC"
1088
+ # resp.items[0].target_instance_type_right_sizing_method #=> String, one of "NONE", "BASIC", "IN_AWS"
1089
1089
  # resp.next_token #=> String
1090
1090
  #
1091
1091
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/DescribeLaunchConfigurationTemplates AWS API Documentation
@@ -1728,7 +1728,7 @@ module Aws::Drs
1728
1728
  # resp.licensing.os_byol #=> Boolean
1729
1729
  # resp.name #=> String
1730
1730
  # resp.source_server_id #=> String
1731
- # resp.target_instance_type_right_sizing_method #=> String, one of "NONE", "BASIC"
1731
+ # resp.target_instance_type_right_sizing_method #=> String, one of "NONE", "BASIC", "IN_AWS"
1732
1732
  #
1733
1733
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/GetLaunchConfiguration AWS API Documentation
1734
1734
  #
@@ -2730,7 +2730,7 @@ module Aws::Drs
2730
2730
  # },
2731
2731
  # name: "SmallBoundedString",
2732
2732
  # source_server_id: "SourceServerID", # required
2733
- # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
2733
+ # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC, IN_AWS
2734
2734
  # })
2735
2735
  #
2736
2736
  # @example Response structure
@@ -2742,7 +2742,7 @@ module Aws::Drs
2742
2742
  # resp.licensing.os_byol #=> Boolean
2743
2743
  # resp.name #=> String
2744
2744
  # resp.source_server_id #=> String
2745
- # resp.target_instance_type_right_sizing_method #=> String, one of "NONE", "BASIC"
2745
+ # resp.target_instance_type_right_sizing_method #=> String, one of "NONE", "BASIC", "IN_AWS"
2746
2746
  #
2747
2747
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/UpdateLaunchConfiguration AWS API Documentation
2748
2748
  #
@@ -2791,7 +2791,7 @@ module Aws::Drs
2791
2791
  # licensing: {
2792
2792
  # os_byol: false,
2793
2793
  # },
2794
- # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
2794
+ # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC, IN_AWS
2795
2795
  # })
2796
2796
  #
2797
2797
  # @example Response structure
@@ -2805,7 +2805,7 @@ module Aws::Drs
2805
2805
  # resp.launch_configuration_template.licensing.os_byol #=> Boolean
2806
2806
  # resp.launch_configuration_template.tags #=> Hash
2807
2807
  # resp.launch_configuration_template.tags["TagKey"] #=> String
2808
- # resp.launch_configuration_template.target_instance_type_right_sizing_method #=> String, one of "NONE", "BASIC"
2808
+ # resp.launch_configuration_template.target_instance_type_right_sizing_method #=> String, one of "NONE", "BASIC", "IN_AWS"
2809
2809
  #
2810
2810
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/UpdateLaunchConfigurationTemplate AWS API Documentation
2811
2811
  #
@@ -3137,7 +3137,7 @@ module Aws::Drs
3137
3137
  params: params,
3138
3138
  config: config)
3139
3139
  context[:gem_name] = 'aws-sdk-drs'
3140
- context[:gem_version] = '1.19.0'
3140
+ context[:gem_version] = '1.20.0'
3141
3141
  Seahorse::Client::Request.new(handlers, context)
3142
3142
  end
3143
3143
 
data/lib/aws-sdk-drs.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-drs/customizations'
52
52
  # @!group service
53
53
  module Aws::Drs
54
54
 
55
- GEM_VERSION = '1.19.0'
55
+ GEM_VERSION = '1.20.0'
56
56
 
57
57
  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.19.0
4
+ version: 1.20.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: 2023-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core