aws-sdk-workspacesweb 1.58.0 → 1.59.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: 76f9f759643cdbd7d09a44e21e10e1ec0218d4baaa591074da40d3fb4fcffe43
4
- data.tar.gz: 3720bb966c8bc1befa4cac13fcf8fffb6b85d41dd88c49eebee1b6a33f014b11
3
+ metadata.gz: bc85ca93f1b69b1744ac0a50e1e45b7360763f996f37ad330dd872ee49b65833
4
+ data.tar.gz: a9bfc5c8de345f3e77171883e16712af7477090eec472249b1ae9432a16587c6
5
5
  SHA512:
6
- metadata.gz: d82baed9c0ac3bbd9b22e1fd33861e3000831be89ca6ab1604a52d97fd2db8f6c6e2987630ca9a1661371580811191a1dd46dda0e52856f40b837afead0cb1e1
7
- data.tar.gz: 28ffd1303d402e9bdc78a11b4366e893edab168247a052ad176205ad0ef5117b9db13d8cf740824fe3b871f0e2b600074da388bd75d56bdddaf7b6bbfe161d19
6
+ metadata.gz: fb7d2b7bf1d8065efc63e70569c181f20d5941f3c34a16b0f3b6dafb979e9a10f048bc2cbb8c58b0007346f60b2018ae65642ea994046d166a005b3322986cc3
7
+ data.tar.gz: 2ecb0762a157ba6bdf82406a5ad1986a4e62f308aa46ec402fbb34814b770242134782b24f7b57c26c613586451684dadc41b1cea68afd017c49c385810de01f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.0 (2026-02-17)
5
+ ------------------
6
+
7
+ * Feature - Adds support for branding customization without requiring a custom wallpaper.
8
+
4
9
  1.58.0 (2026-02-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.59.0
@@ -1635,8 +1635,8 @@ module Aws::WorkSpacesWeb
1635
1635
  # @option params [Types::BrandingConfigurationCreateInput] :branding_configuration_input
1636
1636
  # The branding configuration input that customizes the appearance of the
1637
1637
  # web portal for end users. This includes a custom logo, favicon,
1638
- # wallpaper, localized strings, color theme, and an optional terms of
1639
- # service.
1638
+ # localized strings, color theme, and optionally a wallpaper and terms
1639
+ # of service.
1640
1640
  #
1641
1641
  # @option params [String] :web_authn_allowed
1642
1642
  # Specifies whether the user can use WebAuthn redirection for
@@ -1695,7 +1695,7 @@ module Aws::WorkSpacesWeb
1695
1695
  # blob: "data",
1696
1696
  # s3_uri: "S3Uri",
1697
1697
  # },
1698
- # wallpaper: { # required
1698
+ # wallpaper: {
1699
1699
  # blob: "data",
1700
1700
  # s3_uri: "S3Uri",
1701
1701
  # },
@@ -4368,8 +4368,8 @@ module Aws::WorkSpacesWeb
4368
4368
  # @option params [Types::BrandingConfigurationUpdateInput] :branding_configuration_input
4369
4369
  # The branding configuration that customizes the appearance of the web
4370
4370
  # portal for end users. When updating user settings without an existing
4371
- # branding configuration, all fields (logo, favicon, wallpaper,
4372
- # localized strings, and color theme) are required except for terms of
4371
+ # branding configuration, all fields (logo, favicon, localized strings,
4372
+ # and color theme) are required except for wallpaper and terms of
4373
4373
  # service. When updating user settings with an existing branding
4374
4374
  # configuration, all fields are optional.
4375
4375
  #
@@ -4525,7 +4525,7 @@ module Aws::WorkSpacesWeb
4525
4525
  tracer: tracer
4526
4526
  )
4527
4527
  context[:gem_name] = 'aws-sdk-workspacesweb'
4528
- context[:gem_version] = '1.58.0'
4528
+ context[:gem_version] = '1.59.0'
4529
4529
  Seahorse::Client::Request.new(handlers, context)
4530
4530
  end
4531
4531
 
@@ -414,7 +414,7 @@ module Aws::WorkSpacesWeb
414
414
  BlockedCategories.member = Shapes::ShapeRef.new(shape: Category)
415
415
 
416
416
  BrandingConfiguration.add_member(:logo, Shapes::ShapeRef.new(shape: ImageMetadata, required: true, location_name: "logo"))
417
- BrandingConfiguration.add_member(:wallpaper, Shapes::ShapeRef.new(shape: ImageMetadata, required: true, location_name: "wallpaper"))
417
+ BrandingConfiguration.add_member(:wallpaper, Shapes::ShapeRef.new(shape: ImageMetadata, location_name: "wallpaper"))
418
418
  BrandingConfiguration.add_member(:favicon, Shapes::ShapeRef.new(shape: ImageMetadata, required: true, location_name: "favicon"))
419
419
  BrandingConfiguration.add_member(:localized_strings, Shapes::ShapeRef.new(shape: LocalizedBrandingStringMap, required: true, location_name: "localizedStrings"))
420
420
  BrandingConfiguration.add_member(:color_theme, Shapes::ShapeRef.new(shape: ColorTheme, required: true, location_name: "colorTheme"))
@@ -422,7 +422,7 @@ module Aws::WorkSpacesWeb
422
422
  BrandingConfiguration.struct_class = Types::BrandingConfiguration
423
423
 
424
424
  BrandingConfigurationCreateInput.add_member(:logo, Shapes::ShapeRef.new(shape: IconImageInput, required: true, location_name: "logo"))
425
- BrandingConfigurationCreateInput.add_member(:wallpaper, Shapes::ShapeRef.new(shape: WallpaperImageInput, required: true, location_name: "wallpaper"))
425
+ BrandingConfigurationCreateInput.add_member(:wallpaper, Shapes::ShapeRef.new(shape: WallpaperImageInput, location_name: "wallpaper"))
426
426
  BrandingConfigurationCreateInput.add_member(:favicon, Shapes::ShapeRef.new(shape: IconImageInput, required: true, location_name: "favicon"))
427
427
  BrandingConfigurationCreateInput.add_member(:localized_strings, Shapes::ShapeRef.new(shape: LocalizedBrandingStringMap, required: true, location_name: "localizedStrings"))
428
428
  BrandingConfigurationCreateInput.add_member(:color_theme, Shapes::ShapeRef.new(shape: ColorTheme, required: true, location_name: "colorTheme"))
@@ -351,7 +351,8 @@ module Aws::WorkSpacesWeb
351
351
  # @!attribute [rw] wallpaper
352
352
  # The wallpaper image for the portal. Provide either a binary image
353
353
  # file or an S3 URI pointing to the image file. Maximum 5 MB in JPEG
354
- # or PNG format.
354
+ # or PNG format. If not provided, a default wallpaper will be used as
355
+ # the background image.
355
356
  # @return [Types::WallpaperImageInput]
356
357
  #
357
358
  # @!attribute [rw] favicon
@@ -1358,8 +1359,8 @@ module Aws::WorkSpacesWeb
1358
1359
  # @!attribute [rw] branding_configuration_input
1359
1360
  # The branding configuration input that customizes the appearance of
1360
1361
  # the web portal for end users. This includes a custom logo, favicon,
1361
- # wallpaper, localized strings, color theme, and an optional terms of
1362
- # service.
1362
+ # localized strings, color theme, and optionally a wallpaper and terms
1363
+ # of service.
1363
1364
  # @return [Types::BrandingConfigurationCreateInput]
1364
1365
  #
1365
1366
  # @!attribute [rw] web_authn_allowed
@@ -4550,9 +4551,9 @@ module Aws::WorkSpacesWeb
4550
4551
  # The branding configuration that customizes the appearance of the web
4551
4552
  # portal for end users. When updating user settings without an
4552
4553
  # existing branding configuration, all fields (logo, favicon,
4553
- # wallpaper, localized strings, and color theme) are required except
4554
- # for terms of service. When updating user settings with an existing
4555
- # branding configuration, all fields are optional.
4554
+ # localized strings, and color theme) are required except for
4555
+ # wallpaper and terms of service. When updating user settings with an
4556
+ # existing branding configuration, all fields are optional.
4556
4557
  # @return [Types::BrandingConfigurationUpdateInput]
4557
4558
  #
4558
4559
  # @!attribute [rw] web_authn_allowed
@@ -55,7 +55,7 @@ module Aws::WorkSpacesWeb
55
55
  autoload :EndpointProvider, 'aws-sdk-workspacesweb/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-workspacesweb/endpoints'
57
57
 
58
- GEM_VERSION = '1.58.0'
58
+ GEM_VERSION = '1.59.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -450,7 +450,7 @@ module Aws
450
450
  wallpaper: {
451
451
  blob: ::String?,
452
452
  s3_uri: ::String?
453
- },
453
+ }?,
454
454
  favicon: {
455
455
  blob: ::String?,
456
456
  s3_uri: ::String?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspacesweb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.58.0
4
+ version: 1.59.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services