aws-sdk-evs 1.17.0 → 1.18.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-evs/client.rb +2 -2
- data/lib/aws-sdk-evs/types.rb +2 -2
- data/lib/aws-sdk-evs.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6cb247b9b801499e726ffee24cb6855cd655a52657abe55a9fecd7d9d7993389
|
|
4
|
+
data.tar.gz: dcc306e0478d42a34013715a94e226174a4ef2e44f4dade566c9099d9cf2f920
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 990ef5ff6924017f524ccf20e113728dcafee357151949f600cb742916f1e4891ffb293e08bdc3259d18966184557dca1b70bf148462dc5c9086f4ef19ba06bb
|
|
7
|
+
data.tar.gz: 24ad428fa70a742fcc63a2ebb015915d8f69155d1047df19a99779c6e92bd41e836f2e22be9466fc9c1ee33b60a0cfbda78042dea49223ce48f0ef4f950c7981
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.18.0 (2026-05-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon EVS now supports up to 32 hosts per EVS environment, increasing the previous host limit to allow a larger scale of VMware workload deployments and reduce operational overhead.
|
|
8
|
+
|
|
4
9
|
1.17.0 (2026-05-13)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.18.0
|
data/lib/aws-sdk-evs/client.rb
CHANGED
|
@@ -1009,7 +1009,7 @@ module Aws::Evs
|
|
|
1009
1009
|
end
|
|
1010
1010
|
|
|
1011
1011
|
# Creates an ESX host and adds it to an Amazon EVS environment. Amazon
|
|
1012
|
-
# EVS supports 4-
|
|
1012
|
+
# EVS supports 4-32 hosts per environment.
|
|
1013
1013
|
#
|
|
1014
1014
|
# This action can only be used after the Amazon EVS environment is
|
|
1015
1015
|
# deployed.
|
|
@@ -2079,7 +2079,7 @@ module Aws::Evs
|
|
|
2079
2079
|
tracer: tracer
|
|
2080
2080
|
)
|
|
2081
2081
|
context[:gem_name] = 'aws-sdk-evs'
|
|
2082
|
-
context[:gem_version] = '1.
|
|
2082
|
+
context[:gem_version] = '1.18.0'
|
|
2083
2083
|
Seahorse::Client::Request.new(handlers, context)
|
|
2084
2084
|
end
|
|
2085
2085
|
|
data/lib/aws-sdk-evs/types.rb
CHANGED
|
@@ -88,7 +88,7 @@ module Aws::Evs
|
|
|
88
88
|
#
|
|
89
89
|
# If this check fails, you will need to add hosts so that your
|
|
90
90
|
# environment meets this minimum requirement. Amazon EVS only
|
|
91
|
-
# supports environments with 4-
|
|
91
|
+
# supports environments with 4-32 hosts.
|
|
92
92
|
# @return [String]
|
|
93
93
|
#
|
|
94
94
|
# @!attribute [rw] result
|
|
@@ -1157,7 +1157,7 @@ module Aws::Evs
|
|
|
1157
1157
|
# An ESX host that runs on an Amazon EC2 bare metal instance. Four hosts
|
|
1158
1158
|
# are created in an Amazon EVS environment during environment creation.
|
|
1159
1159
|
# You can add hosts to an environment using the `CreateEnvironmentHost`
|
|
1160
|
-
# operation. Amazon EVS supports 4-
|
|
1160
|
+
# operation. Amazon EVS supports 4-32 hosts per environment.
|
|
1161
1161
|
#
|
|
1162
1162
|
# @!attribute [rw] host_name
|
|
1163
1163
|
# The DNS hostname of the host. DNS hostnames for hosts must be unique
|
data/lib/aws-sdk-evs.rb
CHANGED