aws-sdk-workspacesweb 1.8.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -58,6 +58,8 @@ module Aws::WorkSpacesWeb
58
58
  case context.operation_name
59
59
  when :associate_browser_settings
60
60
  Aws::WorkSpacesWeb::Endpoints::AssociateBrowserSettings.build(context)
61
+ when :associate_ip_access_settings
62
+ Aws::WorkSpacesWeb::Endpoints::AssociateIpAccessSettings.build(context)
61
63
  when :associate_network_settings
62
64
  Aws::WorkSpacesWeb::Endpoints::AssociateNetworkSettings.build(context)
63
65
  when :associate_trust_store
@@ -70,6 +72,8 @@ module Aws::WorkSpacesWeb
70
72
  Aws::WorkSpacesWeb::Endpoints::CreateBrowserSettings.build(context)
71
73
  when :create_identity_provider
72
74
  Aws::WorkSpacesWeb::Endpoints::CreateIdentityProvider.build(context)
75
+ when :create_ip_access_settings
76
+ Aws::WorkSpacesWeb::Endpoints::CreateIpAccessSettings.build(context)
73
77
  when :create_network_settings
74
78
  Aws::WorkSpacesWeb::Endpoints::CreateNetworkSettings.build(context)
75
79
  when :create_portal
@@ -84,6 +88,8 @@ module Aws::WorkSpacesWeb
84
88
  Aws::WorkSpacesWeb::Endpoints::DeleteBrowserSettings.build(context)
85
89
  when :delete_identity_provider
86
90
  Aws::WorkSpacesWeb::Endpoints::DeleteIdentityProvider.build(context)
91
+ when :delete_ip_access_settings
92
+ Aws::WorkSpacesWeb::Endpoints::DeleteIpAccessSettings.build(context)
87
93
  when :delete_network_settings
88
94
  Aws::WorkSpacesWeb::Endpoints::DeleteNetworkSettings.build(context)
89
95
  when :delete_portal
@@ -96,6 +102,8 @@ module Aws::WorkSpacesWeb
96
102
  Aws::WorkSpacesWeb::Endpoints::DeleteUserSettings.build(context)
97
103
  when :disassociate_browser_settings
98
104
  Aws::WorkSpacesWeb::Endpoints::DisassociateBrowserSettings.build(context)
105
+ when :disassociate_ip_access_settings
106
+ Aws::WorkSpacesWeb::Endpoints::DisassociateIpAccessSettings.build(context)
99
107
  when :disassociate_network_settings
100
108
  Aws::WorkSpacesWeb::Endpoints::DisassociateNetworkSettings.build(context)
101
109
  when :disassociate_trust_store
@@ -108,6 +116,8 @@ module Aws::WorkSpacesWeb
108
116
  Aws::WorkSpacesWeb::Endpoints::GetBrowserSettings.build(context)
109
117
  when :get_identity_provider
110
118
  Aws::WorkSpacesWeb::Endpoints::GetIdentityProvider.build(context)
119
+ when :get_ip_access_settings
120
+ Aws::WorkSpacesWeb::Endpoints::GetIpAccessSettings.build(context)
111
121
  when :get_network_settings
112
122
  Aws::WorkSpacesWeb::Endpoints::GetNetworkSettings.build(context)
113
123
  when :get_portal
@@ -126,6 +136,8 @@ module Aws::WorkSpacesWeb
126
136
  Aws::WorkSpacesWeb::Endpoints::ListBrowserSettings.build(context)
127
137
  when :list_identity_providers
128
138
  Aws::WorkSpacesWeb::Endpoints::ListIdentityProviders.build(context)
139
+ when :list_ip_access_settings
140
+ Aws::WorkSpacesWeb::Endpoints::ListIpAccessSettings.build(context)
129
141
  when :list_network_settings
130
142
  Aws::WorkSpacesWeb::Endpoints::ListNetworkSettings.build(context)
131
143
  when :list_portals
@@ -148,6 +160,8 @@ module Aws::WorkSpacesWeb
148
160
  Aws::WorkSpacesWeb::Endpoints::UpdateBrowserSettings.build(context)
149
161
  when :update_identity_provider
150
162
  Aws::WorkSpacesWeb::Endpoints::UpdateIdentityProvider.build(context)
163
+ when :update_ip_access_settings
164
+ Aws::WorkSpacesWeb::Endpoints::UpdateIpAccessSettings.build(context)
151
165
  when :update_network_settings
152
166
  Aws::WorkSpacesWeb::Endpoints::UpdateNetworkSettings.build(context)
153
167
  when :update_portal
@@ -57,6 +57,40 @@ module Aws::WorkSpacesWeb
57
57
  include Aws::Structure
58
58
  end
59
59
 
60
+ # @!attribute [rw] ip_access_settings_arn
61
+ # The ARN of the IP access settings.
62
+ # @return [String]
63
+ #
64
+ # @!attribute [rw] portal_arn
65
+ # The ARN of the web portal.
66
+ # @return [String]
67
+ #
68
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateIpAccessSettingsRequest AWS API Documentation
69
+ #
70
+ class AssociateIpAccessSettingsRequest < Struct.new(
71
+ :ip_access_settings_arn,
72
+ :portal_arn)
73
+ SENSITIVE = []
74
+ include Aws::Structure
75
+ end
76
+
77
+ # @!attribute [rw] ip_access_settings_arn
78
+ # The ARN of the IP access settings resource.
79
+ # @return [String]
80
+ #
81
+ # @!attribute [rw] portal_arn
82
+ # The ARN of the web portal.
83
+ # @return [String]
84
+ #
85
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateIpAccessSettingsResponse AWS API Documentation
86
+ #
87
+ class AssociateIpAccessSettingsResponse < Struct.new(
88
+ :ip_access_settings_arn,
89
+ :portal_arn)
90
+ SENSITIVE = []
91
+ include Aws::Structure
92
+ end
93
+
60
94
  # @!attribute [rw] network_settings_arn
61
95
  # The ARN of the network settings.
62
96
  # @return [String]
@@ -505,6 +539,72 @@ module Aws::WorkSpacesWeb
505
539
  include Aws::Structure
506
540
  end
507
541
 
542
+ # @!attribute [rw] additional_encryption_context
543
+ # Additional encryption context of the IP access settings.
544
+ # @return [Hash<String,String>]
545
+ #
546
+ # @!attribute [rw] client_token
547
+ # A unique, case-sensitive identifier that you provide to ensure the
548
+ # idempotency of the request. Idempotency ensures that an API request
549
+ # completes only once. With an idempotent request, if the original
550
+ # request completes successfully, subsequent retries with the same
551
+ # client token returns the result from the original successful
552
+ # request.
553
+ #
554
+ # If you do not specify a client token, one is automatically generated
555
+ # by the AWS SDK.
556
+ #
557
+ # **A suitable default value is auto-generated.** You should normally
558
+ # not need to pass this option.
559
+ # @return [String]
560
+ #
561
+ # @!attribute [rw] customer_managed_key
562
+ # The custom managed key of the IP access settings.
563
+ # @return [String]
564
+ #
565
+ # @!attribute [rw] description
566
+ # The description of the IP access settings.
567
+ # @return [String]
568
+ #
569
+ # @!attribute [rw] display_name
570
+ # The display name of the IP access settings.
571
+ # @return [String]
572
+ #
573
+ # @!attribute [rw] ip_rules
574
+ # The IP rules of the IP access settings.
575
+ # @return [Array<Types::IpRule>]
576
+ #
577
+ # @!attribute [rw] tags
578
+ # The tags to add to the browser settings resource. A tag is a
579
+ # key-value pair.
580
+ # @return [Array<Types::Tag>]
581
+ #
582
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateIpAccessSettingsRequest AWS API Documentation
583
+ #
584
+ class CreateIpAccessSettingsRequest < Struct.new(
585
+ :additional_encryption_context,
586
+ :client_token,
587
+ :customer_managed_key,
588
+ :description,
589
+ :display_name,
590
+ :ip_rules,
591
+ :tags)
592
+ SENSITIVE = [:description, :display_name, :ip_rules]
593
+ include Aws::Structure
594
+ end
595
+
596
+ # @!attribute [rw] ip_access_settings_arn
597
+ # The ARN of the IP access settings resource.
598
+ # @return [String]
599
+ #
600
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateIpAccessSettingsResponse AWS API Documentation
601
+ #
602
+ class CreateIpAccessSettingsResponse < Struct.new(
603
+ :ip_access_settings_arn)
604
+ SENSITIVE = []
605
+ include Aws::Structure
606
+ end
607
+
508
608
  # @!attribute [rw] client_token
509
609
  # A unique, case-sensitive identifier that you provide to ensure the
510
610
  # idempotency of the request. Idempotency ensures that an API request
@@ -851,6 +951,22 @@ module Aws::WorkSpacesWeb
851
951
  #
852
952
  class DeleteIdentityProviderResponse < Aws::EmptyStructure; end
853
953
 
954
+ # @!attribute [rw] ip_access_settings_arn
955
+ # The ARN of the IP access settings.
956
+ # @return [String]
957
+ #
958
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DeleteIpAccessSettingsRequest AWS API Documentation
959
+ #
960
+ class DeleteIpAccessSettingsRequest < Struct.new(
961
+ :ip_access_settings_arn)
962
+ SENSITIVE = []
963
+ include Aws::Structure
964
+ end
965
+
966
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DeleteIpAccessSettingsResponse AWS API Documentation
967
+ #
968
+ class DeleteIpAccessSettingsResponse < Aws::EmptyStructure; end
969
+
854
970
  # @!attribute [rw] network_settings_arn
855
971
  # The ARN of the network settings.
856
972
  # @return [String]
@@ -947,6 +1063,22 @@ module Aws::WorkSpacesWeb
947
1063
  #
948
1064
  class DisassociateBrowserSettingsResponse < Aws::EmptyStructure; end
949
1065
 
1066
+ # @!attribute [rw] portal_arn
1067
+ # The ARN of the web portal.
1068
+ # @return [String]
1069
+ #
1070
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DisassociateIpAccessSettingsRequest AWS API Documentation
1071
+ #
1072
+ class DisassociateIpAccessSettingsRequest < Struct.new(
1073
+ :portal_arn)
1074
+ SENSITIVE = []
1075
+ include Aws::Structure
1076
+ end
1077
+
1078
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DisassociateIpAccessSettingsResponse AWS API Documentation
1079
+ #
1080
+ class DisassociateIpAccessSettingsResponse < Aws::EmptyStructure; end
1081
+
950
1082
  # @!attribute [rw] portal_arn
951
1083
  # The ARN of the web portal.
952
1084
  # @return [String]
@@ -1059,6 +1191,30 @@ module Aws::WorkSpacesWeb
1059
1191
  include Aws::Structure
1060
1192
  end
1061
1193
 
1194
+ # @!attribute [rw] ip_access_settings_arn
1195
+ # The ARN of the IP access settings.
1196
+ # @return [String]
1197
+ #
1198
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetIpAccessSettingsRequest AWS API Documentation
1199
+ #
1200
+ class GetIpAccessSettingsRequest < Struct.new(
1201
+ :ip_access_settings_arn)
1202
+ SENSITIVE = []
1203
+ include Aws::Structure
1204
+ end
1205
+
1206
+ # @!attribute [rw] ip_access_settings
1207
+ # The IP access settings.
1208
+ # @return [Types::IpAccessSettings]
1209
+ #
1210
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetIpAccessSettingsResponse AWS API Documentation
1211
+ #
1212
+ class GetIpAccessSettingsResponse < Struct.new(
1213
+ :ip_access_settings)
1214
+ SENSITIVE = []
1215
+ include Aws::Structure
1216
+ end
1217
+
1062
1218
  # @!attribute [rw] network_settings_arn
1063
1219
  # The ARN of the network settings.
1064
1220
  # @return [String]
@@ -1374,6 +1530,95 @@ module Aws::WorkSpacesWeb
1374
1530
  include Aws::Structure
1375
1531
  end
1376
1532
 
1533
+ # The IP access settings resource that can be associated with a web
1534
+ # portal.
1535
+ #
1536
+ # @!attribute [rw] associated_portal_arns
1537
+ # A list of web portal ARNs that this IP access settings resource is
1538
+ # associated with.
1539
+ # @return [Array<String>]
1540
+ #
1541
+ # @!attribute [rw] creation_date
1542
+ # The creation date timestamp of the IP access settings.
1543
+ # @return [Time]
1544
+ #
1545
+ # @!attribute [rw] description
1546
+ # The description of the IP access settings.
1547
+ # @return [String]
1548
+ #
1549
+ # @!attribute [rw] display_name
1550
+ # The display name of the IP access settings.
1551
+ # @return [String]
1552
+ #
1553
+ # @!attribute [rw] ip_access_settings_arn
1554
+ # The ARN of the IP access settings resource.
1555
+ # @return [String]
1556
+ #
1557
+ # @!attribute [rw] ip_rules
1558
+ # The IP rules of the IP access settings.
1559
+ # @return [Array<Types::IpRule>]
1560
+ #
1561
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/IpAccessSettings AWS API Documentation
1562
+ #
1563
+ class IpAccessSettings < Struct.new(
1564
+ :associated_portal_arns,
1565
+ :creation_date,
1566
+ :description,
1567
+ :display_name,
1568
+ :ip_access_settings_arn,
1569
+ :ip_rules)
1570
+ SENSITIVE = [:description, :display_name, :ip_rules]
1571
+ include Aws::Structure
1572
+ end
1573
+
1574
+ # The summary of IP access settings.
1575
+ #
1576
+ # @!attribute [rw] creation_date
1577
+ # The creation date timestamp of the IP access settings.
1578
+ # @return [Time]
1579
+ #
1580
+ # @!attribute [rw] description
1581
+ # The description of the IP access settings.
1582
+ # @return [String]
1583
+ #
1584
+ # @!attribute [rw] display_name
1585
+ # The display name of the IP access settings.
1586
+ # @return [String]
1587
+ #
1588
+ # @!attribute [rw] ip_access_settings_arn
1589
+ # The ARN of IP access settings.
1590
+ # @return [String]
1591
+ #
1592
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/IpAccessSettingsSummary AWS API Documentation
1593
+ #
1594
+ class IpAccessSettingsSummary < Struct.new(
1595
+ :creation_date,
1596
+ :description,
1597
+ :display_name,
1598
+ :ip_access_settings_arn)
1599
+ SENSITIVE = [:description, :display_name]
1600
+ include Aws::Structure
1601
+ end
1602
+
1603
+ # The IP rules of the IP access settings.
1604
+ #
1605
+ # @!attribute [rw] description
1606
+ # The description of the IP rule.
1607
+ # @return [String]
1608
+ #
1609
+ # @!attribute [rw] ip_range
1610
+ # The IP range of the IP rule.
1611
+ # @return [String]
1612
+ #
1613
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/IpRule AWS API Documentation
1614
+ #
1615
+ class IpRule < Struct.new(
1616
+ :description,
1617
+ :ip_range)
1618
+ SENSITIVE = [:description, :ip_range]
1619
+ include Aws::Structure
1620
+ end
1621
+
1377
1622
  # @!attribute [rw] max_results
1378
1623
  # The maximum number of results to be included in the next page.
1379
1624
  # @return [Integer]
@@ -1451,6 +1696,42 @@ module Aws::WorkSpacesWeb
1451
1696
  include Aws::Structure
1452
1697
  end
1453
1698
 
1699
+ # @!attribute [rw] max_results
1700
+ # The maximum number of results to be included in the next page.
1701
+ # @return [Integer]
1702
+ #
1703
+ # @!attribute [rw] next_token
1704
+ # The pagination token used to retrieve the next page of results for
1705
+ # this operation.
1706
+ # @return [String]
1707
+ #
1708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListIpAccessSettingsRequest AWS API Documentation
1709
+ #
1710
+ class ListIpAccessSettingsRequest < Struct.new(
1711
+ :max_results,
1712
+ :next_token)
1713
+ SENSITIVE = []
1714
+ include Aws::Structure
1715
+ end
1716
+
1717
+ # @!attribute [rw] ip_access_settings
1718
+ # The IP access settings.
1719
+ # @return [Array<Types::IpAccessSettingsSummary>]
1720
+ #
1721
+ # @!attribute [rw] next_token
1722
+ # The pagination token used to retrieve the next page of results for
1723
+ # this operation.
1724
+ # @return [String]
1725
+ #
1726
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListIpAccessSettingsResponse AWS API Documentation
1727
+ #
1728
+ class ListIpAccessSettingsResponse < Struct.new(
1729
+ :ip_access_settings,
1730
+ :next_token)
1731
+ SENSITIVE = []
1732
+ include Aws::Structure
1733
+ end
1734
+
1454
1735
  # @!attribute [rw] max_results
1455
1736
  # The maximum number of results to be included in the next page.
1456
1737
  # @return [Integer]
@@ -1797,6 +2078,10 @@ module Aws::WorkSpacesWeb
1797
2078
  # The name of the web portal.
1798
2079
  # @return [String]
1799
2080
  #
2081
+ # @!attribute [rw] ip_access_settings_arn
2082
+ # The ARN of the IP access settings.
2083
+ # @return [String]
2084
+ #
1800
2085
  # @!attribute [rw] network_settings_arn
1801
2086
  # The ARN of the network settings that is associated with the web
1802
2087
  # portal.
@@ -1844,6 +2129,7 @@ module Aws::WorkSpacesWeb
1844
2129
  :browser_type,
1845
2130
  :creation_date,
1846
2131
  :display_name,
2132
+ :ip_access_settings_arn,
1847
2133
  :network_settings_arn,
1848
2134
  :portal_arn,
1849
2135
  :portal_endpoint,
@@ -1894,6 +2180,10 @@ module Aws::WorkSpacesWeb
1894
2180
  # The name of the web portal.
1895
2181
  # @return [String]
1896
2182
  #
2183
+ # @!attribute [rw] ip_access_settings_arn
2184
+ # The ARN of the IP access settings.
2185
+ # @return [String]
2186
+ #
1897
2187
  # @!attribute [rw] network_settings_arn
1898
2188
  # The ARN of the network settings that is associated with the web
1899
2189
  # portal.
@@ -1937,6 +2227,7 @@ module Aws::WorkSpacesWeb
1937
2227
  :browser_type,
1938
2228
  :creation_date,
1939
2229
  :display_name,
2230
+ :ip_access_settings_arn,
1940
2231
  :network_settings_arn,
1941
2232
  :portal_arn,
1942
2233
  :portal_endpoint,
@@ -2327,6 +2618,60 @@ module Aws::WorkSpacesWeb
2327
2618
  include Aws::Structure
2328
2619
  end
2329
2620
 
2621
+ # @!attribute [rw] client_token
2622
+ # A unique, case-sensitive identifier that you provide to ensure the
2623
+ # idempotency of the request. Idempotency ensures that an API request
2624
+ # completes only once. With an idempotent request, if the original
2625
+ # request completes successfully, subsequent retries with the same
2626
+ # client token return the result from the original successful request.
2627
+ #
2628
+ # If you do not specify a client token, one is automatically generated
2629
+ # by the AWS SDK.
2630
+ #
2631
+ # **A suitable default value is auto-generated.** You should normally
2632
+ # not need to pass this option.
2633
+ # @return [String]
2634
+ #
2635
+ # @!attribute [rw] description
2636
+ # The description of the IP access settings.
2637
+ # @return [String]
2638
+ #
2639
+ # @!attribute [rw] display_name
2640
+ # The display name of the IP access settings.
2641
+ # @return [String]
2642
+ #
2643
+ # @!attribute [rw] ip_access_settings_arn
2644
+ # The ARN of the IP access settings.
2645
+ # @return [String]
2646
+ #
2647
+ # @!attribute [rw] ip_rules
2648
+ # The updated IP rules of the IP access settings.
2649
+ # @return [Array<Types::IpRule>]
2650
+ #
2651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateIpAccessSettingsRequest AWS API Documentation
2652
+ #
2653
+ class UpdateIpAccessSettingsRequest < Struct.new(
2654
+ :client_token,
2655
+ :description,
2656
+ :display_name,
2657
+ :ip_access_settings_arn,
2658
+ :ip_rules)
2659
+ SENSITIVE = [:description, :display_name, :ip_rules]
2660
+ include Aws::Structure
2661
+ end
2662
+
2663
+ # @!attribute [rw] ip_access_settings
2664
+ # The IP access settings.
2665
+ # @return [Types::IpAccessSettings]
2666
+ #
2667
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateIpAccessSettingsResponse AWS API Documentation
2668
+ #
2669
+ class UpdateIpAccessSettingsResponse < Struct.new(
2670
+ :ip_access_settings)
2671
+ SENSITIVE = []
2672
+ include Aws::Structure
2673
+ end
2674
+
2330
2675
  # @!attribute [rw] client_token
2331
2676
  # A unique, case-sensitive identifier that you provide to ensure the
2332
2677
  # 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.8.0'
55
+ GEM_VERSION = '1.9.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.8.0
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement