aws-sdk-evs 1.24.0 → 1.25.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: 0c700699328ddd9c74dfb3d868719e8029be9794a7165eb295327d0570339b6f
4
- data.tar.gz: a004aef75daad2739e35b20288d48ce478e72797e25103e2c21ff1226ed2dccf
3
+ metadata.gz: 0dc9576e8abff87f00d8d4405a9b4db2a512249e54660ef7785f4de91a8d862a
4
+ data.tar.gz: 5bb7c195fafa62b5bb66b711f1650305a5c2d85f6e873141aee29cb7efddf3fb
5
5
  SHA512:
6
- metadata.gz: 3a8a1bb65f43b414ab2d66d6fc8db5aa0a42735bd82ea72ccaf01eb4540288853d9878e5761642efc9cebd15e0d0189eda5887b8bcece70b3e6fae817b8a6bdd
7
- data.tar.gz: 076c3a778440b6167a51b71fe04958111eca5a23d481073110b1b68ede2ef5a5ee6dbae37d062b6ba6f6686ccc6644e372ed50dc5b7551486bd4329aa6be760f
6
+ metadata.gz: 13c210a605b0ead851b8992ebf8cb0b5fbae749ce38a6be9e0d40461202ce41eb7e892c806804fdf7aa6a5265624c0ce28431000700dfbc37eb11d662b5e3de1
7
+ data.tar.gz: de43a31b55f3e7900bb09cd430e56d110ff38b795cfdf1c6886ea381d48711f7cf34832989574f807f090828d03b44253793b391ff3bbc3034089a73f3395090
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2026-09-03)
5
+ ------------------
6
+
7
+ * Feature - Amazon EVS now allows users to set, update, and retrieve values for parameters that apply across all EVS Environments in their account at a regional level, such as the VCF License portability core count.
8
+
4
9
  1.24.0 (2026-08-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.25.0
@@ -1538,6 +1538,29 @@ module Aws::Evs
1538
1538
  req.send_request(options)
1539
1539
  end
1540
1540
 
1541
+ # Returns the configured EVS settings for your Amazon Web Services
1542
+ # account in the specified Amazon Web Services Region. If no settings
1543
+ # have been set, an empty list is returned.
1544
+ #
1545
+ # @return [Types::GetAccountSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1546
+ #
1547
+ # * {Types::GetAccountSettingsResponse#settings #settings} => Array<Types::AccountSetting>
1548
+ #
1549
+ # @example Response structure
1550
+ #
1551
+ # resp.settings #=> Array
1552
+ # resp.settings[0].name #=> String
1553
+ # resp.settings[0].value #=> String
1554
+ #
1555
+ # @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/GetAccountSettings AWS API Documentation
1556
+ #
1557
+ # @overload get_account_settings(params = {})
1558
+ # @param [Hash] params ({})
1559
+ def get_account_settings(params = {}, options = {})
1560
+ req = build_request(:get_account_settings, params)
1561
+ req.send_request(options)
1562
+ end
1563
+
1541
1564
  # Returns a URL and authentication token for accessing the Amazon EVS
1542
1565
  # Custom Addon depot. Configure the depot URL as a download source in
1543
1566
  # vSphere Lifecycle Manager (vLCM) to sync and install the Amazon EVS
@@ -2011,6 +2034,46 @@ module Aws::Evs
2011
2034
  req.send_request(options)
2012
2035
  end
2013
2036
 
2037
+ # Creates or updates account-level EVS settings for your Amazon Web
2038
+ # Services account in the specified Amazon Web Services Region.
2039
+ #
2040
+ # EVS settings included in the request are created or overwritten.
2041
+ # Settings omitted from the request retain their current values.
2042
+ #
2043
+ # @option params [required, Array<Types::AccountSetting>] :settings
2044
+ # A list of regional account-level EVS settings to create or update.
2045
+ # Only the settings included in this list are modified.
2046
+ #
2047
+ # @return [Types::PutAccountSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2048
+ #
2049
+ # * {Types::PutAccountSettingsResponse#settings #settings} => Array&lt;Types::AccountSetting&gt;
2050
+ #
2051
+ # @example Request syntax with placeholder values
2052
+ #
2053
+ # resp = client.put_account_settings({
2054
+ # settings: [ # required
2055
+ # {
2056
+ # name: "SettingName", # required
2057
+ # value: "SettingValue", # required
2058
+ # },
2059
+ # ],
2060
+ # })
2061
+ #
2062
+ # @example Response structure
2063
+ #
2064
+ # resp.settings #=> Array
2065
+ # resp.settings[0].name #=> String
2066
+ # resp.settings[0].value #=> String
2067
+ #
2068
+ # @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/PutAccountSettings AWS API Documentation
2069
+ #
2070
+ # @overload put_account_settings(params = {})
2071
+ # @param [Hash] params ({})
2072
+ def put_account_settings(params = {}, options = {})
2073
+ req = build_request(:put_account_settings, params)
2074
+ req.send_request(options)
2075
+ end
2076
+
2014
2077
  # Associates the specified tags to an Amazon EVS resource with the
2015
2078
  # specified `resourceArn`. If existing tags on a resource are not
2016
2079
  # specified in the request parameters, they aren't changed. When a
@@ -2171,7 +2234,7 @@ module Aws::Evs
2171
2234
  tracer: tracer
2172
2235
  )
2173
2236
  context[:gem_name] = 'aws-sdk-evs'
2174
- context[:gem_version] = '1.24.0'
2237
+ context[:gem_version] = '1.25.0'
2175
2238
  Seahorse::Client::Request.new(handlers, context)
2176
2239
  end
2177
2240
 
@@ -14,6 +14,8 @@ module Aws::Evs
14
14
 
15
15
  include Seahorse::Model
16
16
 
17
+ AccountSetting = Shapes::StructureShape.new(name: 'AccountSetting')
18
+ AccountSettingList = Shapes::ListShape.new(name: 'AccountSettingList')
17
19
  AllocationId = Shapes::StringShape.new(name: 'AllocationId')
18
20
  ApplianceFqdn = Shapes::StringShape.new(name: 'ApplianceFqdn')
19
21
  Arn = Shapes::StringShape.new(name: 'Arn')
@@ -70,6 +72,8 @@ module Aws::Evs
70
72
  ErrorDetail = Shapes::StructureShape.new(name: 'ErrorDetail')
71
73
  EsxVersion = Shapes::StringShape.new(name: 'EsxVersion')
72
74
  EsxVersionList = Shapes::ListShape.new(name: 'EsxVersionList')
75
+ GetAccountSettingsRequest = Shapes::StructureShape.new(name: 'GetAccountSettingsRequest')
76
+ GetAccountSettingsResponse = Shapes::StructureShape.new(name: 'GetAccountSettingsResponse')
73
77
  GetDepotUrlRequest = Shapes::StructureShape.new(name: 'GetDepotUrlRequest')
74
78
  GetDepotUrlResponse = Shapes::StructureShape.new(name: 'GetDepotUrlResponse')
75
79
  GetEnvironmentRequest = Shapes::StructureShape.new(name: 'GetEnvironmentRequest')
@@ -113,6 +117,8 @@ module Aws::Evs
113
117
  NetworkInterfaceList = Shapes::ListShape.new(name: 'NetworkInterfaceList')
114
118
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
115
119
  PlacementGroupId = Shapes::StringShape.new(name: 'PlacementGroupId')
120
+ PutAccountSettingsRequest = Shapes::StructureShape.new(name: 'PutAccountSettingsRequest')
121
+ PutAccountSettingsResponse = Shapes::StructureShape.new(name: 'PutAccountSettingsResponse')
116
122
  RequestTagMap = Shapes::MapShape.new(name: 'RequestTagMap')
117
123
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
118
124
  ResponseTagMap = Shapes::MapShape.new(name: 'ResponseTagMap')
@@ -125,6 +131,8 @@ module Aws::Evs
125
131
  SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
126
132
  ServiceAccessSecurityGroups = Shapes::StructureShape.new(name: 'ServiceAccessSecurityGroups')
127
133
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
134
+ SettingName = Shapes::StringShape.new(name: 'SettingName')
135
+ SettingValue = Shapes::StringShape.new(name: 'SettingValue')
128
136
  SolutionKey = Shapes::StringShape.new(name: 'SolutionKey')
129
137
  StateDetails = Shapes::StringShape.new(name: 'StateDetails')
130
138
  String = Shapes::StringShape.new(name: 'String')
@@ -162,6 +170,12 @@ module Aws::Evs
162
170
  VmName = Shapes::StringShape.new(name: 'VmName')
163
171
  VpcId = Shapes::StringShape.new(name: 'VpcId')
164
172
 
173
+ AccountSetting.add_member(:name, Shapes::ShapeRef.new(shape: SettingName, required: true, location_name: "name"))
174
+ AccountSetting.add_member(:value, Shapes::ShapeRef.new(shape: SettingValue, required: true, location_name: "value"))
175
+ AccountSetting.struct_class = Types::AccountSetting
176
+
177
+ AccountSettingList.member = Shapes::ShapeRef.new(shape: AccountSetting)
178
+
165
179
  AssociateEipToVlanRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
166
180
  AssociateEipToVlanRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location_name: "environmentId"))
167
181
  AssociateEipToVlanRequest.add_member(:vlan_name, Shapes::ShapeRef.new(shape: AssociateEipToVlanRequestVlanNameString, required: true, location_name: "vlanName"))
@@ -348,6 +362,11 @@ module Aws::Evs
348
362
 
349
363
  EsxVersionList.member = Shapes::ShapeRef.new(shape: String)
350
364
 
365
+ GetAccountSettingsRequest.struct_class = Types::GetAccountSettingsRequest
366
+
367
+ GetAccountSettingsResponse.add_member(:settings, Shapes::ShapeRef.new(shape: AccountSettingList, location_name: "settings"))
368
+ GetAccountSettingsResponse.struct_class = Types::GetAccountSettingsResponse
369
+
351
370
  GetDepotUrlRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location_name: "environmentId"))
352
371
  GetDepotUrlRequest.add_member(:rotate, Shapes::ShapeRef.new(shape: Boolean, location_name: "rotate"))
353
372
  GetDepotUrlRequest.struct_class = Types::GetDepotUrlRequest
@@ -485,6 +504,12 @@ module Aws::Evs
485
504
 
486
505
  NetworkInterfaceList.member = Shapes::ShapeRef.new(shape: NetworkInterface)
487
506
 
507
+ PutAccountSettingsRequest.add_member(:settings, Shapes::ShapeRef.new(shape: AccountSettingList, required: true, location_name: "settings"))
508
+ PutAccountSettingsRequest.struct_class = Types::PutAccountSettingsRequest
509
+
510
+ PutAccountSettingsResponse.add_member(:settings, Shapes::ShapeRef.new(shape: AccountSettingList, location_name: "settings"))
511
+ PutAccountSettingsResponse.struct_class = Types::PutAccountSettingsResponse
512
+
488
513
  RequestTagMap.key = Shapes::ShapeRef.new(shape: TagKey)
489
514
  RequestTagMap.value = Shapes::ShapeRef.new(shape: TagValue)
490
515
 
@@ -734,6 +759,17 @@ module Aws::Evs
734
759
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
735
760
  end)
736
761
 
762
+ api.add_operation(:get_account_settings, Seahorse::Model::Operation.new.tap do |o|
763
+ o.name = "GetAccountSettings"
764
+ o.http_method = "POST"
765
+ o.http_request_uri = "/"
766
+ o.input = Shapes::ShapeRef.new(shape: GetAccountSettingsRequest)
767
+ o.output = Shapes::ShapeRef.new(shape: GetAccountSettingsResponse)
768
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
769
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
770
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
771
+ end)
772
+
737
773
  api.add_operation(:get_depot_url, Seahorse::Model::Operation.new.tap do |o|
738
774
  o.name = "GetDepotUrl"
739
775
  o.http_method = "POST"
@@ -853,6 +889,17 @@ module Aws::Evs
853
889
  )
854
890
  end)
855
891
 
892
+ api.add_operation(:put_account_settings, Seahorse::Model::Operation.new.tap do |o|
893
+ o.name = "PutAccountSettings"
894
+ o.http_method = "POST"
895
+ o.http_request_uri = "/"
896
+ o.input = Shapes::ShapeRef.new(shape: PutAccountSettingsRequest)
897
+ o.output = Shapes::ShapeRef.new(shape: PutAccountSettingsResponse)
898
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
899
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
900
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
901
+ end)
902
+
856
903
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
857
904
  o.name = "TagResource"
858
905
  o.http_method = "POST"
@@ -10,6 +10,33 @@
10
10
  module Aws::Evs
11
11
  module Types
12
12
 
13
+ # A regional account-level EVS setting, represented as a name and value
14
+ # pair.
15
+ #
16
+ # @!attribute [rw] name
17
+ # The name of the EVS setting. Valid values are:
18
+ #
19
+ # * `vcfPortedCoreCount` (type: numeric string) - The total number of
20
+ # VCF license cores ported to Amazon EVS for the account in that
21
+ # Region. The maximum value is 1,000,000 cores. This setting value
22
+ # is shared with Broadcom for record-keeping.
23
+ #
24
+ # ^
25
+ # @return [String]
26
+ #
27
+ # @!attribute [rw] value
28
+ # The value of the EVS setting.
29
+ # @return [String]
30
+ #
31
+ # @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/AccountSetting AWS API Documentation
32
+ #
33
+ class AccountSetting < Struct.new(
34
+ :name,
35
+ :value)
36
+ SENSITIVE = []
37
+ include Aws::Structure
38
+ end
39
+
13
40
  # @!attribute [rw] client_token
14
41
  # <note markdown="1"> This parameter is not used in Amazon EVS
15
42
  # currently. If you supply
@@ -1168,6 +1195,30 @@ module Aws::Evs
1168
1195
  include Aws::Structure
1169
1196
  end
1170
1197
 
1198
+ # The request for the GetAccountSettings operation.
1199
+ #
1200
+ # @api private
1201
+ #
1202
+ # @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/GetAccountSettingsRequest AWS API Documentation
1203
+ #
1204
+ class GetAccountSettingsRequest < Aws::EmptyStructure; end
1205
+
1206
+ # The response for the GetAccountSettings operation.
1207
+ #
1208
+ # @!attribute [rw] settings
1209
+ # A list of regional account-level EVS settings for the account. EVS
1210
+ # settings that have never been explicitly set are omitted from the
1211
+ # response.
1212
+ # @return [Array<Types::AccountSetting>]
1213
+ #
1214
+ # @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/GetAccountSettingsResponse AWS API Documentation
1215
+ #
1216
+ class GetAccountSettingsResponse < Struct.new(
1217
+ :settings)
1218
+ SENSITIVE = []
1219
+ include Aws::Structure
1220
+ end
1221
+
1171
1222
  # @!attribute [rw] environment_id
1172
1223
  # The unique ID of the Amazon EVS environment to get the depot URL
1173
1224
  # for.
@@ -1852,6 +1903,36 @@ module Aws::Evs
1852
1903
  include Aws::Structure
1853
1904
  end
1854
1905
 
1906
+ # The request for the PutAccountSettings operation.
1907
+ #
1908
+ # @!attribute [rw] settings
1909
+ # A list of regional account-level EVS settings to create or update.
1910
+ # Only the settings included in this list are modified.
1911
+ # @return [Array<Types::AccountSetting>]
1912
+ #
1913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/PutAccountSettingsRequest AWS API Documentation
1914
+ #
1915
+ class PutAccountSettingsRequest < Struct.new(
1916
+ :settings)
1917
+ SENSITIVE = []
1918
+ include Aws::Structure
1919
+ end
1920
+
1921
+ # The response for the PutAccountSettings operation.
1922
+ #
1923
+ # @!attribute [rw] settings
1924
+ # A list of regional account-level EVS settings, and their values,
1925
+ # that were modified in this request.
1926
+ # @return [Array<Types::AccountSetting>]
1927
+ #
1928
+ # @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/PutAccountSettingsResponse AWS API Documentation
1929
+ #
1930
+ class PutAccountSettingsResponse < Struct.new(
1931
+ :settings)
1932
+ SENSITIVE = []
1933
+ include Aws::Structure
1934
+ end
1935
+
1855
1936
  # A service resource associated with the request could not be found. The
1856
1937
  # resource might not be specified correctly, or it may have a `state` of
1857
1938
  # `DELETED`.
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.24.0'
58
+ GEM_VERSION = '1.25.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -288,6 +288,15 @@ module Aws
288
288
  ) -> _DisassociateEipFromVlanResponseSuccess
289
289
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateEipFromVlanResponseSuccess
290
290
 
291
+ interface _GetAccountSettingsResponseSuccess
292
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountSettingsResponse]
293
+ def settings: () -> ::Array[Types::AccountSetting]
294
+ end
295
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Evs/Client.html#get_account_settings-instance_method
296
+ def get_account_settings: (
297
+ ) -> _GetAccountSettingsResponseSuccess
298
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountSettingsResponseSuccess
299
+
291
300
  interface _GetDepotUrlResponseSuccess
292
301
  include ::Seahorse::Client::_ResponseSuccess[Types::GetDepotUrlResponse]
293
302
  def depot_url: () -> ::String
@@ -397,6 +406,21 @@ module Aws
397
406
  ) -> _ListVmEntitlementsResponseSuccess
398
407
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVmEntitlementsResponseSuccess
399
408
 
409
+ interface _PutAccountSettingsResponseSuccess
410
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutAccountSettingsResponse]
411
+ def settings: () -> ::Array[Types::AccountSetting]
412
+ end
413
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Evs/Client.html#put_account_settings-instance_method
414
+ def put_account_settings: (
415
+ settings: Array[
416
+ {
417
+ name: ::String,
418
+ value: ::String
419
+ }
420
+ ]
421
+ ) -> _PutAccountSettingsResponseSuccess
422
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAccountSettingsResponseSuccess
423
+
400
424
  interface _TagResourceResponseSuccess
401
425
  include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
402
426
  end
data/sig/types.rbs CHANGED
@@ -8,6 +8,12 @@
8
8
  module Aws::Evs
9
9
  module Types
10
10
 
11
+ class AccountSetting
12
+ attr_accessor name: ::String
13
+ attr_accessor value: ::String
14
+ SENSITIVE: []
15
+ end
16
+
11
17
  class AssociateEipToVlanRequest
12
18
  attr_accessor client_token: ::String
13
19
  attr_accessor environment_id: ::String
@@ -236,6 +242,14 @@ module Aws::Evs
236
242
  SENSITIVE: []
237
243
  end
238
244
 
245
+ class GetAccountSettingsRequest < Aws::EmptyStructure
246
+ end
247
+
248
+ class GetAccountSettingsResponse
249
+ attr_accessor settings: ::Array[Types::AccountSetting]
250
+ SENSITIVE: []
251
+ end
252
+
239
253
  class GetDepotUrlRequest
240
254
  attr_accessor environment_id: ::String
241
255
  attr_accessor rotate: bool
@@ -412,6 +426,16 @@ module Aws::Evs
412
426
  SENSITIVE: []
413
427
  end
414
428
 
429
+ class PutAccountSettingsRequest
430
+ attr_accessor settings: ::Array[Types::AccountSetting]
431
+ SENSITIVE: []
432
+ end
433
+
434
+ class PutAccountSettingsResponse
435
+ attr_accessor settings: ::Array[Types::AccountSetting]
436
+ SENSITIVE: []
437
+ end
438
+
415
439
  class ResourceNotFoundException
416
440
  attr_accessor message: ::String
417
441
  attr_accessor resource_id: ::String
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.24.0
4
+ version: 1.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services