aws-sdk-appstream 1.135.0 → 1.137.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: 952daf50d5bbd0f26e79a3db67b5894b2488c5fba4e3524bf87545bd5bc08047
4
- data.tar.gz: 4d59addf8bf89db521e66245e67296db90904ff209c61252e9d42b2a2c240123
3
+ metadata.gz: 160a563188ddf6101f53083e91971506c719b3d4da01180aad3bacb674180b0f
4
+ data.tar.gz: c8bb782e3e0088925bbd84cb2b846ac0d38266f5497a3f4d01e98247ba9a6b4d
5
5
  SHA512:
6
- metadata.gz: 016c44d43dc3befbfd2adf62ad772ef1d2f7b259fcfdc5c6b28026dc3b6f9278913881d79e37b0110aa5ff256b750e77a3c75ce991ac8a163cdb8149a185a092
7
- data.tar.gz: 28407f84ecc33cd6d6b510d3feb8fd358c87f4f557ef8d5606f3ba3138364ace870da0b1f6bd6cd0e1ab1c32c8d549285361d2b34e62c74e859c2177fb2c7855
6
+ metadata.gz: 7848365efe519c8449c14d7de281e316c61a0b59fb84fe11a0f372cc298aa81b9a851107824126af86b235fb98eeb1ed6e3b4eaf9f57baba55a0aa71cb63eb87
7
+ data.tar.gz: 73f87e71af8afb9c11da1e7ea1271a9886a3c12bb8cd287120c6d42bbc1e2dbf578e1a902dd4b4eead80d31a340f79247b62d8a627cc7914af0a10d99f84f569
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.137.0 (2026-05-28)
5
+ ------------------
6
+
7
+ * Feature - Amazon WorkSpaces Applications now supports BYOL (Bring Your Own License). This enables customers to import their own WorkSpaces images and use them in WorkSpaces Applications.
8
+
9
+ 1.136.0 (2026-05-21)
10
+ ------------------
11
+
12
+ * Feature - Adding new BDD representation of endpoint ruleset
13
+
4
14
  1.135.0 (2026-05-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.135.0
1
+ 1.137.0
@@ -199,7 +199,7 @@ module Aws::AppStream
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::AppStream
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
@@ -1393,7 +1391,7 @@ module Aws::AppStream
1393
1391
  # resp.export_image_task.ami_name #=> String
1394
1392
  # resp.export_image_task.created_date #=> Time
1395
1393
  # resp.export_image_task.ami_description #=> String
1396
- # resp.export_image_task.state #=> String, one of "EXPORTING", "COMPLETED", "FAILED"
1394
+ # resp.export_image_task.state #=> String, one of "EXPORTING", "COMPLETED", "FAILED", "TIMED_OUT"
1397
1395
  # resp.export_image_task.ami_id #=> String
1398
1396
  # resp.export_image_task.tag_specifications #=> Hash
1399
1397
  # resp.export_image_task.tag_specifications["TagKey"] #=> String
@@ -2237,12 +2235,13 @@ module Aws::AppStream
2237
2235
  # 100 characters and can contain letters, numbers, underscores, periods,
2238
2236
  # and hyphens.
2239
2237
  #
2240
- # @option params [required, String] :source_ami_id
2241
- # The ID of the EC2 AMI to import. The AMI must meet specific
2242
- # requirements including Windows Server 2022 Full Base, UEFI boot mode,
2243
- # TPM 2.0 support, and proper drivers.
2238
+ # @option params [String] :source_ami_id
2239
+ # The ID of the EC2 AMI to import.
2244
2240
  #
2245
- # @option params [required, String] :iam_role_arn
2241
+ # @option params [String] :workspace_image_id
2242
+ # The ID of the Workspaces Image to import.
2243
+ #
2244
+ # @option params [String] :iam_role_arn
2246
2245
  # The ARN of the IAM role that allows WorkSpaces Applications to access
2247
2246
  # your AMI. The role must have permissions to modify image attributes
2248
2247
  # and describe images, with a trust relationship allowing
@@ -2291,8 +2290,9 @@ module Aws::AppStream
2291
2290
  #
2292
2291
  # resp = client.create_imported_image({
2293
2292
  # name: "Name", # required
2294
- # source_ami_id: "PhotonAmiId", # required
2295
- # iam_role_arn: "Arn", # required
2293
+ # source_ami_id: "PhotonAmiId",
2294
+ # workspace_image_id: "WorkspaceImageId",
2295
+ # iam_role_arn: "Arn",
2296
2296
  # description: "ImageImportDescription",
2297
2297
  # display_name: "ImageImportDisplayName",
2298
2298
  # tags: {
@@ -2365,7 +2365,7 @@ module Aws::AppStream
2365
2365
  # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
2366
2366
  # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
2367
2367
  # resp.image.managed_software_included #=> Boolean
2368
- # resp.image.image_type #=> String, one of "CUSTOM", "NATIVE"
2368
+ # resp.image.image_type #=> String, one of "CUSTOM", "NATIVE", "BYOL"
2369
2369
  #
2370
2370
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImportedImage AWS API Documentation
2371
2371
  #
@@ -2832,7 +2832,7 @@ module Aws::AppStream
2832
2832
  # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
2833
2833
  # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
2834
2834
  # resp.image.managed_software_included #=> Boolean
2835
- # resp.image.image_type #=> String, one of "CUSTOM", "NATIVE"
2835
+ # resp.image.image_type #=> String, one of "CUSTOM", "NATIVE", "BYOL"
2836
2836
  # resp.can_update_image #=> Boolean
2837
2837
  #
2838
2838
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUpdatedImage AWS API Documentation
@@ -3127,7 +3127,7 @@ module Aws::AppStream
3127
3127
  # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
3128
3128
  # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
3129
3129
  # resp.image.managed_software_included #=> Boolean
3130
- # resp.image.image_type #=> String, one of "CUSTOM", "NATIVE"
3130
+ # resp.image.image_type #=> String, one of "CUSTOM", "NATIVE", "BYOL"
3131
3131
  #
3132
3132
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImage AWS API Documentation
3133
3133
  #
@@ -4055,7 +4055,7 @@ module Aws::AppStream
4055
4055
  # resp.images[0].dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
4056
4056
  # resp.images[0].image_shared_with_others #=> String, one of "TRUE", "FALSE"
4057
4057
  # resp.images[0].managed_software_included #=> Boolean
4058
- # resp.images[0].image_type #=> String, one of "CUSTOM", "NATIVE"
4058
+ # resp.images[0].image_type #=> String, one of "CUSTOM", "NATIVE", "BYOL"
4059
4059
  # resp.next_token #=> String
4060
4060
  #
4061
4061
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImages AWS API Documentation
@@ -4789,7 +4789,7 @@ module Aws::AppStream
4789
4789
  # resp.export_image_task.ami_name #=> String
4790
4790
  # resp.export_image_task.created_date #=> Time
4791
4791
  # resp.export_image_task.ami_description #=> String
4792
- # resp.export_image_task.state #=> String, one of "EXPORTING", "COMPLETED", "FAILED"
4792
+ # resp.export_image_task.state #=> String, one of "EXPORTING", "COMPLETED", "FAILED", "TIMED_OUT"
4793
4793
  # resp.export_image_task.ami_id #=> String
4794
4794
  # resp.export_image_task.tag_specifications #=> Hash
4795
4795
  # resp.export_image_task.tag_specifications["TagKey"] #=> String
@@ -4966,7 +4966,7 @@ module Aws::AppStream
4966
4966
  # resp.export_image_tasks[0].ami_name #=> String
4967
4967
  # resp.export_image_tasks[0].created_date #=> Time
4968
4968
  # resp.export_image_tasks[0].ami_description #=> String
4969
- # resp.export_image_tasks[0].state #=> String, one of "EXPORTING", "COMPLETED", "FAILED"
4969
+ # resp.export_image_tasks[0].state #=> String, one of "EXPORTING", "COMPLETED", "FAILED", "TIMED_OUT"
4970
4970
  # resp.export_image_tasks[0].ami_id #=> String
4971
4971
  # resp.export_image_tasks[0].tag_specifications #=> Hash
4972
4972
  # resp.export_image_tasks[0].tag_specifications["TagKey"] #=> String
@@ -6471,7 +6471,7 @@ module Aws::AppStream
6471
6471
  tracer: tracer
6472
6472
  )
6473
6473
  context[:gem_name] = 'aws-sdk-appstream'
6474
- context[:gem_version] = '1.135.0'
6474
+ context[:gem_version] = '1.137.0'
6475
6475
  Seahorse::Client::Request.new(handlers, context)
6476
6476
  end
6477
6477
 
@@ -419,6 +419,7 @@ module Aws::AppStream
419
419
  VisibilityType = Shapes::StringShape.new(name: 'VisibilityType')
420
420
  VolumeConfig = Shapes::StructureShape.new(name: 'VolumeConfig')
421
421
  VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
422
+ WorkspaceImageId = Shapes::StringShape.new(name: 'WorkspaceImageId')
422
423
 
423
424
  AccessEndpoint.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: AccessEndpointType, required: true, location_name: "EndpointType"))
424
425
  AccessEndpoint.add_member(:vpce_id, Shapes::ShapeRef.new(shape: String, location_name: "VpceId"))
@@ -777,8 +778,9 @@ module Aws::AppStream
777
778
  CreateImageBuilderStreamingURLResult.struct_class = Types::CreateImageBuilderStreamingURLResult
778
779
 
779
780
  CreateImportedImageRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
780
- CreateImportedImageRequest.add_member(:source_ami_id, Shapes::ShapeRef.new(shape: PhotonAmiId, required: true, location_name: "SourceAmiId"))
781
- CreateImportedImageRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "IamRoleArn"))
781
+ CreateImportedImageRequest.add_member(:source_ami_id, Shapes::ShapeRef.new(shape: PhotonAmiId, location_name: "SourceAmiId"))
782
+ CreateImportedImageRequest.add_member(:workspace_image_id, Shapes::ShapeRef.new(shape: WorkspaceImageId, location_name: "WorkspaceImageId"))
783
+ CreateImportedImageRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "IamRoleArn"))
782
784
  CreateImportedImageRequest.add_member(:description, Shapes::ShapeRef.new(shape: ImageImportDescription, location_name: "Description"))
783
785
  CreateImportedImageRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ImageImportDisplayName, location_name: "DisplayName"))
784
786
  CreateImportedImageRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
@@ -2066,6 +2068,7 @@ module Aws::AppStream
2066
2068
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2067
2069
  o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
2068
2070
  o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
2071
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
2069
2072
  end)
2070
2073
 
2071
2074
  api.add_operation(:create_stack, Seahorse::Model::Operation.new.tap do |o|
@@ -2255,9 +2255,11 @@ module Aws::AppStream
2255
2255
  # @return [String]
2256
2256
  #
2257
2257
  # @!attribute [rw] source_ami_id
2258
- # The ID of the EC2 AMI to import. The AMI must meet specific
2259
- # requirements including Windows Server 2022 Full Base, UEFI boot
2260
- # mode, TPM 2.0 support, and proper drivers.
2258
+ # The ID of the EC2 AMI to import.
2259
+ # @return [String]
2260
+ #
2261
+ # @!attribute [rw] workspace_image_id
2262
+ # The ID of the Workspaces Image to import.
2261
2263
  # @return [String]
2262
2264
  #
2263
2265
  # @!attribute [rw] iam_role_arn
@@ -2314,6 +2316,7 @@ module Aws::AppStream
2314
2316
  class CreateImportedImageRequest < Struct.new(
2315
2317
  :name,
2316
2318
  :source_ami_id,
2319
+ :workspace_image_id,
2317
2320
  :iam_role_arn,
2318
2321
  :description,
2319
2322
  :display_name,
@@ -55,7 +55,7 @@ module Aws::AppStream
55
55
  autoload :EndpointProvider, 'aws-sdk-appstream/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-appstream/endpoints'
57
57
 
58
- GEM_VERSION = '1.135.0'
58
+ GEM_VERSION = '1.137.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -419,8 +419,9 @@ module Aws
419
419
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#create_imported_image-instance_method
420
420
  def create_imported_image: (
421
421
  name: ::String,
422
- source_ami_id: ::String,
423
- iam_role_arn: ::String,
422
+ ?source_ami_id: ::String,
423
+ ?workspace_image_id: ::String,
424
+ ?iam_role_arn: ::String,
424
425
  ?description: ::String,
425
426
  ?display_name: ::String,
426
427
  ?tags: Hash[::String, ::String],
data/sig/types.rbs CHANGED
@@ -448,6 +448,7 @@ module Aws::AppStream
448
448
  class CreateImportedImageRequest
449
449
  attr_accessor name: ::String
450
450
  attr_accessor source_ami_id: ::String
451
+ attr_accessor workspace_image_id: ::String
451
452
  attr_accessor iam_role_arn: ::String
452
453
  attr_accessor description: ::String
453
454
  attr_accessor display_name: ::String
@@ -1063,7 +1064,7 @@ module Aws::AppStream
1063
1064
  attr_accessor ami_name: ::String
1064
1065
  attr_accessor created_date: ::Time
1065
1066
  attr_accessor ami_description: ::String
1066
- attr_accessor state: ("EXPORTING" | "COMPLETED" | "FAILED")
1067
+ attr_accessor state: ("EXPORTING" | "COMPLETED" | "FAILED" | "TIMED_OUT")
1067
1068
  attr_accessor ami_id: ::String
1068
1069
  attr_accessor tag_specifications: ::Hash[::String, ::String]
1069
1070
  attr_accessor error_details: ::Array[Types::ErrorDetails]
@@ -1146,7 +1147,7 @@ module Aws::AppStream
1146
1147
  attr_accessor dynamic_app_providers_enabled: ("ENABLED" | "DISABLED")
1147
1148
  attr_accessor image_shared_with_others: ("TRUE" | "FALSE")
1148
1149
  attr_accessor managed_software_included: bool
1149
- attr_accessor image_type: ("CUSTOM" | "NATIVE")
1150
+ attr_accessor image_type: ("CUSTOM" | "NATIVE" | "BYOL")
1150
1151
  SENSITIVE: []
1151
1152
  end
1152
1153
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appstream
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.135.0
4
+ version: 1.137.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