aws-sdk-workspacesweb 1.6.0 → 1.7.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: d869431699bf377f242b80ad851391f5d4825b294f35dbfbfc7bf99c11c5935f
4
- data.tar.gz: dc39b876ba901f02bb9ce1e3b63637682e16fd76255f005e54af83c02d21b9fe
3
+ metadata.gz: 4fcf86aaeffa27b89e493f5e009e7cbdbf5e1e5041f4ccedf216901877bffd6a
4
+ data.tar.gz: 5e9df216e1f1466c1876641fc68a1569167d83a08e83efb37554a9c5897b3180
5
5
  SHA512:
6
- metadata.gz: 3cf3e43108a4cc5a5a8b85d6becfefdfcc56f4f8958dc42b63ce02f6f45b701cfb19a9f2247375209889c1b9c9c0fb043f7371f27a918de48f5c5df184dd6e77
7
- data.tar.gz: 2a41476ff87cc4a3327dc7ff7d82eb3725635479b52ec5dc2d9d475409d912b0ee24e5ffb1a48728540d23f137d51f39c58e59eada89e399b7a67965416e5494
6
+ metadata.gz: ed214ad034e1e1452363d500abcf03df106babc390f116246eed022e66e020e75153d4a1c18e57be51dd5f375f1eeb01aa0525914feab62df6627279c34f24cd
7
+ data.tar.gz: 482e4adef697d70534a901ea05fd2d513c7a1a727137ecc94caecbb470f92d8f83a3577506e65b658cd0c96468e5f3aca118752e578a51b65ed3acabc7d6be6b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2023-01-09)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for a new portal authentication type: AWS IAM Identity Center (successor to AWS Single Sign-On).
8
+
4
9
  1.6.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -792,6 +792,23 @@ module Aws::WorkSpacesWeb
792
792
  # @option params [Hash<String,String>] :additional_encryption_context
793
793
  # The additional encryption context of the portal.
794
794
  #
795
+ # @option params [String] :authentication_type
796
+ # The type of authentication integration points used when signing into
797
+ # the web portal. Defaults to `Standard`.
798
+ #
799
+ # `Standard` web portals are authenticated directly through your
800
+ # identity provider. You need to call `CreateIdentityProvider` to
801
+ # integrate your identity provider with your web portal. User and group
802
+ # access to your web portal is controlled through your identity
803
+ # provider.
804
+ #
805
+ # `IAM_Identity_Center` web portals are authenticated through AWS IAM
806
+ # Identity Center (successor to AWS Single Sign-On). They provide
807
+ # additional features, such as IdP-initiated authentication. Identity
808
+ # sources (including external identity provider integration), plus user
809
+ # and group access to your web portal, can be configured in the IAM
810
+ # Identity Center.
811
+ #
795
812
  # @option params [String] :client_token
796
813
  # A unique, case-sensitive identifier that you provide to ensure the
797
814
  # idempotency of the request. Idempotency ensures that an API request
@@ -826,6 +843,7 @@ module Aws::WorkSpacesWeb
826
843
  # additional_encryption_context: {
827
844
  # "StringType" => "StringType",
828
845
  # },
846
+ # authentication_type: "Standard", # accepts Standard, IAM_Identity_Center
829
847
  # client_token: "ClientToken",
830
848
  # customer_managed_key: "keyArn",
831
849
  # display_name: "DisplayName",
@@ -1426,6 +1444,7 @@ module Aws::WorkSpacesWeb
1426
1444
  #
1427
1445
  # @example Response structure
1428
1446
  #
1447
+ # resp.portal.authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
1429
1448
  # resp.portal.browser_settings_arn #=> String
1430
1449
  # resp.portal.browser_type #=> String, one of "Chrome"
1431
1450
  # resp.portal.creation_date #=> Time
@@ -1764,6 +1783,7 @@ module Aws::WorkSpacesWeb
1764
1783
  #
1765
1784
  # resp.next_token #=> String
1766
1785
  # resp.portals #=> Array
1786
+ # resp.portals[0].authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
1767
1787
  # resp.portals[0].browser_settings_arn #=> String
1768
1788
  # resp.portals[0].browser_type #=> String, one of "Chrome"
1769
1789
  # resp.portals[0].creation_date #=> Time
@@ -2294,6 +2314,23 @@ module Aws::WorkSpacesWeb
2294
2314
 
2295
2315
  # Updates a web portal.
2296
2316
  #
2317
+ # @option params [String] :authentication_type
2318
+ # The type of authentication integration points used when signing into
2319
+ # the web portal. Defaults to `Standard`.
2320
+ #
2321
+ # `Standard` web portals are authenticated directly through your
2322
+ # identity provider. You need to call `CreateIdentityProvider` to
2323
+ # integrate your identity provider with your web portal. User and group
2324
+ # access to your web portal is controlled through your identity
2325
+ # provider.
2326
+ #
2327
+ # `IAM_Identity_Center` web portals are authenticated through AWS IAM
2328
+ # Identity Center (successor to AWS Single Sign-On). They provide
2329
+ # additional features, such as IdP-initiated authentication. Identity
2330
+ # sources (including external identity provider integration), plus user
2331
+ # and group access to your web portal, can be configured in the IAM
2332
+ # Identity Center.
2333
+ #
2297
2334
  # @option params [String] :display_name
2298
2335
  # The name of the web portal. This is not visible to users who log into
2299
2336
  # the web portal.
@@ -2308,12 +2345,14 @@ module Aws::WorkSpacesWeb
2308
2345
  # @example Request syntax with placeholder values
2309
2346
  #
2310
2347
  # resp = client.update_portal({
2348
+ # authentication_type: "Standard", # accepts Standard, IAM_Identity_Center
2311
2349
  # display_name: "DisplayName",
2312
2350
  # portal_arn: "ARN", # required
2313
2351
  # })
2314
2352
  #
2315
2353
  # @example Response structure
2316
2354
  #
2355
+ # resp.portal.authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
2317
2356
  # resp.portal.browser_settings_arn #=> String
2318
2357
  # resp.portal.browser_type #=> String, one of "Chrome"
2319
2358
  # resp.portal.creation_date #=> Time
@@ -2535,7 +2574,7 @@ module Aws::WorkSpacesWeb
2535
2574
  params: params,
2536
2575
  config: config)
2537
2576
  context[:gem_name] = 'aws-sdk-workspacesweb'
2538
- context[:gem_version] = '1.6.0'
2577
+ context[:gem_version] = '1.7.0'
2539
2578
  Seahorse::Client::Request.new(handlers, context)
2540
2579
  end
2541
2580
 
@@ -26,6 +26,7 @@ module Aws::WorkSpacesWeb
26
26
  AssociateUserAccessLoggingSettingsResponse = Shapes::StructureShape.new(name: 'AssociateUserAccessLoggingSettingsResponse')
27
27
  AssociateUserSettingsRequest = Shapes::StructureShape.new(name: 'AssociateUserSettingsRequest')
28
28
  AssociateUserSettingsResponse = Shapes::StructureShape.new(name: 'AssociateUserSettingsResponse')
29
+ AuthenticationType = Shapes::StringShape.new(name: 'AuthenticationType')
29
30
  BrowserPolicy = Shapes::StringShape.new(name: 'BrowserPolicy')
30
31
  BrowserSettings = Shapes::StructureShape.new(name: 'BrowserSettings')
31
32
  BrowserSettingsList = Shapes::ListShape.new(name: 'BrowserSettingsList')
@@ -310,6 +311,7 @@ module Aws::WorkSpacesWeb
310
311
  CreateNetworkSettingsResponse.struct_class = Types::CreateNetworkSettingsResponse
311
312
 
312
313
  CreatePortalRequest.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
314
+ CreatePortalRequest.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
313
315
  CreatePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
314
316
  CreatePortalRequest.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
315
317
  CreatePortalRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
@@ -576,6 +578,7 @@ module Aws::WorkSpacesWeb
576
578
  NetworkSettingsSummary.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
577
579
  NetworkSettingsSummary.struct_class = Types::NetworkSettingsSummary
578
580
 
581
+ Portal.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
579
582
  Portal.add_member(:browser_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "browserSettingsArn"))
580
583
  Portal.add_member(:browser_type, Shapes::ShapeRef.new(shape: BrowserType, location_name: "browserType"))
581
584
  Portal.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDate"))
@@ -593,6 +596,7 @@ module Aws::WorkSpacesWeb
593
596
 
594
597
  PortalList.member = Shapes::ShapeRef.new(shape: PortalSummary)
595
598
 
599
+ PortalSummary.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
596
600
  PortalSummary.add_member(:browser_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "browserSettingsArn"))
597
601
  PortalSummary.add_member(:browser_type, Shapes::ShapeRef.new(shape: BrowserType, location_name: "browserType"))
598
602
  PortalSummary.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDate"))
@@ -691,6 +695,7 @@ module Aws::WorkSpacesWeb
691
695
  UpdateNetworkSettingsResponse.add_member(:network_settings, Shapes::ShapeRef.new(shape: NetworkSettings, required: true, location_name: "networkSettings"))
692
696
  UpdateNetworkSettingsResponse.struct_class = Types::UpdateNetworkSettingsResponse
693
697
 
698
+ UpdatePortalRequest.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
694
699
  UpdatePortalRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
695
700
  UpdatePortalRequest.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "portalArn"))
696
701
  UpdatePortalRequest.struct_class = Types::UpdatePortalRequest
@@ -50,62 +50,61 @@ IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
50
  b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
51
  ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
52
  dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
54
- c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
55
- dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
56
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
57
- In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
58
- UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
59
- cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
60
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
61
- ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
62
- IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
63
- bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
64
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
65
- bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
66
- IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
67
- YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
68
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
69
- YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
70
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
71
- biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
72
- fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
73
- cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
74
- cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
75
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
76
- Ijp7InVybCI6Imh0dHBzOi8vd29ya3NwYWNlcy13ZWItZmlwcy57UmVnaW9u
77
- fS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9w
78
- ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
79
- LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNr
80
- IGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
81
- cG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
82
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
83
- c2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
84
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
85
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
86
- bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
87
- IjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
88
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vd29y
89
- a3NwYWNlcy13ZWItZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ru
90
- c1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
91
- IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJG
92
- SVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
93
- cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpb
94
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFs
95
- U3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
96
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
97
- ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
98
- dCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJy
99
- dWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
100
- dHBzOi8vd29ya3NwYWNlcy13ZWIue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3Vs
101
- dCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRl
102
- cnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltd
103
- LCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRp
104
- dGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFjayIsInR5cGUiOiJlcnJv
105
- ciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0
106
- cHM6Ly93b3Jrc3BhY2VzLXdlYi57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0
107
- I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
108
- eXBlIjoiZW5kcG9pbnQifV19XX0=
53
+ c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
54
+ cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
55
+ dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
56
+ ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
57
+ ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
58
+ b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
59
+ aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
60
+ VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
61
+ Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
62
+ b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
63
+ XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
64
+ cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
65
+ fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
66
+ Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
67
+ bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
68
+ eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
69
+ b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
70
+ Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
71
+ XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
72
+ OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
73
+ InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
74
+ IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
75
+ Ly93b3Jrc3BhY2VzLXdlYi1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1
76
+ bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
77
+ ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpb
78
+ XSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJsZWQsIGJ1
79
+ dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBvciBib3Ro
80
+ IiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9v
81
+ bGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1d
82
+ LCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6
83
+ ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIs
84
+ ImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJ
85
+ UFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
86
+ OltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwi
87
+ ZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly93b3Jrc3BhY2VzLXdlYi1maXBz
88
+ LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
89
+ cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
90
+ fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBi
91
+ dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlw
92
+ ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
93
+ dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0s
94
+ InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
95
+ Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwi
96
+ YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVh
97
+ bFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
98
+ b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly93b3Jrc3BhY2Vz
99
+ LXdlYi57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1
100
+ ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
101
+ ZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRHVhbFN0
102
+ YWNrIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
103
+ cHBvcnQgRHVhbFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
104
+ bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3dvcmtzcGFjZXMt
105
+ d2ViLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
106
+ b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
107
+ XX1dfQ==
109
108
 
110
109
  JSON
111
110
  end
@@ -23,14 +23,6 @@ module Aws::WorkSpacesWeb
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
- # @note When making an API call, you may pass AssociateBrowserSettingsRequest
27
- # data as a hash:
28
- #
29
- # {
30
- # browser_settings_arn: "ARN", # required
31
- # portal_arn: "ARN", # required
32
- # }
33
- #
34
26
  # @!attribute [rw] browser_settings_arn
35
27
  # The ARN of the browser settings.
36
28
  # @return [String]
@@ -65,14 +57,6 @@ module Aws::WorkSpacesWeb
65
57
  include Aws::Structure
66
58
  end
67
59
 
68
- # @note When making an API call, you may pass AssociateNetworkSettingsRequest
69
- # data as a hash:
70
- #
71
- # {
72
- # network_settings_arn: "ARN", # required
73
- # portal_arn: "ARN", # required
74
- # }
75
- #
76
60
  # @!attribute [rw] network_settings_arn
77
61
  # The ARN of the network settings.
78
62
  # @return [String]
@@ -107,14 +91,6 @@ module Aws::WorkSpacesWeb
107
91
  include Aws::Structure
108
92
  end
109
93
 
110
- # @note When making an API call, you may pass AssociateTrustStoreRequest
111
- # data as a hash:
112
- #
113
- # {
114
- # portal_arn: "ARN", # required
115
- # trust_store_arn: "ARN", # required
116
- # }
117
- #
118
94
  # @!attribute [rw] portal_arn
119
95
  # The ARN of the web portal.
120
96
  # @return [String]
@@ -149,14 +125,6 @@ module Aws::WorkSpacesWeb
149
125
  include Aws::Structure
150
126
  end
151
127
 
152
- # @note When making an API call, you may pass AssociateUserAccessLoggingSettingsRequest
153
- # data as a hash:
154
- #
155
- # {
156
- # portal_arn: "ARN", # required
157
- # user_access_logging_settings_arn: "ARN", # required
158
- # }
159
- #
160
128
  # @!attribute [rw] portal_arn
161
129
  # The ARN of the web portal.
162
130
  # @return [String]
@@ -191,14 +159,6 @@ module Aws::WorkSpacesWeb
191
159
  include Aws::Structure
192
160
  end
193
161
 
194
- # @note When making an API call, you may pass AssociateUserSettingsRequest
195
- # data as a hash:
196
- #
197
- # {
198
- # portal_arn: "ARN", # required
199
- # user_settings_arn: "ARN", # required
200
- # }
201
- #
202
162
  # @!attribute [rw] portal_arn
203
163
  # The ARN of the web portal.
204
164
  # @return [String]
@@ -372,24 +332,6 @@ module Aws::WorkSpacesWeb
372
332
  include Aws::Structure
373
333
  end
374
334
 
375
- # @note When making an API call, you may pass CreateBrowserSettingsRequest
376
- # data as a hash:
377
- #
378
- # {
379
- # additional_encryption_context: {
380
- # "StringType" => "StringType",
381
- # },
382
- # browser_policy: "BrowserPolicy", # required
383
- # client_token: "ClientToken",
384
- # customer_managed_key: "keyArn",
385
- # tags: [
386
- # {
387
- # key: "TagKey", # required
388
- # value: "TagValue", # required
389
- # },
390
- # ],
391
- # }
392
- #
393
335
  # @!attribute [rw] additional_encryption_context
394
336
  # Additional encryption context of the browser settings.
395
337
  # @return [Hash<String,String>]
@@ -447,19 +389,6 @@ module Aws::WorkSpacesWeb
447
389
  include Aws::Structure
448
390
  end
449
391
 
450
- # @note When making an API call, you may pass CreateIdentityProviderRequest
451
- # data as a hash:
452
- #
453
- # {
454
- # client_token: "ClientToken",
455
- # identity_provider_details: { # required
456
- # "StringType" => "StringType",
457
- # },
458
- # identity_provider_name: "IdentityProviderName", # required
459
- # identity_provider_type: "SAML", # required, accepts SAML, Facebook, Google, LoginWithAmazon, SignInWithApple, OIDC
460
- # portal_arn: "ARN", # required
461
- # }
462
- #
463
392
  # @!attribute [rw] client_token
464
393
  # A unique, case-sensitive identifier that you provide to ensure the
465
394
  # idempotency of the request. Idempotency ensures that an API request
@@ -576,22 +505,6 @@ module Aws::WorkSpacesWeb
576
505
  include Aws::Structure
577
506
  end
578
507
 
579
- # @note When making an API call, you may pass CreateNetworkSettingsRequest
580
- # data as a hash:
581
- #
582
- # {
583
- # client_token: "ClientToken",
584
- # security_group_ids: ["SecurityGroupId"], # required
585
- # subnet_ids: ["SubnetId"], # required
586
- # tags: [
587
- # {
588
- # key: "TagKey", # required
589
- # value: "TagValue", # required
590
- # },
591
- # ],
592
- # vpc_id: "VpcId", # required
593
- # }
594
- #
595
508
  # @!attribute [rw] client_token
596
509
  # A unique, case-sensitive identifier that you provide to ensure the
597
510
  # idempotency of the request. Idempotency ensures that an API request
@@ -651,28 +564,28 @@ module Aws::WorkSpacesWeb
651
564
  include Aws::Structure
652
565
  end
653
566
 
654
- # @note When making an API call, you may pass CreatePortalRequest
655
- # data as a hash:
656
- #
657
- # {
658
- # additional_encryption_context: {
659
- # "StringType" => "StringType",
660
- # },
661
- # client_token: "ClientToken",
662
- # customer_managed_key: "keyArn",
663
- # display_name: "DisplayName",
664
- # tags: [
665
- # {
666
- # key: "TagKey", # required
667
- # value: "TagValue", # required
668
- # },
669
- # ],
670
- # }
671
- #
672
567
  # @!attribute [rw] additional_encryption_context
673
568
  # The additional encryption context of the portal.
674
569
  # @return [Hash<String,String>]
675
570
  #
571
+ # @!attribute [rw] authentication_type
572
+ # The type of authentication integration points used when signing into
573
+ # the web portal. Defaults to `Standard`.
574
+ #
575
+ # `Standard` web portals are authenticated directly through your
576
+ # identity provider. You need to call `CreateIdentityProvider` to
577
+ # integrate your identity provider with your web portal. User and
578
+ # group access to your web portal is controlled through your identity
579
+ # provider.
580
+ #
581
+ # `IAM_Identity_Center` web portals are authenticated through AWS IAM
582
+ # Identity Center (successor to AWS Single Sign-On). They provide
583
+ # additional features, such as IdP-initiated authentication. Identity
584
+ # sources (including external identity provider integration), plus
585
+ # user and group access to your web portal, can be configured in the
586
+ # IAM Identity Center.
587
+ # @return [String]
588
+ #
676
589
  # @!attribute [rw] client_token
677
590
  # A unique, case-sensitive identifier that you provide to ensure the
678
591
  # idempotency of the request. Idempotency ensures that an API request
@@ -705,6 +618,7 @@ module Aws::WorkSpacesWeb
705
618
  #
706
619
  class CreatePortalRequest < Struct.new(
707
620
  :additional_encryption_context,
621
+ :authentication_type,
708
622
  :client_token,
709
623
  :customer_managed_key,
710
624
  :display_name,
@@ -731,20 +645,6 @@ module Aws::WorkSpacesWeb
731
645
  include Aws::Structure
732
646
  end
733
647
 
734
- # @note When making an API call, you may pass CreateTrustStoreRequest
735
- # data as a hash:
736
- #
737
- # {
738
- # certificate_list: ["data"], # required
739
- # client_token: "ClientToken",
740
- # tags: [
741
- # {
742
- # key: "TagKey", # required
743
- # value: "TagValue", # required
744
- # },
745
- # ],
746
- # }
747
- #
748
648
  # @!attribute [rw] certificate_list
749
649
  # A list of CA certificates to be added to the trust store.
750
650
  # @return [Array<String>]
@@ -790,20 +690,6 @@ module Aws::WorkSpacesWeb
790
690
  include Aws::Structure
791
691
  end
792
692
 
793
- # @note When making an API call, you may pass CreateUserAccessLoggingSettingsRequest
794
- # data as a hash:
795
- #
796
- # {
797
- # client_token: "ClientToken",
798
- # kinesis_stream_arn: "KinesisStreamArn", # required
799
- # tags: [
800
- # {
801
- # key: "TagKey", # required
802
- # value: "TagValue", # required
803
- # },
804
- # ],
805
- # }
806
- #
807
693
  # @!attribute [rw] client_token
808
694
  # A unique, case-sensitive identifier that you provide to ensure the
809
695
  # idempotency of the request. Idempotency ensures that an API request
@@ -850,26 +736,6 @@ module Aws::WorkSpacesWeb
850
736
  include Aws::Structure
851
737
  end
852
738
 
853
- # @note When making an API call, you may pass CreateUserSettingsRequest
854
- # data as a hash:
855
- #
856
- # {
857
- # client_token: "ClientToken",
858
- # copy_allowed: "Disabled", # required, accepts Disabled, Enabled
859
- # disconnect_timeout_in_minutes: 1,
860
- # download_allowed: "Disabled", # required, accepts Disabled, Enabled
861
- # idle_disconnect_timeout_in_minutes: 1,
862
- # paste_allowed: "Disabled", # required, accepts Disabled, Enabled
863
- # print_allowed: "Disabled", # required, accepts Disabled, Enabled
864
- # tags: [
865
- # {
866
- # key: "TagKey", # required
867
- # value: "TagValue", # required
868
- # },
869
- # ],
870
- # upload_allowed: "Disabled", # required, accepts Disabled, Enabled
871
- # }
872
- #
873
739
  # @!attribute [rw] client_token
874
740
  # A unique, case-sensitive identifier that you provide to ensure the
875
741
  # idempotency of the request. Idempotency ensures that an API request
@@ -953,13 +819,6 @@ module Aws::WorkSpacesWeb
953
819
  include Aws::Structure
954
820
  end
955
821
 
956
- # @note When making an API call, you may pass DeleteBrowserSettingsRequest
957
- # data as a hash:
958
- #
959
- # {
960
- # browser_settings_arn: "ARN", # required
961
- # }
962
- #
963
822
  # @!attribute [rw] browser_settings_arn
964
823
  # The ARN of the browser settings.
965
824
  # @return [String]
@@ -976,13 +835,6 @@ module Aws::WorkSpacesWeb
976
835
  #
977
836
  class DeleteBrowserSettingsResponse < Aws::EmptyStructure; end
978
837
 
979
- # @note When making an API call, you may pass DeleteIdentityProviderRequest
980
- # data as a hash:
981
- #
982
- # {
983
- # identity_provider_arn: "ARN", # required
984
- # }
985
- #
986
838
  # @!attribute [rw] identity_provider_arn
987
839
  # The ARN of the identity provider.
988
840
  # @return [String]
@@ -999,13 +851,6 @@ module Aws::WorkSpacesWeb
999
851
  #
1000
852
  class DeleteIdentityProviderResponse < Aws::EmptyStructure; end
1001
853
 
1002
- # @note When making an API call, you may pass DeleteNetworkSettingsRequest
1003
- # data as a hash:
1004
- #
1005
- # {
1006
- # network_settings_arn: "ARN", # required
1007
- # }
1008
- #
1009
854
  # @!attribute [rw] network_settings_arn
1010
855
  # The ARN of the network settings.
1011
856
  # @return [String]
@@ -1022,13 +867,6 @@ module Aws::WorkSpacesWeb
1022
867
  #
1023
868
  class DeleteNetworkSettingsResponse < Aws::EmptyStructure; end
1024
869
 
1025
- # @note When making an API call, you may pass DeletePortalRequest
1026
- # data as a hash:
1027
- #
1028
- # {
1029
- # portal_arn: "ARN", # required
1030
- # }
1031
- #
1032
870
  # @!attribute [rw] portal_arn
1033
871
  # The ARN of the web portal.
1034
872
  # @return [String]
@@ -1045,13 +883,6 @@ module Aws::WorkSpacesWeb
1045
883
  #
1046
884
  class DeletePortalResponse < Aws::EmptyStructure; end
1047
885
 
1048
- # @note When making an API call, you may pass DeleteTrustStoreRequest
1049
- # data as a hash:
1050
- #
1051
- # {
1052
- # trust_store_arn: "ARN", # required
1053
- # }
1054
- #
1055
886
  # @!attribute [rw] trust_store_arn
1056
887
  # The ARN of the trust store.
1057
888
  # @return [String]
@@ -1068,13 +899,6 @@ module Aws::WorkSpacesWeb
1068
899
  #
1069
900
  class DeleteTrustStoreResponse < Aws::EmptyStructure; end
1070
901
 
1071
- # @note When making an API call, you may pass DeleteUserAccessLoggingSettingsRequest
1072
- # data as a hash:
1073
- #
1074
- # {
1075
- # user_access_logging_settings_arn: "ARN", # required
1076
- # }
1077
- #
1078
902
  # @!attribute [rw] user_access_logging_settings_arn
1079
903
  # The ARN of the user access logging settings.
1080
904
  # @return [String]
@@ -1091,13 +915,6 @@ module Aws::WorkSpacesWeb
1091
915
  #
1092
916
  class DeleteUserAccessLoggingSettingsResponse < Aws::EmptyStructure; end
1093
917
 
1094
- # @note When making an API call, you may pass DeleteUserSettingsRequest
1095
- # data as a hash:
1096
- #
1097
- # {
1098
- # user_settings_arn: "ARN", # required
1099
- # }
1100
- #
1101
918
  # @!attribute [rw] user_settings_arn
1102
919
  # The ARN of the user settings.
1103
920
  # @return [String]
@@ -1114,13 +931,6 @@ module Aws::WorkSpacesWeb
1114
931
  #
1115
932
  class DeleteUserSettingsResponse < Aws::EmptyStructure; end
1116
933
 
1117
- # @note When making an API call, you may pass DisassociateBrowserSettingsRequest
1118
- # data as a hash:
1119
- #
1120
- # {
1121
- # portal_arn: "ARN", # required
1122
- # }
1123
- #
1124
934
  # @!attribute [rw] portal_arn
1125
935
  # The ARN of the web portal.
1126
936
  # @return [String]
@@ -1137,13 +947,6 @@ module Aws::WorkSpacesWeb
1137
947
  #
1138
948
  class DisassociateBrowserSettingsResponse < Aws::EmptyStructure; end
1139
949
 
1140
- # @note When making an API call, you may pass DisassociateNetworkSettingsRequest
1141
- # data as a hash:
1142
- #
1143
- # {
1144
- # portal_arn: "ARN", # required
1145
- # }
1146
- #
1147
950
  # @!attribute [rw] portal_arn
1148
951
  # The ARN of the web portal.
1149
952
  # @return [String]
@@ -1160,13 +963,6 @@ module Aws::WorkSpacesWeb
1160
963
  #
1161
964
  class DisassociateNetworkSettingsResponse < Aws::EmptyStructure; end
1162
965
 
1163
- # @note When making an API call, you may pass DisassociateTrustStoreRequest
1164
- # data as a hash:
1165
- #
1166
- # {
1167
- # portal_arn: "ARN", # required
1168
- # }
1169
- #
1170
966
  # @!attribute [rw] portal_arn
1171
967
  # The ARN of the web portal.
1172
968
  # @return [String]
@@ -1183,13 +979,6 @@ module Aws::WorkSpacesWeb
1183
979
  #
1184
980
  class DisassociateTrustStoreResponse < Aws::EmptyStructure; end
1185
981
 
1186
- # @note When making an API call, you may pass DisassociateUserAccessLoggingSettingsRequest
1187
- # data as a hash:
1188
- #
1189
- # {
1190
- # portal_arn: "ARN", # required
1191
- # }
1192
- #
1193
982
  # @!attribute [rw] portal_arn
1194
983
  # The ARN of the web portal.
1195
984
  # @return [String]
@@ -1206,13 +995,6 @@ module Aws::WorkSpacesWeb
1206
995
  #
1207
996
  class DisassociateUserAccessLoggingSettingsResponse < Aws::EmptyStructure; end
1208
997
 
1209
- # @note When making an API call, you may pass DisassociateUserSettingsRequest
1210
- # data as a hash:
1211
- #
1212
- # {
1213
- # portal_arn: "ARN", # required
1214
- # }
1215
- #
1216
998
  # @!attribute [rw] portal_arn
1217
999
  # The ARN of the web portal.
1218
1000
  # @return [String]
@@ -1229,13 +1011,6 @@ module Aws::WorkSpacesWeb
1229
1011
  #
1230
1012
  class DisassociateUserSettingsResponse < Aws::EmptyStructure; end
1231
1013
 
1232
- # @note When making an API call, you may pass GetBrowserSettingsRequest
1233
- # data as a hash:
1234
- #
1235
- # {
1236
- # browser_settings_arn: "ARN", # required
1237
- # }
1238
- #
1239
1014
  # @!attribute [rw] browser_settings_arn
1240
1015
  # The ARN of the browser settings.
1241
1016
  # @return [String]
@@ -1260,13 +1035,6 @@ module Aws::WorkSpacesWeb
1260
1035
  include Aws::Structure
1261
1036
  end
1262
1037
 
1263
- # @note When making an API call, you may pass GetIdentityProviderRequest
1264
- # data as a hash:
1265
- #
1266
- # {
1267
- # identity_provider_arn: "ARN", # required
1268
- # }
1269
- #
1270
1038
  # @!attribute [rw] identity_provider_arn
1271
1039
  # The ARN of the identity provider.
1272
1040
  # @return [String]
@@ -1291,13 +1059,6 @@ module Aws::WorkSpacesWeb
1291
1059
  include Aws::Structure
1292
1060
  end
1293
1061
 
1294
- # @note When making an API call, you may pass GetNetworkSettingsRequest
1295
- # data as a hash:
1296
- #
1297
- # {
1298
- # network_settings_arn: "ARN", # required
1299
- # }
1300
- #
1301
1062
  # @!attribute [rw] network_settings_arn
1302
1063
  # The ARN of the network settings.
1303
1064
  # @return [String]
@@ -1322,13 +1083,6 @@ module Aws::WorkSpacesWeb
1322
1083
  include Aws::Structure
1323
1084
  end
1324
1085
 
1325
- # @note When making an API call, you may pass GetPortalRequest
1326
- # data as a hash:
1327
- #
1328
- # {
1329
- # portal_arn: "ARN", # required
1330
- # }
1331
- #
1332
1086
  # @!attribute [rw] portal_arn
1333
1087
  # The ARN of the web portal.
1334
1088
  # @return [String]
@@ -1353,13 +1107,6 @@ module Aws::WorkSpacesWeb
1353
1107
  include Aws::Structure
1354
1108
  end
1355
1109
 
1356
- # @note When making an API call, you may pass GetPortalServiceProviderMetadataRequest
1357
- # data as a hash:
1358
- #
1359
- # {
1360
- # portal_arn: "ARN", # required
1361
- # }
1362
- #
1363
1110
  # @!attribute [rw] portal_arn
1364
1111
  # The ARN of the web portal.
1365
1112
  # @return [String]
@@ -1389,14 +1136,6 @@ module Aws::WorkSpacesWeb
1389
1136
  include Aws::Structure
1390
1137
  end
1391
1138
 
1392
- # @note When making an API call, you may pass GetTrustStoreCertificateRequest
1393
- # data as a hash:
1394
- #
1395
- # {
1396
- # thumbprint: "CertificateThumbprint", # required
1397
- # trust_store_arn: "ARN", # required
1398
- # }
1399
- #
1400
1139
  # @!attribute [rw] thumbprint
1401
1140
  # The thumbprint of the trust store certificate.
1402
1141
  # @return [String]
@@ -1431,13 +1170,6 @@ module Aws::WorkSpacesWeb
1431
1170
  include Aws::Structure
1432
1171
  end
1433
1172
 
1434
- # @note When making an API call, you may pass GetTrustStoreRequest
1435
- # data as a hash:
1436
- #
1437
- # {
1438
- # trust_store_arn: "ARN", # required
1439
- # }
1440
- #
1441
1173
  # @!attribute [rw] trust_store_arn
1442
1174
  # The ARN of the trust store.
1443
1175
  # @return [String]
@@ -1462,13 +1194,6 @@ module Aws::WorkSpacesWeb
1462
1194
  include Aws::Structure
1463
1195
  end
1464
1196
 
1465
- # @note When making an API call, you may pass GetUserAccessLoggingSettingsRequest
1466
- # data as a hash:
1467
- #
1468
- # {
1469
- # user_access_logging_settings_arn: "ARN", # required
1470
- # }
1471
- #
1472
1197
  # @!attribute [rw] user_access_logging_settings_arn
1473
1198
  # The ARN of the user access logging settings.
1474
1199
  # @return [String]
@@ -1493,13 +1218,6 @@ module Aws::WorkSpacesWeb
1493
1218
  include Aws::Structure
1494
1219
  end
1495
1220
 
1496
- # @note When making an API call, you may pass GetUserSettingsRequest
1497
- # data as a hash:
1498
- #
1499
- # {
1500
- # user_settings_arn: "ARN", # required
1501
- # }
1502
- #
1503
1221
  # @!attribute [rw] user_settings_arn
1504
1222
  # The ARN of the user settings.
1505
1223
  # @return [String]
@@ -1656,14 +1374,6 @@ module Aws::WorkSpacesWeb
1656
1374
  include Aws::Structure
1657
1375
  end
1658
1376
 
1659
- # @note When making an API call, you may pass ListBrowserSettingsRequest
1660
- # data as a hash:
1661
- #
1662
- # {
1663
- # max_results: 1,
1664
- # next_token: "PaginationToken",
1665
- # }
1666
- #
1667
1377
  # @!attribute [rw] max_results
1668
1378
  # The maximum number of results to be included in the next page.
1669
1379
  # @return [Integer]
@@ -1700,15 +1410,6 @@ module Aws::WorkSpacesWeb
1700
1410
  include Aws::Structure
1701
1411
  end
1702
1412
 
1703
- # @note When making an API call, you may pass ListIdentityProvidersRequest
1704
- # data as a hash:
1705
- #
1706
- # {
1707
- # max_results: 1,
1708
- # next_token: "PaginationToken",
1709
- # portal_arn: "ARN", # required
1710
- # }
1711
- #
1712
1413
  # @!attribute [rw] max_results
1713
1414
  # The maximum number of results to be included in the next page.
1714
1415
  # @return [Integer]
@@ -1750,14 +1451,6 @@ module Aws::WorkSpacesWeb
1750
1451
  include Aws::Structure
1751
1452
  end
1752
1453
 
1753
- # @note When making an API call, you may pass ListNetworkSettingsRequest
1754
- # data as a hash:
1755
- #
1756
- # {
1757
- # max_results: 1,
1758
- # next_token: "PaginationToken",
1759
- # }
1760
- #
1761
1454
  # @!attribute [rw] max_results
1762
1455
  # The maximum number of results to be included in the next page.
1763
1456
  # @return [Integer]
@@ -1794,14 +1487,6 @@ module Aws::WorkSpacesWeb
1794
1487
  include Aws::Structure
1795
1488
  end
1796
1489
 
1797
- # @note When making an API call, you may pass ListPortalsRequest
1798
- # data as a hash:
1799
- #
1800
- # {
1801
- # max_results: 1,
1802
- # next_token: "PaginationToken",
1803
- # }
1804
- #
1805
1490
  # @!attribute [rw] max_results
1806
1491
  # The maximum number of results to be included in the next page.
1807
1492
  # @return [Integer]
@@ -1838,13 +1523,6 @@ module Aws::WorkSpacesWeb
1838
1523
  include Aws::Structure
1839
1524
  end
1840
1525
 
1841
- # @note When making an API call, you may pass ListTagsForResourceRequest
1842
- # data as a hash:
1843
- #
1844
- # {
1845
- # resource_arn: "ARN", # required
1846
- # }
1847
- #
1848
1526
  # @!attribute [rw] resource_arn
1849
1527
  # The ARN of the resource.
1850
1528
  # @return [String]
@@ -1869,15 +1547,6 @@ module Aws::WorkSpacesWeb
1869
1547
  include Aws::Structure
1870
1548
  end
1871
1549
 
1872
- # @note When making an API call, you may pass ListTrustStoreCertificatesRequest
1873
- # data as a hash:
1874
- #
1875
- # {
1876
- # max_results: 1,
1877
- # next_token: "PaginationToken",
1878
- # trust_store_arn: "ARN", # required
1879
- # }
1880
- #
1881
1550
  # @!attribute [rw] max_results
1882
1551
  # The maximum number of results to be included in the next page.
1883
1552
  # @return [Integer]
@@ -1924,14 +1593,6 @@ module Aws::WorkSpacesWeb
1924
1593
  include Aws::Structure
1925
1594
  end
1926
1595
 
1927
- # @note When making an API call, you may pass ListTrustStoresRequest
1928
- # data as a hash:
1929
- #
1930
- # {
1931
- # max_results: 1,
1932
- # next_token: "PaginationToken",
1933
- # }
1934
- #
1935
1596
  # @!attribute [rw] max_results
1936
1597
  # The maximum number of results to be included in the next page.
1937
1598
  # @return [Integer]
@@ -1968,14 +1629,6 @@ module Aws::WorkSpacesWeb
1968
1629
  include Aws::Structure
1969
1630
  end
1970
1631
 
1971
- # @note When making an API call, you may pass ListUserAccessLoggingSettingsRequest
1972
- # data as a hash:
1973
- #
1974
- # {
1975
- # max_results: 1,
1976
- # next_token: "PaginationToken",
1977
- # }
1978
- #
1979
1632
  # @!attribute [rw] max_results
1980
1633
  # The maximum number of results to be included in the next page.
1981
1634
  # @return [Integer]
@@ -2012,14 +1665,6 @@ module Aws::WorkSpacesWeb
2012
1665
  include Aws::Structure
2013
1666
  end
2014
1667
 
2015
- # @note When making an API call, you may pass ListUserSettingsRequest
2016
- # data as a hash:
2017
- #
2018
- # {
2019
- # max_results: 1,
2020
- # next_token: "PaginationToken",
2021
- # }
2022
- #
2023
1668
  # @!attribute [rw] max_results
2024
1669
  # The maximum number of results to be included in the next page.
2025
1670
  # @return [Integer]
@@ -2117,6 +1762,24 @@ module Aws::WorkSpacesWeb
2117
1762
 
2118
1763
  # The web portal.
2119
1764
  #
1765
+ # @!attribute [rw] authentication_type
1766
+ # The type of authentication integration points used when signing into
1767
+ # the web portal. Defaults to `Standard`.
1768
+ #
1769
+ # `Standard` web portals are authenticated directly through your
1770
+ # identity provider. You need to call `CreateIdentityProvider` to
1771
+ # integrate your identity provider with your web portal. User and
1772
+ # group access to your web portal is controlled through your identity
1773
+ # provider.
1774
+ #
1775
+ # `IAM_Identity_Center` web portals are authenticated through AWS IAM
1776
+ # Identity Center (successor to AWS Single Sign-On). They provide
1777
+ # additional features, such as IdP-initiated authentication. Identity
1778
+ # sources (including external identity provider integration), plus
1779
+ # user and group access to your web portal, can be configured in the
1780
+ # IAM Identity Center.
1781
+ # @return [String]
1782
+ #
2120
1783
  # @!attribute [rw] browser_settings_arn
2121
1784
  # The ARN of the browser settings that is associated with this web
2122
1785
  # portal.
@@ -2176,6 +1839,7 @@ module Aws::WorkSpacesWeb
2176
1839
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/Portal AWS API Documentation
2177
1840
  #
2178
1841
  class Portal < Struct.new(
1842
+ :authentication_type,
2179
1843
  :browser_settings_arn,
2180
1844
  :browser_type,
2181
1845
  :creation_date,
@@ -2195,6 +1859,24 @@ module Aws::WorkSpacesWeb
2195
1859
 
2196
1860
  # The summary of the portal.
2197
1861
  #
1862
+ # @!attribute [rw] authentication_type
1863
+ # The type of authentication integration points used when signing into
1864
+ # the web portal. Defaults to `Standard`.
1865
+ #
1866
+ # `Standard` web portals are authenticated directly through your
1867
+ # identity provider. You need to call `CreateIdentityProvider` to
1868
+ # integrate your identity provider with your web portal. User and
1869
+ # group access to your web portal is controlled through your identity
1870
+ # provider.
1871
+ #
1872
+ # `IAM_Identity_Center` web portals are authenticated through AWS IAM
1873
+ # Identity Center (successor to AWS Single Sign-On). They provide
1874
+ # additional features, such as IdP-initiated authentication. Identity
1875
+ # sources (including external identity provider integration), plus
1876
+ # user and group access to your web portal, can be configured in the
1877
+ # IAM Identity Center.
1878
+ # @return [String]
1879
+ #
2198
1880
  # @!attribute [rw] browser_settings_arn
2199
1881
  # The ARN of the browser settings that is associated with the web
2200
1882
  # portal.
@@ -2250,6 +1932,7 @@ module Aws::WorkSpacesWeb
2250
1932
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/PortalSummary AWS API Documentation
2251
1933
  #
2252
1934
  class PortalSummary < Struct.new(
1935
+ :authentication_type,
2253
1936
  :browser_settings_arn,
2254
1937
  :browser_type,
2255
1938
  :creation_date,
@@ -2324,14 +2007,6 @@ module Aws::WorkSpacesWeb
2324
2007
 
2325
2008
  # The tag.
2326
2009
  #
2327
- # @note When making an API call, you may pass Tag
2328
- # data as a hash:
2329
- #
2330
- # {
2331
- # key: "TagKey", # required
2332
- # value: "TagValue", # required
2333
- # }
2334
- #
2335
2010
  # @!attribute [rw] key
2336
2011
  # The key of the tag.
2337
2012
  # @return [String]
@@ -2349,20 +2024,6 @@ module Aws::WorkSpacesWeb
2349
2024
  include Aws::Structure
2350
2025
  end
2351
2026
 
2352
- # @note When making an API call, you may pass TagResourceRequest
2353
- # data as a hash:
2354
- #
2355
- # {
2356
- # client_token: "ClientToken",
2357
- # resource_arn: "ARN", # required
2358
- # tags: [ # required
2359
- # {
2360
- # key: "TagKey", # required
2361
- # value: "TagValue", # required
2362
- # },
2363
- # ],
2364
- # }
2365
- #
2366
2027
  # @!attribute [rw] client_token
2367
2028
  # A unique, case-sensitive identifier that you provide to ensure the
2368
2029
  # idempotency of the request. Idempotency ensures that an API request
@@ -2485,14 +2146,6 @@ module Aws::WorkSpacesWeb
2485
2146
  include Aws::Structure
2486
2147
  end
2487
2148
 
2488
- # @note When making an API call, you may pass UntagResourceRequest
2489
- # data as a hash:
2490
- #
2491
- # {
2492
- # resource_arn: "ARN", # required
2493
- # tag_keys: ["TagKey"], # required
2494
- # }
2495
- #
2496
2149
  # @!attribute [rw] resource_arn
2497
2150
  # The ARN of the resource.
2498
2151
  # @return [String]
@@ -2514,15 +2167,6 @@ module Aws::WorkSpacesWeb
2514
2167
  #
2515
2168
  class UntagResourceResponse < Aws::EmptyStructure; end
2516
2169
 
2517
- # @note When making an API call, you may pass UpdateBrowserSettingsRequest
2518
- # data as a hash:
2519
- #
2520
- # {
2521
- # browser_policy: "BrowserPolicy",
2522
- # browser_settings_arn: "ARN", # required
2523
- # client_token: "ClientToken",
2524
- # }
2525
- #
2526
2170
  # @!attribute [rw] browser_policy
2527
2171
  # A JSON string containing Chrome Enterprise policies that will be
2528
2172
  # applied to all streaming sessions.
@@ -2568,19 +2212,6 @@ module Aws::WorkSpacesWeb
2568
2212
  include Aws::Structure
2569
2213
  end
2570
2214
 
2571
- # @note When making an API call, you may pass UpdateIdentityProviderRequest
2572
- # data as a hash:
2573
- #
2574
- # {
2575
- # client_token: "ClientToken",
2576
- # identity_provider_arn: "ARN", # required
2577
- # identity_provider_details: {
2578
- # "StringType" => "StringType",
2579
- # },
2580
- # identity_provider_name: "IdentityProviderName",
2581
- # identity_provider_type: "SAML", # accepts SAML, Facebook, Google, LoginWithAmazon, SignInWithApple, OIDC
2582
- # }
2583
- #
2584
2215
  # @!attribute [rw] client_token
2585
2216
  # A unique, case-sensitive identifier that you provide to ensure the
2586
2217
  # idempotency of the request. Idempotency ensures that an API request
@@ -2696,17 +2327,6 @@ module Aws::WorkSpacesWeb
2696
2327
  include Aws::Structure
2697
2328
  end
2698
2329
 
2699
- # @note When making an API call, you may pass UpdateNetworkSettingsRequest
2700
- # data as a hash:
2701
- #
2702
- # {
2703
- # client_token: "ClientToken",
2704
- # network_settings_arn: "ARN", # required
2705
- # security_group_ids: ["SecurityGroupId"],
2706
- # subnet_ids: ["SubnetId"],
2707
- # vpc_id: "VpcId",
2708
- # }
2709
- #
2710
2330
  # @!attribute [rw] client_token
2711
2331
  # A unique, case-sensitive identifier that you provide to ensure the
2712
2332
  # idempotency of the request. Idempotency ensures that an API request
@@ -2764,13 +2384,23 @@ module Aws::WorkSpacesWeb
2764
2384
  include Aws::Structure
2765
2385
  end
2766
2386
 
2767
- # @note When making an API call, you may pass UpdatePortalRequest
2768
- # data as a hash:
2387
+ # @!attribute [rw] authentication_type
2388
+ # The type of authentication integration points used when signing into
2389
+ # the web portal. Defaults to `Standard`.
2390
+ #
2391
+ # `Standard` web portals are authenticated directly through your
2392
+ # identity provider. You need to call `CreateIdentityProvider` to
2393
+ # integrate your identity provider with your web portal. User and
2394
+ # group access to your web portal is controlled through your identity
2395
+ # provider.
2769
2396
  #
2770
- # {
2771
- # display_name: "DisplayName",
2772
- # portal_arn: "ARN", # required
2773
- # }
2397
+ # `IAM_Identity_Center` web portals are authenticated through AWS IAM
2398
+ # Identity Center (successor to AWS Single Sign-On). They provide
2399
+ # additional features, such as IdP-initiated authentication. Identity
2400
+ # sources (including external identity provider integration), plus
2401
+ # user and group access to your web portal, can be configured in the
2402
+ # IAM Identity Center.
2403
+ # @return [String]
2774
2404
  #
2775
2405
  # @!attribute [rw] display_name
2776
2406
  # The name of the web portal. This is not visible to users who log
@@ -2784,6 +2414,7 @@ module Aws::WorkSpacesWeb
2784
2414
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdatePortalRequest AWS API Documentation
2785
2415
  #
2786
2416
  class UpdatePortalRequest < Struct.new(
2417
+ :authentication_type,
2787
2418
  :display_name,
2788
2419
  :portal_arn)
2789
2420
  SENSITIVE = [:display_name]
@@ -2802,16 +2433,6 @@ module Aws::WorkSpacesWeb
2802
2433
  include Aws::Structure
2803
2434
  end
2804
2435
 
2805
- # @note When making an API call, you may pass UpdateTrustStoreRequest
2806
- # data as a hash:
2807
- #
2808
- # {
2809
- # certificates_to_add: ["data"],
2810
- # certificates_to_delete: ["CertificateThumbprint"],
2811
- # client_token: "ClientToken",
2812
- # trust_store_arn: "ARN", # required
2813
- # }
2814
- #
2815
2436
  # @!attribute [rw] certificates_to_add
2816
2437
  # A list of CA certificates to add to the trust store.
2817
2438
  # @return [Array<String>]
@@ -2861,15 +2482,6 @@ module Aws::WorkSpacesWeb
2861
2482
  include Aws::Structure
2862
2483
  end
2863
2484
 
2864
- # @note When making an API call, you may pass UpdateUserAccessLoggingSettingsRequest
2865
- # data as a hash:
2866
- #
2867
- # {
2868
- # client_token: "ClientToken",
2869
- # kinesis_stream_arn: "KinesisStreamArn",
2870
- # user_access_logging_settings_arn: "ARN", # required
2871
- # }
2872
- #
2873
2485
  # @!attribute [rw] client_token
2874
2486
  # A unique, case-sensitive identifier that you provide to ensure the
2875
2487
  # idempotency of the request. Idempotency ensures that an API request
@@ -2914,21 +2526,6 @@ module Aws::WorkSpacesWeb
2914
2526
  include Aws::Structure
2915
2527
  end
2916
2528
 
2917
- # @note When making an API call, you may pass UpdateUserSettingsRequest
2918
- # data as a hash:
2919
- #
2920
- # {
2921
- # client_token: "ClientToken",
2922
- # copy_allowed: "Disabled", # accepts Disabled, Enabled
2923
- # disconnect_timeout_in_minutes: 1,
2924
- # download_allowed: "Disabled", # accepts Disabled, Enabled
2925
- # idle_disconnect_timeout_in_minutes: 1,
2926
- # paste_allowed: "Disabled", # accepts Disabled, Enabled
2927
- # print_allowed: "Disabled", # accepts Disabled, Enabled
2928
- # upload_allowed: "Disabled", # accepts Disabled, Enabled
2929
- # user_settings_arn: "ARN", # required
2930
- # }
2931
- #
2932
2529
  # @!attribute [rw] client_token
2933
2530
  # A unique, case-sensitive identifier that you provide to ensure the
2934
2531
  # idempotency of the request. Idempotency ensures that an API request
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-workspacesweb/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkSpacesWeb
54
54
 
55
- GEM_VERSION = '1.6.0'
55
+ GEM_VERSION = '1.7.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspacesweb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.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-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core