aws-sdk-workspaces 1.85.0 → 1.87.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-workspaces/client.rb +4 -1
- data/lib/aws-sdk-workspaces/client_api.rb +10 -0
- data/lib/aws-sdk-workspaces/types.rb +30 -5
- data/lib/aws-sdk-workspaces.rb +1 -1
- 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: 8f20339981546459fe2995cbfb4e273283c7508b1293f5a6f5f84ff80543782d
|
4
|
+
data.tar.gz: d0c52efe34ba47616d760a789fb30ca91fe0f4ff0fecba9f5f3b33bebfd6d3a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be468021d98e9d8cfd7ca98c9a13be8b65b4b4087142dba857bb994dc076c76b2da6a1c4abae14e8cb36c0ede94f91de9d022d379014624328a87c2e4205abc6
|
7
|
+
data.tar.gz: ebbdd1ee7f8f0f5bf21c724b38903e03b646970a2619169c4ee4f017c95b3206a575e5b85f4618ba7b7213cd07ea9a38151ecab3caefae13f3b3cb0828f9b0b0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.87.0 (2023-09-08)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - A new field "ErrorDetails" will be added to the output of "DescribeWorkspaceImages" API call. This field provides in-depth details about the error occurred during image import process. These details include the possible causes of the errors and troubleshooting information.
|
8
|
+
|
9
|
+
1.86.0 (2023-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Fixed VolumeEncryptionKey descriptions
|
13
|
+
|
4
14
|
1.85.0 (2023-07-11)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.87.0
|
@@ -2042,6 +2042,9 @@ module Aws::WorkSpaces
|
|
2042
2042
|
# resp.images[0].owner_account_id #=> String
|
2043
2043
|
# resp.images[0].updates.update_available #=> Boolean
|
2044
2044
|
# resp.images[0].updates.description #=> String
|
2045
|
+
# resp.images[0].error_details #=> Array
|
2046
|
+
# resp.images[0].error_details[0].error_code #=> String, one of "OutdatedPowershellVersion", "OfficeInstalled", "PCoIPAgentInstalled", "WindowsUpdatesEnabled", "AutoMountDisabled", "WorkspacesBYOLAccountNotFound", "WorkspacesBYOLAccountDisabled", "DHCPDisabled", "DiskFreeSpace", "AdditionalDrivesAttached", "OSNotSupported", "DomainJoined", "AzureDomainJoined", "FirewallEnabled", "VMWareToolsInstalled", "DiskSizeExceeded", "IncompatiblePartitioning", "PendingReboot", "AutoLogonEnabled", "RealTimeUniversalDisabled", "MultipleBootPartition", "Requires64BitOS", "ZeroRearmCount", "InPlaceUpgrade", "AntiVirusInstalled", "UEFINotSupported"
|
2047
|
+
# resp.images[0].error_details[0].error_message #=> String
|
2045
2048
|
# resp.next_token #=> String
|
2046
2049
|
#
|
2047
2050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeWorkspaceImages AWS API Documentation
|
@@ -3592,7 +3595,7 @@ module Aws::WorkSpaces
|
|
3592
3595
|
params: params,
|
3593
3596
|
config: config)
|
3594
3597
|
context[:gem_name] = 'aws-sdk-workspaces'
|
3595
|
-
context[:gem_version] = '1.
|
3598
|
+
context[:gem_version] = '1.87.0'
|
3596
3599
|
Seahorse::Client::Request.new(handlers, context)
|
3597
3600
|
end
|
3598
3601
|
|
@@ -160,6 +160,8 @@ module Aws::WorkSpaces
|
|
160
160
|
DisassociateIpGroupsResult = Shapes::StructureShape.new(name: 'DisassociateIpGroupsResult')
|
161
161
|
DnsIpAddresses = Shapes::ListShape.new(name: 'DnsIpAddresses')
|
162
162
|
Ec2ImageId = Shapes::StringShape.new(name: 'Ec2ImageId')
|
163
|
+
ErrorDetails = Shapes::StructureShape.new(name: 'ErrorDetails')
|
164
|
+
ErrorDetailsList = Shapes::ListShape.new(name: 'ErrorDetailsList')
|
163
165
|
ErrorType = Shapes::StringShape.new(name: 'ErrorType')
|
164
166
|
ExceptionErrorCode = Shapes::StringShape.new(name: 'ExceptionErrorCode')
|
165
167
|
ExceptionMessage = Shapes::StringShape.new(name: 'ExceptionMessage')
|
@@ -336,6 +338,7 @@ module Aws::WorkSpaces
|
|
336
338
|
WorkspaceImage = Shapes::StructureShape.new(name: 'WorkspaceImage')
|
337
339
|
WorkspaceImageDescription = Shapes::StringShape.new(name: 'WorkspaceImageDescription')
|
338
340
|
WorkspaceImageErrorCode = Shapes::StringShape.new(name: 'WorkspaceImageErrorCode')
|
341
|
+
WorkspaceImageErrorDetailCode = Shapes::StringShape.new(name: 'WorkspaceImageErrorDetailCode')
|
339
342
|
WorkspaceImageId = Shapes::StringShape.new(name: 'WorkspaceImageId')
|
340
343
|
WorkspaceImageIdList = Shapes::ListShape.new(name: 'WorkspaceImageIdList')
|
341
344
|
WorkspaceImageIngestionProcess = Shapes::StringShape.new(name: 'WorkspaceImageIngestionProcess')
|
@@ -761,6 +764,12 @@ module Aws::WorkSpaces
|
|
761
764
|
|
762
765
|
DnsIpAddresses.member = Shapes::ShapeRef.new(shape: IpAddress)
|
763
766
|
|
767
|
+
ErrorDetails.add_member(:error_code, Shapes::ShapeRef.new(shape: WorkspaceImageErrorDetailCode, location_name: "ErrorCode"))
|
768
|
+
ErrorDetails.add_member(:error_message, Shapes::ShapeRef.new(shape: Description, location_name: "ErrorMessage"))
|
769
|
+
ErrorDetails.struct_class = Types::ErrorDetails
|
770
|
+
|
771
|
+
ErrorDetailsList.member = Shapes::ShapeRef.new(shape: ErrorDetails)
|
772
|
+
|
764
773
|
FailedCreateStandbyWorkspacesRequest.add_member(:standby_workspace_request, Shapes::ShapeRef.new(shape: StandbyWorkspace, location_name: "StandbyWorkspaceRequest"))
|
765
774
|
FailedCreateStandbyWorkspacesRequest.add_member(:error_code, Shapes::ShapeRef.new(shape: WorkspaceErrorCode, location_name: "ErrorCode"))
|
766
775
|
FailedCreateStandbyWorkspacesRequest.add_member(:error_message, Shapes::ShapeRef.new(shape: Description, location_name: "ErrorMessage"))
|
@@ -1240,6 +1249,7 @@ module Aws::WorkSpaces
|
|
1240
1249
|
WorkspaceImage.add_member(:created, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Created"))
|
1241
1250
|
WorkspaceImage.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AwsAccount, location_name: "OwnerAccountId"))
|
1242
1251
|
WorkspaceImage.add_member(:updates, Shapes::ShapeRef.new(shape: UpdateResult, location_name: "Updates"))
|
1252
|
+
WorkspaceImage.add_member(:error_details, Shapes::ShapeRef.new(shape: ErrorDetailsList, location_name: "ErrorDetails"))
|
1243
1253
|
WorkspaceImage.struct_class = Types::WorkspaceImage
|
1244
1254
|
|
1245
1255
|
WorkspaceImageIdList.member = Shapes::ShapeRef.new(shape: WorkspaceImageId)
|
@@ -1830,6 +1830,26 @@ module Aws::WorkSpaces
|
|
1830
1830
|
#
|
1831
1831
|
class DisassociateIpGroupsResult < Aws::EmptyStructure; end
|
1832
1832
|
|
1833
|
+
# Provides in-depth details about the error. These details include the
|
1834
|
+
# possible causes of the errors and troubleshooting information.
|
1835
|
+
#
|
1836
|
+
# @!attribute [rw] error_code
|
1837
|
+
# Indicates the error code returned.
|
1838
|
+
# @return [String]
|
1839
|
+
#
|
1840
|
+
# @!attribute [rw] error_message
|
1841
|
+
# The text of the error message related the error code.
|
1842
|
+
# @return [String]
|
1843
|
+
#
|
1844
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ErrorDetails AWS API Documentation
|
1845
|
+
#
|
1846
|
+
class ErrorDetails < Struct.new(
|
1847
|
+
:error_code,
|
1848
|
+
:error_message)
|
1849
|
+
SENSITIVE = []
|
1850
|
+
include Aws::Structure
|
1851
|
+
end
|
1852
|
+
|
1833
1853
|
# Describes the standby WorkSpace that could not be created.
|
1834
1854
|
#
|
1835
1855
|
# @!attribute [rw] standby_workspace_request
|
@@ -3591,8 +3611,8 @@ module Aws::WorkSpaces
|
|
3591
3611
|
# @return [String]
|
3592
3612
|
#
|
3593
3613
|
# @!attribute [rw] volume_encryption_key
|
3594
|
-
# The symmetric KMS key used to encrypt data stored on your
|
3595
|
-
# Amazon WorkSpaces does not support asymmetric KMS keys.
|
3614
|
+
# The ARN of the symmetric KMS key used to encrypt data stored on your
|
3615
|
+
# WorkSpace. Amazon WorkSpaces does not support asymmetric KMS keys.
|
3596
3616
|
# @return [String]
|
3597
3617
|
#
|
3598
3618
|
# @!attribute [rw] user_volume_encryption_enabled
|
@@ -4077,6 +4097,10 @@ module Aws::WorkSpaces
|
|
4077
4097
|
# The updates (if any) that are available for the specified image.
|
4078
4098
|
# @return [Types::UpdateResult]
|
4079
4099
|
#
|
4100
|
+
# @!attribute [rw] error_details
|
4101
|
+
# The details of the error returned for the image.
|
4102
|
+
# @return [Array<Types::ErrorDetails>]
|
4103
|
+
#
|
4080
4104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceImage AWS API Documentation
|
4081
4105
|
#
|
4082
4106
|
class WorkspaceImage < Struct.new(
|
@@ -4090,7 +4114,8 @@ module Aws::WorkSpaces
|
|
4090
4114
|
:error_message,
|
4091
4115
|
:created,
|
4092
4116
|
:owner_account_id,
|
4093
|
-
:updates
|
4117
|
+
:updates,
|
4118
|
+
:error_details)
|
4094
4119
|
SENSITIVE = []
|
4095
4120
|
include Aws::Structure
|
4096
4121
|
end
|
@@ -4199,8 +4224,8 @@ module Aws::WorkSpaces
|
|
4199
4224
|
# @return [String]
|
4200
4225
|
#
|
4201
4226
|
# @!attribute [rw] volume_encryption_key
|
4202
|
-
# The symmetric KMS key used to encrypt data stored on your
|
4203
|
-
# Amazon WorkSpaces does not support asymmetric KMS keys.
|
4227
|
+
# The ARN of the symmetric KMS key used to encrypt data stored on your
|
4228
|
+
# WorkSpace. Amazon WorkSpaces does not support asymmetric KMS keys.
|
4204
4229
|
# @return [String]
|
4205
4230
|
#
|
4206
4231
|
# @!attribute [rw] user_volume_encryption_enabled
|
data/lib/aws-sdk-workspaces.rb
CHANGED
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.87.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: 2023-
|
11
|
+
date: 2023-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|