aws-sdk-appstream 1.136.0 → 1.138.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +27 -20
- data/lib/aws-sdk-appstream/client_api.rb +8 -2
- data/lib/aws-sdk-appstream/types.rb +23 -8
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +9 -6
- data/sig/types.rbs +6 -3
- 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: c874dea5a5ddc735154d6157df00411f14baf45fb30baaae383aacd0c7146751
|
|
4
|
+
data.tar.gz: 9c146a242932d2bc9dafade42ae5888f5f92daf3d55411e9c82d4bbd338aa5f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c958a12f894f6b1a2c9265daf3d4c7a8a9dc6a591aa62f7abec557d1abda7014a166c50b4c7ebcf4dab65b31b76547a15eae905eea45f8da8b36b5c4aa43b2b2
|
|
7
|
+
data.tar.gz: 6dfe5cb9bc210ed1961759811f44e266a93eef4908d65fc1c5798df8606cbf2591cee8145af97eb3bdd5ba5a4ad7521e6a8da1d18b209dcbc19f8c03e4dedde3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.138.0 (2026-06-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon WorkSpaces Agent Access now supports domain-joined fleets for enterprise identity integration, real-time agent observation with instant stop controls, and MCP tool forwarding for lower-latency, cost-effective desktop tool access.
|
|
8
|
+
|
|
9
|
+
1.137.0 (2026-05-28)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* 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.
|
|
13
|
+
|
|
4
14
|
1.136.0 (2026-05-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.138.0
|
|
@@ -1391,7 +1391,7 @@ module Aws::AppStream
|
|
|
1391
1391
|
# resp.export_image_task.ami_name #=> String
|
|
1392
1392
|
# resp.export_image_task.created_date #=> Time
|
|
1393
1393
|
# resp.export_image_task.ami_description #=> String
|
|
1394
|
-
# 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"
|
|
1395
1395
|
# resp.export_image_task.ami_id #=> String
|
|
1396
1396
|
# resp.export_image_task.tag_specifications #=> Hash
|
|
1397
1397
|
# resp.export_image_task.tag_specifications["TagKey"] #=> String
|
|
@@ -2235,12 +2235,13 @@ module Aws::AppStream
|
|
|
2235
2235
|
# 100 characters and can contain letters, numbers, underscores, periods,
|
|
2236
2236
|
# and hyphens.
|
|
2237
2237
|
#
|
|
2238
|
-
# @option params [
|
|
2239
|
-
# The ID of the EC2 AMI to import.
|
|
2240
|
-
# requirements including Windows Server 2022 Full Base, UEFI boot mode,
|
|
2241
|
-
# TPM 2.0 support, and proper drivers.
|
|
2238
|
+
# @option params [String] :source_ami_id
|
|
2239
|
+
# The ID of the EC2 AMI to import.
|
|
2242
2240
|
#
|
|
2243
|
-
# @option params [
|
|
2241
|
+
# @option params [String] :workspace_image_id
|
|
2242
|
+
# The ID of the Workspaces Image to import.
|
|
2243
|
+
#
|
|
2244
|
+
# @option params [String] :iam_role_arn
|
|
2244
2245
|
# The ARN of the IAM role that allows WorkSpaces Applications to access
|
|
2245
2246
|
# your AMI. The role must have permissions to modify image attributes
|
|
2246
2247
|
# and describe images, with a trust relationship allowing
|
|
@@ -2289,8 +2290,9 @@ module Aws::AppStream
|
|
|
2289
2290
|
#
|
|
2290
2291
|
# resp = client.create_imported_image({
|
|
2291
2292
|
# name: "Name", # required
|
|
2292
|
-
# source_ami_id: "PhotonAmiId",
|
|
2293
|
-
#
|
|
2293
|
+
# source_ami_id: "PhotonAmiId",
|
|
2294
|
+
# workspace_image_id: "WorkspaceImageId",
|
|
2295
|
+
# iam_role_arn: "Arn",
|
|
2294
2296
|
# description: "ImageImportDescription",
|
|
2295
2297
|
# display_name: "ImageImportDisplayName",
|
|
2296
2298
|
# tags: {
|
|
@@ -2363,7 +2365,7 @@ module Aws::AppStream
|
|
|
2363
2365
|
# resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
|
|
2364
2366
|
# resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
|
|
2365
2367
|
# resp.image.managed_software_included #=> Boolean
|
|
2366
|
-
# resp.image.image_type #=> String, one of "CUSTOM", "NATIVE"
|
|
2368
|
+
# resp.image.image_type #=> String, one of "CUSTOM", "NATIVE", "BYOL"
|
|
2367
2369
|
#
|
|
2368
2370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImportedImage AWS API Documentation
|
|
2369
2371
|
#
|
|
@@ -2505,7 +2507,7 @@ module Aws::AppStream
|
|
|
2505
2507
|
# agent_access_config: {
|
|
2506
2508
|
# settings: [ # required
|
|
2507
2509
|
# {
|
|
2508
|
-
# agent_action: "COMPUTER_VISION", # required, accepts COMPUTER_VISION, COMPUTER_INPUT
|
|
2510
|
+
# agent_action: "COMPUTER_VISION", # required, accepts COMPUTER_VISION, COMPUTER_INPUT, FORWARD_MCP_TOOLS
|
|
2509
2511
|
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
|
2510
2512
|
# },
|
|
2511
2513
|
# ],
|
|
@@ -2513,6 +2515,7 @@ module Aws::AppStream
|
|
|
2513
2515
|
# screenshots_upload_enabled: false,
|
|
2514
2516
|
# screen_resolution: "W_1280xH_720", # required, accepts W_1280xH_720
|
|
2515
2517
|
# screen_image_format: "PNG", # required, accepts PNG, JPEG
|
|
2518
|
+
# user_control_mode: "VIEW_ONLY", # accepts VIEW_ONLY, VIEW_STOP, DISABLED
|
|
2516
2519
|
# },
|
|
2517
2520
|
# })
|
|
2518
2521
|
#
|
|
@@ -2554,12 +2557,13 @@ module Aws::AppStream
|
|
|
2554
2557
|
# resp.stack.content_redirection.host_to_client.denied_urls #=> Array
|
|
2555
2558
|
# resp.stack.content_redirection.host_to_client.denied_urls[0] #=> String
|
|
2556
2559
|
# resp.stack.agent_access_config.settings #=> Array
|
|
2557
|
-
# resp.stack.agent_access_config.settings[0].agent_action #=> String, one of "COMPUTER_VISION", "COMPUTER_INPUT"
|
|
2560
|
+
# resp.stack.agent_access_config.settings[0].agent_action #=> String, one of "COMPUTER_VISION", "COMPUTER_INPUT", "FORWARD_MCP_TOOLS"
|
|
2558
2561
|
# resp.stack.agent_access_config.settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
|
2559
2562
|
# resp.stack.agent_access_config.s3_bucket_arn #=> String
|
|
2560
2563
|
# resp.stack.agent_access_config.screenshots_upload_enabled #=> Boolean
|
|
2561
2564
|
# resp.stack.agent_access_config.screen_resolution #=> String, one of "W_1280xH_720"
|
|
2562
2565
|
# resp.stack.agent_access_config.screen_image_format #=> String, one of "PNG", "JPEG"
|
|
2566
|
+
# resp.stack.agent_access_config.user_control_mode #=> String, one of "VIEW_ONLY", "VIEW_STOP", "DISABLED"
|
|
2563
2567
|
#
|
|
2564
2568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStack AWS API Documentation
|
|
2565
2569
|
#
|
|
@@ -2830,7 +2834,7 @@ module Aws::AppStream
|
|
|
2830
2834
|
# resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
|
|
2831
2835
|
# resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
|
|
2832
2836
|
# resp.image.managed_software_included #=> Boolean
|
|
2833
|
-
# resp.image.image_type #=> String, one of "CUSTOM", "NATIVE"
|
|
2837
|
+
# resp.image.image_type #=> String, one of "CUSTOM", "NATIVE", "BYOL"
|
|
2834
2838
|
# resp.can_update_image #=> Boolean
|
|
2835
2839
|
#
|
|
2836
2840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUpdatedImage AWS API Documentation
|
|
@@ -3125,7 +3129,7 @@ module Aws::AppStream
|
|
|
3125
3129
|
# resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
|
|
3126
3130
|
# resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
|
|
3127
3131
|
# resp.image.managed_software_included #=> Boolean
|
|
3128
|
-
# resp.image.image_type #=> String, one of "CUSTOM", "NATIVE"
|
|
3132
|
+
# resp.image.image_type #=> String, one of "CUSTOM", "NATIVE", "BYOL"
|
|
3129
3133
|
#
|
|
3130
3134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImage AWS API Documentation
|
|
3131
3135
|
#
|
|
@@ -4053,7 +4057,7 @@ module Aws::AppStream
|
|
|
4053
4057
|
# resp.images[0].dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
|
|
4054
4058
|
# resp.images[0].image_shared_with_others #=> String, one of "TRUE", "FALSE"
|
|
4055
4059
|
# resp.images[0].managed_software_included #=> Boolean
|
|
4056
|
-
# resp.images[0].image_type #=> String, one of "CUSTOM", "NATIVE"
|
|
4060
|
+
# resp.images[0].image_type #=> String, one of "CUSTOM", "NATIVE", "BYOL"
|
|
4057
4061
|
# resp.next_token #=> String
|
|
4058
4062
|
#
|
|
4059
4063
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImages AWS API Documentation
|
|
@@ -4253,12 +4257,13 @@ module Aws::AppStream
|
|
|
4253
4257
|
# resp.stacks[0].content_redirection.host_to_client.denied_urls #=> Array
|
|
4254
4258
|
# resp.stacks[0].content_redirection.host_to_client.denied_urls[0] #=> String
|
|
4255
4259
|
# resp.stacks[0].agent_access_config.settings #=> Array
|
|
4256
|
-
# resp.stacks[0].agent_access_config.settings[0].agent_action #=> String, one of "COMPUTER_VISION", "COMPUTER_INPUT"
|
|
4260
|
+
# resp.stacks[0].agent_access_config.settings[0].agent_action #=> String, one of "COMPUTER_VISION", "COMPUTER_INPUT", "FORWARD_MCP_TOOLS"
|
|
4257
4261
|
# resp.stacks[0].agent_access_config.settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
|
4258
4262
|
# resp.stacks[0].agent_access_config.s3_bucket_arn #=> String
|
|
4259
4263
|
# resp.stacks[0].agent_access_config.screenshots_upload_enabled #=> Boolean
|
|
4260
4264
|
# resp.stacks[0].agent_access_config.screen_resolution #=> String, one of "W_1280xH_720"
|
|
4261
4265
|
# resp.stacks[0].agent_access_config.screen_image_format #=> String, one of "PNG", "JPEG"
|
|
4266
|
+
# resp.stacks[0].agent_access_config.user_control_mode #=> String, one of "VIEW_ONLY", "VIEW_STOP", "DISABLED"
|
|
4262
4267
|
# resp.next_token #=> String
|
|
4263
4268
|
#
|
|
4264
4269
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeStacks AWS API Documentation
|
|
@@ -4787,7 +4792,7 @@ module Aws::AppStream
|
|
|
4787
4792
|
# resp.export_image_task.ami_name #=> String
|
|
4788
4793
|
# resp.export_image_task.created_date #=> Time
|
|
4789
4794
|
# resp.export_image_task.ami_description #=> String
|
|
4790
|
-
# resp.export_image_task.state #=> String, one of "EXPORTING", "COMPLETED", "FAILED"
|
|
4795
|
+
# resp.export_image_task.state #=> String, one of "EXPORTING", "COMPLETED", "FAILED", "TIMED_OUT"
|
|
4791
4796
|
# resp.export_image_task.ami_id #=> String
|
|
4792
4797
|
# resp.export_image_task.tag_specifications #=> Hash
|
|
4793
4798
|
# resp.export_image_task.tag_specifications["TagKey"] #=> String
|
|
@@ -4964,7 +4969,7 @@ module Aws::AppStream
|
|
|
4964
4969
|
# resp.export_image_tasks[0].ami_name #=> String
|
|
4965
4970
|
# resp.export_image_tasks[0].created_date #=> Time
|
|
4966
4971
|
# resp.export_image_tasks[0].ami_description #=> String
|
|
4967
|
-
# resp.export_image_tasks[0].state #=> String, one of "EXPORTING", "COMPLETED", "FAILED"
|
|
4972
|
+
# resp.export_image_tasks[0].state #=> String, one of "EXPORTING", "COMPLETED", "FAILED", "TIMED_OUT"
|
|
4968
4973
|
# resp.export_image_tasks[0].ami_id #=> String
|
|
4969
4974
|
# resp.export_image_tasks[0].tag_specifications #=> Hash
|
|
4970
4975
|
# resp.export_image_tasks[0].tag_specifications["TagKey"] #=> String
|
|
@@ -6299,7 +6304,7 @@ module Aws::AppStream
|
|
|
6299
6304
|
# agent_access_config: {
|
|
6300
6305
|
# settings: [
|
|
6301
6306
|
# {
|
|
6302
|
-
# agent_action: "COMPUTER_VISION", # required, accepts COMPUTER_VISION, COMPUTER_INPUT
|
|
6307
|
+
# agent_action: "COMPUTER_VISION", # required, accepts COMPUTER_VISION, COMPUTER_INPUT, FORWARD_MCP_TOOLS
|
|
6303
6308
|
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
|
6304
6309
|
# },
|
|
6305
6310
|
# ],
|
|
@@ -6307,6 +6312,7 @@ module Aws::AppStream
|
|
|
6307
6312
|
# screenshots_upload_enabled: false,
|
|
6308
6313
|
# screen_resolution: "W_1280xH_720", # accepts W_1280xH_720
|
|
6309
6314
|
# screen_image_format: "PNG", # accepts PNG, JPEG
|
|
6315
|
+
# user_control_mode: "VIEW_ONLY", # accepts VIEW_ONLY, VIEW_STOP, DISABLED
|
|
6310
6316
|
# },
|
|
6311
6317
|
# })
|
|
6312
6318
|
#
|
|
@@ -6348,12 +6354,13 @@ module Aws::AppStream
|
|
|
6348
6354
|
# resp.stack.content_redirection.host_to_client.denied_urls #=> Array
|
|
6349
6355
|
# resp.stack.content_redirection.host_to_client.denied_urls[0] #=> String
|
|
6350
6356
|
# resp.stack.agent_access_config.settings #=> Array
|
|
6351
|
-
# resp.stack.agent_access_config.settings[0].agent_action #=> String, one of "COMPUTER_VISION", "COMPUTER_INPUT"
|
|
6357
|
+
# resp.stack.agent_access_config.settings[0].agent_action #=> String, one of "COMPUTER_VISION", "COMPUTER_INPUT", "FORWARD_MCP_TOOLS"
|
|
6352
6358
|
# resp.stack.agent_access_config.settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
|
6353
6359
|
# resp.stack.agent_access_config.s3_bucket_arn #=> String
|
|
6354
6360
|
# resp.stack.agent_access_config.screenshots_upload_enabled #=> Boolean
|
|
6355
6361
|
# resp.stack.agent_access_config.screen_resolution #=> String, one of "W_1280xH_720"
|
|
6356
6362
|
# resp.stack.agent_access_config.screen_image_format #=> String, one of "PNG", "JPEG"
|
|
6363
|
+
# resp.stack.agent_access_config.user_control_mode #=> String, one of "VIEW_ONLY", "VIEW_STOP", "DISABLED"
|
|
6357
6364
|
#
|
|
6358
6365
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStack AWS API Documentation
|
|
6359
6366
|
#
|
|
@@ -6469,7 +6476,7 @@ module Aws::AppStream
|
|
|
6469
6476
|
tracer: tracer
|
|
6470
6477
|
)
|
|
6471
6478
|
context[:gem_name] = 'aws-sdk-appstream'
|
|
6472
|
-
context[:gem_version] = '1.
|
|
6479
|
+
context[:gem_version] = '1.138.0'
|
|
6473
6480
|
Seahorse::Client::Request.new(handlers, context)
|
|
6474
6481
|
end
|
|
6475
6482
|
|
|
@@ -406,6 +406,7 @@ module Aws::AppStream
|
|
|
406
406
|
UsbDeviceFilterStrings = Shapes::ListShape.new(name: 'UsbDeviceFilterStrings')
|
|
407
407
|
User = Shapes::StructureShape.new(name: 'User')
|
|
408
408
|
UserAttributeValue = Shapes::StringShape.new(name: 'UserAttributeValue')
|
|
409
|
+
UserControlMode = Shapes::StringShape.new(name: 'UserControlMode')
|
|
409
410
|
UserId = Shapes::StringShape.new(name: 'UserId')
|
|
410
411
|
UserList = Shapes::ListShape.new(name: 'UserList')
|
|
411
412
|
UserSetting = Shapes::StructureShape.new(name: 'UserSetting')
|
|
@@ -419,6 +420,7 @@ module Aws::AppStream
|
|
|
419
420
|
VisibilityType = Shapes::StringShape.new(name: 'VisibilityType')
|
|
420
421
|
VolumeConfig = Shapes::StructureShape.new(name: 'VolumeConfig')
|
|
421
422
|
VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
|
|
423
|
+
WorkspaceImageId = Shapes::StringShape.new(name: 'WorkspaceImageId')
|
|
422
424
|
|
|
423
425
|
AccessEndpoint.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: AccessEndpointType, required: true, location_name: "EndpointType"))
|
|
424
426
|
AccessEndpoint.add_member(:vpce_id, Shapes::ShapeRef.new(shape: String, location_name: "VpceId"))
|
|
@@ -442,6 +444,7 @@ module Aws::AppStream
|
|
|
442
444
|
AgentAccessConfig.add_member(:screenshots_upload_enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ScreenshotsUploadEnabled"))
|
|
443
445
|
AgentAccessConfig.add_member(:screen_resolution, Shapes::ShapeRef.new(shape: ScreenResolution, required: true, location_name: "ScreenResolution"))
|
|
444
446
|
AgentAccessConfig.add_member(:screen_image_format, Shapes::ShapeRef.new(shape: ScreenImageFormat, required: true, location_name: "ScreenImageFormat"))
|
|
447
|
+
AgentAccessConfig.add_member(:user_control_mode, Shapes::ShapeRef.new(shape: UserControlMode, location_name: "UserControlMode"))
|
|
445
448
|
AgentAccessConfig.struct_class = Types::AgentAccessConfig
|
|
446
449
|
|
|
447
450
|
AgentAccessConfigForUpdate.add_member(:settings, Shapes::ShapeRef.new(shape: AgentAccessSettingList, location_name: "Settings"))
|
|
@@ -449,6 +452,7 @@ module Aws::AppStream
|
|
|
449
452
|
AgentAccessConfigForUpdate.add_member(:screenshots_upload_enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ScreenshotsUploadEnabled"))
|
|
450
453
|
AgentAccessConfigForUpdate.add_member(:screen_resolution, Shapes::ShapeRef.new(shape: ScreenResolution, location_name: "ScreenResolution"))
|
|
451
454
|
AgentAccessConfigForUpdate.add_member(:screen_image_format, Shapes::ShapeRef.new(shape: ScreenImageFormat, location_name: "ScreenImageFormat"))
|
|
455
|
+
AgentAccessConfigForUpdate.add_member(:user_control_mode, Shapes::ShapeRef.new(shape: UserControlMode, location_name: "UserControlMode"))
|
|
452
456
|
AgentAccessConfigForUpdate.struct_class = Types::AgentAccessConfigForUpdate
|
|
453
457
|
|
|
454
458
|
AgentAccessSetting.add_member(:agent_action, Shapes::ShapeRef.new(shape: AgentAction, required: true, location_name: "AgentAction"))
|
|
@@ -777,8 +781,9 @@ module Aws::AppStream
|
|
|
777
781
|
CreateImageBuilderStreamingURLResult.struct_class = Types::CreateImageBuilderStreamingURLResult
|
|
778
782
|
|
|
779
783
|
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,
|
|
781
|
-
CreateImportedImageRequest.add_member(:
|
|
784
|
+
CreateImportedImageRequest.add_member(:source_ami_id, Shapes::ShapeRef.new(shape: PhotonAmiId, location_name: "SourceAmiId"))
|
|
785
|
+
CreateImportedImageRequest.add_member(:workspace_image_id, Shapes::ShapeRef.new(shape: WorkspaceImageId, location_name: "WorkspaceImageId"))
|
|
786
|
+
CreateImportedImageRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "IamRoleArn"))
|
|
782
787
|
CreateImportedImageRequest.add_member(:description, Shapes::ShapeRef.new(shape: ImageImportDescription, location_name: "Description"))
|
|
783
788
|
CreateImportedImageRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ImageImportDisplayName, location_name: "DisplayName"))
|
|
784
789
|
CreateImportedImageRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
|
@@ -2066,6 +2071,7 @@ module Aws::AppStream
|
|
|
2066
2071
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2067
2072
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
|
|
2068
2073
|
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
2074
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
|
2069
2075
|
end)
|
|
2070
2076
|
|
|
2071
2077
|
api.add_operation(:create_stack, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -108,6 +108,11 @@ module Aws::AppStream
|
|
|
108
108
|
# The image format for agent screen captures.
|
|
109
109
|
# @return [String]
|
|
110
110
|
#
|
|
111
|
+
# @!attribute [rw] user_control_mode
|
|
112
|
+
# The user control mode for agent sessions. This setting determines
|
|
113
|
+
# how users can interact with agent sessions.
|
|
114
|
+
# @return [String]
|
|
115
|
+
#
|
|
111
116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AgentAccessConfig AWS API Documentation
|
|
112
117
|
#
|
|
113
118
|
class AgentAccessConfig < Struct.new(
|
|
@@ -115,7 +120,8 @@ module Aws::AppStream
|
|
|
115
120
|
:s3_bucket_arn,
|
|
116
121
|
:screenshots_upload_enabled,
|
|
117
122
|
:screen_resolution,
|
|
118
|
-
:screen_image_format
|
|
123
|
+
:screen_image_format,
|
|
124
|
+
:user_control_mode)
|
|
119
125
|
SENSITIVE = []
|
|
120
126
|
include Aws::Structure
|
|
121
127
|
end
|
|
@@ -147,6 +153,11 @@ module Aws::AppStream
|
|
|
147
153
|
# The image format for agent screen captures.
|
|
148
154
|
# @return [String]
|
|
149
155
|
#
|
|
156
|
+
# @!attribute [rw] user_control_mode
|
|
157
|
+
# The user control mode for agent sessions. This setting determines
|
|
158
|
+
# how users can interact with agent sessions.
|
|
159
|
+
# @return [String]
|
|
160
|
+
#
|
|
150
161
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AgentAccessConfigForUpdate AWS API Documentation
|
|
151
162
|
#
|
|
152
163
|
class AgentAccessConfigForUpdate < Struct.new(
|
|
@@ -154,7 +165,8 @@ module Aws::AppStream
|
|
|
154
165
|
:s3_bucket_arn,
|
|
155
166
|
:screenshots_upload_enabled,
|
|
156
167
|
:screen_resolution,
|
|
157
|
-
:screen_image_format
|
|
168
|
+
:screen_image_format,
|
|
169
|
+
:user_control_mode)
|
|
158
170
|
SENSITIVE = []
|
|
159
171
|
include Aws::Structure
|
|
160
172
|
end
|
|
@@ -163,9 +175,9 @@ module Aws::AppStream
|
|
|
163
175
|
# agent action and whether it is enabled or disabled.
|
|
164
176
|
#
|
|
165
177
|
# @!attribute [rw] agent_action
|
|
166
|
-
# The agent action to configure. Valid values are COMPUTER\_VISION
|
|
167
|
-
# COMPUTER\_INPUT. If you enable
|
|
168
|
-
# COMPUTER\_VISION.
|
|
178
|
+
# The agent action to configure. Valid values are COMPUTER\_VISION,
|
|
179
|
+
# COMPUTER\_INPUT, and FORWARD\_MCP\_TOOLS. If you enable
|
|
180
|
+
# COMPUTER\_INPUT, you must also enable COMPUTER\_VISION.
|
|
169
181
|
# @return [String]
|
|
170
182
|
#
|
|
171
183
|
# @!attribute [rw] permission
|
|
@@ -2255,9 +2267,11 @@ module Aws::AppStream
|
|
|
2255
2267
|
# @return [String]
|
|
2256
2268
|
#
|
|
2257
2269
|
# @!attribute [rw] source_ami_id
|
|
2258
|
-
# The ID of the EC2 AMI to import.
|
|
2259
|
-
#
|
|
2260
|
-
#
|
|
2270
|
+
# The ID of the EC2 AMI to import.
|
|
2271
|
+
# @return [String]
|
|
2272
|
+
#
|
|
2273
|
+
# @!attribute [rw] workspace_image_id
|
|
2274
|
+
# The ID of the Workspaces Image to import.
|
|
2261
2275
|
# @return [String]
|
|
2262
2276
|
#
|
|
2263
2277
|
# @!attribute [rw] iam_role_arn
|
|
@@ -2314,6 +2328,7 @@ module Aws::AppStream
|
|
|
2314
2328
|
class CreateImportedImageRequest < Struct.new(
|
|
2315
2329
|
:name,
|
|
2316
2330
|
:source_ami_id,
|
|
2331
|
+
:workspace_image_id,
|
|
2317
2332
|
:iam_role_arn,
|
|
2318
2333
|
:description,
|
|
2319
2334
|
:display_name,
|
data/lib/aws-sdk-appstream.rb
CHANGED
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
|
-
|
|
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],
|
|
@@ -494,14 +495,15 @@ module Aws
|
|
|
494
495
|
?agent_access_config: {
|
|
495
496
|
settings: Array[
|
|
496
497
|
{
|
|
497
|
-
agent_action: ("COMPUTER_VISION" | "COMPUTER_INPUT"),
|
|
498
|
+
agent_action: ("COMPUTER_VISION" | "COMPUTER_INPUT" | "FORWARD_MCP_TOOLS"),
|
|
498
499
|
permission: ("ENABLED" | "DISABLED")
|
|
499
500
|
}
|
|
500
501
|
],
|
|
501
502
|
s3_bucket_arn: ::String?,
|
|
502
503
|
screenshots_upload_enabled: bool?,
|
|
503
504
|
screen_resolution: ("W_1280xH_720"),
|
|
504
|
-
screen_image_format: ("PNG" | "JPEG")
|
|
505
|
+
screen_image_format: ("PNG" | "JPEG"),
|
|
506
|
+
user_control_mode: ("VIEW_ONLY" | "VIEW_STOP" | "DISABLED")?
|
|
505
507
|
}
|
|
506
508
|
) -> _CreateStackResponseSuccess
|
|
507
509
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackResponseSuccess
|
|
@@ -1417,14 +1419,15 @@ module Aws
|
|
|
1417
1419
|
?agent_access_config: {
|
|
1418
1420
|
settings: Array[
|
|
1419
1421
|
{
|
|
1420
|
-
agent_action: ("COMPUTER_VISION" | "COMPUTER_INPUT"),
|
|
1422
|
+
agent_action: ("COMPUTER_VISION" | "COMPUTER_INPUT" | "FORWARD_MCP_TOOLS"),
|
|
1421
1423
|
permission: ("ENABLED" | "DISABLED")
|
|
1422
1424
|
}
|
|
1423
1425
|
]?,
|
|
1424
1426
|
s3_bucket_arn: ::String?,
|
|
1425
1427
|
screenshots_upload_enabled: bool?,
|
|
1426
1428
|
screen_resolution: ("W_1280xH_720")?,
|
|
1427
|
-
screen_image_format: ("PNG" | "JPEG")
|
|
1429
|
+
screen_image_format: ("PNG" | "JPEG")?,
|
|
1430
|
+
user_control_mode: ("VIEW_ONLY" | "VIEW_STOP" | "DISABLED")?
|
|
1428
1431
|
}
|
|
1429
1432
|
) -> _UpdateStackResponseSuccess
|
|
1430
1433
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -31,6 +31,7 @@ module Aws::AppStream
|
|
|
31
31
|
attr_accessor screenshots_upload_enabled: bool
|
|
32
32
|
attr_accessor screen_resolution: ("W_1280xH_720")
|
|
33
33
|
attr_accessor screen_image_format: ("PNG" | "JPEG")
|
|
34
|
+
attr_accessor user_control_mode: ("VIEW_ONLY" | "VIEW_STOP" | "DISABLED")
|
|
34
35
|
SENSITIVE: []
|
|
35
36
|
end
|
|
36
37
|
|
|
@@ -40,11 +41,12 @@ module Aws::AppStream
|
|
|
40
41
|
attr_accessor screenshots_upload_enabled: bool
|
|
41
42
|
attr_accessor screen_resolution: ("W_1280xH_720")
|
|
42
43
|
attr_accessor screen_image_format: ("PNG" | "JPEG")
|
|
44
|
+
attr_accessor user_control_mode: ("VIEW_ONLY" | "VIEW_STOP" | "DISABLED")
|
|
43
45
|
SENSITIVE: []
|
|
44
46
|
end
|
|
45
47
|
|
|
46
48
|
class AgentAccessSetting
|
|
47
|
-
attr_accessor agent_action: ("COMPUTER_VISION" | "COMPUTER_INPUT")
|
|
49
|
+
attr_accessor agent_action: ("COMPUTER_VISION" | "COMPUTER_INPUT" | "FORWARD_MCP_TOOLS")
|
|
48
50
|
attr_accessor permission: ("ENABLED" | "DISABLED")
|
|
49
51
|
SENSITIVE: []
|
|
50
52
|
end
|
|
@@ -448,6 +450,7 @@ module Aws::AppStream
|
|
|
448
450
|
class CreateImportedImageRequest
|
|
449
451
|
attr_accessor name: ::String
|
|
450
452
|
attr_accessor source_ami_id: ::String
|
|
453
|
+
attr_accessor workspace_image_id: ::String
|
|
451
454
|
attr_accessor iam_role_arn: ::String
|
|
452
455
|
attr_accessor description: ::String
|
|
453
456
|
attr_accessor display_name: ::String
|
|
@@ -1063,7 +1066,7 @@ module Aws::AppStream
|
|
|
1063
1066
|
attr_accessor ami_name: ::String
|
|
1064
1067
|
attr_accessor created_date: ::Time
|
|
1065
1068
|
attr_accessor ami_description: ::String
|
|
1066
|
-
attr_accessor state: ("EXPORTING" | "COMPLETED" | "FAILED")
|
|
1069
|
+
attr_accessor state: ("EXPORTING" | "COMPLETED" | "FAILED" | "TIMED_OUT")
|
|
1067
1070
|
attr_accessor ami_id: ::String
|
|
1068
1071
|
attr_accessor tag_specifications: ::Hash[::String, ::String]
|
|
1069
1072
|
attr_accessor error_details: ::Array[Types::ErrorDetails]
|
|
@@ -1146,7 +1149,7 @@ module Aws::AppStream
|
|
|
1146
1149
|
attr_accessor dynamic_app_providers_enabled: ("ENABLED" | "DISABLED")
|
|
1147
1150
|
attr_accessor image_shared_with_others: ("TRUE" | "FALSE")
|
|
1148
1151
|
attr_accessor managed_software_included: bool
|
|
1149
|
-
attr_accessor image_type: ("CUSTOM" | "NATIVE")
|
|
1152
|
+
attr_accessor image_type: ("CUSTOM" | "NATIVE" | "BYOL")
|
|
1150
1153
|
SENSITIVE: []
|
|
1151
1154
|
end
|
|
1152
1155
|
|