aws-sdk-workspacesweb 1.17.0 → 1.19.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-workspacesweb/client.rb +87 -29
- data/lib/aws-sdk-workspacesweb/client_api.rb +19 -0
- data/lib/aws-sdk-workspacesweb/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-workspacesweb/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-workspacesweb/types.rb +144 -43
- data/lib/aws-sdk-workspacesweb.rb +1 -1
- data/sig/client.rbs +833 -0
- data/sig/errors.rbs +55 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +936 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68487e775d58b4c89492626e3f1eac2a9fcd33820b9f702a86f43f4d781fb0d2
|
4
|
+
data.tar.gz: c8e146f7a74300e50bda6ab30b6ed73ffcbfd3ab1a4c36525e09aca8dc51cc50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90b9dde2d9d1b64f9909df521ffce489cacd8eb4727b1c8300f2593b5b2a4f2d121b948a0cb1bc01ce4f3dd6d5fafb8290305dcd92e5dd1bc9d309d958227750
|
7
|
+
data.tar.gz: 67f7b0699cc6c1f04494181ea141539b469647d379f8f6c5d256a2f5a4f15d6b623a33a5d96085a17307fe04c034b887d50d2c868f3297ad81309cc72282446e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.19.0 (2024-04-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added InstanceType and MaxConcurrentSessions parameters on CreatePortal and UpdatePortal Operations as well as the ability to read Customer Managed Key & Additional Encryption Context parameters on supported resources (Portal, BrowserSettings, UserSettings, IPAccessSettings)
|
8
|
+
|
9
|
+
1.18.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.17.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.19.0
|
@@ -612,7 +612,7 @@ module Aws::WorkSpacesWeb
|
|
612
612
|
# client token returns the result from the original successful request.
|
613
613
|
#
|
614
614
|
# If you do not specify a client token, one is automatically generated
|
615
|
-
# by the
|
615
|
+
# by the Amazon Web Services SDK.
|
616
616
|
#
|
617
617
|
# **A suitable default value is auto-generated.** You should normally
|
618
618
|
# not need to pass this option.**
|
@@ -669,7 +669,7 @@ module Aws::WorkSpacesWeb
|
|
669
669
|
# client token returns the result from the original successful request.
|
670
670
|
#
|
671
671
|
# If you do not specify a client token, one is automatically generated
|
672
|
-
# by the
|
672
|
+
# by the Amazon Web Services SDK.
|
673
673
|
#
|
674
674
|
# **A suitable default value is auto-generated.** You should normally
|
675
675
|
# not need to pass this option.**
|
@@ -738,6 +738,13 @@ module Aws::WorkSpacesWeb
|
|
738
738
|
#
|
739
739
|
# * `IDPSignout` (boolean) *optional*
|
740
740
|
#
|
741
|
+
# * `IDPInit` (boolean) *optional*
|
742
|
+
#
|
743
|
+
# * `RequestSigningAlgorithm` (string) *optional* - Only accepts
|
744
|
+
# `rsa-sha256`
|
745
|
+
#
|
746
|
+
# * `EncryptedResponses` (boolean) *optional*
|
747
|
+
#
|
741
748
|
# @option params [required, String] :identity_provider_name
|
742
749
|
# The identity provider name.
|
743
750
|
#
|
@@ -790,7 +797,7 @@ module Aws::WorkSpacesWeb
|
|
790
797
|
# client token returns the result from the original successful request.
|
791
798
|
#
|
792
799
|
# If you do not specify a client token, one is automatically generated
|
793
|
-
# by the
|
800
|
+
# by the Amazon Web Services SDK.
|
794
801
|
#
|
795
802
|
# **A suitable default value is auto-generated.** You should normally
|
796
803
|
# not need to pass this option.**
|
@@ -864,7 +871,7 @@ module Aws::WorkSpacesWeb
|
|
864
871
|
# client token returns the result from the original successful request.
|
865
872
|
#
|
866
873
|
# If you do not specify a client token, one is automatically generated
|
867
|
-
# by the
|
874
|
+
# by the Amazon Web Services SDK.
|
868
875
|
#
|
869
876
|
# **A suitable default value is auto-generated.** You should normally
|
870
877
|
# not need to pass this option.**
|
@@ -932,12 +939,11 @@ module Aws::WorkSpacesWeb
|
|
932
939
|
# access to your web portal is controlled through your identity
|
933
940
|
# provider.
|
934
941
|
#
|
935
|
-
# `
|
936
|
-
# Identity Center (successor to
|
937
|
-
#
|
938
|
-
#
|
939
|
-
#
|
940
|
-
# Identity Center.
|
942
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
943
|
+
# Identity Center (successor to Single Sign-On). Identity sources
|
944
|
+
# (including external identity provider integration), plus user and
|
945
|
+
# group access to your web portal, can be configured in the IAM Identity
|
946
|
+
# Center.
|
941
947
|
#
|
942
948
|
# @option params [String] :client_token
|
943
949
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -947,7 +953,7 @@ module Aws::WorkSpacesWeb
|
|
947
953
|
# client token returns the result from the original successful request.
|
948
954
|
#
|
949
955
|
# If you do not specify a client token, one is automatically generated
|
950
|
-
# by the
|
956
|
+
# by the Amazon Web Services SDK.
|
951
957
|
#
|
952
958
|
# **A suitable default value is auto-generated.** You should normally
|
953
959
|
# not need to pass this option.**
|
@@ -959,6 +965,12 @@ module Aws::WorkSpacesWeb
|
|
959
965
|
# The name of the web portal. This is not visible to users who log into
|
960
966
|
# the web portal.
|
961
967
|
#
|
968
|
+
# @option params [String] :instance_type
|
969
|
+
# The type and resources of the underlying instance.
|
970
|
+
#
|
971
|
+
# @option params [Integer] :max_concurrent_sessions
|
972
|
+
# The maximum number of concurrent sessions for the portal.
|
973
|
+
#
|
962
974
|
# @option params [Array<Types::Tag>] :tags
|
963
975
|
# The tags to add to the web portal. A tag is a key-value pair.
|
964
976
|
#
|
@@ -977,6 +989,8 @@ module Aws::WorkSpacesWeb
|
|
977
989
|
# client_token: "ClientToken",
|
978
990
|
# customer_managed_key: "keyArn",
|
979
991
|
# display_name: "DisplayName",
|
992
|
+
# instance_type: "standard.regular", # accepts standard.regular, standard.large, standard.xlarge
|
993
|
+
# max_concurrent_sessions: 1,
|
980
994
|
# tags: [
|
981
995
|
# {
|
982
996
|
# key: "TagKey", # required
|
@@ -1018,7 +1032,7 @@ module Aws::WorkSpacesWeb
|
|
1018
1032
|
# client token returns the result from the original successful request.
|
1019
1033
|
#
|
1020
1034
|
# If you do not specify a client token, one is automatically generated
|
1021
|
-
# by the
|
1035
|
+
# by the Amazon Web Services SDK.
|
1022
1036
|
#
|
1023
1037
|
# **A suitable default value is auto-generated.** You should normally
|
1024
1038
|
# not need to pass this option.**
|
@@ -1067,7 +1081,7 @@ module Aws::WorkSpacesWeb
|
|
1067
1081
|
# client token returns the result from the original successful request.
|
1068
1082
|
#
|
1069
1083
|
# If you do not specify a client token, one is automatically generated
|
1070
|
-
# by the
|
1084
|
+
# by the Amazon Web Services SDK.
|
1071
1085
|
#
|
1072
1086
|
# **A suitable default value is auto-generated.** You should normally
|
1073
1087
|
# not need to pass this option.**
|
@@ -1125,7 +1139,7 @@ module Aws::WorkSpacesWeb
|
|
1125
1139
|
# client token returns the result from the original successful request.
|
1126
1140
|
#
|
1127
1141
|
# If you do not specify a client token, one is automatically generated
|
1128
|
-
# by the
|
1142
|
+
# by the Amazon Web Services SDK.
|
1129
1143
|
#
|
1130
1144
|
# **A suitable default value is auto-generated.** You should normally
|
1131
1145
|
# not need to pass this option.**
|
@@ -1551,10 +1565,13 @@ module Aws::WorkSpacesWeb
|
|
1551
1565
|
#
|
1552
1566
|
# @example Response structure
|
1553
1567
|
#
|
1568
|
+
# resp.browser_settings.additional_encryption_context #=> Hash
|
1569
|
+
# resp.browser_settings.additional_encryption_context["StringType"] #=> String
|
1554
1570
|
# resp.browser_settings.associated_portal_arns #=> Array
|
1555
1571
|
# resp.browser_settings.associated_portal_arns[0] #=> String
|
1556
1572
|
# resp.browser_settings.browser_policy #=> String
|
1557
1573
|
# resp.browser_settings.browser_settings_arn #=> String
|
1574
|
+
# resp.browser_settings.customer_managed_key #=> String
|
1558
1575
|
#
|
1559
1576
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetBrowserSettings AWS API Documentation
|
1560
1577
|
#
|
@@ -1614,9 +1631,12 @@ module Aws::WorkSpacesWeb
|
|
1614
1631
|
#
|
1615
1632
|
# @example Response structure
|
1616
1633
|
#
|
1634
|
+
# resp.ip_access_settings.additional_encryption_context #=> Hash
|
1635
|
+
# resp.ip_access_settings.additional_encryption_context["StringType"] #=> String
|
1617
1636
|
# resp.ip_access_settings.associated_portal_arns #=> Array
|
1618
1637
|
# resp.ip_access_settings.associated_portal_arns[0] #=> String
|
1619
1638
|
# resp.ip_access_settings.creation_date #=> Time
|
1639
|
+
# resp.ip_access_settings.customer_managed_key #=> String
|
1620
1640
|
# resp.ip_access_settings.description #=> String
|
1621
1641
|
# resp.ip_access_settings.display_name #=> String
|
1622
1642
|
# resp.ip_access_settings.ip_access_settings_arn #=> String
|
@@ -1685,12 +1705,17 @@ module Aws::WorkSpacesWeb
|
|
1685
1705
|
#
|
1686
1706
|
# @example Response structure
|
1687
1707
|
#
|
1708
|
+
# resp.portal.additional_encryption_context #=> Hash
|
1709
|
+
# resp.portal.additional_encryption_context["StringType"] #=> String
|
1688
1710
|
# resp.portal.authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
|
1689
1711
|
# resp.portal.browser_settings_arn #=> String
|
1690
1712
|
# resp.portal.browser_type #=> String, one of "Chrome"
|
1691
1713
|
# resp.portal.creation_date #=> Time
|
1714
|
+
# resp.portal.customer_managed_key #=> String
|
1692
1715
|
# resp.portal.display_name #=> String
|
1716
|
+
# resp.portal.instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
|
1693
1717
|
# resp.portal.ip_access_settings_arn #=> String
|
1718
|
+
# resp.portal.max_concurrent_sessions #=> Integer
|
1694
1719
|
# resp.portal.network_settings_arn #=> String
|
1695
1720
|
# resp.portal.portal_arn #=> String
|
1696
1721
|
# resp.portal.portal_endpoint #=> String
|
@@ -1857,6 +1882,8 @@ module Aws::WorkSpacesWeb
|
|
1857
1882
|
#
|
1858
1883
|
# @example Response structure
|
1859
1884
|
#
|
1885
|
+
# resp.user_settings.additional_encryption_context #=> Hash
|
1886
|
+
# resp.user_settings.additional_encryption_context["StringType"] #=> String
|
1860
1887
|
# resp.user_settings.associated_portal_arns #=> Array
|
1861
1888
|
# resp.user_settings.associated_portal_arns[0] #=> String
|
1862
1889
|
# resp.user_settings.cookie_synchronization_configuration.allowlist #=> Array
|
@@ -1868,6 +1895,7 @@ module Aws::WorkSpacesWeb
|
|
1868
1895
|
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].name #=> String
|
1869
1896
|
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].path #=> String
|
1870
1897
|
# resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
|
1898
|
+
# resp.user_settings.customer_managed_key #=> String
|
1871
1899
|
# resp.user_settings.disconnect_timeout_in_minutes #=> Integer
|
1872
1900
|
# resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
|
1873
1901
|
# resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
|
@@ -2079,7 +2107,9 @@ module Aws::WorkSpacesWeb
|
|
2079
2107
|
# resp.portals[0].browser_type #=> String, one of "Chrome"
|
2080
2108
|
# resp.portals[0].creation_date #=> Time
|
2081
2109
|
# resp.portals[0].display_name #=> String
|
2110
|
+
# resp.portals[0].instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
|
2082
2111
|
# resp.portals[0].ip_access_settings_arn #=> String
|
2112
|
+
# resp.portals[0].max_concurrent_sessions #=> Integer
|
2083
2113
|
# resp.portals[0].network_settings_arn #=> String
|
2084
2114
|
# resp.portals[0].portal_arn #=> String
|
2085
2115
|
# resp.portals[0].portal_endpoint #=> String
|
@@ -2316,7 +2346,7 @@ module Aws::WorkSpacesWeb
|
|
2316
2346
|
# client token returns the result from the original successful request.
|
2317
2347
|
#
|
2318
2348
|
# If you do not specify a client token, one is automatically generated
|
2319
|
-
# by the
|
2349
|
+
# by the Amazon Web Services SDK.
|
2320
2350
|
#
|
2321
2351
|
# **A suitable default value is auto-generated.** You should normally
|
2322
2352
|
# not need to pass this option.**
|
@@ -2394,7 +2424,7 @@ module Aws::WorkSpacesWeb
|
|
2394
2424
|
# client token return the result from the original successful request.
|
2395
2425
|
#
|
2396
2426
|
# If you do not specify a client token, one is automatically generated
|
2397
|
-
# by the
|
2427
|
+
# by the Amazon Web Services SDK.
|
2398
2428
|
#
|
2399
2429
|
# **A suitable default value is auto-generated.** You should normally
|
2400
2430
|
# not need to pass this option.**
|
@@ -2413,10 +2443,13 @@ module Aws::WorkSpacesWeb
|
|
2413
2443
|
#
|
2414
2444
|
# @example Response structure
|
2415
2445
|
#
|
2446
|
+
# resp.browser_settings.additional_encryption_context #=> Hash
|
2447
|
+
# resp.browser_settings.additional_encryption_context["StringType"] #=> String
|
2416
2448
|
# resp.browser_settings.associated_portal_arns #=> Array
|
2417
2449
|
# resp.browser_settings.associated_portal_arns[0] #=> String
|
2418
2450
|
# resp.browser_settings.browser_policy #=> String
|
2419
2451
|
# resp.browser_settings.browser_settings_arn #=> String
|
2452
|
+
# resp.browser_settings.customer_managed_key #=> String
|
2420
2453
|
#
|
2421
2454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateBrowserSettings AWS API Documentation
|
2422
2455
|
#
|
@@ -2437,7 +2470,7 @@ module Aws::WorkSpacesWeb
|
|
2437
2470
|
# client token return the result from the original successful request.
|
2438
2471
|
#
|
2439
2472
|
# If you do not specify a client token, one is automatically generated
|
2440
|
-
# by the
|
2473
|
+
# by the Amazon Web Services SDK.
|
2441
2474
|
#
|
2442
2475
|
# **A suitable default value is auto-generated.** You should normally
|
2443
2476
|
# not need to pass this option.**
|
@@ -2509,6 +2542,13 @@ module Aws::WorkSpacesWeb
|
|
2509
2542
|
#
|
2510
2543
|
# * `IDPSignout` (boolean) *optional*
|
2511
2544
|
#
|
2545
|
+
# * `IDPInit` (boolean) *optional*
|
2546
|
+
#
|
2547
|
+
# * `RequestSigningAlgorithm` (string) *optional* - Only accepts
|
2548
|
+
# `rsa-sha256`
|
2549
|
+
#
|
2550
|
+
# * `EncryptedResponses` (boolean) *optional*
|
2551
|
+
#
|
2512
2552
|
# @option params [String] :identity_provider_name
|
2513
2553
|
# The name of the identity provider.
|
2514
2554
|
#
|
@@ -2558,7 +2598,7 @@ module Aws::WorkSpacesWeb
|
|
2558
2598
|
# client token return the result from the original successful request.
|
2559
2599
|
#
|
2560
2600
|
# If you do not specify a client token, one is automatically generated
|
2561
|
-
# by the
|
2601
|
+
# by the Amazon Web Services SDK.
|
2562
2602
|
#
|
2563
2603
|
# **A suitable default value is auto-generated.** You should normally
|
2564
2604
|
# not need to pass this option.**
|
@@ -2596,9 +2636,12 @@ module Aws::WorkSpacesWeb
|
|
2596
2636
|
#
|
2597
2637
|
# @example Response structure
|
2598
2638
|
#
|
2639
|
+
# resp.ip_access_settings.additional_encryption_context #=> Hash
|
2640
|
+
# resp.ip_access_settings.additional_encryption_context["StringType"] #=> String
|
2599
2641
|
# resp.ip_access_settings.associated_portal_arns #=> Array
|
2600
2642
|
# resp.ip_access_settings.associated_portal_arns[0] #=> String
|
2601
2643
|
# resp.ip_access_settings.creation_date #=> Time
|
2644
|
+
# resp.ip_access_settings.customer_managed_key #=> String
|
2602
2645
|
# resp.ip_access_settings.description #=> String
|
2603
2646
|
# resp.ip_access_settings.display_name #=> String
|
2604
2647
|
# resp.ip_access_settings.ip_access_settings_arn #=> String
|
@@ -2625,7 +2668,7 @@ module Aws::WorkSpacesWeb
|
|
2625
2668
|
# client token return the result from the original successful request.
|
2626
2669
|
#
|
2627
2670
|
# If you do not specify a client token, one is automatically generated
|
2628
|
-
# by the
|
2671
|
+
# by the Amazon Web Services SDK.
|
2629
2672
|
#
|
2630
2673
|
# **A suitable default value is auto-generated.** You should normally
|
2631
2674
|
# not need to pass this option.**
|
@@ -2691,17 +2734,22 @@ module Aws::WorkSpacesWeb
|
|
2691
2734
|
# access to your web portal is controlled through your identity
|
2692
2735
|
# provider.
|
2693
2736
|
#
|
2694
|
-
# `
|
2695
|
-
# Identity Center (successor to
|
2696
|
-
#
|
2697
|
-
#
|
2698
|
-
#
|
2699
|
-
# Identity Center.
|
2737
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
2738
|
+
# Identity Center (successor to Single Sign-On). Identity sources
|
2739
|
+
# (including external identity provider integration), plus user and
|
2740
|
+
# group access to your web portal, can be configured in the IAM Identity
|
2741
|
+
# Center.
|
2700
2742
|
#
|
2701
2743
|
# @option params [String] :display_name
|
2702
2744
|
# The name of the web portal. This is not visible to users who log into
|
2703
2745
|
# the web portal.
|
2704
2746
|
#
|
2747
|
+
# @option params [String] :instance_type
|
2748
|
+
# The type and resources of the underlying instance.
|
2749
|
+
#
|
2750
|
+
# @option params [Integer] :max_concurrent_sessions
|
2751
|
+
# The maximum number of concurrent sessions for the portal.
|
2752
|
+
#
|
2705
2753
|
# @option params [required, String] :portal_arn
|
2706
2754
|
# The ARN of the web portal.
|
2707
2755
|
#
|
@@ -2714,17 +2762,24 @@ module Aws::WorkSpacesWeb
|
|
2714
2762
|
# resp = client.update_portal({
|
2715
2763
|
# authentication_type: "Standard", # accepts Standard, IAM_Identity_Center
|
2716
2764
|
# display_name: "DisplayName",
|
2765
|
+
# instance_type: "standard.regular", # accepts standard.regular, standard.large, standard.xlarge
|
2766
|
+
# max_concurrent_sessions: 1,
|
2717
2767
|
# portal_arn: "ARN", # required
|
2718
2768
|
# })
|
2719
2769
|
#
|
2720
2770
|
# @example Response structure
|
2721
2771
|
#
|
2772
|
+
# resp.portal.additional_encryption_context #=> Hash
|
2773
|
+
# resp.portal.additional_encryption_context["StringType"] #=> String
|
2722
2774
|
# resp.portal.authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
|
2723
2775
|
# resp.portal.browser_settings_arn #=> String
|
2724
2776
|
# resp.portal.browser_type #=> String, one of "Chrome"
|
2725
2777
|
# resp.portal.creation_date #=> Time
|
2778
|
+
# resp.portal.customer_managed_key #=> String
|
2726
2779
|
# resp.portal.display_name #=> String
|
2780
|
+
# resp.portal.instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
|
2727
2781
|
# resp.portal.ip_access_settings_arn #=> String
|
2782
|
+
# resp.portal.max_concurrent_sessions #=> Integer
|
2728
2783
|
# resp.portal.network_settings_arn #=> String
|
2729
2784
|
# resp.portal.portal_arn #=> String
|
2730
2785
|
# resp.portal.portal_endpoint #=> String
|
@@ -2760,7 +2815,7 @@ module Aws::WorkSpacesWeb
|
|
2760
2815
|
# client token return the result from the original successful request.
|
2761
2816
|
#
|
2762
2817
|
# If you do not specify a client token, one is automatically generated
|
2763
|
-
# by the
|
2818
|
+
# by the Amazon Web Services SDK.
|
2764
2819
|
#
|
2765
2820
|
# **A suitable default value is auto-generated.** You should normally
|
2766
2821
|
# not need to pass this option.**
|
@@ -2804,7 +2859,7 @@ module Aws::WorkSpacesWeb
|
|
2804
2859
|
# client token return the result from the original successful request.
|
2805
2860
|
#
|
2806
2861
|
# If you do not specify a client token, one is automatically generated
|
2807
|
-
# by the
|
2862
|
+
# by the Amazon Web Services SDK.
|
2808
2863
|
#
|
2809
2864
|
# **A suitable default value is auto-generated.** You should normally
|
2810
2865
|
# not need to pass this option.**
|
@@ -2853,7 +2908,7 @@ module Aws::WorkSpacesWeb
|
|
2853
2908
|
# client token return the result from the original successful request.
|
2854
2909
|
#
|
2855
2910
|
# If you do not specify a client token, one is automatically generated
|
2856
|
-
# by the
|
2911
|
+
# by the Amazon Web Services SDK.
|
2857
2912
|
#
|
2858
2913
|
# **A suitable default value is auto-generated.** You should normally
|
2859
2914
|
# not need to pass this option.**
|
@@ -2932,6 +2987,8 @@ module Aws::WorkSpacesWeb
|
|
2932
2987
|
#
|
2933
2988
|
# @example Response structure
|
2934
2989
|
#
|
2990
|
+
# resp.user_settings.additional_encryption_context #=> Hash
|
2991
|
+
# resp.user_settings.additional_encryption_context["StringType"] #=> String
|
2935
2992
|
# resp.user_settings.associated_portal_arns #=> Array
|
2936
2993
|
# resp.user_settings.associated_portal_arns[0] #=> String
|
2937
2994
|
# resp.user_settings.cookie_synchronization_configuration.allowlist #=> Array
|
@@ -2943,6 +3000,7 @@ module Aws::WorkSpacesWeb
|
|
2943
3000
|
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].name #=> String
|
2944
3001
|
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].path #=> String
|
2945
3002
|
# resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
|
3003
|
+
# resp.user_settings.customer_managed_key #=> String
|
2946
3004
|
# resp.user_settings.disconnect_timeout_in_minutes #=> Integer
|
2947
3005
|
# resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
|
2948
3006
|
# resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
|
@@ -2973,7 +3031,7 @@ module Aws::WorkSpacesWeb
|
|
2973
3031
|
params: params,
|
2974
3032
|
config: config)
|
2975
3033
|
context[:gem_name] = 'aws-sdk-workspacesweb'
|
2976
|
-
context[:gem_version] = '1.
|
3034
|
+
context[:gem_version] = '1.19.0'
|
2977
3035
|
Seahorse::Client::Request.new(handlers, context)
|
2978
3036
|
end
|
2979
3037
|
|
@@ -128,6 +128,7 @@ module Aws::WorkSpacesWeb
|
|
128
128
|
IdentityProviderSummary = Shapes::StructureShape.new(name: 'IdentityProviderSummary')
|
129
129
|
IdentityProviderType = Shapes::StringShape.new(name: 'IdentityProviderType')
|
130
130
|
IdleDisconnectTimeoutInMinutes = Shapes::IntegerShape.new(name: 'IdleDisconnectTimeoutInMinutes')
|
131
|
+
InstanceType = Shapes::StringShape.new(name: 'InstanceType')
|
131
132
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
132
133
|
IpAccessSettings = Shapes::StructureShape.new(name: 'IpAccessSettings')
|
133
134
|
IpAccessSettingsList = Shapes::ListShape.new(name: 'IpAccessSettingsList')
|
@@ -156,6 +157,7 @@ module Aws::WorkSpacesWeb
|
|
156
157
|
ListUserAccessLoggingSettingsResponse = Shapes::StructureShape.new(name: 'ListUserAccessLoggingSettingsResponse')
|
157
158
|
ListUserSettingsRequest = Shapes::StructureShape.new(name: 'ListUserSettingsRequest')
|
158
159
|
ListUserSettingsResponse = Shapes::StructureShape.new(name: 'ListUserSettingsResponse')
|
160
|
+
MaxConcurrentSessions = Shapes::IntegerShape.new(name: 'MaxConcurrentSessions')
|
159
161
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
160
162
|
NetworkSettings = Shapes::StructureShape.new(name: 'NetworkSettings')
|
161
163
|
NetworkSettingsList = Shapes::ListShape.new(name: 'NetworkSettingsList')
|
@@ -280,9 +282,11 @@ module Aws::WorkSpacesWeb
|
|
280
282
|
AssociateUserSettingsResponse.add_member(:user_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "userSettingsArn"))
|
281
283
|
AssociateUserSettingsResponse.struct_class = Types::AssociateUserSettingsResponse
|
282
284
|
|
285
|
+
BrowserSettings.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
283
286
|
BrowserSettings.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
|
284
287
|
BrowserSettings.add_member(:browser_policy, Shapes::ShapeRef.new(shape: BrowserPolicy, location_name: "browserPolicy"))
|
285
288
|
BrowserSettings.add_member(:browser_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "browserSettingsArn"))
|
289
|
+
BrowserSettings.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
286
290
|
BrowserSettings.struct_class = Types::BrowserSettings
|
287
291
|
|
288
292
|
BrowserSettingsList.member = Shapes::ShapeRef.new(shape: BrowserSettingsSummary)
|
@@ -374,6 +378,8 @@ module Aws::WorkSpacesWeb
|
|
374
378
|
CreatePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
375
379
|
CreatePortalRequest.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
376
380
|
CreatePortalRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
381
|
+
CreatePortalRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
382
|
+
CreatePortalRequest.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: MaxConcurrentSessions, location_name: "maxConcurrentSessions"))
|
377
383
|
CreatePortalRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
378
384
|
CreatePortalRequest.struct_class = Types::CreatePortalRequest
|
379
385
|
|
@@ -570,8 +576,10 @@ module Aws::WorkSpacesWeb
|
|
570
576
|
InternalServerException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: RetryAfterSeconds, location: "header", location_name: "Retry-After"))
|
571
577
|
InternalServerException.struct_class = Types::InternalServerException
|
572
578
|
|
579
|
+
IpAccessSettings.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
573
580
|
IpAccessSettings.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
|
574
581
|
IpAccessSettings.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDate"))
|
582
|
+
IpAccessSettings.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
575
583
|
IpAccessSettings.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
576
584
|
IpAccessSettings.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
577
585
|
IpAccessSettings.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "ipAccessSettingsArn"))
|
@@ -686,12 +694,16 @@ module Aws::WorkSpacesWeb
|
|
686
694
|
NetworkSettingsSummary.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
687
695
|
NetworkSettingsSummary.struct_class = Types::NetworkSettingsSummary
|
688
696
|
|
697
|
+
Portal.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
689
698
|
Portal.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
|
690
699
|
Portal.add_member(:browser_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "browserSettingsArn"))
|
691
700
|
Portal.add_member(:browser_type, Shapes::ShapeRef.new(shape: BrowserType, location_name: "browserType"))
|
692
701
|
Portal.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDate"))
|
702
|
+
Portal.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
693
703
|
Portal.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
704
|
+
Portal.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
694
705
|
Portal.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ipAccessSettingsArn"))
|
706
|
+
Portal.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: MaxConcurrentSessions, location_name: "maxConcurrentSessions"))
|
695
707
|
Portal.add_member(:network_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "networkSettingsArn"))
|
696
708
|
Portal.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "portalArn"))
|
697
709
|
Portal.add_member(:portal_endpoint, Shapes::ShapeRef.new(shape: PortalEndpoint, location_name: "portalEndpoint"))
|
@@ -710,7 +722,9 @@ module Aws::WorkSpacesWeb
|
|
710
722
|
PortalSummary.add_member(:browser_type, Shapes::ShapeRef.new(shape: BrowserType, location_name: "browserType"))
|
711
723
|
PortalSummary.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDate"))
|
712
724
|
PortalSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
725
|
+
PortalSummary.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
713
726
|
PortalSummary.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ipAccessSettingsArn"))
|
727
|
+
PortalSummary.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: MaxConcurrentSessions, location_name: "maxConcurrentSessions"))
|
714
728
|
PortalSummary.add_member(:network_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "networkSettingsArn"))
|
715
729
|
PortalSummary.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "portalArn"))
|
716
730
|
PortalSummary.add_member(:portal_endpoint, Shapes::ShapeRef.new(shape: PortalEndpoint, location_name: "portalEndpoint"))
|
@@ -817,6 +831,8 @@ module Aws::WorkSpacesWeb
|
|
817
831
|
|
818
832
|
UpdatePortalRequest.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
|
819
833
|
UpdatePortalRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
834
|
+
UpdatePortalRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
835
|
+
UpdatePortalRequest.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: MaxConcurrentSessions, location_name: "maxConcurrentSessions"))
|
820
836
|
UpdatePortalRequest.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "portalArn"))
|
821
837
|
UpdatePortalRequest.struct_class = Types::UpdatePortalRequest
|
822
838
|
|
@@ -866,9 +882,11 @@ module Aws::WorkSpacesWeb
|
|
866
882
|
UserAccessLoggingSettingsSummary.add_member(:user_access_logging_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "userAccessLoggingSettingsArn"))
|
867
883
|
UserAccessLoggingSettingsSummary.struct_class = Types::UserAccessLoggingSettingsSummary
|
868
884
|
|
885
|
+
UserSettings.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
869
886
|
UserSettings.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
|
870
887
|
UserSettings.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
|
871
888
|
UserSettings.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
|
889
|
+
UserSettings.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
872
890
|
UserSettings.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
|
873
891
|
UserSettings.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
|
874
892
|
UserSettings.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
|
@@ -1695,6 +1713,7 @@ module Aws::WorkSpacesWeb
|
|
1695
1713
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1696
1714
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1697
1715
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1716
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1698
1717
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1699
1718
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1700
1719
|
end)
|
@@ -32,7 +32,7 @@ module Aws::WorkSpacesWeb
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://workspaces-web-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -14,6 +14,7 @@ module Aws::WorkSpacesWeb
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::WorkSpacesWeb::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|