aws-sdk-workspaces 1.86.0 → 1.87.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '068a18fa46095a9c1d007e7fb1b245f196797eb2e22359e921280f2bb4f9232c'
4
- data.tar.gz: 19a69909004aa0a31239c9628cf937f4a1be625c2aabfe234cf033b65f320bf0
3
+ metadata.gz: 8f20339981546459fe2995cbfb4e273283c7508b1293f5a6f5f84ff80543782d
4
+ data.tar.gz: d0c52efe34ba47616d760a789fb30ca91fe0f4ff0fecba9f5f3b33bebfd6d3a4
5
5
  SHA512:
6
- metadata.gz: 2f5edcc67c97004dc7bd16f10610b61fc6691f1cfc1c79e15171fb063887a4b1dc5808560ea6c2dfdd58608cfa9023ff607da36a914929fdc87ae132752ad627
7
- data.tar.gz: 5ef6b6f8c7a9e56c76eec128554365eca4c04da8eedec7a2373231ac17987e1daf957773e184785aed0d7dfa6d29a623b648fc30851fd4fc540ddefefd8c9bc5
6
+ metadata.gz: be468021d98e9d8cfd7ca98c9a13be8b65b4b4087142dba857bb994dc076c76b2da6a1c4abae14e8cb36c0ede94f91de9d022d379014624328a87c2e4205abc6
7
+ data.tar.gz: ebbdd1ee7f8f0f5bf21c724b38903e03b646970a2619169c4ee4f017c95b3206a575e5b85f4618ba7b7213cd07ea9a38151ecab3caefae13f3b3cb0828f9b0b0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.86.0 (2023-07-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.86.0
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.86.0'
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
@@ -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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-workspaces/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkSpaces
54
54
 
55
- GEM_VERSION = '1.86.0'
55
+ GEM_VERSION = '1.87.0'
56
56
 
57
57
  end
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.86.0
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-07-21 00:00:00.000000000 Z
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