aws-sdk-drs 1.18.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: 5569e923023dfcf420eb7ea963aaf4fb3f08947521c5f0d4460fb91534bae69f
4
- data.tar.gz: 344e25e230d8529c374e6925fa560bbeade5865c3b282367c8e88565f0d36574
3
+ metadata.gz: 6e2015ca80983d1a75140dd328cdbe70c943acf84332c0b24985461739140010
4
+ data.tar.gz: 42ea1574b16bf9aafd63b2807b5587a5d985eaa98aca1eb46fd7fa3942afa7d7
5
5
  SHA512:
6
- metadata.gz: 9bd6320501de1a6e86c9c013ed17f24dbb406bb5ff761ba6a1fca799e72747a469a214c7a8c4af91ad6aa843530f79cf1786d77f47f3aa0e2f0611ab9dfd2c0e
7
- data.tar.gz: be93c6ff9fe0c9c735cac43edd138c73558eab722fe40820c3c100e6889815c37f4654e206657eef8c4d7c1095efe62a98e2db6c46a77e7281d542515b6e627e
6
+ metadata.gz: 220a20fd5070aaeb225be95f9decc7a40cf50ca3f5b2f41d09a67e689db8b04dfc7507c477f921634d7355262b974ee7a19d3955feec06d38a7109e0aac9e9a8
7
+ data.tar.gz: 04bd8cc36d1dab79c140a6b7d46b32d13cbf00dfcf03d14e8359d2c5b6f05491f430b2d98f73a11ab3ed7f2aa132eaca8040260484716d7b86cab1517a4a5064
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.19.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.18.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.20.0
@@ -216,6 +216,10 @@ module Aws::Drs
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -570,7 +574,7 @@ module Aws::Drs
570
574
  # tags: {
571
575
  # "TagKey" => "TagValue",
572
576
  # },
573
- # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
577
+ # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC, IN_AWS
574
578
  # })
575
579
  #
576
580
  # @example Response structure
@@ -584,7 +588,7 @@ module Aws::Drs
584
588
  # resp.launch_configuration_template.licensing.os_byol #=> Boolean
585
589
  # resp.launch_configuration_template.tags #=> Hash
586
590
  # resp.launch_configuration_template.tags["TagKey"] #=> String
587
- # 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"
588
592
  #
589
593
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/CreateLaunchConfigurationTemplate AWS API Documentation
590
594
  #
@@ -1081,7 +1085,7 @@ module Aws::Drs
1081
1085
  # resp.items[0].licensing.os_byol #=> Boolean
1082
1086
  # resp.items[0].tags #=> Hash
1083
1087
  # resp.items[0].tags["TagKey"] #=> String
1084
- # 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"
1085
1089
  # resp.next_token #=> String
1086
1090
  #
1087
1091
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/DescribeLaunchConfigurationTemplates AWS API Documentation
@@ -1724,7 +1728,7 @@ module Aws::Drs
1724
1728
  # resp.licensing.os_byol #=> Boolean
1725
1729
  # resp.name #=> String
1726
1730
  # resp.source_server_id #=> String
1727
- # 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"
1728
1732
  #
1729
1733
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/GetLaunchConfiguration AWS API Documentation
1730
1734
  #
@@ -2726,7 +2730,7 @@ module Aws::Drs
2726
2730
  # },
2727
2731
  # name: "SmallBoundedString",
2728
2732
  # source_server_id: "SourceServerID", # required
2729
- # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
2733
+ # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC, IN_AWS
2730
2734
  # })
2731
2735
  #
2732
2736
  # @example Response structure
@@ -2738,7 +2742,7 @@ module Aws::Drs
2738
2742
  # resp.licensing.os_byol #=> Boolean
2739
2743
  # resp.name #=> String
2740
2744
  # resp.source_server_id #=> String
2741
- # 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"
2742
2746
  #
2743
2747
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/UpdateLaunchConfiguration AWS API Documentation
2744
2748
  #
@@ -2787,7 +2791,7 @@ module Aws::Drs
2787
2791
  # licensing: {
2788
2792
  # os_byol: false,
2789
2793
  # },
2790
- # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
2794
+ # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC, IN_AWS
2791
2795
  # })
2792
2796
  #
2793
2797
  # @example Response structure
@@ -2801,7 +2805,7 @@ module Aws::Drs
2801
2805
  # resp.launch_configuration_template.licensing.os_byol #=> Boolean
2802
2806
  # resp.launch_configuration_template.tags #=> Hash
2803
2807
  # resp.launch_configuration_template.tags["TagKey"] #=> String
2804
- # 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"
2805
2809
  #
2806
2810
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/UpdateLaunchConfigurationTemplate AWS API Documentation
2807
2811
  #
@@ -3133,7 +3137,7 @@ module Aws::Drs
3133
3137
  params: params,
3134
3138
  config: config)
3135
3139
  context[:gem_name] = 'aws-sdk-drs'
3136
- context[:gem_version] = '1.18.0'
3140
+ context[:gem_version] = '1.20.0'
3137
3141
  Seahorse::Client::Request.new(handlers, context)
3138
3142
  end
3139
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.18.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.18.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-06 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