aws-sdk-workspaces 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-workspaces/client.rb +21 -1
- data/lib/aws-sdk-workspaces/client_api.rb +16 -0
- data/lib/aws-sdk-workspaces/types.rb +52 -2
- data/lib/aws-sdk-workspaces.rb +1 -1
- data/sig/client.rbs +15 -3
- data/sig/types.rbs +14 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3076198e8553075549164c7527143279ad893546628f7d5263e8e783d2e8b5c2
|
|
4
|
+
data.tar.gz: 271122732cea7ba0d72f17f0355f10409d91b2b0555d60ad9fa785b4708c05ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2a58459b5f948497dcda33bc6f90854000bf46d4a7654d4d47cfb553232574df1b662cacb75787ccb5218e4de4ca3485dae5b3e0d364ba59b2c98196166b1ee
|
|
7
|
+
data.tar.gz: 78315d460890e7dbbfb734f9982d9f8462a410cf33c704ca2630ba4b1ee3792ce8de1c266d86b4ffa7603665dccbb6bcdfa135cfa69cc51aeb71d3f24ab16184
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.128.0
|
|
@@ -1265,6 +1265,10 @@ module Aws::WorkSpaces
|
|
|
1265
1265
|
# compute_type_name: "VALUE", # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
|
|
1266
1266
|
# protocols: ["PCOIP"], # accepts PCOIP, WSP
|
|
1267
1267
|
# operating_system_name: "AMAZON_LINUX_2", # accepts AMAZON_LINUX_2, UBUNTU_18_04, UBUNTU_20_04, UBUNTU_22_04, UNKNOWN, WINDOWS_10, WINDOWS_11, WINDOWS_7, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, RHEL_8, ROCKY_8
|
|
1268
|
+
# global_accelerator: {
|
|
1269
|
+
# mode: "ENABLED_AUTO", # required, accepts ENABLED_AUTO, DISABLED, INHERITED
|
|
1270
|
+
# preferred_protocol: "TCP", # accepts TCP, NONE, INHERITED
|
|
1271
|
+
# },
|
|
1268
1272
|
# },
|
|
1269
1273
|
# tags: [
|
|
1270
1274
|
# {
|
|
@@ -1294,6 +1298,8 @@ module Aws::WorkSpaces
|
|
|
1294
1298
|
# resp.failed_requests[0].workspace_request.workspace_properties.protocols #=> Array
|
|
1295
1299
|
# resp.failed_requests[0].workspace_request.workspace_properties.protocols[0] #=> String, one of "PCOIP", "WSP"
|
|
1296
1300
|
# resp.failed_requests[0].workspace_request.workspace_properties.operating_system_name #=> String, one of "AMAZON_LINUX_2", "UBUNTU_18_04", "UBUNTU_20_04", "UBUNTU_22_04", "UNKNOWN", "WINDOWS_10", "WINDOWS_11", "WINDOWS_7", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "RHEL_8", "ROCKY_8"
|
|
1301
|
+
# resp.failed_requests[0].workspace_request.workspace_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED", "INHERITED"
|
|
1302
|
+
# resp.failed_requests[0].workspace_request.workspace_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE", "INHERITED"
|
|
1297
1303
|
# resp.failed_requests[0].workspace_request.tags #=> Array
|
|
1298
1304
|
# resp.failed_requests[0].workspace_request.tags[0].key #=> String
|
|
1299
1305
|
# resp.failed_requests[0].workspace_request.tags[0].value #=> String
|
|
@@ -1323,6 +1329,8 @@ module Aws::WorkSpaces
|
|
|
1323
1329
|
# resp.pending_requests[0].workspace_properties.protocols #=> Array
|
|
1324
1330
|
# resp.pending_requests[0].workspace_properties.protocols[0] #=> String, one of "PCOIP", "WSP"
|
|
1325
1331
|
# resp.pending_requests[0].workspace_properties.operating_system_name #=> String, one of "AMAZON_LINUX_2", "UBUNTU_18_04", "UBUNTU_20_04", "UBUNTU_22_04", "UNKNOWN", "WINDOWS_10", "WINDOWS_11", "WINDOWS_7", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "RHEL_8", "ROCKY_8"
|
|
1332
|
+
# resp.pending_requests[0].workspace_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED", "INHERITED"
|
|
1333
|
+
# resp.pending_requests[0].workspace_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE", "INHERITED"
|
|
1326
1334
|
# resp.pending_requests[0].modification_states #=> Array
|
|
1327
1335
|
# resp.pending_requests[0].modification_states[0].resource #=> String, one of "ROOT_VOLUME", "USER_VOLUME", "COMPUTE_TYPE"
|
|
1328
1336
|
# resp.pending_requests[0].modification_states[0].state #=> String, one of "UPDATE_INITIATED", "UPDATE_IN_PROGRESS"
|
|
@@ -2586,6 +2594,8 @@ module Aws::WorkSpaces
|
|
|
2586
2594
|
# resp.directories[0].streaming_properties.storage_connectors #=> Array
|
|
2587
2595
|
# resp.directories[0].streaming_properties.storage_connectors[0].connector_type #=> String, one of "HOME_FOLDER"
|
|
2588
2596
|
# resp.directories[0].streaming_properties.storage_connectors[0].status #=> String, one of "ENABLED", "DISABLED"
|
|
2597
|
+
# resp.directories[0].streaming_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED"
|
|
2598
|
+
# resp.directories[0].streaming_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE"
|
|
2589
2599
|
# resp.directories[0].error_message #=> String
|
|
2590
2600
|
# resp.next_token #=> String
|
|
2591
2601
|
#
|
|
@@ -2814,6 +2824,8 @@ module Aws::WorkSpaces
|
|
|
2814
2824
|
# resp.workspaces[0].workspace_properties.protocols #=> Array
|
|
2815
2825
|
# resp.workspaces[0].workspace_properties.protocols[0] #=> String, one of "PCOIP", "WSP"
|
|
2816
2826
|
# resp.workspaces[0].workspace_properties.operating_system_name #=> String, one of "AMAZON_LINUX_2", "UBUNTU_18_04", "UBUNTU_20_04", "UBUNTU_22_04", "UNKNOWN", "WINDOWS_10", "WINDOWS_11", "WINDOWS_7", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "RHEL_8", "ROCKY_8"
|
|
2827
|
+
# resp.workspaces[0].workspace_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED", "INHERITED"
|
|
2828
|
+
# resp.workspaces[0].workspace_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE", "INHERITED"
|
|
2817
2829
|
# resp.workspaces[0].modification_states #=> Array
|
|
2818
2830
|
# resp.workspaces[0].modification_states[0].resource #=> String, one of "ROOT_VOLUME", "USER_VOLUME", "COMPUTE_TYPE"
|
|
2819
2831
|
# resp.workspaces[0].modification_states[0].state #=> String, one of "UPDATE_INITIATED", "UPDATE_IN_PROGRESS"
|
|
@@ -3761,6 +3773,10 @@ module Aws::WorkSpaces
|
|
|
3761
3773
|
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
|
3762
3774
|
# },
|
|
3763
3775
|
# ],
|
|
3776
|
+
# global_accelerator: {
|
|
3777
|
+
# mode: "ENABLED_AUTO", # required, accepts ENABLED_AUTO, DISABLED
|
|
3778
|
+
# preferred_protocol: "TCP", # accepts TCP, NONE
|
|
3779
|
+
# },
|
|
3764
3780
|
# },
|
|
3765
3781
|
# })
|
|
3766
3782
|
#
|
|
@@ -3887,6 +3903,10 @@ module Aws::WorkSpaces
|
|
|
3887
3903
|
# compute_type_name: "VALUE", # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
|
|
3888
3904
|
# protocols: ["PCOIP"], # accepts PCOIP, WSP
|
|
3889
3905
|
# operating_system_name: "AMAZON_LINUX_2", # accepts AMAZON_LINUX_2, UBUNTU_18_04, UBUNTU_20_04, UBUNTU_22_04, UNKNOWN, WINDOWS_10, WINDOWS_11, WINDOWS_7, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, RHEL_8, ROCKY_8
|
|
3906
|
+
# global_accelerator: {
|
|
3907
|
+
# mode: "ENABLED_AUTO", # required, accepts ENABLED_AUTO, DISABLED, INHERITED
|
|
3908
|
+
# preferred_protocol: "TCP", # accepts TCP, NONE, INHERITED
|
|
3909
|
+
# },
|
|
3890
3910
|
# },
|
|
3891
3911
|
# data_replication: "NO_REPLICATION", # accepts NO_REPLICATION, PRIMARY_AS_SOURCE
|
|
3892
3912
|
# })
|
|
@@ -4807,7 +4827,7 @@ module Aws::WorkSpaces
|
|
|
4807
4827
|
tracer: tracer
|
|
4808
4828
|
)
|
|
4809
4829
|
context[:gem_name] = 'aws-sdk-workspaces'
|
|
4810
|
-
context[:gem_version] = '1.
|
|
4830
|
+
context[:gem_version] = '1.128.0'
|
|
4811
4831
|
Seahorse::Client::Request.new(handlers, context)
|
|
4812
4832
|
end
|
|
4813
4833
|
|
|
@@ -14,6 +14,10 @@ module Aws::WorkSpaces
|
|
|
14
14
|
|
|
15
15
|
include Seahorse::Model
|
|
16
16
|
|
|
17
|
+
AGAModeForDirectoryEnum = Shapes::StringShape.new(name: 'AGAModeForDirectoryEnum')
|
|
18
|
+
AGAModeForWorkSpaceEnum = Shapes::StringShape.new(name: 'AGAModeForWorkSpaceEnum')
|
|
19
|
+
AGAPreferredProtocolForDirectory = Shapes::StringShape.new(name: 'AGAPreferredProtocolForDirectory')
|
|
20
|
+
AGAPreferredProtocolForWorkSpace = Shapes::StringShape.new(name: 'AGAPreferredProtocolForWorkSpace')
|
|
17
21
|
ARN = Shapes::StringShape.new(name: 'ARN')
|
|
18
22
|
AcceptAccountLinkInvitationRequest = Shapes::StructureShape.new(name: 'AcceptAccountLinkInvitationRequest')
|
|
19
23
|
AcceptAccountLinkInvitationResult = Shapes::StructureShape.new(name: 'AcceptAccountLinkInvitationResult')
|
|
@@ -253,6 +257,8 @@ module Aws::WorkSpaces
|
|
|
253
257
|
FailedWorkspaceChangeRequest = Shapes::StructureShape.new(name: 'FailedWorkspaceChangeRequest')
|
|
254
258
|
GetAccountLinkRequest = Shapes::StructureShape.new(name: 'GetAccountLinkRequest')
|
|
255
259
|
GetAccountLinkResult = Shapes::StructureShape.new(name: 'GetAccountLinkResult')
|
|
260
|
+
GlobalAcceleratorForDirectory = Shapes::StructureShape.new(name: 'GlobalAcceleratorForDirectory')
|
|
261
|
+
GlobalAcceleratorForWorkSpace = Shapes::StructureShape.new(name: 'GlobalAcceleratorForWorkSpace')
|
|
256
262
|
IDCConfig = Shapes::StructureShape.new(name: 'IDCConfig')
|
|
257
263
|
IdleDisconnectTimeoutInSeconds = Shapes::IntegerShape.new(name: 'IdleDisconnectTimeoutInSeconds')
|
|
258
264
|
ImageAssociatedResourceType = Shapes::StringShape.new(name: 'ImageAssociatedResourceType')
|
|
@@ -1184,6 +1190,14 @@ module Aws::WorkSpaces
|
|
|
1184
1190
|
GetAccountLinkResult.add_member(:account_link, Shapes::ShapeRef.new(shape: AccountLink, location_name: "AccountLink"))
|
|
1185
1191
|
GetAccountLinkResult.struct_class = Types::GetAccountLinkResult
|
|
1186
1192
|
|
|
1193
|
+
GlobalAcceleratorForDirectory.add_member(:mode, Shapes::ShapeRef.new(shape: AGAModeForDirectoryEnum, required: true, location_name: "Mode"))
|
|
1194
|
+
GlobalAcceleratorForDirectory.add_member(:preferred_protocol, Shapes::ShapeRef.new(shape: AGAPreferredProtocolForDirectory, location_name: "PreferredProtocol"))
|
|
1195
|
+
GlobalAcceleratorForDirectory.struct_class = Types::GlobalAcceleratorForDirectory
|
|
1196
|
+
|
|
1197
|
+
GlobalAcceleratorForWorkSpace.add_member(:mode, Shapes::ShapeRef.new(shape: AGAModeForWorkSpaceEnum, required: true, location_name: "Mode"))
|
|
1198
|
+
GlobalAcceleratorForWorkSpace.add_member(:preferred_protocol, Shapes::ShapeRef.new(shape: AGAPreferredProtocolForWorkSpace, location_name: "PreferredProtocol"))
|
|
1199
|
+
GlobalAcceleratorForWorkSpace.struct_class = Types::GlobalAcceleratorForWorkSpace
|
|
1200
|
+
|
|
1187
1201
|
IDCConfig.add_member(:instance_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "InstanceArn"))
|
|
1188
1202
|
IDCConfig.add_member(:application_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ApplicationArn"))
|
|
1189
1203
|
IDCConfig.struct_class = Types::IDCConfig
|
|
@@ -1575,6 +1589,7 @@ module Aws::WorkSpaces
|
|
|
1575
1589
|
StreamingProperties.add_member(:streaming_experience_preferred_protocol, Shapes::ShapeRef.new(shape: StreamingExperiencePreferredProtocolEnum, location_name: "StreamingExperiencePreferredProtocol"))
|
|
1576
1590
|
StreamingProperties.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettings, location_name: "UserSettings"))
|
|
1577
1591
|
StreamingProperties.add_member(:storage_connectors, Shapes::ShapeRef.new(shape: StorageConnectors, location_name: "StorageConnectors"))
|
|
1592
|
+
StreamingProperties.add_member(:global_accelerator, Shapes::ShapeRef.new(shape: GlobalAcceleratorForDirectory, location_name: "GlobalAccelerator"))
|
|
1578
1593
|
StreamingProperties.struct_class = Types::StreamingProperties
|
|
1579
1594
|
|
|
1580
1595
|
SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
|
@@ -1823,6 +1838,7 @@ module Aws::WorkSpaces
|
|
|
1823
1838
|
WorkspaceProperties.add_member(:compute_type_name, Shapes::ShapeRef.new(shape: Compute, location_name: "ComputeTypeName"))
|
|
1824
1839
|
WorkspaceProperties.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols"))
|
|
1825
1840
|
WorkspaceProperties.add_member(:operating_system_name, Shapes::ShapeRef.new(shape: OperatingSystemName, location_name: "OperatingSystemName"))
|
|
1841
|
+
WorkspaceProperties.add_member(:global_accelerator, Shapes::ShapeRef.new(shape: GlobalAcceleratorForWorkSpace, location_name: "GlobalAccelerator"))
|
|
1826
1842
|
WorkspaceProperties.struct_class = Types::WorkspaceProperties
|
|
1827
1843
|
|
|
1828
1844
|
WorkspaceRequest.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "DirectoryId"))
|
|
@@ -2861,6 +2861,46 @@ module Aws::WorkSpaces
|
|
|
2861
2861
|
include Aws::Structure
|
|
2862
2862
|
end
|
|
2863
2863
|
|
|
2864
|
+
# Describes the Global Accelerator for directory
|
|
2865
|
+
#
|
|
2866
|
+
# @!attribute [rw] mode
|
|
2867
|
+
# Indicates if Global Accelerator for directory is enabled or
|
|
2868
|
+
# disabled.
|
|
2869
|
+
# @return [String]
|
|
2870
|
+
#
|
|
2871
|
+
# @!attribute [rw] preferred_protocol
|
|
2872
|
+
# Indicates the preferred protocol for Global Accelerator.
|
|
2873
|
+
# @return [String]
|
|
2874
|
+
#
|
|
2875
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/GlobalAcceleratorForDirectory AWS API Documentation
|
|
2876
|
+
#
|
|
2877
|
+
class GlobalAcceleratorForDirectory < Struct.new(
|
|
2878
|
+
:mode,
|
|
2879
|
+
:preferred_protocol)
|
|
2880
|
+
SENSITIVE = []
|
|
2881
|
+
include Aws::Structure
|
|
2882
|
+
end
|
|
2883
|
+
|
|
2884
|
+
# Describes the Global Accelerator for WorkSpaces.
|
|
2885
|
+
#
|
|
2886
|
+
# @!attribute [rw] mode
|
|
2887
|
+
# Indicates if Global Accelerator for WorkSpaces is enabled, disabled,
|
|
2888
|
+
# or the same mode as the associated directory.
|
|
2889
|
+
# @return [String]
|
|
2890
|
+
#
|
|
2891
|
+
# @!attribute [rw] preferred_protocol
|
|
2892
|
+
# Indicates the preferred protocol for Global Accelerator.
|
|
2893
|
+
# @return [String]
|
|
2894
|
+
#
|
|
2895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/GlobalAcceleratorForWorkSpace AWS API Documentation
|
|
2896
|
+
#
|
|
2897
|
+
class GlobalAcceleratorForWorkSpace < Struct.new(
|
|
2898
|
+
:mode,
|
|
2899
|
+
:preferred_protocol)
|
|
2900
|
+
SENSITIVE = []
|
|
2901
|
+
include Aws::Structure
|
|
2902
|
+
end
|
|
2903
|
+
|
|
2864
2904
|
# Specifies the configurations of the identity center.
|
|
2865
2905
|
#
|
|
2866
2906
|
# @!attribute [rw] instance_arn
|
|
@@ -4611,12 +4651,17 @@ module Aws::WorkSpaces
|
|
|
4611
4651
|
# Indicates the storage connector used
|
|
4612
4652
|
# @return [Array<Types::StorageConnector>]
|
|
4613
4653
|
#
|
|
4654
|
+
# @!attribute [rw] global_accelerator
|
|
4655
|
+
# Indicates the Global Accelerator properties.
|
|
4656
|
+
# @return [Types::GlobalAcceleratorForDirectory]
|
|
4657
|
+
#
|
|
4614
4658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/StreamingProperties AWS API Documentation
|
|
4615
4659
|
#
|
|
4616
4660
|
class StreamingProperties < Struct.new(
|
|
4617
4661
|
:streaming_experience_preferred_protocol,
|
|
4618
4662
|
:user_settings,
|
|
4619
|
-
:storage_connectors
|
|
4663
|
+
:storage_connectors,
|
|
4664
|
+
:global_accelerator)
|
|
4620
4665
|
SENSITIVE = []
|
|
4621
4666
|
include Aws::Structure
|
|
4622
4667
|
end
|
|
@@ -5874,6 +5919,10 @@ module Aws::WorkSpaces
|
|
|
5874
5919
|
# The name of the operating system.
|
|
5875
5920
|
# @return [String]
|
|
5876
5921
|
#
|
|
5922
|
+
# @!attribute [rw] global_accelerator
|
|
5923
|
+
# Indicates the Global Accelerator properties.
|
|
5924
|
+
# @return [Types::GlobalAcceleratorForWorkSpace]
|
|
5925
|
+
#
|
|
5877
5926
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceProperties AWS API Documentation
|
|
5878
5927
|
#
|
|
5879
5928
|
class WorkspaceProperties < Struct.new(
|
|
@@ -5883,7 +5932,8 @@ module Aws::WorkSpaces
|
|
|
5883
5932
|
:user_volume_size_gib,
|
|
5884
5933
|
:compute_type_name,
|
|
5885
5934
|
:protocols,
|
|
5886
|
-
:operating_system_name
|
|
5935
|
+
:operating_system_name,
|
|
5936
|
+
:global_accelerator)
|
|
5887
5937
|
SENSITIVE = []
|
|
5888
5938
|
include Aws::Structure
|
|
5889
5939
|
end
|
data/lib/aws-sdk-workspaces.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -347,7 +347,11 @@ module Aws
|
|
|
347
347
|
user_volume_size_gib: ::Integer?,
|
|
348
348
|
compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")?,
|
|
349
349
|
protocols: Array[("PCOIP" | "WSP")]?,
|
|
350
|
-
operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")
|
|
350
|
+
operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")?,
|
|
351
|
+
global_accelerator: {
|
|
352
|
+
mode: ("ENABLED_AUTO" | "DISABLED" | "INHERITED"),
|
|
353
|
+
preferred_protocol: ("TCP" | "NONE" | "INHERITED")?
|
|
354
|
+
}?
|
|
351
355
|
}?,
|
|
352
356
|
tags: Array[
|
|
353
357
|
{
|
|
@@ -1045,7 +1049,11 @@ module Aws
|
|
|
1045
1049
|
connector_type: ("HOME_FOLDER"),
|
|
1046
1050
|
status: ("ENABLED" | "DISABLED")
|
|
1047
1051
|
},
|
|
1048
|
-
]
|
|
1052
|
+
]?,
|
|
1053
|
+
global_accelerator: {
|
|
1054
|
+
mode: ("ENABLED_AUTO" | "DISABLED"),
|
|
1055
|
+
preferred_protocol: ("TCP" | "NONE")?
|
|
1056
|
+
}?
|
|
1049
1057
|
}
|
|
1050
1058
|
) -> _ModifyStreamingPropertiesResponseSuccess
|
|
1051
1059
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyStreamingPropertiesResponseSuccess
|
|
@@ -1100,7 +1108,11 @@ module Aws
|
|
|
1100
1108
|
user_volume_size_gib: ::Integer?,
|
|
1101
1109
|
compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")?,
|
|
1102
1110
|
protocols: Array[("PCOIP" | "WSP")]?,
|
|
1103
|
-
operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")
|
|
1111
|
+
operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")?,
|
|
1112
|
+
global_accelerator: {
|
|
1113
|
+
mode: ("ENABLED_AUTO" | "DISABLED" | "INHERITED"),
|
|
1114
|
+
preferred_protocol: ("TCP" | "NONE" | "INHERITED")?
|
|
1115
|
+
}?
|
|
1104
1116
|
},
|
|
1105
1117
|
?data_replication: ("NO_REPLICATION" | "PRIMARY_AS_SOURCE")
|
|
1106
1118
|
) -> _ModifyWorkspacePropertiesResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -867,6 +867,18 @@ module Aws::WorkSpaces
|
|
|
867
867
|
SENSITIVE: []
|
|
868
868
|
end
|
|
869
869
|
|
|
870
|
+
class GlobalAcceleratorForDirectory
|
|
871
|
+
attr_accessor mode: ("ENABLED_AUTO" | "DISABLED")
|
|
872
|
+
attr_accessor preferred_protocol: ("TCP" | "NONE")
|
|
873
|
+
SENSITIVE: []
|
|
874
|
+
end
|
|
875
|
+
|
|
876
|
+
class GlobalAcceleratorForWorkSpace
|
|
877
|
+
attr_accessor mode: ("ENABLED_AUTO" | "DISABLED" | "INHERITED")
|
|
878
|
+
attr_accessor preferred_protocol: ("TCP" | "NONE" | "INHERITED")
|
|
879
|
+
SENSITIVE: []
|
|
880
|
+
end
|
|
881
|
+
|
|
870
882
|
class IDCConfig
|
|
871
883
|
attr_accessor instance_arn: ::String
|
|
872
884
|
attr_accessor application_arn: ::String
|
|
@@ -1372,6 +1384,7 @@ module Aws::WorkSpaces
|
|
|
1372
1384
|
attr_accessor streaming_experience_preferred_protocol: ("TCP" | "UDP")
|
|
1373
1385
|
attr_accessor user_settings: ::Array[Types::UserSetting]
|
|
1374
1386
|
attr_accessor storage_connectors: ::Array[Types::StorageConnector]
|
|
1387
|
+
attr_accessor global_accelerator: Types::GlobalAcceleratorForDirectory
|
|
1375
1388
|
SENSITIVE: []
|
|
1376
1389
|
end
|
|
1377
1390
|
|
|
@@ -1659,6 +1672,7 @@ module Aws::WorkSpaces
|
|
|
1659
1672
|
attr_accessor compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")
|
|
1660
1673
|
attr_accessor protocols: ::Array[("PCOIP" | "WSP")]
|
|
1661
1674
|
attr_accessor operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")
|
|
1675
|
+
attr_accessor global_accelerator: Types::GlobalAcceleratorForWorkSpace
|
|
1662
1676
|
SENSITIVE: []
|
|
1663
1677
|
end
|
|
1664
1678
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-workspaces
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.128.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-12-
|
|
11
|
+
date: 2024-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|