aws-sdk-workspaces 1.65.0 → 1.66.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f2a8caf81de11140b0fb428c6308dc868297bba755b05a8c7e3d6e190dbc3fa4
4
- data.tar.gz: b674c87f9708a4b81da634a49e02a419fd2c1b0b6b14f7e80a1cbbf56f371bb3
3
+ metadata.gz: 1025e6cd5323530ecc55c1f90a4910ecb78563f898b78396f7723080df5ccd7e
4
+ data.tar.gz: fc8487dfc73465d10cf7e03d8985a19c6283fa216b4d5dd71e16516bfdab4672
5
5
  SHA512:
6
- metadata.gz: bf06eb664f16d8a4e1d4926b37db12bb2fb8d188ee5b5984eddad5d34ca0b138bb4426cba861d51fafbfa4ea569fb1fdab08ae5c4804188a278e88cce298f5aa
7
- data.tar.gz: 4e98eb0e8c8a652e99903315b8993d00d5dabdff3f21506a5d4c8e962286e970c6da7792444f7583cbbf0f1f0a28fad81d957ceaaa81f32b023c2a5c69c1185d
6
+ metadata.gz: ff3414c7bba6ea67cebe0352bf918e07d129df858b10bfde86bd105bdb38a6dc738fbee6d0045f9d864cfaf4ccd8025774f929d99d03483bbab37b2fc79ad679
7
+ data.tar.gz: de6caa4121f632170cf489ebffc26ce068a914a709885a4bd2a4f137ca35950460dd1f70b9883857bc563810bb7bc5a794659d0c0d5cf3dcac15754a2b4448ec
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2022-03-31)
5
+ ------------------
6
+
7
+ * Feature - Added APIs that allow you to customize the logo, login message, and help links in the WorkSpaces client login page. To learn more, visit https://docs.aws.amazon.com/workspaces/latest/adminguide/customize-branding.html
8
+
4
9
  1.65.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -973,6 +973,40 @@ module Aws::WorkSpaces
973
973
  req.send_request(options)
974
974
  end
975
975
 
976
+ # Deletes customized client branding. Client branding allows you to
977
+ # customize your WorkSpace's client login portal. You can tailor your
978
+ # login portal company logo, the support email address, support link,
979
+ # link to reset password, and a custom message for users trying to sign
980
+ # in.
981
+ #
982
+ # After you delete your customized client branding, your login portal
983
+ # reverts to the default client branding.
984
+ #
985
+ # @option params [required, String] :resource_id
986
+ # The directory identifier of the WorkSpace for which you want to delete
987
+ # client branding.
988
+ #
989
+ # @option params [required, Array<String>] :platforms
990
+ # The device type for which you want to delete client branding.
991
+ #
992
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
993
+ #
994
+ # @example Request syntax with placeholder values
995
+ #
996
+ # resp = client.delete_client_branding({
997
+ # resource_id: "DirectoryId", # required
998
+ # platforms: ["DeviceTypeWindows"], # required, accepts DeviceTypeWindows, DeviceTypeOsx, DeviceTypeAndroid, DeviceTypeIos, DeviceTypeLinux, DeviceTypeWeb
999
+ # })
1000
+ #
1001
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeleteClientBranding AWS API Documentation
1002
+ #
1003
+ # @overload delete_client_branding(params = {})
1004
+ # @param [Hash] params ({})
1005
+ def delete_client_branding(params = {}, options = {})
1006
+ req = build_request(:delete_client_branding, params)
1007
+ req.send_request(options)
1008
+ end
1009
+
976
1010
  # Deletes a client-add-in for Amazon Connect that is configured within a
977
1011
  # directory.
978
1012
  #
@@ -1255,6 +1289,86 @@ module Aws::WorkSpaces
1255
1289
  req.send_request(options)
1256
1290
  end
1257
1291
 
1292
+ # Describes the specified client branding. Client branding allows you to
1293
+ # customize the log in page of various device types for your users. You
1294
+ # can add your company logo, the support email address, support link,
1295
+ # link to reset password, and a custom message for users trying to sign
1296
+ # in.
1297
+ #
1298
+ # <note markdown="1"> Only device types that have branding information configured will be
1299
+ # shown in the response.
1300
+ #
1301
+ # </note>
1302
+ #
1303
+ # @option params [required, String] :resource_id
1304
+ # The directory identifier of the WorkSpace for which you want to view
1305
+ # client branding information.
1306
+ #
1307
+ # @return [Types::DescribeClientBrandingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1308
+ #
1309
+ # * {Types::DescribeClientBrandingResult#device_type_windows #device_type_windows} => Types::DefaultClientBrandingAttributes
1310
+ # * {Types::DescribeClientBrandingResult#device_type_osx #device_type_osx} => Types::DefaultClientBrandingAttributes
1311
+ # * {Types::DescribeClientBrandingResult#device_type_android #device_type_android} => Types::DefaultClientBrandingAttributes
1312
+ # * {Types::DescribeClientBrandingResult#device_type_ios #device_type_ios} => Types::IosClientBrandingAttributes
1313
+ # * {Types::DescribeClientBrandingResult#device_type_linux #device_type_linux} => Types::DefaultClientBrandingAttributes
1314
+ # * {Types::DescribeClientBrandingResult#device_type_web #device_type_web} => Types::DefaultClientBrandingAttributes
1315
+ #
1316
+ # @example Request syntax with placeholder values
1317
+ #
1318
+ # resp = client.describe_client_branding({
1319
+ # resource_id: "DirectoryId", # required
1320
+ # })
1321
+ #
1322
+ # @example Response structure
1323
+ #
1324
+ # resp.device_type_windows.logo_url #=> String
1325
+ # resp.device_type_windows.support_email #=> String
1326
+ # resp.device_type_windows.support_link #=> String
1327
+ # resp.device_type_windows.forgot_password_link #=> String
1328
+ # resp.device_type_windows.login_message #=> Hash
1329
+ # resp.device_type_windows.login_message["ClientLocale"] #=> String
1330
+ # resp.device_type_osx.logo_url #=> String
1331
+ # resp.device_type_osx.support_email #=> String
1332
+ # resp.device_type_osx.support_link #=> String
1333
+ # resp.device_type_osx.forgot_password_link #=> String
1334
+ # resp.device_type_osx.login_message #=> Hash
1335
+ # resp.device_type_osx.login_message["ClientLocale"] #=> String
1336
+ # resp.device_type_android.logo_url #=> String
1337
+ # resp.device_type_android.support_email #=> String
1338
+ # resp.device_type_android.support_link #=> String
1339
+ # resp.device_type_android.forgot_password_link #=> String
1340
+ # resp.device_type_android.login_message #=> Hash
1341
+ # resp.device_type_android.login_message["ClientLocale"] #=> String
1342
+ # resp.device_type_ios.logo_url #=> String
1343
+ # resp.device_type_ios.logo_2x_url #=> String
1344
+ # resp.device_type_ios.logo_3x_url #=> String
1345
+ # resp.device_type_ios.support_email #=> String
1346
+ # resp.device_type_ios.support_link #=> String
1347
+ # resp.device_type_ios.forgot_password_link #=> String
1348
+ # resp.device_type_ios.login_message #=> Hash
1349
+ # resp.device_type_ios.login_message["ClientLocale"] #=> String
1350
+ # resp.device_type_linux.logo_url #=> String
1351
+ # resp.device_type_linux.support_email #=> String
1352
+ # resp.device_type_linux.support_link #=> String
1353
+ # resp.device_type_linux.forgot_password_link #=> String
1354
+ # resp.device_type_linux.login_message #=> Hash
1355
+ # resp.device_type_linux.login_message["ClientLocale"] #=> String
1356
+ # resp.device_type_web.logo_url #=> String
1357
+ # resp.device_type_web.support_email #=> String
1358
+ # resp.device_type_web.support_link #=> String
1359
+ # resp.device_type_web.forgot_password_link #=> String
1360
+ # resp.device_type_web.login_message #=> Hash
1361
+ # resp.device_type_web.login_message["ClientLocale"] #=> String
1362
+ #
1363
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeClientBranding AWS API Documentation
1364
+ #
1365
+ # @overload describe_client_branding(params = {})
1366
+ # @param [Hash] params ({})
1367
+ def describe_client_branding(params = {}, options = {})
1368
+ req = build_request(:describe_client_branding, params)
1369
+ req.send_request(options)
1370
+ end
1371
+
1258
1372
  # Retrieves a list that describes one or more specified Amazon
1259
1373
  # WorkSpaces clients.
1260
1374
  #
@@ -1975,6 +2089,173 @@ module Aws::WorkSpaces
1975
2089
  req.send_request(options)
1976
2090
  end
1977
2091
 
2092
+ # Imports client branding. Client branding allows you to customize your
2093
+ # WorkSpace's client login portal. You can tailor your login portal
2094
+ # company logo, the support email address, support link, link to reset
2095
+ # password, and a custom message for users trying to sign in.
2096
+ #
2097
+ # After you import client branding, the default branding experience for
2098
+ # the specified platform type is replaced with the imported experience
2099
+ #
2100
+ # <note markdown="1"> * You must specify at least one platform type when importing client
2101
+ # branding.
2102
+ #
2103
+ # * You can import up to 6 MB of data with each request. If your request
2104
+ # exceeds this limit, you can import client branding for different
2105
+ # platform types using separate requests.
2106
+ #
2107
+ # * In each platform type, the `SupportEmail` and `SupportLink`
2108
+ # parameters are mutually exclusive. You can specify only one
2109
+ # parameter for each platform type, but not both.
2110
+ #
2111
+ # * Imported data can take up to a minute to appear in the WorkSpaces
2112
+ # client.
2113
+ #
2114
+ # </note>
2115
+ #
2116
+ # @option params [required, String] :resource_id
2117
+ # The directory identifier of the WorkSpace for which you want to import
2118
+ # client branding.
2119
+ #
2120
+ # @option params [Types::DefaultImportClientBrandingAttributes] :device_type_windows
2121
+ # The branding information to import for Windows devices.
2122
+ #
2123
+ # @option params [Types::DefaultImportClientBrandingAttributes] :device_type_osx
2124
+ # The branding information to import for macOS devices.
2125
+ #
2126
+ # @option params [Types::DefaultImportClientBrandingAttributes] :device_type_android
2127
+ # The branding information to import for Android devices.
2128
+ #
2129
+ # @option params [Types::IosImportClientBrandingAttributes] :device_type_ios
2130
+ # The branding information to import for iOS devices.
2131
+ #
2132
+ # @option params [Types::DefaultImportClientBrandingAttributes] :device_type_linux
2133
+ # The branding information to import for Linux devices.
2134
+ #
2135
+ # @option params [Types::DefaultImportClientBrandingAttributes] :device_type_web
2136
+ # The branding information to import for web access.
2137
+ #
2138
+ # @return [Types::ImportClientBrandingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2139
+ #
2140
+ # * {Types::ImportClientBrandingResult#device_type_windows #device_type_windows} => Types::DefaultClientBrandingAttributes
2141
+ # * {Types::ImportClientBrandingResult#device_type_osx #device_type_osx} => Types::DefaultClientBrandingAttributes
2142
+ # * {Types::ImportClientBrandingResult#device_type_android #device_type_android} => Types::DefaultClientBrandingAttributes
2143
+ # * {Types::ImportClientBrandingResult#device_type_ios #device_type_ios} => Types::IosClientBrandingAttributes
2144
+ # * {Types::ImportClientBrandingResult#device_type_linux #device_type_linux} => Types::DefaultClientBrandingAttributes
2145
+ # * {Types::ImportClientBrandingResult#device_type_web #device_type_web} => Types::DefaultClientBrandingAttributes
2146
+ #
2147
+ # @example Request syntax with placeholder values
2148
+ #
2149
+ # resp = client.import_client_branding({
2150
+ # resource_id: "DirectoryId", # required
2151
+ # device_type_windows: {
2152
+ # logo: "data",
2153
+ # support_email: "ClientEmail",
2154
+ # support_link: "ClientUrl",
2155
+ # forgot_password_link: "ClientUrl",
2156
+ # login_message: {
2157
+ # "ClientLocale" => "ClientLoginMessage",
2158
+ # },
2159
+ # },
2160
+ # device_type_osx: {
2161
+ # logo: "data",
2162
+ # support_email: "ClientEmail",
2163
+ # support_link: "ClientUrl",
2164
+ # forgot_password_link: "ClientUrl",
2165
+ # login_message: {
2166
+ # "ClientLocale" => "ClientLoginMessage",
2167
+ # },
2168
+ # },
2169
+ # device_type_android: {
2170
+ # logo: "data",
2171
+ # support_email: "ClientEmail",
2172
+ # support_link: "ClientUrl",
2173
+ # forgot_password_link: "ClientUrl",
2174
+ # login_message: {
2175
+ # "ClientLocale" => "ClientLoginMessage",
2176
+ # },
2177
+ # },
2178
+ # device_type_ios: {
2179
+ # logo: "data",
2180
+ # logo_2x: "data",
2181
+ # logo_3x: "data",
2182
+ # support_email: "ClientEmail",
2183
+ # support_link: "ClientUrl",
2184
+ # forgot_password_link: "ClientUrl",
2185
+ # login_message: {
2186
+ # "ClientLocale" => "ClientLoginMessage",
2187
+ # },
2188
+ # },
2189
+ # device_type_linux: {
2190
+ # logo: "data",
2191
+ # support_email: "ClientEmail",
2192
+ # support_link: "ClientUrl",
2193
+ # forgot_password_link: "ClientUrl",
2194
+ # login_message: {
2195
+ # "ClientLocale" => "ClientLoginMessage",
2196
+ # },
2197
+ # },
2198
+ # device_type_web: {
2199
+ # logo: "data",
2200
+ # support_email: "ClientEmail",
2201
+ # support_link: "ClientUrl",
2202
+ # forgot_password_link: "ClientUrl",
2203
+ # login_message: {
2204
+ # "ClientLocale" => "ClientLoginMessage",
2205
+ # },
2206
+ # },
2207
+ # })
2208
+ #
2209
+ # @example Response structure
2210
+ #
2211
+ # resp.device_type_windows.logo_url #=> String
2212
+ # resp.device_type_windows.support_email #=> String
2213
+ # resp.device_type_windows.support_link #=> String
2214
+ # resp.device_type_windows.forgot_password_link #=> String
2215
+ # resp.device_type_windows.login_message #=> Hash
2216
+ # resp.device_type_windows.login_message["ClientLocale"] #=> String
2217
+ # resp.device_type_osx.logo_url #=> String
2218
+ # resp.device_type_osx.support_email #=> String
2219
+ # resp.device_type_osx.support_link #=> String
2220
+ # resp.device_type_osx.forgot_password_link #=> String
2221
+ # resp.device_type_osx.login_message #=> Hash
2222
+ # resp.device_type_osx.login_message["ClientLocale"] #=> String
2223
+ # resp.device_type_android.logo_url #=> String
2224
+ # resp.device_type_android.support_email #=> String
2225
+ # resp.device_type_android.support_link #=> String
2226
+ # resp.device_type_android.forgot_password_link #=> String
2227
+ # resp.device_type_android.login_message #=> Hash
2228
+ # resp.device_type_android.login_message["ClientLocale"] #=> String
2229
+ # resp.device_type_ios.logo_url #=> String
2230
+ # resp.device_type_ios.logo_2x_url #=> String
2231
+ # resp.device_type_ios.logo_3x_url #=> String
2232
+ # resp.device_type_ios.support_email #=> String
2233
+ # resp.device_type_ios.support_link #=> String
2234
+ # resp.device_type_ios.forgot_password_link #=> String
2235
+ # resp.device_type_ios.login_message #=> Hash
2236
+ # resp.device_type_ios.login_message["ClientLocale"] #=> String
2237
+ # resp.device_type_linux.logo_url #=> String
2238
+ # resp.device_type_linux.support_email #=> String
2239
+ # resp.device_type_linux.support_link #=> String
2240
+ # resp.device_type_linux.forgot_password_link #=> String
2241
+ # resp.device_type_linux.login_message #=> Hash
2242
+ # resp.device_type_linux.login_message["ClientLocale"] #=> String
2243
+ # resp.device_type_web.logo_url #=> String
2244
+ # resp.device_type_web.support_email #=> String
2245
+ # resp.device_type_web.support_link #=> String
2246
+ # resp.device_type_web.forgot_password_link #=> String
2247
+ # resp.device_type_web.login_message #=> Hash
2248
+ # resp.device_type_web.login_message["ClientLocale"] #=> String
2249
+ #
2250
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ImportClientBranding AWS API Documentation
2251
+ #
2252
+ # @overload import_client_branding(params = {})
2253
+ # @param [Hash] params ({})
2254
+ def import_client_branding(params = {}, options = {})
2255
+ req = build_request(:import_client_branding, params)
2256
+ req.send_request(options)
2257
+ end
2258
+
1978
2259
  # Imports the specified Windows 10 Bring Your Own License (BYOL) image
1979
2260
  # into Amazon WorkSpaces. The image must be an already licensed Amazon
1980
2261
  # EC2 image that is in your Amazon Web Services account, and you must
@@ -3015,7 +3296,7 @@ module Aws::WorkSpaces
3015
3296
  params: params,
3016
3297
  config: config)
3017
3298
  context[:gem_name] = 'aws-sdk-workspaces'
3018
- context[:gem_version] = '1.65.0'
3299
+ context[:gem_version] = '1.66.0'
3019
3300
  Seahorse::Client::Request.new(handlers, context)
3020
3301
  end
3021
3302
 
@@ -37,9 +37,15 @@ module Aws::WorkSpaces
37
37
  BundleIdList = Shapes::ListShape.new(name: 'BundleIdList')
38
38
  BundleList = Shapes::ListShape.new(name: 'BundleList')
39
39
  BundleOwner = Shapes::StringShape.new(name: 'BundleOwner')
40
+ ClientDeviceType = Shapes::StringShape.new(name: 'ClientDeviceType')
41
+ ClientDeviceTypeList = Shapes::ListShape.new(name: 'ClientDeviceTypeList')
42
+ ClientEmail = Shapes::StringShape.new(name: 'ClientEmail')
43
+ ClientLocale = Shapes::StringShape.new(name: 'ClientLocale')
44
+ ClientLoginMessage = Shapes::StringShape.new(name: 'ClientLoginMessage')
40
45
  ClientProperties = Shapes::StructureShape.new(name: 'ClientProperties')
41
46
  ClientPropertiesList = Shapes::ListShape.new(name: 'ClientPropertiesList')
42
47
  ClientPropertiesResult = Shapes::StructureShape.new(name: 'ClientPropertiesResult')
48
+ ClientUrl = Shapes::StringShape.new(name: 'ClientUrl')
43
49
  Compute = Shapes::StringShape.new(name: 'Compute')
44
50
  ComputeType = Shapes::StructureShape.new(name: 'ComputeType')
45
51
  ComputerName = Shapes::StringShape.new(name: 'ComputerName')
@@ -78,8 +84,13 @@ module Aws::WorkSpaces
78
84
  DedicatedTenancyModificationStateEnum = Shapes::StringShape.new(name: 'DedicatedTenancyModificationStateEnum')
79
85
  DedicatedTenancySupportEnum = Shapes::StringShape.new(name: 'DedicatedTenancySupportEnum')
80
86
  DedicatedTenancySupportResultEnum = Shapes::StringShape.new(name: 'DedicatedTenancySupportResultEnum')
87
+ DefaultClientBrandingAttributes = Shapes::StructureShape.new(name: 'DefaultClientBrandingAttributes')
88
+ DefaultImportClientBrandingAttributes = Shapes::StructureShape.new(name: 'DefaultImportClientBrandingAttributes')
89
+ DefaultLogo = Shapes::BlobShape.new(name: 'DefaultLogo')
81
90
  DefaultOu = Shapes::StringShape.new(name: 'DefaultOu')
82
91
  DefaultWorkspaceCreationProperties = Shapes::StructureShape.new(name: 'DefaultWorkspaceCreationProperties')
92
+ DeleteClientBrandingRequest = Shapes::StructureShape.new(name: 'DeleteClientBrandingRequest')
93
+ DeleteClientBrandingResult = Shapes::StructureShape.new(name: 'DeleteClientBrandingResult')
83
94
  DeleteConnectClientAddInRequest = Shapes::StructureShape.new(name: 'DeleteConnectClientAddInRequest')
84
95
  DeleteConnectClientAddInResult = Shapes::StructureShape.new(name: 'DeleteConnectClientAddInResult')
85
96
  DeleteConnectionAliasRequest = Shapes::StructureShape.new(name: 'DeleteConnectionAliasRequest')
@@ -98,6 +109,8 @@ module Aws::WorkSpaces
98
109
  DescribeAccountModificationsResult = Shapes::StructureShape.new(name: 'DescribeAccountModificationsResult')
99
110
  DescribeAccountRequest = Shapes::StructureShape.new(name: 'DescribeAccountRequest')
100
111
  DescribeAccountResult = Shapes::StructureShape.new(name: 'DescribeAccountResult')
112
+ DescribeClientBrandingRequest = Shapes::StructureShape.new(name: 'DescribeClientBrandingRequest')
113
+ DescribeClientBrandingResult = Shapes::StructureShape.new(name: 'DescribeClientBrandingResult')
101
114
  DescribeClientPropertiesRequest = Shapes::StructureShape.new(name: 'DescribeClientPropertiesRequest')
102
115
  DescribeClientPropertiesResult = Shapes::StructureShape.new(name: 'DescribeClientPropertiesResult')
103
116
  DescribeConnectClientAddInsRequest = Shapes::StructureShape.new(name: 'DescribeConnectClientAddInsRequest')
@@ -148,10 +161,17 @@ module Aws::WorkSpaces
148
161
  ImagePermission = Shapes::StructureShape.new(name: 'ImagePermission')
149
162
  ImagePermissions = Shapes::ListShape.new(name: 'ImagePermissions')
150
163
  ImageType = Shapes::StringShape.new(name: 'ImageType')
164
+ ImportClientBrandingRequest = Shapes::StructureShape.new(name: 'ImportClientBrandingRequest')
165
+ ImportClientBrandingResult = Shapes::StructureShape.new(name: 'ImportClientBrandingResult')
151
166
  ImportWorkspaceImageRequest = Shapes::StructureShape.new(name: 'ImportWorkspaceImageRequest')
152
167
  ImportWorkspaceImageResult = Shapes::StructureShape.new(name: 'ImportWorkspaceImageResult')
153
168
  InvalidParameterValuesException = Shapes::StructureShape.new(name: 'InvalidParameterValuesException')
154
169
  InvalidResourceStateException = Shapes::StructureShape.new(name: 'InvalidResourceStateException')
170
+ Ios2XLogo = Shapes::BlobShape.new(name: 'Ios2XLogo')
171
+ Ios3XLogo = Shapes::BlobShape.new(name: 'Ios3XLogo')
172
+ IosClientBrandingAttributes = Shapes::StructureShape.new(name: 'IosClientBrandingAttributes')
173
+ IosImportClientBrandingAttributes = Shapes::StructureShape.new(name: 'IosImportClientBrandingAttributes')
174
+ IosLogo = Shapes::BlobShape.new(name: 'IosLogo')
155
175
  IpAddress = Shapes::StringShape.new(name: 'IpAddress')
156
176
  IpGroupDesc = Shapes::StringShape.new(name: 'IpGroupDesc')
157
177
  IpGroupId = Shapes::StringShape.new(name: 'IpGroupId')
@@ -165,6 +185,7 @@ module Aws::WorkSpaces
165
185
  Limit = Shapes::IntegerShape.new(name: 'Limit')
166
186
  ListAvailableManagementCidrRangesRequest = Shapes::StructureShape.new(name: 'ListAvailableManagementCidrRangesRequest')
167
187
  ListAvailableManagementCidrRangesResult = Shapes::StructureShape.new(name: 'ListAvailableManagementCidrRangesResult')
188
+ LoginMessage = Shapes::MapShape.new(name: 'LoginMessage')
168
189
  ManagementCidrRangeConstraint = Shapes::StringShape.new(name: 'ManagementCidrRangeConstraint')
169
190
  ManagementCidrRangeMaxResults = Shapes::IntegerShape.new(name: 'ManagementCidrRangeMaxResults')
170
191
  MigrateWorkspaceRequest = Shapes::StructureShape.new(name: 'MigrateWorkspaceRequest')
@@ -336,6 +357,8 @@ module Aws::WorkSpaces
336
357
 
337
358
  BundleList.member = Shapes::ShapeRef.new(shape: WorkspaceBundle)
338
359
 
360
+ ClientDeviceTypeList.member = Shapes::ShapeRef.new(shape: ClientDeviceType)
361
+
339
362
  ClientProperties.add_member(:reconnect_enabled, Shapes::ShapeRef.new(shape: ReconnectEnum, location_name: "ReconnectEnabled"))
340
363
  ClientProperties.struct_class = Types::ClientProperties
341
364
 
@@ -451,6 +474,20 @@ module Aws::WorkSpaces
451
474
 
452
475
  DedicatedTenancyCidrRangeList.member = Shapes::ShapeRef.new(shape: DedicatedTenancyManagementCidrRange)
453
476
 
477
+ DefaultClientBrandingAttributes.add_member(:logo_url, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "LogoUrl"))
478
+ DefaultClientBrandingAttributes.add_member(:support_email, Shapes::ShapeRef.new(shape: ClientEmail, location_name: "SupportEmail"))
479
+ DefaultClientBrandingAttributes.add_member(:support_link, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "SupportLink"))
480
+ DefaultClientBrandingAttributes.add_member(:forgot_password_link, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "ForgotPasswordLink"))
481
+ DefaultClientBrandingAttributes.add_member(:login_message, Shapes::ShapeRef.new(shape: LoginMessage, location_name: "LoginMessage"))
482
+ DefaultClientBrandingAttributes.struct_class = Types::DefaultClientBrandingAttributes
483
+
484
+ DefaultImportClientBrandingAttributes.add_member(:logo, Shapes::ShapeRef.new(shape: DefaultLogo, location_name: "Logo"))
485
+ DefaultImportClientBrandingAttributes.add_member(:support_email, Shapes::ShapeRef.new(shape: ClientEmail, location_name: "SupportEmail"))
486
+ DefaultImportClientBrandingAttributes.add_member(:support_link, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "SupportLink"))
487
+ DefaultImportClientBrandingAttributes.add_member(:forgot_password_link, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "ForgotPasswordLink"))
488
+ DefaultImportClientBrandingAttributes.add_member(:login_message, Shapes::ShapeRef.new(shape: LoginMessage, location_name: "LoginMessage"))
489
+ DefaultImportClientBrandingAttributes.struct_class = Types::DefaultImportClientBrandingAttributes
490
+
454
491
  DefaultWorkspaceCreationProperties.add_member(:enable_work_docs, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableWorkDocs"))
455
492
  DefaultWorkspaceCreationProperties.add_member(:enable_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableInternetAccess"))
456
493
  DefaultWorkspaceCreationProperties.add_member(:default_ou, Shapes::ShapeRef.new(shape: DefaultOu, location_name: "DefaultOu"))
@@ -459,6 +496,12 @@ module Aws::WorkSpaces
459
496
  DefaultWorkspaceCreationProperties.add_member(:enable_maintenance_mode, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableMaintenanceMode"))
460
497
  DefaultWorkspaceCreationProperties.struct_class = Types::DefaultWorkspaceCreationProperties
461
498
 
499
+ DeleteClientBrandingRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "ResourceId"))
500
+ DeleteClientBrandingRequest.add_member(:platforms, Shapes::ShapeRef.new(shape: ClientDeviceTypeList, required: true, location_name: "Platforms"))
501
+ DeleteClientBrandingRequest.struct_class = Types::DeleteClientBrandingRequest
502
+
503
+ DeleteClientBrandingResult.struct_class = Types::DeleteClientBrandingResult
504
+
462
505
  DeleteConnectClientAddInRequest.add_member(:add_in_id, Shapes::ShapeRef.new(shape: AmazonUuid, required: true, location_name: "AddInId"))
463
506
  DeleteConnectClientAddInRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "ResourceId"))
464
507
  DeleteConnectClientAddInRequest.struct_class = Types::DeleteConnectClientAddInRequest
@@ -509,6 +552,17 @@ module Aws::WorkSpaces
509
552
  DescribeAccountResult.add_member(:dedicated_tenancy_management_cidr_range, Shapes::ShapeRef.new(shape: DedicatedTenancyManagementCidrRange, location_name: "DedicatedTenancyManagementCidrRange"))
510
553
  DescribeAccountResult.struct_class = Types::DescribeAccountResult
511
554
 
555
+ DescribeClientBrandingRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "ResourceId"))
556
+ DescribeClientBrandingRequest.struct_class = Types::DescribeClientBrandingRequest
557
+
558
+ DescribeClientBrandingResult.add_member(:device_type_windows, Shapes::ShapeRef.new(shape: DefaultClientBrandingAttributes, location_name: "DeviceTypeWindows"))
559
+ DescribeClientBrandingResult.add_member(:device_type_osx, Shapes::ShapeRef.new(shape: DefaultClientBrandingAttributes, location_name: "DeviceTypeOsx"))
560
+ DescribeClientBrandingResult.add_member(:device_type_android, Shapes::ShapeRef.new(shape: DefaultClientBrandingAttributes, location_name: "DeviceTypeAndroid"))
561
+ DescribeClientBrandingResult.add_member(:device_type_ios, Shapes::ShapeRef.new(shape: IosClientBrandingAttributes, location_name: "DeviceTypeIos"))
562
+ DescribeClientBrandingResult.add_member(:device_type_linux, Shapes::ShapeRef.new(shape: DefaultClientBrandingAttributes, location_name: "DeviceTypeLinux"))
563
+ DescribeClientBrandingResult.add_member(:device_type_web, Shapes::ShapeRef.new(shape: DefaultClientBrandingAttributes, location_name: "DeviceTypeWeb"))
564
+ DescribeClientBrandingResult.struct_class = Types::DescribeClientBrandingResult
565
+
512
566
  DescribeClientPropertiesRequest.add_member(:resource_ids, Shapes::ShapeRef.new(shape: ResourceIdList, required: true, location_name: "ResourceIds"))
513
567
  DescribeClientPropertiesRequest.struct_class = Types::DescribeClientPropertiesRequest
514
568
 
@@ -668,6 +722,23 @@ module Aws::WorkSpaces
668
722
 
669
723
  ImagePermissions.member = Shapes::ShapeRef.new(shape: ImagePermission)
670
724
 
725
+ ImportClientBrandingRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "ResourceId"))
726
+ ImportClientBrandingRequest.add_member(:device_type_windows, Shapes::ShapeRef.new(shape: DefaultImportClientBrandingAttributes, location_name: "DeviceTypeWindows"))
727
+ ImportClientBrandingRequest.add_member(:device_type_osx, Shapes::ShapeRef.new(shape: DefaultImportClientBrandingAttributes, location_name: "DeviceTypeOsx"))
728
+ ImportClientBrandingRequest.add_member(:device_type_android, Shapes::ShapeRef.new(shape: DefaultImportClientBrandingAttributes, location_name: "DeviceTypeAndroid"))
729
+ ImportClientBrandingRequest.add_member(:device_type_ios, Shapes::ShapeRef.new(shape: IosImportClientBrandingAttributes, location_name: "DeviceTypeIos"))
730
+ ImportClientBrandingRequest.add_member(:device_type_linux, Shapes::ShapeRef.new(shape: DefaultImportClientBrandingAttributes, location_name: "DeviceTypeLinux"))
731
+ ImportClientBrandingRequest.add_member(:device_type_web, Shapes::ShapeRef.new(shape: DefaultImportClientBrandingAttributes, location_name: "DeviceTypeWeb"))
732
+ ImportClientBrandingRequest.struct_class = Types::ImportClientBrandingRequest
733
+
734
+ ImportClientBrandingResult.add_member(:device_type_windows, Shapes::ShapeRef.new(shape: DefaultClientBrandingAttributes, location_name: "DeviceTypeWindows"))
735
+ ImportClientBrandingResult.add_member(:device_type_osx, Shapes::ShapeRef.new(shape: DefaultClientBrandingAttributes, location_name: "DeviceTypeOsx"))
736
+ ImportClientBrandingResult.add_member(:device_type_android, Shapes::ShapeRef.new(shape: DefaultClientBrandingAttributes, location_name: "DeviceTypeAndroid"))
737
+ ImportClientBrandingResult.add_member(:device_type_ios, Shapes::ShapeRef.new(shape: IosClientBrandingAttributes, location_name: "DeviceTypeIos"))
738
+ ImportClientBrandingResult.add_member(:device_type_linux, Shapes::ShapeRef.new(shape: DefaultClientBrandingAttributes, location_name: "DeviceTypeLinux"))
739
+ ImportClientBrandingResult.add_member(:device_type_web, Shapes::ShapeRef.new(shape: DefaultClientBrandingAttributes, location_name: "DeviceTypeWeb"))
740
+ ImportClientBrandingResult.struct_class = Types::ImportClientBrandingResult
741
+
671
742
  ImportWorkspaceImageRequest.add_member(:ec2_image_id, Shapes::ShapeRef.new(shape: Ec2ImageId, required: true, location_name: "Ec2ImageId"))
672
743
  ImportWorkspaceImageRequest.add_member(:ingestion_process, Shapes::ShapeRef.new(shape: WorkspaceImageIngestionProcess, required: true, location_name: "IngestionProcess"))
673
744
  ImportWorkspaceImageRequest.add_member(:image_name, Shapes::ShapeRef.new(shape: WorkspaceImageName, required: true, location_name: "ImageName"))
@@ -685,6 +756,24 @@ module Aws::WorkSpaces
685
756
  InvalidResourceStateException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
686
757
  InvalidResourceStateException.struct_class = Types::InvalidResourceStateException
687
758
 
759
+ IosClientBrandingAttributes.add_member(:logo_url, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "LogoUrl"))
760
+ IosClientBrandingAttributes.add_member(:logo_2x_url, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "Logo2xUrl"))
761
+ IosClientBrandingAttributes.add_member(:logo_3x_url, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "Logo3xUrl"))
762
+ IosClientBrandingAttributes.add_member(:support_email, Shapes::ShapeRef.new(shape: ClientEmail, location_name: "SupportEmail"))
763
+ IosClientBrandingAttributes.add_member(:support_link, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "SupportLink"))
764
+ IosClientBrandingAttributes.add_member(:forgot_password_link, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "ForgotPasswordLink"))
765
+ IosClientBrandingAttributes.add_member(:login_message, Shapes::ShapeRef.new(shape: LoginMessage, location_name: "LoginMessage"))
766
+ IosClientBrandingAttributes.struct_class = Types::IosClientBrandingAttributes
767
+
768
+ IosImportClientBrandingAttributes.add_member(:logo, Shapes::ShapeRef.new(shape: IosLogo, location_name: "Logo"))
769
+ IosImportClientBrandingAttributes.add_member(:logo_2x, Shapes::ShapeRef.new(shape: Ios2XLogo, location_name: "Logo2x"))
770
+ IosImportClientBrandingAttributes.add_member(:logo_3x, Shapes::ShapeRef.new(shape: Ios3XLogo, location_name: "Logo3x"))
771
+ IosImportClientBrandingAttributes.add_member(:support_email, Shapes::ShapeRef.new(shape: ClientEmail, location_name: "SupportEmail"))
772
+ IosImportClientBrandingAttributes.add_member(:support_link, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "SupportLink"))
773
+ IosImportClientBrandingAttributes.add_member(:forgot_password_link, Shapes::ShapeRef.new(shape: ClientUrl, location_name: "ForgotPasswordLink"))
774
+ IosImportClientBrandingAttributes.add_member(:login_message, Shapes::ShapeRef.new(shape: LoginMessage, location_name: "LoginMessage"))
775
+ IosImportClientBrandingAttributes.struct_class = Types::IosImportClientBrandingAttributes
776
+
688
777
  IpGroupIdList.member = Shapes::ShapeRef.new(shape: IpGroupId)
689
778
 
690
779
  IpRevokedRuleList.member = Shapes::ShapeRef.new(shape: IpRule)
@@ -704,6 +793,9 @@ module Aws::WorkSpaces
704
793
  ListAvailableManagementCidrRangesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
705
794
  ListAvailableManagementCidrRangesResult.struct_class = Types::ListAvailableManagementCidrRangesResult
706
795
 
796
+ LoginMessage.key = Shapes::ShapeRef.new(shape: ClientLocale)
797
+ LoginMessage.value = Shapes::ShapeRef.new(shape: ClientLoginMessage)
798
+
707
799
  MigrateWorkspaceRequest.add_member(:source_workspace_id, Shapes::ShapeRef.new(shape: WorkspaceId, required: true, location_name: "SourceWorkspaceId"))
708
800
  MigrateWorkspaceRequest.add_member(:bundle_id, Shapes::ShapeRef.new(shape: BundleId, required: true, location_name: "BundleId"))
709
801
  MigrateWorkspaceRequest.struct_class = Types::MigrateWorkspaceRequest
@@ -1226,6 +1318,17 @@ module Aws::WorkSpaces
1226
1318
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
1227
1319
  end)
1228
1320
 
1321
+ api.add_operation(:delete_client_branding, Seahorse::Model::Operation.new.tap do |o|
1322
+ o.name = "DeleteClientBranding"
1323
+ o.http_method = "POST"
1324
+ o.http_request_uri = "/"
1325
+ o.input = Shapes::ShapeRef.new(shape: DeleteClientBrandingRequest)
1326
+ o.output = Shapes::ShapeRef.new(shape: DeleteClientBrandingResult)
1327
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
1328
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1329
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1330
+ end)
1331
+
1229
1332
  api.add_operation(:delete_connect_client_add_in, Seahorse::Model::Operation.new.tap do |o|
1230
1333
  o.name = "DeleteConnectClientAddIn"
1231
1334
  o.http_method = "POST"
@@ -1327,6 +1430,17 @@ module Aws::WorkSpaces
1327
1430
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1328
1431
  end)
1329
1432
 
1433
+ api.add_operation(:describe_client_branding, Seahorse::Model::Operation.new.tap do |o|
1434
+ o.name = "DescribeClientBranding"
1435
+ o.http_method = "POST"
1436
+ o.http_request_uri = "/"
1437
+ o.input = Shapes::ShapeRef.new(shape: DescribeClientBrandingRequest)
1438
+ o.output = Shapes::ShapeRef.new(shape: DescribeClientBrandingResult)
1439
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
1440
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1441
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1442
+ end)
1443
+
1330
1444
  api.add_operation(:describe_client_properties, Seahorse::Model::Operation.new.tap do |o|
1331
1445
  o.name = "DescribeClientProperties"
1332
1446
  o.http_method = "POST"
@@ -1500,6 +1614,17 @@ module Aws::WorkSpaces
1500
1614
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1501
1615
  end)
1502
1616
 
1617
+ api.add_operation(:import_client_branding, Seahorse::Model::Operation.new.tap do |o|
1618
+ o.name = "ImportClientBranding"
1619
+ o.http_method = "POST"
1620
+ o.http_request_uri = "/"
1621
+ o.input = Shapes::ShapeRef.new(shape: ImportClientBrandingRequest)
1622
+ o.output = Shapes::ShapeRef.new(shape: ImportClientBrandingResult)
1623
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
1624
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
1625
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1626
+ end)
1627
+
1503
1628
  api.add_operation(:import_workspace_image, Seahorse::Model::Operation.new.tap do |o|
1504
1629
  o.name = "ImportWorkspaceImage"
1505
1630
  o.http_method = "POST"
@@ -833,6 +833,137 @@ module Aws::WorkSpaces
833
833
  include Aws::Structure
834
834
  end
835
835
 
836
+ # Returns default client branding attributes that were imported. These
837
+ # attributes display on the client login screen.
838
+ #
839
+ # Client branding attributes are public facing. Ensure that you don't
840
+ # include sensitive information.
841
+ #
842
+ # @!attribute [rw] logo_url
843
+ # The logo URL. This is the link where users can download the logo
844
+ # image. The only supported image format is `.png`.
845
+ # @return [String]
846
+ #
847
+ # @!attribute [rw] support_email
848
+ # The support email. The company's customer support email address.
849
+ #
850
+ # <note markdown="1"> * In each platform type, the `SupportEmail` and `SupportLink`
851
+ # parameters are mutually exclusive. You can specify one parameter
852
+ # for each platform type, but not both.
853
+ #
854
+ # * The default email is `workspaces-feedback@amazon.com`.
855
+ #
856
+ # </note>
857
+ # @return [String]
858
+ #
859
+ # @!attribute [rw] support_link
860
+ # The support link. The link for the company's customer support page
861
+ # for their WorkSpace.
862
+ #
863
+ # <note markdown="1"> * In each platform type, the `SupportEmail` and `SupportLink`
864
+ # parameters are mutually exclusive.You can specify one parameter
865
+ # for each platform type, but not both.
866
+ #
867
+ # * The default support link is `workspaces-feedback@amazon.com`.
868
+ #
869
+ # </note>
870
+ # @return [String]
871
+ #
872
+ # @!attribute [rw] forgot_password_link
873
+ # The forgotten password link. This is the web address that users can
874
+ # go to if they forget the password for their WorkSpace.
875
+ # @return [String]
876
+ #
877
+ # @!attribute [rw] login_message
878
+ # The login message. Specified as a key value pair, in which the key
879
+ # is a locale and the value is the localized message for that locale.
880
+ # The only key supported is `en_US`.
881
+ # @return [Hash<String,String>]
882
+ #
883
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DefaultClientBrandingAttributes AWS API Documentation
884
+ #
885
+ class DefaultClientBrandingAttributes < Struct.new(
886
+ :logo_url,
887
+ :support_email,
888
+ :support_link,
889
+ :forgot_password_link,
890
+ :login_message)
891
+ SENSITIVE = []
892
+ include Aws::Structure
893
+ end
894
+
895
+ # The default client branding attributes to be imported. These
896
+ # attributes display on the client login screen.
897
+ #
898
+ # Client branding attributes are public facing. Ensure that you do not
899
+ # include sensitive information.
900
+ #
901
+ # @note When making an API call, you may pass DefaultImportClientBrandingAttributes
902
+ # data as a hash:
903
+ #
904
+ # {
905
+ # logo: "data",
906
+ # support_email: "ClientEmail",
907
+ # support_link: "ClientUrl",
908
+ # forgot_password_link: "ClientUrl",
909
+ # login_message: {
910
+ # "ClientLocale" => "ClientLoginMessage",
911
+ # },
912
+ # }
913
+ #
914
+ # @!attribute [rw] logo
915
+ # The logo. This is the link where users can download the logo image.
916
+ # The only image format accepted is `.png`.
917
+ # @return [String]
918
+ #
919
+ # @!attribute [rw] support_email
920
+ # The support email. The company's customer support email address.
921
+ #
922
+ # <note markdown="1"> * In each platform type, the `SupportEmail` and `SupportLink`
923
+ # parameters are mutually exclusive. You can specify one parameter
924
+ # for each platform type, but not both.
925
+ #
926
+ # * The default email is `workspaces-feedback@amazon.com`.
927
+ #
928
+ # </note>
929
+ # @return [String]
930
+ #
931
+ # @!attribute [rw] support_link
932
+ # The support link. The link for the company's customer support page
933
+ # for their WorkSpace.
934
+ #
935
+ # <note markdown="1"> * In each platform type, the `SupportEmail` and `SupportLink`
936
+ # parameters are mutually exclusive. You can specify one parameter
937
+ # for each platform type, but not both.
938
+ #
939
+ # * The default support link is `workspaces-feedback@amazon.com`.
940
+ #
941
+ # </note>
942
+ # @return [String]
943
+ #
944
+ # @!attribute [rw] forgot_password_link
945
+ # The forgotten password link. This is the web address that users can
946
+ # go to if they forget the password for their WorkSpace.
947
+ # @return [String]
948
+ #
949
+ # @!attribute [rw] login_message
950
+ # The login message. Specified as a key value pair, in which the key
951
+ # is a locale and the value is the localized message for that locale.
952
+ # The only key supported is `en_US`.
953
+ # @return [Hash<String,String>]
954
+ #
955
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DefaultImportClientBrandingAttributes AWS API Documentation
956
+ #
957
+ class DefaultImportClientBrandingAttributes < Struct.new(
958
+ :logo,
959
+ :support_email,
960
+ :support_link,
961
+ :forgot_password_link,
962
+ :login_message)
963
+ SENSITIVE = []
964
+ include Aws::Structure
965
+ end
966
+
836
967
  # Describes the default values that are used to create WorkSpaces. For
837
968
  # more information, see [Update Directory Details for Your
838
969
  # WorkSpaces][1].
@@ -905,6 +1036,36 @@ module Aws::WorkSpaces
905
1036
  include Aws::Structure
906
1037
  end
907
1038
 
1039
+ # @note When making an API call, you may pass DeleteClientBrandingRequest
1040
+ # data as a hash:
1041
+ #
1042
+ # {
1043
+ # resource_id: "DirectoryId", # required
1044
+ # platforms: ["DeviceTypeWindows"], # required, accepts DeviceTypeWindows, DeviceTypeOsx, DeviceTypeAndroid, DeviceTypeIos, DeviceTypeLinux, DeviceTypeWeb
1045
+ # }
1046
+ #
1047
+ # @!attribute [rw] resource_id
1048
+ # The directory identifier of the WorkSpace for which you want to
1049
+ # delete client branding.
1050
+ # @return [String]
1051
+ #
1052
+ # @!attribute [rw] platforms
1053
+ # The device type for which you want to delete client branding.
1054
+ # @return [Array<String>]
1055
+ #
1056
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeleteClientBrandingRequest AWS API Documentation
1057
+ #
1058
+ class DeleteClientBrandingRequest < Struct.new(
1059
+ :resource_id,
1060
+ :platforms)
1061
+ SENSITIVE = []
1062
+ include Aws::Structure
1063
+ end
1064
+
1065
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeleteClientBrandingResult AWS API Documentation
1066
+ #
1067
+ class DeleteClientBrandingResult < Aws::EmptyStructure; end
1068
+
908
1069
  # @note When making an API call, you may pass DeleteConnectClientAddInRequest
909
1070
  # data as a hash:
910
1071
  #
@@ -1150,6 +1311,63 @@ module Aws::WorkSpaces
1150
1311
  include Aws::Structure
1151
1312
  end
1152
1313
 
1314
+ # @note When making an API call, you may pass DescribeClientBrandingRequest
1315
+ # data as a hash:
1316
+ #
1317
+ # {
1318
+ # resource_id: "DirectoryId", # required
1319
+ # }
1320
+ #
1321
+ # @!attribute [rw] resource_id
1322
+ # The directory identifier of the WorkSpace for which you want to view
1323
+ # client branding information.
1324
+ # @return [String]
1325
+ #
1326
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeClientBrandingRequest AWS API Documentation
1327
+ #
1328
+ class DescribeClientBrandingRequest < Struct.new(
1329
+ :resource_id)
1330
+ SENSITIVE = []
1331
+ include Aws::Structure
1332
+ end
1333
+
1334
+ # @!attribute [rw] device_type_windows
1335
+ # The branding information for Windows devices.
1336
+ # @return [Types::DefaultClientBrandingAttributes]
1337
+ #
1338
+ # @!attribute [rw] device_type_osx
1339
+ # The branding information for macOS devices.
1340
+ # @return [Types::DefaultClientBrandingAttributes]
1341
+ #
1342
+ # @!attribute [rw] device_type_android
1343
+ # The branding information for Android devices.
1344
+ # @return [Types::DefaultClientBrandingAttributes]
1345
+ #
1346
+ # @!attribute [rw] device_type_ios
1347
+ # The branding information for iOS devices.
1348
+ # @return [Types::IosClientBrandingAttributes]
1349
+ #
1350
+ # @!attribute [rw] device_type_linux
1351
+ # The branding information for Linux devices.
1352
+ # @return [Types::DefaultClientBrandingAttributes]
1353
+ #
1354
+ # @!attribute [rw] device_type_web
1355
+ # The branding information for Web access.
1356
+ # @return [Types::DefaultClientBrandingAttributes]
1357
+ #
1358
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeClientBrandingResult AWS API Documentation
1359
+ #
1360
+ class DescribeClientBrandingResult < Struct.new(
1361
+ :device_type_windows,
1362
+ :device_type_osx,
1363
+ :device_type_android,
1364
+ :device_type_ios,
1365
+ :device_type_linux,
1366
+ :device_type_web)
1367
+ SENSITIVE = []
1368
+ include Aws::Structure
1369
+ end
1370
+
1153
1371
  # @note When making an API call, you may pass DescribeClientPropertiesRequest
1154
1372
  # data as a hash:
1155
1373
  #
@@ -1938,6 +2156,149 @@ module Aws::WorkSpaces
1938
2156
  include Aws::Structure
1939
2157
  end
1940
2158
 
2159
+ # @note When making an API call, you may pass ImportClientBrandingRequest
2160
+ # data as a hash:
2161
+ #
2162
+ # {
2163
+ # resource_id: "DirectoryId", # required
2164
+ # device_type_windows: {
2165
+ # logo: "data",
2166
+ # support_email: "ClientEmail",
2167
+ # support_link: "ClientUrl",
2168
+ # forgot_password_link: "ClientUrl",
2169
+ # login_message: {
2170
+ # "ClientLocale" => "ClientLoginMessage",
2171
+ # },
2172
+ # },
2173
+ # device_type_osx: {
2174
+ # logo: "data",
2175
+ # support_email: "ClientEmail",
2176
+ # support_link: "ClientUrl",
2177
+ # forgot_password_link: "ClientUrl",
2178
+ # login_message: {
2179
+ # "ClientLocale" => "ClientLoginMessage",
2180
+ # },
2181
+ # },
2182
+ # device_type_android: {
2183
+ # logo: "data",
2184
+ # support_email: "ClientEmail",
2185
+ # support_link: "ClientUrl",
2186
+ # forgot_password_link: "ClientUrl",
2187
+ # login_message: {
2188
+ # "ClientLocale" => "ClientLoginMessage",
2189
+ # },
2190
+ # },
2191
+ # device_type_ios: {
2192
+ # logo: "data",
2193
+ # logo_2x: "data",
2194
+ # logo_3x: "data",
2195
+ # support_email: "ClientEmail",
2196
+ # support_link: "ClientUrl",
2197
+ # forgot_password_link: "ClientUrl",
2198
+ # login_message: {
2199
+ # "ClientLocale" => "ClientLoginMessage",
2200
+ # },
2201
+ # },
2202
+ # device_type_linux: {
2203
+ # logo: "data",
2204
+ # support_email: "ClientEmail",
2205
+ # support_link: "ClientUrl",
2206
+ # forgot_password_link: "ClientUrl",
2207
+ # login_message: {
2208
+ # "ClientLocale" => "ClientLoginMessage",
2209
+ # },
2210
+ # },
2211
+ # device_type_web: {
2212
+ # logo: "data",
2213
+ # support_email: "ClientEmail",
2214
+ # support_link: "ClientUrl",
2215
+ # forgot_password_link: "ClientUrl",
2216
+ # login_message: {
2217
+ # "ClientLocale" => "ClientLoginMessage",
2218
+ # },
2219
+ # },
2220
+ # }
2221
+ #
2222
+ # @!attribute [rw] resource_id
2223
+ # The directory identifier of the WorkSpace for which you want to
2224
+ # import client branding.
2225
+ # @return [String]
2226
+ #
2227
+ # @!attribute [rw] device_type_windows
2228
+ # The branding information to import for Windows devices.
2229
+ # @return [Types::DefaultImportClientBrandingAttributes]
2230
+ #
2231
+ # @!attribute [rw] device_type_osx
2232
+ # The branding information to import for macOS devices.
2233
+ # @return [Types::DefaultImportClientBrandingAttributes]
2234
+ #
2235
+ # @!attribute [rw] device_type_android
2236
+ # The branding information to import for Android devices.
2237
+ # @return [Types::DefaultImportClientBrandingAttributes]
2238
+ #
2239
+ # @!attribute [rw] device_type_ios
2240
+ # The branding information to import for iOS devices.
2241
+ # @return [Types::IosImportClientBrandingAttributes]
2242
+ #
2243
+ # @!attribute [rw] device_type_linux
2244
+ # The branding information to import for Linux devices.
2245
+ # @return [Types::DefaultImportClientBrandingAttributes]
2246
+ #
2247
+ # @!attribute [rw] device_type_web
2248
+ # The branding information to import for web access.
2249
+ # @return [Types::DefaultImportClientBrandingAttributes]
2250
+ #
2251
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ImportClientBrandingRequest AWS API Documentation
2252
+ #
2253
+ class ImportClientBrandingRequest < Struct.new(
2254
+ :resource_id,
2255
+ :device_type_windows,
2256
+ :device_type_osx,
2257
+ :device_type_android,
2258
+ :device_type_ios,
2259
+ :device_type_linux,
2260
+ :device_type_web)
2261
+ SENSITIVE = []
2262
+ include Aws::Structure
2263
+ end
2264
+
2265
+ # @!attribute [rw] device_type_windows
2266
+ # The branding information configured for Windows devices.
2267
+ # @return [Types::DefaultClientBrandingAttributes]
2268
+ #
2269
+ # @!attribute [rw] device_type_osx
2270
+ # The branding information configured for macOS devices.
2271
+ # @return [Types::DefaultClientBrandingAttributes]
2272
+ #
2273
+ # @!attribute [rw] device_type_android
2274
+ # The branding information configured for Android devices.
2275
+ # @return [Types::DefaultClientBrandingAttributes]
2276
+ #
2277
+ # @!attribute [rw] device_type_ios
2278
+ # The branding information configured for iOS devices.
2279
+ # @return [Types::IosClientBrandingAttributes]
2280
+ #
2281
+ # @!attribute [rw] device_type_linux
2282
+ # The branding information configured for Linux devices.
2283
+ # @return [Types::DefaultClientBrandingAttributes]
2284
+ #
2285
+ # @!attribute [rw] device_type_web
2286
+ # The branding information configured for web access.
2287
+ # @return [Types::DefaultClientBrandingAttributes]
2288
+ #
2289
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ImportClientBrandingResult AWS API Documentation
2290
+ #
2291
+ class ImportClientBrandingResult < Struct.new(
2292
+ :device_type_windows,
2293
+ :device_type_osx,
2294
+ :device_type_android,
2295
+ :device_type_ios,
2296
+ :device_type_linux,
2297
+ :device_type_web)
2298
+ SENSITIVE = []
2299
+ include Aws::Structure
2300
+ end
2301
+
1941
2302
  # @note When making an API call, you may pass ImportWorkspaceImageRequest
1942
2303
  # data as a hash:
1943
2304
  #
@@ -2051,6 +2412,201 @@ module Aws::WorkSpaces
2051
2412
  include Aws::Structure
2052
2413
  end
2053
2414
 
2415
+ # The client branding attributes for iOS device types. These attributes
2416
+ # are displayed on the iOS client login screen only.
2417
+ #
2418
+ # Client branding attributes are public facing. Ensure you do not
2419
+ # include sensitive information.
2420
+ #
2421
+ # @!attribute [rw] logo_url
2422
+ # The logo. This is the link where users can download the logo image.
2423
+ # This is the standard-resolution display that has a 1:1 pixel density
2424
+ # (or @1x), where one pixel is equal to one point.
2425
+ # @return [String]
2426
+ #
2427
+ # @!attribute [rw] logo_2x_url
2428
+ # The @2x version of the logo. This is the higher resolution display
2429
+ # that offers a scale factor of 2.0 (or @2x).
2430
+ #
2431
+ # <note markdown="1"> For more information about iOS image size and resolution, see [Image
2432
+ # Size and Resolution ][1] in the *Apple Human Interface Guidelines*.
2433
+ #
2434
+ # </note>
2435
+ #
2436
+ #
2437
+ #
2438
+ # [1]: https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/image-size-and-resolution/
2439
+ # @return [String]
2440
+ #
2441
+ # @!attribute [rw] logo_3x_url
2442
+ # The @3x version of the logo. This is the higher resolution display
2443
+ # that offers a scale factor of 3.0 (or @3x).
2444
+ #
2445
+ # <note markdown="1"> For more information about iOS image size and resolution, see [Image
2446
+ # Size and Resolution ][1] in the *Apple Human Interface Guidelines*.
2447
+ #
2448
+ # </note>
2449
+ #
2450
+ #
2451
+ #
2452
+ # [1]: https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/image-size-and-resolution/
2453
+ # @return [String]
2454
+ #
2455
+ # @!attribute [rw] support_email
2456
+ # The support email. The company's customer support email address.
2457
+ #
2458
+ # <note markdown="1"> * In each platform type, the `SupportEmail` and `SupportLink`
2459
+ # parameters are mutually exclusive. You can specify one parameter
2460
+ # for each platform type, but not both.
2461
+ #
2462
+ # * The default email is `workspaces-feedback@amazon.com`.
2463
+ #
2464
+ # </note>
2465
+ # @return [String]
2466
+ #
2467
+ # @!attribute [rw] support_link
2468
+ # The support link. The link for the company's customer support page
2469
+ # for their WorkSpace.
2470
+ #
2471
+ # <note markdown="1"> * In each platform type, the `SupportEmail` and `SupportLink`
2472
+ # parameters are mutually exclusive. You can specify one parameter
2473
+ # for each platform type, but not both.
2474
+ #
2475
+ # * The default support link is `workspaces-feedback@amazon.com`.
2476
+ #
2477
+ # </note>
2478
+ # @return [String]
2479
+ #
2480
+ # @!attribute [rw] forgot_password_link
2481
+ # The forgotten password link. This is the web address that users can
2482
+ # go to if they forget the password for their WorkSpace.
2483
+ # @return [String]
2484
+ #
2485
+ # @!attribute [rw] login_message
2486
+ # The login message. Specified as a key value pair, in which the key
2487
+ # is a locale and the value is the localized message for that locale.
2488
+ # The only key supported is `en_US`.
2489
+ # @return [Hash<String,String>]
2490
+ #
2491
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/IosClientBrandingAttributes AWS API Documentation
2492
+ #
2493
+ class IosClientBrandingAttributes < Struct.new(
2494
+ :logo_url,
2495
+ :logo_2x_url,
2496
+ :logo_3x_url,
2497
+ :support_email,
2498
+ :support_link,
2499
+ :forgot_password_link,
2500
+ :login_message)
2501
+ SENSITIVE = []
2502
+ include Aws::Structure
2503
+ end
2504
+
2505
+ # The client branding attributes to import for iOS device types. These
2506
+ # attributes are displayed on the iOS client login screen.
2507
+ #
2508
+ # Client branding attributes are public facing. Ensure you do not
2509
+ # include sensitive information.
2510
+ #
2511
+ # @note When making an API call, you may pass IosImportClientBrandingAttributes
2512
+ # data as a hash:
2513
+ #
2514
+ # {
2515
+ # logo: "data",
2516
+ # logo_2x: "data",
2517
+ # logo_3x: "data",
2518
+ # support_email: "ClientEmail",
2519
+ # support_link: "ClientUrl",
2520
+ # forgot_password_link: "ClientUrl",
2521
+ # login_message: {
2522
+ # "ClientLocale" => "ClientLoginMessage",
2523
+ # },
2524
+ # }
2525
+ #
2526
+ # @!attribute [rw] logo
2527
+ # The logo. This is the link where users can download the logo image.
2528
+ # This is the standard-resolution display that has a 1:1 pixel density
2529
+ # (or @1x), where one pixel is equal to one point.
2530
+ # @return [String]
2531
+ #
2532
+ # @!attribute [rw] logo_2x
2533
+ # The @2x version of the logo. This is the higher resolution display
2534
+ # that offers a scale factor of 2.0 (or @2x).
2535
+ #
2536
+ # <note markdown="1"> For more information about iOS image size and resolution, see [Image
2537
+ # Size and Resolution ][1] in the *Apple Human Interface Guidelines*.
2538
+ #
2539
+ # </note>
2540
+ #
2541
+ #
2542
+ #
2543
+ # [1]: https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/image-size-and-resolution/
2544
+ # @return [String]
2545
+ #
2546
+ # @!attribute [rw] logo_3x
2547
+ # The @3x version of the logo. This is the higher resolution display
2548
+ # that offers a scale factor of 3.0 (or @3x).
2549
+ #
2550
+ # <note markdown="1"> For more information about iOS image size and resolution, see [Image
2551
+ # Size and Resolution ][1] in the *Apple Human Interface Guidelines*.
2552
+ #
2553
+ # </note>
2554
+ #
2555
+ #
2556
+ #
2557
+ # [1]: https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/image-size-and-resolution/
2558
+ # @return [String]
2559
+ #
2560
+ # @!attribute [rw] support_email
2561
+ # The support email. The company's customer support email address.
2562
+ #
2563
+ # <note markdown="1"> * In each platform type, the `SupportEmail` and `SupportLink`
2564
+ # parameters are mutually exclusive. You can specify one parameter
2565
+ # for each platform type, but not both.
2566
+ #
2567
+ # * The default email is `workspaces-feedback@amazon.com`.
2568
+ #
2569
+ # </note>
2570
+ # @return [String]
2571
+ #
2572
+ # @!attribute [rw] support_link
2573
+ # The support link. The link for the company's customer support page
2574
+ # for their WorkSpace.
2575
+ #
2576
+ # <note markdown="1"> * In each platform type, the `SupportEmail` and `SupportLink`
2577
+ # parameters are mutually exclusive. You can specify one parameter
2578
+ # for each platform type, but not both.
2579
+ #
2580
+ # * The default support link is `workspaces-feedback@amazon.com`.
2581
+ #
2582
+ # </note>
2583
+ # @return [String]
2584
+ #
2585
+ # @!attribute [rw] forgot_password_link
2586
+ # The forgotten password link. This is the web address that users can
2587
+ # go to if they forget the password for their WorkSpace.
2588
+ # @return [String]
2589
+ #
2590
+ # @!attribute [rw] login_message
2591
+ # The login message. Specified as a key value pair, in which the key
2592
+ # is a locale and the value is the localized message for that locale.
2593
+ # The only key supported is `en_US`.
2594
+ # @return [Hash<String,String>]
2595
+ #
2596
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/IosImportClientBrandingAttributes AWS API Documentation
2597
+ #
2598
+ class IosImportClientBrandingAttributes < Struct.new(
2599
+ :logo,
2600
+ :logo_2x,
2601
+ :logo_3x,
2602
+ :support_email,
2603
+ :support_link,
2604
+ :forgot_password_link,
2605
+ :login_message)
2606
+ SENSITIVE = []
2607
+ include Aws::Structure
2608
+ end
2609
+
2054
2610
  # Describes a rule for an IP access control group.
2055
2611
  #
2056
2612
  # @note When making an API call, you may pass IpRuleItem
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-workspaces/customizations'
48
48
  # @!group service
49
49
  module Aws::WorkSpaces
50
50
 
51
- GEM_VERSION = '1.65.0'
51
+ GEM_VERSION = '1.66.0'
52
52
 
53
53
  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.65.0
4
+ version: 1.66.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: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core