aws-sdk-appstream 1.127.0 → 1.128.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-appstream/client.rb +57 -1
- data/lib/aws-sdk-appstream/client_api.rb +8 -0
- data/lib/aws-sdk-appstream/types.rb +74 -8
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +10 -5
- data/sig/types.rbs +8 -0
- 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: 6d4bbf292c4deab9a36b986fd9569efd602a06fcfb2cab26dcd35f3b565c907e
|
|
4
|
+
data.tar.gz: 3775f410aa879a60103c8b765c5b069b9c990a9be524a411c38e5316b6c97d26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12ddd0b7a26b0f07b8facd4032252c2142c6a8c2d40204da574a6318e0b02a077e573e36e121f3b966943e47b3207d391101e28859708bb5277d8c9bbbbe9ddf
|
|
7
|
+
data.tar.gz: 3edc83fca9818e9f806673ef28657836a3eafeec14985f76565bc020dc8450b2c07c1c7cdc79e90791f65e9cce3fb2a9db8e640044e383f3fdc080336394ae82
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.128.0
|
|
@@ -1005,6 +1005,10 @@ module Aws::AppStream
|
|
|
1005
1005
|
# Administrators can connect to the app block builder only through the
|
|
1006
1006
|
# specified endpoints.
|
|
1007
1007
|
#
|
|
1008
|
+
# @option params [Boolean] :disable_imdsv1
|
|
1009
|
+
# Set to true to disable Instance Metadata Service Version 1 (IMDSv1)
|
|
1010
|
+
# and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.
|
|
1011
|
+
#
|
|
1008
1012
|
# @return [Types::CreateAppBlockBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1009
1013
|
#
|
|
1010
1014
|
# * {Types::CreateAppBlockBuilderResult#app_block_builder #app_block_builder} => Types::AppBlockBuilder
|
|
@@ -1032,6 +1036,7 @@ module Aws::AppStream
|
|
|
1032
1036
|
# vpce_id: "String",
|
|
1033
1037
|
# },
|
|
1034
1038
|
# ],
|
|
1039
|
+
# disable_imdsv1: false,
|
|
1035
1040
|
# })
|
|
1036
1041
|
#
|
|
1037
1042
|
# @example Response structure
|
|
@@ -1059,6 +1064,7 @@ module Aws::AppStream
|
|
|
1059
1064
|
# resp.app_block_builder.access_endpoints #=> Array
|
|
1060
1065
|
# resp.app_block_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
|
|
1061
1066
|
# resp.app_block_builder.access_endpoints[0].vpce_id #=> String
|
|
1067
|
+
# resp.app_block_builder.disable_imdsv1 #=> Boolean
|
|
1062
1068
|
#
|
|
1063
1069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateAppBlockBuilder AWS API Documentation
|
|
1064
1070
|
#
|
|
@@ -1685,6 +1691,16 @@ module Aws::AppStream
|
|
|
1685
1691
|
# customize storage capacity from 200 GB up to 500 GB based on your
|
|
1686
1692
|
# application requirements.
|
|
1687
1693
|
#
|
|
1694
|
+
# @option params [Boolean] :disable_imdsv1
|
|
1695
|
+
# Set to true to disable Instance Metadata Service Version 1 (IMDSv1)
|
|
1696
|
+
# and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.
|
|
1697
|
+
#
|
|
1698
|
+
# <note markdown="1"> Before disabling IMDSv1, ensure your WorkSpaces Applications images
|
|
1699
|
+
# are running the agent version or managed image update released on or
|
|
1700
|
+
# after January 16, 2024 to support IMDSv2 enforcement.
|
|
1701
|
+
#
|
|
1702
|
+
# </note>
|
|
1703
|
+
#
|
|
1688
1704
|
# @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1689
1705
|
#
|
|
1690
1706
|
# * {Types::CreateFleetResult#fleet #fleet} => Types::Fleet
|
|
@@ -1731,6 +1747,7 @@ module Aws::AppStream
|
|
|
1731
1747
|
# root_volume_config: {
|
|
1732
1748
|
# volume_size_in_gb: 1,
|
|
1733
1749
|
# },
|
|
1750
|
+
# disable_imdsv1: false,
|
|
1734
1751
|
# })
|
|
1735
1752
|
#
|
|
1736
1753
|
# @example Response structure
|
|
@@ -1776,6 +1793,7 @@ module Aws::AppStream
|
|
|
1776
1793
|
# resp.fleet.session_script_s3_location.s3_key #=> String
|
|
1777
1794
|
# resp.fleet.max_sessions_per_instance #=> Integer
|
|
1778
1795
|
# resp.fleet.root_volume_config.volume_size_in_gb #=> Integer
|
|
1796
|
+
# resp.fleet.disable_imdsv1 #=> Boolean
|
|
1779
1797
|
#
|
|
1780
1798
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleet AWS API Documentation
|
|
1781
1799
|
#
|
|
@@ -2074,6 +2092,16 @@ module Aws::AppStream
|
|
|
2074
2092
|
#
|
|
2075
2093
|
# * Microsoft\_Project\_2024\_Standard\_64Bit
|
|
2076
2094
|
#
|
|
2095
|
+
# @option params [Boolean] :disable_imdsv1
|
|
2096
|
+
# Set to true to disable Instance Metadata Service Version 1 (IMDSv1)
|
|
2097
|
+
# and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.
|
|
2098
|
+
#
|
|
2099
|
+
# <note markdown="1"> Before disabling IMDSv1, ensure your WorkSpaces Applications images
|
|
2100
|
+
# are running the agent version or managed image update released on or
|
|
2101
|
+
# after January 16, 2024 to support IMDSv2 enforcement.
|
|
2102
|
+
#
|
|
2103
|
+
# </note>
|
|
2104
|
+
#
|
|
2077
2105
|
# @return [Types::CreateImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2078
2106
|
#
|
|
2079
2107
|
# * {Types::CreateImageBuilderResult#image_builder #image_builder} => Types::ImageBuilder
|
|
@@ -2112,6 +2140,7 @@ module Aws::AppStream
|
|
|
2112
2140
|
# },
|
|
2113
2141
|
# softwares_to_install: ["String"],
|
|
2114
2142
|
# softwares_to_uninstall: ["String"],
|
|
2143
|
+
# disable_imdsv1: false,
|
|
2115
2144
|
# })
|
|
2116
2145
|
#
|
|
2117
2146
|
# @example Response structure
|
|
@@ -2149,6 +2178,7 @@ module Aws::AppStream
|
|
|
2149
2178
|
# resp.image_builder.access_endpoints[0].vpce_id #=> String
|
|
2150
2179
|
# resp.image_builder.root_volume_config.volume_size_in_gb #=> Integer
|
|
2151
2180
|
# resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
|
2181
|
+
# resp.image_builder.disable_imdsv1 #=> Boolean
|
|
2152
2182
|
#
|
|
2153
2183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilder AWS API Documentation
|
|
2154
2184
|
#
|
|
@@ -3115,6 +3145,7 @@ module Aws::AppStream
|
|
|
3115
3145
|
# resp.image_builder.access_endpoints[0].vpce_id #=> String
|
|
3116
3146
|
# resp.image_builder.root_volume_config.volume_size_in_gb #=> Integer
|
|
3117
3147
|
# resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
|
3148
|
+
# resp.image_builder.disable_imdsv1 #=> Boolean
|
|
3118
3149
|
#
|
|
3119
3150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageBuilder AWS API Documentation
|
|
3120
3151
|
#
|
|
@@ -3346,6 +3377,7 @@ module Aws::AppStream
|
|
|
3346
3377
|
# resp.app_block_builders[0].access_endpoints #=> Array
|
|
3347
3378
|
# resp.app_block_builders[0].access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
|
|
3348
3379
|
# resp.app_block_builders[0].access_endpoints[0].vpce_id #=> String
|
|
3380
|
+
# resp.app_block_builders[0].disable_imdsv1 #=> Boolean
|
|
3349
3381
|
# resp.next_token #=> String
|
|
3350
3382
|
#
|
|
3351
3383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeAppBlockBuilders AWS API Documentation
|
|
@@ -3744,6 +3776,7 @@ module Aws::AppStream
|
|
|
3744
3776
|
# resp.fleets[0].session_script_s3_location.s3_key #=> String
|
|
3745
3777
|
# resp.fleets[0].max_sessions_per_instance #=> Integer
|
|
3746
3778
|
# resp.fleets[0].root_volume_config.volume_size_in_gb #=> Integer
|
|
3779
|
+
# resp.fleets[0].disable_imdsv1 #=> Boolean
|
|
3747
3780
|
# resp.next_token #=> String
|
|
3748
3781
|
#
|
|
3749
3782
|
#
|
|
@@ -3824,6 +3857,7 @@ module Aws::AppStream
|
|
|
3824
3857
|
# resp.image_builders[0].access_endpoints[0].vpce_id #=> String
|
|
3825
3858
|
# resp.image_builders[0].root_volume_config.volume_size_in_gb #=> Integer
|
|
3826
3859
|
# resp.image_builders[0].latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
|
3860
|
+
# resp.image_builders[0].disable_imdsv1 #=> Boolean
|
|
3827
3861
|
# resp.next_token #=> String
|
|
3828
3862
|
#
|
|
3829
3863
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImageBuilders AWS API Documentation
|
|
@@ -4951,6 +4985,7 @@ module Aws::AppStream
|
|
|
4951
4985
|
# resp.app_block_builder.access_endpoints #=> Array
|
|
4952
4986
|
# resp.app_block_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
|
|
4953
4987
|
# resp.app_block_builder.access_endpoints[0].vpce_id #=> String
|
|
4988
|
+
# resp.app_block_builder.disable_imdsv1 #=> Boolean
|
|
4954
4989
|
#
|
|
4955
4990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartAppBlockBuilder AWS API Documentation
|
|
4956
4991
|
#
|
|
@@ -5039,6 +5074,7 @@ module Aws::AppStream
|
|
|
5039
5074
|
# resp.image_builder.access_endpoints[0].vpce_id #=> String
|
|
5040
5075
|
# resp.image_builder.root_volume_config.volume_size_in_gb #=> Integer
|
|
5041
5076
|
# resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
|
5077
|
+
# resp.image_builder.disable_imdsv1 #=> Boolean
|
|
5042
5078
|
#
|
|
5043
5079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilder AWS API Documentation
|
|
5044
5080
|
#
|
|
@@ -5120,6 +5156,7 @@ module Aws::AppStream
|
|
|
5120
5156
|
# resp.app_block_builder.access_endpoints #=> Array
|
|
5121
5157
|
# resp.app_block_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
|
|
5122
5158
|
# resp.app_block_builder.access_endpoints[0].vpce_id #=> String
|
|
5159
|
+
# resp.app_block_builder.disable_imdsv1 #=> Boolean
|
|
5123
5160
|
#
|
|
5124
5161
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopAppBlockBuilder AWS API Documentation
|
|
5125
5162
|
#
|
|
@@ -5202,6 +5239,7 @@ module Aws::AppStream
|
|
|
5202
5239
|
# resp.image_builder.access_endpoints[0].vpce_id #=> String
|
|
5203
5240
|
# resp.image_builder.root_volume_config.volume_size_in_gb #=> Integer
|
|
5204
5241
|
# resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
|
5242
|
+
# resp.image_builder.disable_imdsv1 #=> Boolean
|
|
5205
5243
|
#
|
|
5206
5244
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopImageBuilder AWS API Documentation
|
|
5207
5245
|
#
|
|
@@ -5371,6 +5409,10 @@ module Aws::AppStream
|
|
|
5371
5409
|
# @option params [Array<String>] :attributes_to_delete
|
|
5372
5410
|
# The attributes to delete from the app block builder.
|
|
5373
5411
|
#
|
|
5412
|
+
# @option params [Boolean] :disable_imdsv1
|
|
5413
|
+
# Set to true to disable Instance Metadata Service Version 1 (IMDSv1)
|
|
5414
|
+
# and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.
|
|
5415
|
+
#
|
|
5374
5416
|
# @return [Types::UpdateAppBlockBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5375
5417
|
#
|
|
5376
5418
|
# * {Types::UpdateAppBlockBuilderResult#app_block_builder #app_block_builder} => Types::AppBlockBuilder
|
|
@@ -5396,6 +5438,7 @@ module Aws::AppStream
|
|
|
5396
5438
|
# },
|
|
5397
5439
|
# ],
|
|
5398
5440
|
# attributes_to_delete: ["IAM_ROLE_ARN"], # accepts IAM_ROLE_ARN, ACCESS_ENDPOINTS, VPC_CONFIGURATION_SECURITY_GROUP_IDS
|
|
5441
|
+
# disable_imdsv1: false,
|
|
5399
5442
|
# })
|
|
5400
5443
|
#
|
|
5401
5444
|
# @example Response structure
|
|
@@ -5423,6 +5466,7 @@ module Aws::AppStream
|
|
|
5423
5466
|
# resp.app_block_builder.access_endpoints #=> Array
|
|
5424
5467
|
# resp.app_block_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
|
|
5425
5468
|
# resp.app_block_builder.access_endpoints[0].vpce_id #=> String
|
|
5469
|
+
# resp.app_block_builder.disable_imdsv1 #=> Boolean
|
|
5426
5470
|
#
|
|
5427
5471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateAppBlockBuilder AWS API Documentation
|
|
5428
5472
|
#
|
|
@@ -5909,6 +5953,16 @@ module Aws::AppStream
|
|
|
5909
5953
|
# The updated configuration for the root volume of fleet instances. Note
|
|
5910
5954
|
# that volume size cannot be decreased below the image volume size.
|
|
5911
5955
|
#
|
|
5956
|
+
# @option params [Boolean] :disable_imdsv1
|
|
5957
|
+
# Set to true to disable Instance Metadata Service Version 1 (IMDSv1)
|
|
5958
|
+
# and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.
|
|
5959
|
+
#
|
|
5960
|
+
# <note markdown="1"> Before disabling IMDSv1, ensure your WorkSpaces Applications images
|
|
5961
|
+
# are running the agent version or managed image update released on or
|
|
5962
|
+
# after January 16, 2024 to support IMDSv2 enforcement.
|
|
5963
|
+
#
|
|
5964
|
+
# </note>
|
|
5965
|
+
#
|
|
5912
5966
|
# @return [Types::UpdateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5913
5967
|
#
|
|
5914
5968
|
# * {Types::UpdateFleetResult#fleet #fleet} => Types::Fleet
|
|
@@ -5953,6 +6007,7 @@ module Aws::AppStream
|
|
|
5953
6007
|
# root_volume_config: {
|
|
5954
6008
|
# volume_size_in_gb: 1,
|
|
5955
6009
|
# },
|
|
6010
|
+
# disable_imdsv1: false,
|
|
5956
6011
|
# })
|
|
5957
6012
|
#
|
|
5958
6013
|
# @example Response structure
|
|
@@ -5998,6 +6053,7 @@ module Aws::AppStream
|
|
|
5998
6053
|
# resp.fleet.session_script_s3_location.s3_key #=> String
|
|
5999
6054
|
# resp.fleet.max_sessions_per_instance #=> Integer
|
|
6000
6055
|
# resp.fleet.root_volume_config.volume_size_in_gb #=> Integer
|
|
6056
|
+
# resp.fleet.disable_imdsv1 #=> Boolean
|
|
6001
6057
|
#
|
|
6002
6058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleet AWS API Documentation
|
|
6003
6059
|
#
|
|
@@ -6287,7 +6343,7 @@ module Aws::AppStream
|
|
|
6287
6343
|
tracer: tracer
|
|
6288
6344
|
)
|
|
6289
6345
|
context[:gem_name] = 'aws-sdk-appstream'
|
|
6290
|
-
context[:gem_version] = '1.
|
|
6346
|
+
context[:gem_version] = '1.128.0'
|
|
6291
6347
|
Seahorse::Client::Request.new(handlers, context)
|
|
6292
6348
|
end
|
|
6293
6349
|
|
|
@@ -449,6 +449,7 @@ module Aws::AppStream
|
|
|
449
449
|
AppBlockBuilder.add_member(:app_block_builder_errors, Shapes::ShapeRef.new(shape: ResourceErrors, location_name: "AppBlockBuilderErrors"))
|
|
450
450
|
AppBlockBuilder.add_member(:state_change_reason, Shapes::ShapeRef.new(shape: AppBlockBuilderStateChangeReason, location_name: "StateChangeReason"))
|
|
451
451
|
AppBlockBuilder.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
|
|
452
|
+
AppBlockBuilder.add_member(:disable_imdsv1, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "DisableIMDSV1"))
|
|
452
453
|
AppBlockBuilder.struct_class = Types::AppBlockBuilder
|
|
453
454
|
|
|
454
455
|
AppBlockBuilderAppBlockAssociation.add_member(:app_block_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "AppBlockArn"))
|
|
@@ -603,6 +604,7 @@ module Aws::AppStream
|
|
|
603
604
|
CreateAppBlockBuilderRequest.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
|
|
604
605
|
CreateAppBlockBuilderRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "IamRoleArn"))
|
|
605
606
|
CreateAppBlockBuilderRequest.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
|
|
607
|
+
CreateAppBlockBuilderRequest.add_member(:disable_imdsv1, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "DisableIMDSV1"))
|
|
606
608
|
CreateAppBlockBuilderRequest.struct_class = Types::CreateAppBlockBuilderRequest
|
|
607
609
|
|
|
608
610
|
CreateAppBlockBuilderResult.add_member(:app_block_builder, Shapes::ShapeRef.new(shape: AppBlockBuilder, location_name: "AppBlockBuilder"))
|
|
@@ -697,6 +699,7 @@ module Aws::AppStream
|
|
|
697
699
|
CreateFleetRequest.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
|
698
700
|
CreateFleetRequest.add_member(:max_sessions_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxSessionsPerInstance"))
|
|
699
701
|
CreateFleetRequest.add_member(:root_volume_config, Shapes::ShapeRef.new(shape: VolumeConfig, location_name: "RootVolumeConfig"))
|
|
702
|
+
CreateFleetRequest.add_member(:disable_imdsv1, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "DisableIMDSV1"))
|
|
700
703
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
|
701
704
|
|
|
702
705
|
CreateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
|
@@ -718,6 +721,7 @@ module Aws::AppStream
|
|
|
718
721
|
CreateImageBuilderRequest.add_member(:root_volume_config, Shapes::ShapeRef.new(shape: VolumeConfig, location_name: "RootVolumeConfig"))
|
|
719
722
|
CreateImageBuilderRequest.add_member(:softwares_to_install, Shapes::ShapeRef.new(shape: StringList, location_name: "SoftwaresToInstall"))
|
|
720
723
|
CreateImageBuilderRequest.add_member(:softwares_to_uninstall, Shapes::ShapeRef.new(shape: StringList, location_name: "SoftwaresToUninstall"))
|
|
724
|
+
CreateImageBuilderRequest.add_member(:disable_imdsv1, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "DisableIMDSV1"))
|
|
721
725
|
CreateImageBuilderRequest.struct_class = Types::CreateImageBuilderRequest
|
|
722
726
|
|
|
723
727
|
CreateImageBuilderResult.add_member(:image_builder, Shapes::ShapeRef.new(shape: ImageBuilder, location_name: "ImageBuilder"))
|
|
@@ -1212,6 +1216,7 @@ module Aws::AppStream
|
|
|
1212
1216
|
Fleet.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
|
1213
1217
|
Fleet.add_member(:max_sessions_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxSessionsPerInstance"))
|
|
1214
1218
|
Fleet.add_member(:root_volume_config, Shapes::ShapeRef.new(shape: VolumeConfig, location_name: "RootVolumeConfig"))
|
|
1219
|
+
Fleet.add_member(:disable_imdsv1, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "DisableIMDSV1"))
|
|
1215
1220
|
Fleet.struct_class = Types::Fleet
|
|
1216
1221
|
|
|
1217
1222
|
FleetAttributes.member = Shapes::ShapeRef.new(shape: FleetAttribute)
|
|
@@ -1275,6 +1280,7 @@ module Aws::AppStream
|
|
|
1275
1280
|
ImageBuilder.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
|
|
1276
1281
|
ImageBuilder.add_member(:root_volume_config, Shapes::ShapeRef.new(shape: VolumeConfig, location_name: "RootVolumeConfig"))
|
|
1277
1282
|
ImageBuilder.add_member(:latest_appstream_agent_version, Shapes::ShapeRef.new(shape: LatestAppstreamAgentVersion, location_name: "LatestAppstreamAgentVersion"))
|
|
1283
|
+
ImageBuilder.add_member(:disable_imdsv1, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "DisableIMDSV1"))
|
|
1278
1284
|
ImageBuilder.struct_class = Types::ImageBuilder
|
|
1279
1285
|
|
|
1280
1286
|
ImageBuilderList.member = Shapes::ShapeRef.new(shape: ImageBuilder)
|
|
@@ -1566,6 +1572,7 @@ module Aws::AppStream
|
|
|
1566
1572
|
UpdateAppBlockBuilderRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "IamRoleArn"))
|
|
1567
1573
|
UpdateAppBlockBuilderRequest.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
|
|
1568
1574
|
UpdateAppBlockBuilderRequest.add_member(:attributes_to_delete, Shapes::ShapeRef.new(shape: AppBlockBuilderAttributes, location_name: "AttributesToDelete"))
|
|
1575
|
+
UpdateAppBlockBuilderRequest.add_member(:disable_imdsv1, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "DisableIMDSV1"))
|
|
1569
1576
|
UpdateAppBlockBuilderRequest.struct_class = Types::UpdateAppBlockBuilderRequest
|
|
1570
1577
|
|
|
1571
1578
|
UpdateAppBlockBuilderResult.add_member(:app_block_builder, Shapes::ShapeRef.new(shape: AppBlockBuilder, location_name: "AppBlockBuilder"))
|
|
@@ -1627,6 +1634,7 @@ module Aws::AppStream
|
|
|
1627
1634
|
UpdateFleetRequest.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
|
1628
1635
|
UpdateFleetRequest.add_member(:max_sessions_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxSessionsPerInstance"))
|
|
1629
1636
|
UpdateFleetRequest.add_member(:root_volume_config, Shapes::ShapeRef.new(shape: VolumeConfig, location_name: "RootVolumeConfig"))
|
|
1637
|
+
UpdateFleetRequest.add_member(:disable_imdsv1, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "DisableIMDSV1"))
|
|
1630
1638
|
UpdateFleetRequest.struct_class = Types::UpdateFleetRequest
|
|
1631
1639
|
|
|
1632
1640
|
UpdateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
|
@@ -228,6 +228,11 @@ module Aws::AppStream
|
|
|
228
228
|
# specified endpoints.
|
|
229
229
|
# @return [Array<Types::AccessEndpoint>]
|
|
230
230
|
#
|
|
231
|
+
# @!attribute [rw] disable_imdsv1
|
|
232
|
+
# Indicates whether Instance Metadata Service Version 1 (IMDSv1) is
|
|
233
|
+
# disabled for the app block builder.
|
|
234
|
+
# @return [Boolean]
|
|
235
|
+
#
|
|
231
236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AppBlockBuilder AWS API Documentation
|
|
232
237
|
#
|
|
233
238
|
class AppBlockBuilder < Struct.new(
|
|
@@ -244,7 +249,8 @@ module Aws::AppStream
|
|
|
244
249
|
:created_time,
|
|
245
250
|
:app_block_builder_errors,
|
|
246
251
|
:state_change_reason,
|
|
247
|
-
:access_endpoints
|
|
252
|
+
:access_endpoints,
|
|
253
|
+
:disable_imdsv1)
|
|
248
254
|
SENSITIVE = []
|
|
249
255
|
include Aws::Structure
|
|
250
256
|
end
|
|
@@ -1007,6 +1013,11 @@ module Aws::AppStream
|
|
|
1007
1013
|
# specified endpoints.
|
|
1008
1014
|
# @return [Array<Types::AccessEndpoint>]
|
|
1009
1015
|
#
|
|
1016
|
+
# @!attribute [rw] disable_imdsv1
|
|
1017
|
+
# Set to true to disable Instance Metadata Service Version 1 (IMDSv1)
|
|
1018
|
+
# and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.
|
|
1019
|
+
# @return [Boolean]
|
|
1020
|
+
#
|
|
1010
1021
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateAppBlockBuilderRequest AWS API Documentation
|
|
1011
1022
|
#
|
|
1012
1023
|
class CreateAppBlockBuilderRequest < Struct.new(
|
|
@@ -1019,7 +1030,8 @@ module Aws::AppStream
|
|
|
1019
1030
|
:vpc_config,
|
|
1020
1031
|
:enable_default_internet_access,
|
|
1021
1032
|
:iam_role_arn,
|
|
1022
|
-
:access_endpoints
|
|
1033
|
+
:access_endpoints,
|
|
1034
|
+
:disable_imdsv1)
|
|
1023
1035
|
SENSITIVE = []
|
|
1024
1036
|
include Aws::Structure
|
|
1025
1037
|
end
|
|
@@ -1664,6 +1676,17 @@ module Aws::AppStream
|
|
|
1664
1676
|
# application requirements.
|
|
1665
1677
|
# @return [Types::VolumeConfig]
|
|
1666
1678
|
#
|
|
1679
|
+
# @!attribute [rw] disable_imdsv1
|
|
1680
|
+
# Set to true to disable Instance Metadata Service Version 1 (IMDSv1)
|
|
1681
|
+
# and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.
|
|
1682
|
+
#
|
|
1683
|
+
# <note markdown="1"> Before disabling IMDSv1, ensure your WorkSpaces Applications images
|
|
1684
|
+
# are running the agent version or managed image update released on or
|
|
1685
|
+
# after January 16, 2024 to support IMDSv2 enforcement.
|
|
1686
|
+
#
|
|
1687
|
+
# </note>
|
|
1688
|
+
# @return [Boolean]
|
|
1689
|
+
#
|
|
1667
1690
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetRequest AWS API Documentation
|
|
1668
1691
|
#
|
|
1669
1692
|
class CreateFleetRequest < Struct.new(
|
|
@@ -1689,7 +1712,8 @@ module Aws::AppStream
|
|
|
1689
1712
|
:usb_device_filter_strings,
|
|
1690
1713
|
:session_script_s3_location,
|
|
1691
1714
|
:max_sessions_per_instance,
|
|
1692
|
-
:root_volume_config
|
|
1715
|
+
:root_volume_config,
|
|
1716
|
+
:disable_imdsv1)
|
|
1693
1717
|
SENSITIVE = []
|
|
1694
1718
|
include Aws::Structure
|
|
1695
1719
|
end
|
|
@@ -2004,6 +2028,17 @@ module Aws::AppStream
|
|
|
2004
2028
|
# * Microsoft\_Project\_2024\_Standard\_64Bit
|
|
2005
2029
|
# @return [Array<String>]
|
|
2006
2030
|
#
|
|
2031
|
+
# @!attribute [rw] disable_imdsv1
|
|
2032
|
+
# Set to true to disable Instance Metadata Service Version 1 (IMDSv1)
|
|
2033
|
+
# and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.
|
|
2034
|
+
#
|
|
2035
|
+
# <note markdown="1"> Before disabling IMDSv1, ensure your WorkSpaces Applications images
|
|
2036
|
+
# are running the agent version or managed image update released on or
|
|
2037
|
+
# after January 16, 2024 to support IMDSv2 enforcement.
|
|
2038
|
+
#
|
|
2039
|
+
# </note>
|
|
2040
|
+
# @return [Boolean]
|
|
2041
|
+
#
|
|
2007
2042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderRequest AWS API Documentation
|
|
2008
2043
|
#
|
|
2009
2044
|
class CreateImageBuilderRequest < Struct.new(
|
|
@@ -2022,7 +2057,8 @@ module Aws::AppStream
|
|
|
2022
2057
|
:access_endpoints,
|
|
2023
2058
|
:root_volume_config,
|
|
2024
2059
|
:softwares_to_install,
|
|
2025
|
-
:softwares_to_uninstall
|
|
2060
|
+
:softwares_to_uninstall,
|
|
2061
|
+
:disable_imdsv1)
|
|
2026
2062
|
SENSITIVE = []
|
|
2027
2063
|
include Aws::Structure
|
|
2028
2064
|
end
|
|
@@ -4465,6 +4501,11 @@ module Aws::AppStream
|
|
|
4465
4501
|
# including the storage size in GB.
|
|
4466
4502
|
# @return [Types::VolumeConfig]
|
|
4467
4503
|
#
|
|
4504
|
+
# @!attribute [rw] disable_imdsv1
|
|
4505
|
+
# Indicates whether Instance Metadata Service Version 1 (IMDSv1) is
|
|
4506
|
+
# disabled for the fleet.
|
|
4507
|
+
# @return [Boolean]
|
|
4508
|
+
#
|
|
4468
4509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
|
|
4469
4510
|
#
|
|
4470
4511
|
class Fleet < Struct.new(
|
|
@@ -4493,7 +4534,8 @@ module Aws::AppStream
|
|
|
4493
4534
|
:usb_device_filter_strings,
|
|
4494
4535
|
:session_script_s3_location,
|
|
4495
4536
|
:max_sessions_per_instance,
|
|
4496
|
-
:root_volume_config
|
|
4537
|
+
:root_volume_config,
|
|
4538
|
+
:disable_imdsv1)
|
|
4497
4539
|
SENSITIVE = []
|
|
4498
4540
|
include Aws::Structure
|
|
4499
4541
|
end
|
|
@@ -4893,6 +4935,11 @@ module Aws::AppStream
|
|
|
4893
4935
|
# Applications agent version or not.
|
|
4894
4936
|
# @return [String]
|
|
4895
4937
|
#
|
|
4938
|
+
# @!attribute [rw] disable_imdsv1
|
|
4939
|
+
# Indicates whether Instance Metadata Service Version 1 (IMDSv1) is
|
|
4940
|
+
# disabled for the image builder.
|
|
4941
|
+
# @return [Boolean]
|
|
4942
|
+
#
|
|
4896
4943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ImageBuilder AWS API Documentation
|
|
4897
4944
|
#
|
|
4898
4945
|
class ImageBuilder < Struct.new(
|
|
@@ -4915,7 +4962,8 @@ module Aws::AppStream
|
|
|
4915
4962
|
:appstream_agent_version,
|
|
4916
4963
|
:access_endpoints,
|
|
4917
4964
|
:root_volume_config,
|
|
4918
|
-
:latest_appstream_agent_version
|
|
4965
|
+
:latest_appstream_agent_version,
|
|
4966
|
+
:disable_imdsv1)
|
|
4919
4967
|
SENSITIVE = []
|
|
4920
4968
|
include Aws::Structure
|
|
4921
4969
|
end
|
|
@@ -6180,6 +6228,11 @@ module Aws::AppStream
|
|
|
6180
6228
|
# The attributes to delete from the app block builder.
|
|
6181
6229
|
# @return [Array<String>]
|
|
6182
6230
|
#
|
|
6231
|
+
# @!attribute [rw] disable_imdsv1
|
|
6232
|
+
# Set to true to disable Instance Metadata Service Version 1 (IMDSv1)
|
|
6233
|
+
# and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.
|
|
6234
|
+
# @return [Boolean]
|
|
6235
|
+
#
|
|
6183
6236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateAppBlockBuilderRequest AWS API Documentation
|
|
6184
6237
|
#
|
|
6185
6238
|
class UpdateAppBlockBuilderRequest < Struct.new(
|
|
@@ -6192,7 +6245,8 @@ module Aws::AppStream
|
|
|
6192
6245
|
:enable_default_internet_access,
|
|
6193
6246
|
:iam_role_arn,
|
|
6194
6247
|
:access_endpoints,
|
|
6195
|
-
:attributes_to_delete
|
|
6248
|
+
:attributes_to_delete,
|
|
6249
|
+
:disable_imdsv1)
|
|
6196
6250
|
SENSITIVE = []
|
|
6197
6251
|
include Aws::Structure
|
|
6198
6252
|
end
|
|
@@ -6642,6 +6696,17 @@ module Aws::AppStream
|
|
|
6642
6696
|
# size.
|
|
6643
6697
|
# @return [Types::VolumeConfig]
|
|
6644
6698
|
#
|
|
6699
|
+
# @!attribute [rw] disable_imdsv1
|
|
6700
|
+
# Set to true to disable Instance Metadata Service Version 1 (IMDSv1)
|
|
6701
|
+
# and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.
|
|
6702
|
+
#
|
|
6703
|
+
# <note markdown="1"> Before disabling IMDSv1, ensure your WorkSpaces Applications images
|
|
6704
|
+
# are running the agent version or managed image update released on or
|
|
6705
|
+
# after January 16, 2024 to support IMDSv2 enforcement.
|
|
6706
|
+
#
|
|
6707
|
+
# </note>
|
|
6708
|
+
# @return [Boolean]
|
|
6709
|
+
#
|
|
6645
6710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleetRequest AWS API Documentation
|
|
6646
6711
|
#
|
|
6647
6712
|
class UpdateFleetRequest < Struct.new(
|
|
@@ -6667,7 +6732,8 @@ module Aws::AppStream
|
|
|
6667
6732
|
:usb_device_filter_strings,
|
|
6668
6733
|
:session_script_s3_location,
|
|
6669
6734
|
:max_sessions_per_instance,
|
|
6670
|
-
:root_volume_config
|
|
6735
|
+
:root_volume_config,
|
|
6736
|
+
:disable_imdsv1)
|
|
6671
6737
|
SENSITIVE = []
|
|
6672
6738
|
include Aws::Structure
|
|
6673
6739
|
end
|
data/lib/aws-sdk-appstream.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -238,7 +238,8 @@ module Aws
|
|
|
238
238
|
endpoint_type: ("STREAMING"),
|
|
239
239
|
vpce_id: ::String?
|
|
240
240
|
},
|
|
241
|
-
]
|
|
241
|
+
],
|
|
242
|
+
?disable_imdsv1: bool
|
|
242
243
|
) -> _CreateAppBlockBuilderResponseSuccess
|
|
243
244
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAppBlockBuilderResponseSuccess
|
|
244
245
|
|
|
@@ -371,7 +372,8 @@ module Aws
|
|
|
371
372
|
?max_sessions_per_instance: ::Integer,
|
|
372
373
|
?root_volume_config: {
|
|
373
374
|
volume_size_in_gb: ::Integer?
|
|
374
|
-
}
|
|
375
|
+
},
|
|
376
|
+
?disable_imdsv1: bool
|
|
375
377
|
) -> _CreateFleetResponseSuccess
|
|
376
378
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFleetResponseSuccess
|
|
377
379
|
|
|
@@ -409,7 +411,8 @@ module Aws
|
|
|
409
411
|
volume_size_in_gb: ::Integer?
|
|
410
412
|
},
|
|
411
413
|
?softwares_to_install: Array[::String],
|
|
412
|
-
?softwares_to_uninstall: Array[::String]
|
|
414
|
+
?softwares_to_uninstall: Array[::String],
|
|
415
|
+
?disable_imdsv1: bool
|
|
413
416
|
) -> _CreateImageBuilderResponseSuccess
|
|
414
417
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateImageBuilderResponseSuccess
|
|
415
418
|
|
|
@@ -1225,7 +1228,8 @@ module Aws
|
|
|
1225
1228
|
vpce_id: ::String?
|
|
1226
1229
|
},
|
|
1227
1230
|
],
|
|
1228
|
-
?attributes_to_delete: Array[("IAM_ROLE_ARN" | "ACCESS_ENDPOINTS" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS")]
|
|
1231
|
+
?attributes_to_delete: Array[("IAM_ROLE_ARN" | "ACCESS_ENDPOINTS" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS")],
|
|
1232
|
+
?disable_imdsv1: bool
|
|
1229
1233
|
) -> _UpdateAppBlockBuilderResponseSuccess
|
|
1230
1234
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAppBlockBuilderResponseSuccess
|
|
1231
1235
|
|
|
@@ -1330,7 +1334,8 @@ module Aws
|
|
|
1330
1334
|
?max_sessions_per_instance: ::Integer,
|
|
1331
1335
|
?root_volume_config: {
|
|
1332
1336
|
volume_size_in_gb: ::Integer?
|
|
1333
|
-
}
|
|
1337
|
+
},
|
|
1338
|
+
?disable_imdsv1: bool
|
|
1334
1339
|
) -> _UpdateFleetResponseSuccess
|
|
1335
1340
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFleetResponseSuccess
|
|
1336
1341
|
|
data/sig/types.rbs
CHANGED
|
@@ -55,6 +55,7 @@ module Aws::AppStream
|
|
|
55
55
|
attr_accessor app_block_builder_errors: ::Array[Types::ResourceError]
|
|
56
56
|
attr_accessor state_change_reason: Types::AppBlockBuilderStateChangeReason
|
|
57
57
|
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
|
58
|
+
attr_accessor disable_imdsv1: bool
|
|
58
59
|
SENSITIVE: []
|
|
59
60
|
end
|
|
60
61
|
|
|
@@ -242,6 +243,7 @@ module Aws::AppStream
|
|
|
242
243
|
attr_accessor enable_default_internet_access: bool
|
|
243
244
|
attr_accessor iam_role_arn: ::String
|
|
244
245
|
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
|
246
|
+
attr_accessor disable_imdsv1: bool
|
|
245
247
|
SENSITIVE: []
|
|
246
248
|
end
|
|
247
249
|
|
|
@@ -364,6 +366,7 @@ module Aws::AppStream
|
|
|
364
366
|
attr_accessor session_script_s3_location: Types::S3Location
|
|
365
367
|
attr_accessor max_sessions_per_instance: ::Integer
|
|
366
368
|
attr_accessor root_volume_config: Types::VolumeConfig
|
|
369
|
+
attr_accessor disable_imdsv1: bool
|
|
367
370
|
SENSITIVE: []
|
|
368
371
|
end
|
|
369
372
|
|
|
@@ -389,6 +392,7 @@ module Aws::AppStream
|
|
|
389
392
|
attr_accessor root_volume_config: Types::VolumeConfig
|
|
390
393
|
attr_accessor softwares_to_install: ::Array[::String]
|
|
391
394
|
attr_accessor softwares_to_uninstall: ::Array[::String]
|
|
395
|
+
attr_accessor disable_imdsv1: bool
|
|
392
396
|
SENSITIVE: []
|
|
393
397
|
end
|
|
394
398
|
|
|
@@ -1057,6 +1061,7 @@ module Aws::AppStream
|
|
|
1057
1061
|
attr_accessor session_script_s3_location: Types::S3Location
|
|
1058
1062
|
attr_accessor max_sessions_per_instance: ::Integer
|
|
1059
1063
|
attr_accessor root_volume_config: Types::VolumeConfig
|
|
1064
|
+
attr_accessor disable_imdsv1: bool
|
|
1060
1065
|
SENSITIVE: []
|
|
1061
1066
|
end
|
|
1062
1067
|
|
|
@@ -1124,6 +1129,7 @@ module Aws::AppStream
|
|
|
1124
1129
|
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
|
1125
1130
|
attr_accessor root_volume_config: Types::VolumeConfig
|
|
1126
1131
|
attr_accessor latest_appstream_agent_version: ("TRUE" | "FALSE")
|
|
1132
|
+
attr_accessor disable_imdsv1: bool
|
|
1127
1133
|
SENSITIVE: []
|
|
1128
1134
|
end
|
|
1129
1135
|
|
|
@@ -1484,6 +1490,7 @@ module Aws::AppStream
|
|
|
1484
1490
|
attr_accessor iam_role_arn: ::String
|
|
1485
1491
|
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
|
1486
1492
|
attr_accessor attributes_to_delete: ::Array[("IAM_ROLE_ARN" | "ACCESS_ENDPOINTS" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS")]
|
|
1493
|
+
attr_accessor disable_imdsv1: bool
|
|
1487
1494
|
SENSITIVE: []
|
|
1488
1495
|
end
|
|
1489
1496
|
|
|
@@ -1561,6 +1568,7 @@ module Aws::AppStream
|
|
|
1561
1568
|
attr_accessor session_script_s3_location: Types::S3Location
|
|
1562
1569
|
attr_accessor max_sessions_per_instance: ::Integer
|
|
1563
1570
|
attr_accessor root_volume_config: Types::VolumeConfig
|
|
1571
|
+
attr_accessor disable_imdsv1: bool
|
|
1564
1572
|
SENSITIVE: []
|
|
1565
1573
|
end
|
|
1566
1574
|
|