aws-sdk-workspaces 1.106.0 → 1.107.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspaces/client.rb +491 -7
- data/lib/aws-sdk-workspaces/client_api.rb +386 -2
- data/lib/aws-sdk-workspaces/endpoints.rb +126 -0
- data/lib/aws-sdk-workspaces/plugins/endpoints.rb +18 -0
- data/lib/aws-sdk-workspaces/types.rb +804 -5
- data/lib/aws-sdk-workspaces.rb +1 -1
- data/sig/client.rbs +168 -5
- data/sig/types.rbs +229 -2
- metadata +2 -2
@@ -236,6 +236,20 @@ module Aws::WorkSpaces
|
|
236
236
|
end
|
237
237
|
end
|
238
238
|
|
239
|
+
class CreateWorkspacesPool
|
240
|
+
def self.build(context)
|
241
|
+
unless context.config.regional_endpoint
|
242
|
+
endpoint = context.config.endpoint.to_s
|
243
|
+
end
|
244
|
+
Aws::WorkSpaces::EndpointParameters.new(
|
245
|
+
region: context.config.region,
|
246
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
247
|
+
use_fips: context.config.use_fips_endpoint,
|
248
|
+
endpoint: endpoint,
|
249
|
+
)
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
239
253
|
class DeleteAccountLinkInvitation
|
240
254
|
def self.build(context)
|
241
255
|
unless context.config.regional_endpoint
|
@@ -670,6 +684,34 @@ module Aws::WorkSpaces
|
|
670
684
|
end
|
671
685
|
end
|
672
686
|
|
687
|
+
class DescribeWorkspacesPoolSessions
|
688
|
+
def self.build(context)
|
689
|
+
unless context.config.regional_endpoint
|
690
|
+
endpoint = context.config.endpoint.to_s
|
691
|
+
end
|
692
|
+
Aws::WorkSpaces::EndpointParameters.new(
|
693
|
+
region: context.config.region,
|
694
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
695
|
+
use_fips: context.config.use_fips_endpoint,
|
696
|
+
endpoint: endpoint,
|
697
|
+
)
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
701
|
+
class DescribeWorkspacesPools
|
702
|
+
def self.build(context)
|
703
|
+
unless context.config.regional_endpoint
|
704
|
+
endpoint = context.config.endpoint.to_s
|
705
|
+
end
|
706
|
+
Aws::WorkSpaces::EndpointParameters.new(
|
707
|
+
region: context.config.region,
|
708
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
709
|
+
use_fips: context.config.use_fips_endpoint,
|
710
|
+
endpoint: endpoint,
|
711
|
+
)
|
712
|
+
end
|
713
|
+
end
|
714
|
+
|
673
715
|
class DisassociateConnectionAlias
|
674
716
|
def self.build(context)
|
675
717
|
unless context.config.regional_endpoint
|
@@ -866,6 +908,20 @@ module Aws::WorkSpaces
|
|
866
908
|
end
|
867
909
|
end
|
868
910
|
|
911
|
+
class ModifyStreamingProperties
|
912
|
+
def self.build(context)
|
913
|
+
unless context.config.regional_endpoint
|
914
|
+
endpoint = context.config.endpoint.to_s
|
915
|
+
end
|
916
|
+
Aws::WorkSpaces::EndpointParameters.new(
|
917
|
+
region: context.config.region,
|
918
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
919
|
+
use_fips: context.config.use_fips_endpoint,
|
920
|
+
endpoint: endpoint,
|
921
|
+
)
|
922
|
+
end
|
923
|
+
end
|
924
|
+
|
869
925
|
class ModifyWorkspaceAccessProperties
|
870
926
|
def self.build(context)
|
871
927
|
unless context.config.regional_endpoint
|
@@ -1020,6 +1076,20 @@ module Aws::WorkSpaces
|
|
1020
1076
|
end
|
1021
1077
|
end
|
1022
1078
|
|
1079
|
+
class StartWorkspacesPool
|
1080
|
+
def self.build(context)
|
1081
|
+
unless context.config.regional_endpoint
|
1082
|
+
endpoint = context.config.endpoint.to_s
|
1083
|
+
end
|
1084
|
+
Aws::WorkSpaces::EndpointParameters.new(
|
1085
|
+
region: context.config.region,
|
1086
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1087
|
+
use_fips: context.config.use_fips_endpoint,
|
1088
|
+
endpoint: endpoint,
|
1089
|
+
)
|
1090
|
+
end
|
1091
|
+
end
|
1092
|
+
|
1023
1093
|
class StopWorkspaces
|
1024
1094
|
def self.build(context)
|
1025
1095
|
unless context.config.regional_endpoint
|
@@ -1034,6 +1104,20 @@ module Aws::WorkSpaces
|
|
1034
1104
|
end
|
1035
1105
|
end
|
1036
1106
|
|
1107
|
+
class StopWorkspacesPool
|
1108
|
+
def self.build(context)
|
1109
|
+
unless context.config.regional_endpoint
|
1110
|
+
endpoint = context.config.endpoint.to_s
|
1111
|
+
end
|
1112
|
+
Aws::WorkSpaces::EndpointParameters.new(
|
1113
|
+
region: context.config.region,
|
1114
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1115
|
+
use_fips: context.config.use_fips_endpoint,
|
1116
|
+
endpoint: endpoint,
|
1117
|
+
)
|
1118
|
+
end
|
1119
|
+
end
|
1120
|
+
|
1037
1121
|
class TerminateWorkspaces
|
1038
1122
|
def self.build(context)
|
1039
1123
|
unless context.config.regional_endpoint
|
@@ -1048,6 +1132,34 @@ module Aws::WorkSpaces
|
|
1048
1132
|
end
|
1049
1133
|
end
|
1050
1134
|
|
1135
|
+
class TerminateWorkspacesPool
|
1136
|
+
def self.build(context)
|
1137
|
+
unless context.config.regional_endpoint
|
1138
|
+
endpoint = context.config.endpoint.to_s
|
1139
|
+
end
|
1140
|
+
Aws::WorkSpaces::EndpointParameters.new(
|
1141
|
+
region: context.config.region,
|
1142
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1143
|
+
use_fips: context.config.use_fips_endpoint,
|
1144
|
+
endpoint: endpoint,
|
1145
|
+
)
|
1146
|
+
end
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
class TerminateWorkspacesPoolSession
|
1150
|
+
def self.build(context)
|
1151
|
+
unless context.config.regional_endpoint
|
1152
|
+
endpoint = context.config.endpoint.to_s
|
1153
|
+
end
|
1154
|
+
Aws::WorkSpaces::EndpointParameters.new(
|
1155
|
+
region: context.config.region,
|
1156
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1157
|
+
use_fips: context.config.use_fips_endpoint,
|
1158
|
+
endpoint: endpoint,
|
1159
|
+
)
|
1160
|
+
end
|
1161
|
+
end
|
1162
|
+
|
1051
1163
|
class UpdateConnectClientAddIn
|
1052
1164
|
def self.build(context)
|
1053
1165
|
unless context.config.regional_endpoint
|
@@ -1118,5 +1230,19 @@ module Aws::WorkSpaces
|
|
1118
1230
|
end
|
1119
1231
|
end
|
1120
1232
|
|
1233
|
+
class UpdateWorkspacesPool
|
1234
|
+
def self.build(context)
|
1235
|
+
unless context.config.regional_endpoint
|
1236
|
+
endpoint = context.config.endpoint.to_s
|
1237
|
+
end
|
1238
|
+
Aws::WorkSpaces::EndpointParameters.new(
|
1239
|
+
region: context.config.region,
|
1240
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1241
|
+
use_fips: context.config.use_fips_endpoint,
|
1242
|
+
endpoint: endpoint,
|
1243
|
+
)
|
1244
|
+
end
|
1245
|
+
end
|
1246
|
+
|
1121
1247
|
end
|
1122
1248
|
end
|
@@ -90,6 +90,8 @@ module Aws::WorkSpaces
|
|
90
90
|
Aws::WorkSpaces::Endpoints::CreateWorkspaceImage.build(context)
|
91
91
|
when :create_workspaces
|
92
92
|
Aws::WorkSpaces::Endpoints::CreateWorkspaces.build(context)
|
93
|
+
when :create_workspaces_pool
|
94
|
+
Aws::WorkSpaces::Endpoints::CreateWorkspacesPool.build(context)
|
93
95
|
when :delete_account_link_invitation
|
94
96
|
Aws::WorkSpaces::Endpoints::DeleteAccountLinkInvitation.build(context)
|
95
97
|
when :delete_client_branding
|
@@ -152,6 +154,10 @@ module Aws::WorkSpaces
|
|
152
154
|
Aws::WorkSpaces::Endpoints::DescribeWorkspaces.build(context)
|
153
155
|
when :describe_workspaces_connection_status
|
154
156
|
Aws::WorkSpaces::Endpoints::DescribeWorkspacesConnectionStatus.build(context)
|
157
|
+
when :describe_workspaces_pool_sessions
|
158
|
+
Aws::WorkSpaces::Endpoints::DescribeWorkspacesPoolSessions.build(context)
|
159
|
+
when :describe_workspaces_pools
|
160
|
+
Aws::WorkSpaces::Endpoints::DescribeWorkspacesPools.build(context)
|
155
161
|
when :disassociate_connection_alias
|
156
162
|
Aws::WorkSpaces::Endpoints::DisassociateConnectionAlias.build(context)
|
157
163
|
when :disassociate_ip_groups
|
@@ -180,6 +186,8 @@ module Aws::WorkSpaces
|
|
180
186
|
Aws::WorkSpaces::Endpoints::ModifySamlProperties.build(context)
|
181
187
|
when :modify_selfservice_permissions
|
182
188
|
Aws::WorkSpaces::Endpoints::ModifySelfservicePermissions.build(context)
|
189
|
+
when :modify_streaming_properties
|
190
|
+
Aws::WorkSpaces::Endpoints::ModifyStreamingProperties.build(context)
|
183
191
|
when :modify_workspace_access_properties
|
184
192
|
Aws::WorkSpaces::Endpoints::ModifyWorkspaceAccessProperties.build(context)
|
185
193
|
when :modify_workspace_creation_properties
|
@@ -202,10 +210,18 @@ module Aws::WorkSpaces
|
|
202
210
|
Aws::WorkSpaces::Endpoints::RevokeIpRules.build(context)
|
203
211
|
when :start_workspaces
|
204
212
|
Aws::WorkSpaces::Endpoints::StartWorkspaces.build(context)
|
213
|
+
when :start_workspaces_pool
|
214
|
+
Aws::WorkSpaces::Endpoints::StartWorkspacesPool.build(context)
|
205
215
|
when :stop_workspaces
|
206
216
|
Aws::WorkSpaces::Endpoints::StopWorkspaces.build(context)
|
217
|
+
when :stop_workspaces_pool
|
218
|
+
Aws::WorkSpaces::Endpoints::StopWorkspacesPool.build(context)
|
207
219
|
when :terminate_workspaces
|
208
220
|
Aws::WorkSpaces::Endpoints::TerminateWorkspaces.build(context)
|
221
|
+
when :terminate_workspaces_pool
|
222
|
+
Aws::WorkSpaces::Endpoints::TerminateWorkspacesPool.build(context)
|
223
|
+
when :terminate_workspaces_pool_session
|
224
|
+
Aws::WorkSpaces::Endpoints::TerminateWorkspacesPoolSession.build(context)
|
209
225
|
when :update_connect_client_add_in
|
210
226
|
Aws::WorkSpaces::Endpoints::UpdateConnectClientAddIn.build(context)
|
211
227
|
when :update_connection_alias_permission
|
@@ -216,6 +232,8 @@ module Aws::WorkSpaces
|
|
216
232
|
Aws::WorkSpaces::Endpoints::UpdateWorkspaceBundle.build(context)
|
217
233
|
when :update_workspace_image_permission
|
218
234
|
Aws::WorkSpaces::Endpoints::UpdateWorkspaceImagePermission.build(context)
|
235
|
+
when :update_workspaces_pool
|
236
|
+
Aws::WorkSpaces::Endpoints::UpdateWorkspacesPool.build(context)
|
219
237
|
end
|
220
238
|
end
|
221
239
|
end
|