aws-sdk-evs 1.19.0 → 1.20.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: 70f35f8116c78f6bfcfdadf0d00f8511e0195eb3a9637649c42a2fd4e9e6dbc1
4
- data.tar.gz: 906d238e883bb3878de14c42f7ab13b1f711157358ef589f4b85271759c20d75
3
+ metadata.gz: a7bc376f72675def5d3f4c8ed1cd92d7df2e277d321e3c803683ab1a54b35742
4
+ data.tar.gz: a44efa5ce21635d43b4c738cab0b0aeaae30d6230b7ba8660a20a9b725f20888
5
5
  SHA512:
6
- metadata.gz: 4da68181dd812abd4b758b3ccdcaeb7cef81f8d3006b07b112d82fcc99625f87c39032134146c26e0142008714bb4faa3acd097112c454cecd462f325abb9359
7
- data.tar.gz: e04d1c7825d4b6166333938689f088e5cadae2d15af11aa9b4c100c48ea9fef1a0c14962292f90dca93d4044e914bebe9e0a207dd0c7a86ea91705fce7bdcbeb
6
+ metadata.gz: 68ed62a20f582dfaa9d3816957c0eb64c6163985ba14f528af6ea026f5ed6b29d0b252d84b8f1fa62b213c832698a00a014144f8537996412307eb14d616166f
7
+ data.tar.gz: 24c8cabbff77199bf88063d6222b213aeb571c46d2f0707b89899eef50a02e67af9240f91cd6692fe12f946ab9d20632a72d1949a5e2aa341442104d013916da
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - A new GetDepotUrl API has been added to retrieve a URL for accessing Amazon EVS custom addon packages. Customers can use this URL to configure vSphere Lifecycle Manager (vLCM) as an online depot source, enabling upgrades of addon components across ESXi hosts.
8
+
4
9
  1.19.0 (2026-05-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.20.0
@@ -199,7 +199,7 @@ module Aws::Evs
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::Evs
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -1489,6 +1487,48 @@ module Aws::Evs
1489
1487
  req.send_request(options)
1490
1488
  end
1491
1489
 
1490
+ # Returns a URL and authentication token for accessing the Amazon EVS
1491
+ # Custom Addon depot. Configure the depot URL as a download source in
1492
+ # vSphere Lifecycle Manager (vLCM) to sync and install the Amazon EVS
1493
+ # Custom Addon.
1494
+ #
1495
+ # The depot URL remains active until you rotate the authentication token
1496
+ # by calling this action with `rotate` set to `true`.
1497
+ #
1498
+ # @option params [required, String] :environment_id
1499
+ # The unique ID of the Amazon EVS environment to get the depot URL for.
1500
+ #
1501
+ # @option params [Boolean] :rotate
1502
+ # Revokes the current authentication token and returns a new depot URL
1503
+ # with a new token. Previously issued depot URLs will stop working
1504
+ # within 5 minutes of rotation.
1505
+ #
1506
+ # @return [Types::GetDepotUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1507
+ #
1508
+ # * {Types::GetDepotUrlResponse#depot_url #depot_url} => String
1509
+ # * {Types::GetDepotUrlResponse#token #token} => String
1510
+ #
1511
+ # @example Request syntax with placeholder values
1512
+ #
1513
+ # resp = client.get_depot_url({
1514
+ # environment_id: "EnvironmentId", # required
1515
+ # rotate: false,
1516
+ # })
1517
+ #
1518
+ # @example Response structure
1519
+ #
1520
+ # resp.depot_url #=> String
1521
+ # resp.token #=> String
1522
+ #
1523
+ # @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/GetDepotUrl AWS API Documentation
1524
+ #
1525
+ # @overload get_depot_url(params = {})
1526
+ # @param [Hash] params ({})
1527
+ def get_depot_url(params = {}, options = {})
1528
+ req = build_request(:get_depot_url, params)
1529
+ req.send_request(options)
1530
+ end
1531
+
1492
1532
  # Returns a description of the specified environment.
1493
1533
  #
1494
1534
  # @option params [required, String] :environment_id
@@ -2079,7 +2119,7 @@ module Aws::Evs
2079
2119
  tracer: tracer
2080
2120
  )
2081
2121
  context[:gem_name] = 'aws-sdk-evs'
2082
- context[:gem_version] = '1.19.0'
2122
+ context[:gem_version] = '1.20.0'
2083
2123
  Seahorse::Client::Request.new(handlers, context)
2084
2124
  end
2085
2125
 
@@ -70,6 +70,8 @@ module Aws::Evs
70
70
  ErrorDetail = Shapes::StructureShape.new(name: 'ErrorDetail')
71
71
  EsxVersion = Shapes::StringShape.new(name: 'EsxVersion')
72
72
  EsxVersionList = Shapes::ListShape.new(name: 'EsxVersionList')
73
+ GetDepotUrlRequest = Shapes::StructureShape.new(name: 'GetDepotUrlRequest')
74
+ GetDepotUrlResponse = Shapes::StructureShape.new(name: 'GetDepotUrlResponse')
73
75
  GetEnvironmentRequest = Shapes::StructureShape.new(name: 'GetEnvironmentRequest')
74
76
  GetEnvironmentResponse = Shapes::StructureShape.new(name: 'GetEnvironmentResponse')
75
77
  GetVersionsRequest = Shapes::StructureShape.new(name: 'GetVersionsRequest')
@@ -345,6 +347,14 @@ module Aws::Evs
345
347
 
346
348
  EsxVersionList.member = Shapes::ShapeRef.new(shape: String)
347
349
 
350
+ GetDepotUrlRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location_name: "environmentId"))
351
+ GetDepotUrlRequest.add_member(:rotate, Shapes::ShapeRef.new(shape: Boolean, location_name: "rotate"))
352
+ GetDepotUrlRequest.struct_class = Types::GetDepotUrlRequest
353
+
354
+ GetDepotUrlResponse.add_member(:depot_url, Shapes::ShapeRef.new(shape: String, required: true, location_name: "depotUrl"))
355
+ GetDepotUrlResponse.add_member(:token, Shapes::ShapeRef.new(shape: String, required: true, location_name: "token"))
356
+ GetDepotUrlResponse.struct_class = Types::GetDepotUrlResponse
357
+
348
358
  GetEnvironmentRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location_name: "environmentId"))
349
359
  GetEnvironmentRequest.struct_class = Types::GetEnvironmentRequest
350
360
 
@@ -723,6 +733,17 @@ module Aws::Evs
723
733
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
724
734
  end)
725
735
 
736
+ api.add_operation(:get_depot_url, Seahorse::Model::Operation.new.tap do |o|
737
+ o.name = "GetDepotUrl"
738
+ o.http_method = "POST"
739
+ o.http_request_uri = "/"
740
+ o.input = Shapes::ShapeRef.new(shape: GetDepotUrlRequest)
741
+ o.output = Shapes::ShapeRef.new(shape: GetDepotUrlResponse)
742
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
743
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
744
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
745
+ end)
746
+
726
747
  api.add_operation(:get_environment, Seahorse::Model::Operation.new.tap do |o|
727
748
  o.name = "GetEnvironment"
728
749
  o.http_method = "POST"
@@ -1106,6 +1106,45 @@ module Aws::Evs
1106
1106
  include Aws::Structure
1107
1107
  end
1108
1108
 
1109
+ # @!attribute [rw] environment_id
1110
+ # The unique ID of the Amazon EVS environment to get the depot URL
1111
+ # for.
1112
+ # @return [String]
1113
+ #
1114
+ # @!attribute [rw] rotate
1115
+ # Revokes the current authentication token and returns a new depot URL
1116
+ # with a new token. Previously issued depot URLs will stop working
1117
+ # within 5 minutes of rotation.
1118
+ # @return [Boolean]
1119
+ #
1120
+ # @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/GetDepotUrlRequest AWS API Documentation
1121
+ #
1122
+ class GetDepotUrlRequest < Struct.new(
1123
+ :environment_id,
1124
+ :rotate)
1125
+ SENSITIVE = []
1126
+ include Aws::Structure
1127
+ end
1128
+
1129
+ # @!attribute [rw] depot_url
1130
+ # The URL for accessing the Amazon EVS Custom Addon depot. This URL
1131
+ # includes the authentication token as a path component.
1132
+ # @return [String]
1133
+ #
1134
+ # @!attribute [rw] token
1135
+ # The authentication token for depot access. This token is included in
1136
+ # the depot URL and is used to authenticate requests.
1137
+ # @return [String]
1138
+ #
1139
+ # @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/GetDepotUrlResponse AWS API Documentation
1140
+ #
1141
+ class GetDepotUrlResponse < Struct.new(
1142
+ :depot_url,
1143
+ :token)
1144
+ SENSITIVE = []
1145
+ include Aws::Structure
1146
+ end
1147
+
1109
1148
  # @!attribute [rw] environment_id
1110
1149
  # A unique ID for the environment.
1111
1150
  # @return [String]
@@ -1461,7 +1500,7 @@ module Aws::Evs
1461
1500
  class LicenseInfo < Struct.new(
1462
1501
  :solution_key,
1463
1502
  :vsan_key)
1464
- SENSITIVE = []
1503
+ SENSITIVE = [:solution_key, :vsan_key]
1465
1504
  include Aws::Structure
1466
1505
  end
1467
1506
 
data/lib/aws-sdk-evs.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::Evs
55
55
  autoload :EndpointProvider, 'aws-sdk-evs/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-evs/endpoints'
57
57
 
58
- GEM_VERSION = '1.19.0'
58
+ GEM_VERSION = '1.20.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -288,6 +288,18 @@ module Aws
288
288
  ) -> _DisassociateEipFromVlanResponseSuccess
289
289
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateEipFromVlanResponseSuccess
290
290
 
291
+ interface _GetDepotUrlResponseSuccess
292
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDepotUrlResponse]
293
+ def depot_url: () -> ::String
294
+ def token: () -> ::String
295
+ end
296
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Evs/Client.html#get_depot_url-instance_method
297
+ def get_depot_url: (
298
+ environment_id: ::String,
299
+ ?rotate: bool
300
+ ) -> _GetDepotUrlResponseSuccess
301
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDepotUrlResponseSuccess
302
+
291
303
  interface _GetEnvironmentResponseSuccess
292
304
  include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentResponse]
293
305
  def environment: () -> Types::Environment
data/sig/types.rbs CHANGED
@@ -235,6 +235,18 @@ module Aws::Evs
235
235
  SENSITIVE: []
236
236
  end
237
237
 
238
+ class GetDepotUrlRequest
239
+ attr_accessor environment_id: ::String
240
+ attr_accessor rotate: bool
241
+ SENSITIVE: []
242
+ end
243
+
244
+ class GetDepotUrlResponse
245
+ attr_accessor depot_url: ::String
246
+ attr_accessor token: ::String
247
+ SENSITIVE: []
248
+ end
249
+
238
250
  class GetEnvironmentRequest
239
251
  attr_accessor environment_id: ::String
240
252
  SENSITIVE: []
@@ -314,7 +326,7 @@ module Aws::Evs
314
326
  class LicenseInfo
315
327
  attr_accessor solution_key: ::String
316
328
  attr_accessor vsan_key: ::String
317
- SENSITIVE: []
329
+ SENSITIVE: [:solution_key, :vsan_key]
318
330
  end
319
331
 
320
332
  class ListEnvironmentConnectorsRequest
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-evs
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
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement