aws-sdk-nimblestudio 1.9.0 → 1.10.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-nimblestudio/client.rb +59 -8
- data/lib/aws-sdk-nimblestudio/client_api.rb +18 -0
- data/lib/aws-sdk-nimblestudio/types.rb +157 -211
- data/lib/aws-sdk-nimblestudio.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 783eb866737bba592bab0ffe02f47c16219e7449ebf5f5c3b5779bb58d4320d9
|
4
|
+
data.tar.gz: 83a481aaf61dbbb63e8d81e04b2e5872a350ad8b464b1c869e49cf041320330b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 024dac07650d53f3fb18cb2625d05eba929c785a8c8271c3f84e87b481894f63dade44926b8c3491548a18bfc6d517faca1cbd406b71c2f94defc8e287195e35
|
7
|
+
data.tar.gz: 26f593af2621e0090c5fd1b95bbd97411f466957612c6780c06bec8ff792b77b63591ab6cd09c11e03349763eb8fb87a434f6f9aeef5cc54e59107796567e134
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.10.0 (2021-12-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon Nimble Studio adds support for users to upload files during a streaming session using NICE DCV native client or browser.
|
8
|
+
|
4
9
|
1.9.0 (2021-11-30)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.10.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::NimbleStudio
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
80
|
|
@@ -175,6 +177,10 @@ module Aws::NimbleStudio
|
|
175
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
176
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
177
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
178
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
179
185
|
# Set to true to disable SDK automatically adding host prefix
|
180
186
|
# to default service endpoint when available.
|
@@ -297,7 +303,7 @@ module Aws::NimbleStudio
|
|
297
303
|
# seconds to wait when opening a HTTP session before raising a
|
298
304
|
# `Timeout::Error`.
|
299
305
|
#
|
300
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
301
307
|
# number of seconds to wait for response data. This value can
|
302
308
|
# safely be set per-request on the session.
|
303
309
|
#
|
@@ -313,6 +319,9 @@ module Aws::NimbleStudio
|
|
313
319
|
# disables this behaviour. This value can safely be set per
|
314
320
|
# request on the session.
|
315
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
316
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
317
326
|
# HTTP debug output will be sent to the `:logger`.
|
318
327
|
#
|
@@ -442,6 +451,13 @@ module Aws::NimbleStudio
|
|
442
451
|
# ec2_instance_types: ["g4dn.xlarge"], # required, accepts g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge
|
443
452
|
# max_session_length_in_minutes: 1,
|
444
453
|
# max_stopped_session_length_in_minutes: 1,
|
454
|
+
# session_storage: {
|
455
|
+
# mode: ["UPLOAD"], # required, accepts UPLOAD
|
456
|
+
# root: {
|
457
|
+
# linux: "StreamingSessionStorageRootPathLinux",
|
458
|
+
# windows: "StreamingSessionStorageRootPathWindows",
|
459
|
+
# },
|
460
|
+
# },
|
445
461
|
# streaming_image_ids: ["StreamingImageId"], # required
|
446
462
|
# },
|
447
463
|
# studio_component_ids: ["String"], # required
|
@@ -471,6 +487,10 @@ module Aws::NimbleStudio
|
|
471
487
|
# resp.launch_profile.stream_configuration.ec2_instance_types[0] #=> String, one of "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge"
|
472
488
|
# resp.launch_profile.stream_configuration.max_session_length_in_minutes #=> Integer
|
473
489
|
# resp.launch_profile.stream_configuration.max_stopped_session_length_in_minutes #=> Integer
|
490
|
+
# resp.launch_profile.stream_configuration.session_storage.mode #=> Array
|
491
|
+
# resp.launch_profile.stream_configuration.session_storage.mode[0] #=> String, one of "UPLOAD"
|
492
|
+
# resp.launch_profile.stream_configuration.session_storage.root.linux #=> String
|
493
|
+
# resp.launch_profile.stream_configuration.session_storage.root.windows #=> String
|
474
494
|
# resp.launch_profile.stream_configuration.streaming_image_ids #=> Array
|
475
495
|
# resp.launch_profile.stream_configuration.streaming_image_ids[0] #=> String
|
476
496
|
# resp.launch_profile.studio_component_ids #=> Array
|
@@ -547,7 +567,7 @@ module Aws::NimbleStudio
|
|
547
567
|
# resp.streaming_image.owner #=> String
|
548
568
|
# resp.streaming_image.platform #=> String
|
549
569
|
# resp.streaming_image.state #=> String, one of "CREATE_IN_PROGRESS", "READY", "DELETE_IN_PROGRESS", "DELETED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "CREATE_FAILED", "DELETE_FAILED"
|
550
|
-
# resp.streaming_image.status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR"
|
570
|
+
# resp.streaming_image.status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR", "ACCESS_DENIED"
|
551
571
|
# resp.streaming_image.status_message #=> String
|
552
572
|
# resp.streaming_image.streaming_image_id #=> String
|
553
573
|
# resp.streaming_image.tags #=> Hash
|
@@ -1015,6 +1035,10 @@ module Aws::NimbleStudio
|
|
1015
1035
|
# resp.launch_profile.stream_configuration.ec2_instance_types[0] #=> String, one of "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge"
|
1016
1036
|
# resp.launch_profile.stream_configuration.max_session_length_in_minutes #=> Integer
|
1017
1037
|
# resp.launch_profile.stream_configuration.max_stopped_session_length_in_minutes #=> Integer
|
1038
|
+
# resp.launch_profile.stream_configuration.session_storage.mode #=> Array
|
1039
|
+
# resp.launch_profile.stream_configuration.session_storage.mode[0] #=> String, one of "UPLOAD"
|
1040
|
+
# resp.launch_profile.stream_configuration.session_storage.root.linux #=> String
|
1041
|
+
# resp.launch_profile.stream_configuration.session_storage.root.windows #=> String
|
1018
1042
|
# resp.launch_profile.stream_configuration.streaming_image_ids #=> Array
|
1019
1043
|
# resp.launch_profile.stream_configuration.streaming_image_ids[0] #=> String
|
1020
1044
|
# resp.launch_profile.studio_component_ids #=> Array
|
@@ -1116,7 +1140,7 @@ module Aws::NimbleStudio
|
|
1116
1140
|
# resp.streaming_image.owner #=> String
|
1117
1141
|
# resp.streaming_image.platform #=> String
|
1118
1142
|
# resp.streaming_image.state #=> String, one of "CREATE_IN_PROGRESS", "READY", "DELETE_IN_PROGRESS", "DELETED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "CREATE_FAILED", "DELETE_FAILED"
|
1119
|
-
# resp.streaming_image.status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR"
|
1143
|
+
# resp.streaming_image.status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR", "ACCESS_DENIED"
|
1120
1144
|
# resp.streaming_image.status_message #=> String
|
1121
1145
|
# resp.streaming_image.streaming_image_id #=> String
|
1122
1146
|
# resp.streaming_image.tags #=> Hash
|
@@ -1441,6 +1465,10 @@ module Aws::NimbleStudio
|
|
1441
1465
|
# resp.launch_profile.stream_configuration.ec2_instance_types[0] #=> String, one of "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge"
|
1442
1466
|
# resp.launch_profile.stream_configuration.max_session_length_in_minutes #=> Integer
|
1443
1467
|
# resp.launch_profile.stream_configuration.max_stopped_session_length_in_minutes #=> Integer
|
1468
|
+
# resp.launch_profile.stream_configuration.session_storage.mode #=> Array
|
1469
|
+
# resp.launch_profile.stream_configuration.session_storage.mode[0] #=> String, one of "UPLOAD"
|
1470
|
+
# resp.launch_profile.stream_configuration.session_storage.root.linux #=> String
|
1471
|
+
# resp.launch_profile.stream_configuration.session_storage.root.windows #=> String
|
1444
1472
|
# resp.launch_profile.stream_configuration.streaming_image_ids #=> Array
|
1445
1473
|
# resp.launch_profile.stream_configuration.streaming_image_ids[0] #=> String
|
1446
1474
|
# resp.launch_profile.studio_component_ids #=> Array
|
@@ -1510,6 +1538,10 @@ module Aws::NimbleStudio
|
|
1510
1538
|
# resp.launch_profile.stream_configuration.ec2_instance_types[0] #=> String, one of "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge"
|
1511
1539
|
# resp.launch_profile.stream_configuration.max_session_length_in_minutes #=> Integer
|
1512
1540
|
# resp.launch_profile.stream_configuration.max_stopped_session_length_in_minutes #=> Integer
|
1541
|
+
# resp.launch_profile.stream_configuration.session_storage.mode #=> Array
|
1542
|
+
# resp.launch_profile.stream_configuration.session_storage.mode[0] #=> String, one of "UPLOAD"
|
1543
|
+
# resp.launch_profile.stream_configuration.session_storage.root.linux #=> String
|
1544
|
+
# resp.launch_profile.stream_configuration.session_storage.root.windows #=> String
|
1513
1545
|
# resp.launch_profile.stream_configuration.streaming_image_ids #=> Array
|
1514
1546
|
# resp.launch_profile.stream_configuration.streaming_image_ids[0] #=> String
|
1515
1547
|
# resp.launch_profile.studio_component_ids #=> Array
|
@@ -1530,7 +1562,7 @@ module Aws::NimbleStudio
|
|
1530
1562
|
# resp.streaming_images[0].owner #=> String
|
1531
1563
|
# resp.streaming_images[0].platform #=> String
|
1532
1564
|
# resp.streaming_images[0].state #=> String, one of "CREATE_IN_PROGRESS", "READY", "DELETE_IN_PROGRESS", "DELETED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "CREATE_FAILED", "DELETE_FAILED"
|
1533
|
-
# resp.streaming_images[0].status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR"
|
1565
|
+
# resp.streaming_images[0].status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR", "ACCESS_DENIED"
|
1534
1566
|
# resp.streaming_images[0].status_message #=> String
|
1535
1567
|
# resp.streaming_images[0].streaming_image_id #=> String
|
1536
1568
|
# resp.streaming_images[0].tags #=> Hash
|
@@ -1696,7 +1728,7 @@ module Aws::NimbleStudio
|
|
1696
1728
|
# resp.streaming_image.owner #=> String
|
1697
1729
|
# resp.streaming_image.platform #=> String
|
1698
1730
|
# resp.streaming_image.state #=> String, one of "CREATE_IN_PROGRESS", "READY", "DELETE_IN_PROGRESS", "DELETED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "CREATE_FAILED", "DELETE_FAILED"
|
1699
|
-
# resp.streaming_image.status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR"
|
1731
|
+
# resp.streaming_image.status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR", "ACCESS_DENIED"
|
1700
1732
|
# resp.streaming_image.status_message #=> String
|
1701
1733
|
# resp.streaming_image.streaming_image_id #=> String
|
1702
1734
|
# resp.streaming_image.tags #=> Hash
|
@@ -2186,6 +2218,10 @@ module Aws::NimbleStudio
|
|
2186
2218
|
# resp.launch_profiles[0].stream_configuration.ec2_instance_types[0] #=> String, one of "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge"
|
2187
2219
|
# resp.launch_profiles[0].stream_configuration.max_session_length_in_minutes #=> Integer
|
2188
2220
|
# resp.launch_profiles[0].stream_configuration.max_stopped_session_length_in_minutes #=> Integer
|
2221
|
+
# resp.launch_profiles[0].stream_configuration.session_storage.mode #=> Array
|
2222
|
+
# resp.launch_profiles[0].stream_configuration.session_storage.mode[0] #=> String, one of "UPLOAD"
|
2223
|
+
# resp.launch_profiles[0].stream_configuration.session_storage.root.linux #=> String
|
2224
|
+
# resp.launch_profiles[0].stream_configuration.session_storage.root.windows #=> String
|
2189
2225
|
# resp.launch_profiles[0].stream_configuration.streaming_image_ids #=> Array
|
2190
2226
|
# resp.launch_profiles[0].stream_configuration.streaming_image_ids[0] #=> String
|
2191
2227
|
# resp.launch_profiles[0].studio_component_ids #=> Array
|
@@ -2249,7 +2285,7 @@ module Aws::NimbleStudio
|
|
2249
2285
|
# resp.streaming_images[0].owner #=> String
|
2250
2286
|
# resp.streaming_images[0].platform #=> String
|
2251
2287
|
# resp.streaming_images[0].state #=> String, one of "CREATE_IN_PROGRESS", "READY", "DELETE_IN_PROGRESS", "DELETED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "CREATE_FAILED", "DELETE_FAILED"
|
2252
|
-
# resp.streaming_images[0].status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR"
|
2288
|
+
# resp.streaming_images[0].status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR", "ACCESS_DENIED"
|
2253
2289
|
# resp.streaming_images[0].status_message #=> String
|
2254
2290
|
# resp.streaming_images[0].streaming_image_id #=> String
|
2255
2291
|
# resp.streaming_images[0].tags #=> Hash
|
@@ -2423,6 +2459,10 @@ module Aws::NimbleStudio
|
|
2423
2459
|
|
2424
2460
|
# Get all users in a given studio membership.
|
2425
2461
|
#
|
2462
|
+
# <note markdown="1"> `ListStudioMembers` only returns admin members.
|
2463
|
+
#
|
2464
|
+
# </note>
|
2465
|
+
#
|
2426
2466
|
# @option params [Integer] :max_results
|
2427
2467
|
# The max number of results to return in the response.
|
2428
2468
|
#
|
@@ -2950,6 +2990,13 @@ module Aws::NimbleStudio
|
|
2950
2990
|
# ec2_instance_types: ["g4dn.xlarge"], # required, accepts g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge
|
2951
2991
|
# max_session_length_in_minutes: 1,
|
2952
2992
|
# max_stopped_session_length_in_minutes: 1,
|
2993
|
+
# session_storage: {
|
2994
|
+
# mode: ["UPLOAD"], # required, accepts UPLOAD
|
2995
|
+
# root: {
|
2996
|
+
# linux: "StreamingSessionStorageRootPathLinux",
|
2997
|
+
# windows: "StreamingSessionStorageRootPathWindows",
|
2998
|
+
# },
|
2999
|
+
# },
|
2953
3000
|
# streaming_image_ids: ["StreamingImageId"], # required
|
2954
3001
|
# },
|
2955
3002
|
# studio_component_ids: ["String"],
|
@@ -2976,6 +3023,10 @@ module Aws::NimbleStudio
|
|
2976
3023
|
# resp.launch_profile.stream_configuration.ec2_instance_types[0] #=> String, one of "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge"
|
2977
3024
|
# resp.launch_profile.stream_configuration.max_session_length_in_minutes #=> Integer
|
2978
3025
|
# resp.launch_profile.stream_configuration.max_stopped_session_length_in_minutes #=> Integer
|
3026
|
+
# resp.launch_profile.stream_configuration.session_storage.mode #=> Array
|
3027
|
+
# resp.launch_profile.stream_configuration.session_storage.mode[0] #=> String, one of "UPLOAD"
|
3028
|
+
# resp.launch_profile.stream_configuration.session_storage.root.linux #=> String
|
3029
|
+
# resp.launch_profile.stream_configuration.session_storage.root.windows #=> String
|
2979
3030
|
# resp.launch_profile.stream_configuration.streaming_image_ids #=> Array
|
2980
3031
|
# resp.launch_profile.stream_configuration.streaming_image_ids[0] #=> String
|
2981
3032
|
# resp.launch_profile.studio_component_ids #=> Array
|
@@ -3098,7 +3149,7 @@ module Aws::NimbleStudio
|
|
3098
3149
|
# resp.streaming_image.owner #=> String
|
3099
3150
|
# resp.streaming_image.platform #=> String
|
3100
3151
|
# resp.streaming_image.state #=> String, one of "CREATE_IN_PROGRESS", "READY", "DELETE_IN_PROGRESS", "DELETED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "CREATE_FAILED", "DELETE_FAILED"
|
3101
|
-
# resp.streaming_image.status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR"
|
3152
|
+
# resp.streaming_image.status_code #=> String, one of "STREAMING_IMAGE_CREATE_IN_PROGRESS", "STREAMING_IMAGE_READY", "STREAMING_IMAGE_DELETE_IN_PROGRESS", "STREAMING_IMAGE_DELETED", "STREAMING_IMAGE_UPDATE_IN_PROGRESS", "INTERNAL_ERROR", "ACCESS_DENIED"
|
3102
3153
|
# resp.streaming_image.status_message #=> String
|
3103
3154
|
# resp.streaming_image.streaming_image_id #=> String
|
3104
3155
|
# resp.streaming_image.tags #=> Hash
|
@@ -3346,7 +3397,7 @@ module Aws::NimbleStudio
|
|
3346
3397
|
params: params,
|
3347
3398
|
config: config)
|
3348
3399
|
context[:gem_name] = 'aws-sdk-nimblestudio'
|
3349
|
-
context[:gem_version] = '1.
|
3400
|
+
context[:gem_version] = '1.10.0'
|
3350
3401
|
Seahorse::Client::Request.new(handlers, context)
|
3351
3402
|
end
|
3352
3403
|
|
@@ -158,6 +158,7 @@ module Aws::NimbleStudio
|
|
158
158
|
StreamConfigurationCreate = Shapes::StructureShape.new(name: 'StreamConfigurationCreate')
|
159
159
|
StreamConfigurationMaxSessionLengthInMinutes = Shapes::IntegerShape.new(name: 'StreamConfigurationMaxSessionLengthInMinutes')
|
160
160
|
StreamConfigurationMaxStoppedSessionLengthInMinutes = Shapes::IntegerShape.new(name: 'StreamConfigurationMaxStoppedSessionLengthInMinutes')
|
161
|
+
StreamConfigurationSessionStorage = Shapes::StructureShape.new(name: 'StreamConfigurationSessionStorage')
|
161
162
|
StreamingClipboardMode = Shapes::StringShape.new(name: 'StreamingClipboardMode')
|
162
163
|
StreamingImage = Shapes::StructureShape.new(name: 'StreamingImage')
|
163
164
|
StreamingImageEncryptionConfiguration = Shapes::StructureShape.new(name: 'StreamingImageEncryptionConfiguration')
|
@@ -177,6 +178,11 @@ module Aws::NimbleStudio
|
|
177
178
|
StreamingSessionList = Shapes::ListShape.new(name: 'StreamingSessionList')
|
178
179
|
StreamingSessionState = Shapes::StringShape.new(name: 'StreamingSessionState')
|
179
180
|
StreamingSessionStatusCode = Shapes::StringShape.new(name: 'StreamingSessionStatusCode')
|
181
|
+
StreamingSessionStorageMode = Shapes::StringShape.new(name: 'StreamingSessionStorageMode')
|
182
|
+
StreamingSessionStorageModeList = Shapes::ListShape.new(name: 'StreamingSessionStorageModeList')
|
183
|
+
StreamingSessionStorageRoot = Shapes::StructureShape.new(name: 'StreamingSessionStorageRoot')
|
184
|
+
StreamingSessionStorageRootPathLinux = Shapes::StringShape.new(name: 'StreamingSessionStorageRootPathLinux')
|
185
|
+
StreamingSessionStorageRootPathWindows = Shapes::StringShape.new(name: 'StreamingSessionStorageRootPathWindows')
|
180
186
|
StreamingSessionStream = Shapes::StructureShape.new(name: 'StreamingSessionStream')
|
181
187
|
StreamingSessionStreamExpirationInSeconds = Shapes::IntegerShape.new(name: 'StreamingSessionStreamExpirationInSeconds')
|
182
188
|
StreamingSessionStreamState = Shapes::StringShape.new(name: 'StreamingSessionStreamState')
|
@@ -752,6 +758,7 @@ module Aws::NimbleStudio
|
|
752
758
|
StreamConfiguration.add_member(:ec2_instance_types, Shapes::ShapeRef.new(shape: StreamingInstanceTypeList, required: true, location_name: "ec2InstanceTypes"))
|
753
759
|
StreamConfiguration.add_member(:max_session_length_in_minutes, Shapes::ShapeRef.new(shape: StreamConfigurationMaxSessionLengthInMinutes, location_name: "maxSessionLengthInMinutes"))
|
754
760
|
StreamConfiguration.add_member(:max_stopped_session_length_in_minutes, Shapes::ShapeRef.new(shape: StreamConfigurationMaxStoppedSessionLengthInMinutes, location_name: "maxStoppedSessionLengthInMinutes"))
|
761
|
+
StreamConfiguration.add_member(:session_storage, Shapes::ShapeRef.new(shape: StreamConfigurationSessionStorage, location_name: "sessionStorage"))
|
755
762
|
StreamConfiguration.add_member(:streaming_image_ids, Shapes::ShapeRef.new(shape: StreamingImageIdList, required: true, location_name: "streamingImageIds"))
|
756
763
|
StreamConfiguration.struct_class = Types::StreamConfiguration
|
757
764
|
|
@@ -759,9 +766,14 @@ module Aws::NimbleStudio
|
|
759
766
|
StreamConfigurationCreate.add_member(:ec2_instance_types, Shapes::ShapeRef.new(shape: StreamingInstanceTypeList, required: true, location_name: "ec2InstanceTypes"))
|
760
767
|
StreamConfigurationCreate.add_member(:max_session_length_in_minutes, Shapes::ShapeRef.new(shape: StreamConfigurationMaxSessionLengthInMinutes, location_name: "maxSessionLengthInMinutes"))
|
761
768
|
StreamConfigurationCreate.add_member(:max_stopped_session_length_in_minutes, Shapes::ShapeRef.new(shape: StreamConfigurationMaxStoppedSessionLengthInMinutes, location_name: "maxStoppedSessionLengthInMinutes"))
|
769
|
+
StreamConfigurationCreate.add_member(:session_storage, Shapes::ShapeRef.new(shape: StreamConfigurationSessionStorage, location_name: "sessionStorage"))
|
762
770
|
StreamConfigurationCreate.add_member(:streaming_image_ids, Shapes::ShapeRef.new(shape: StreamingImageIdList, required: true, location_name: "streamingImageIds"))
|
763
771
|
StreamConfigurationCreate.struct_class = Types::StreamConfigurationCreate
|
764
772
|
|
773
|
+
StreamConfigurationSessionStorage.add_member(:mode, Shapes::ShapeRef.new(shape: StreamingSessionStorageModeList, required: true, location_name: "mode"))
|
774
|
+
StreamConfigurationSessionStorage.add_member(:root, Shapes::ShapeRef.new(shape: StreamingSessionStorageRoot, location_name: "root"))
|
775
|
+
StreamConfigurationSessionStorage.struct_class = Types::StreamConfigurationSessionStorage
|
776
|
+
|
765
777
|
StreamingImage.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
766
778
|
StreamingImage.add_member(:description, Shapes::ShapeRef.new(shape: SyntheticStreamingImageStreamingImageDescription, location_name: "description"))
|
767
779
|
StreamingImage.add_member(:ec2_image_id, Shapes::ShapeRef.new(shape: EC2ImageId, location_name: "ec2ImageId"))
|
@@ -811,6 +823,12 @@ module Aws::NimbleStudio
|
|
811
823
|
|
812
824
|
StreamingSessionList.member = Shapes::ShapeRef.new(shape: StreamingSession)
|
813
825
|
|
826
|
+
StreamingSessionStorageModeList.member = Shapes::ShapeRef.new(shape: StreamingSessionStorageMode)
|
827
|
+
|
828
|
+
StreamingSessionStorageRoot.add_member(:linux, Shapes::ShapeRef.new(shape: StreamingSessionStorageRootPathLinux, location_name: "linux"))
|
829
|
+
StreamingSessionStorageRoot.add_member(:windows, Shapes::ShapeRef.new(shape: StreamingSessionStorageRootPathWindows, location_name: "windows"))
|
830
|
+
StreamingSessionStorageRoot.struct_class = Types::StreamingSessionStorageRoot
|
831
|
+
|
814
832
|
StreamingSessionStream.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
815
833
|
StreamingSessionStream.add_member(:created_by, Shapes::ShapeRef.new(shape: String, location_name: "createdBy"))
|
816
834
|
StreamingSessionStream.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
@@ -10,10 +10,6 @@
|
|
10
10
|
module Aws::NimbleStudio
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# <zonbook />
|
14
|
-
#
|
15
|
-
# <xhtml />
|
16
|
-
#
|
17
13
|
# @note When making an API call, you may pass AcceptEulasRequest
|
18
14
|
# data as a hash:
|
19
15
|
#
|
@@ -51,10 +47,6 @@ module Aws::NimbleStudio
|
|
51
47
|
include Aws::Structure
|
52
48
|
end
|
53
49
|
|
54
|
-
# <zonbook />
|
55
|
-
#
|
56
|
-
# <xhtml />
|
57
|
-
#
|
58
50
|
# @!attribute [rw] eula_acceptances
|
59
51
|
# A collection of EULA acceptances.
|
60
52
|
# @return [Array<Types::EulaAcceptance>]
|
@@ -215,10 +207,6 @@ module Aws::NimbleStudio
|
|
215
207
|
include Aws::Structure
|
216
208
|
end
|
217
209
|
|
218
|
-
# <zonbook />
|
219
|
-
#
|
220
|
-
# <xhtml />
|
221
|
-
#
|
222
210
|
# @note When making an API call, you may pass CreateLaunchProfileRequest
|
223
211
|
# data as a hash:
|
224
212
|
#
|
@@ -233,6 +221,13 @@ module Aws::NimbleStudio
|
|
233
221
|
# ec2_instance_types: ["g4dn.xlarge"], # required, accepts g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge
|
234
222
|
# max_session_length_in_minutes: 1,
|
235
223
|
# max_stopped_session_length_in_minutes: 1,
|
224
|
+
# session_storage: {
|
225
|
+
# mode: ["UPLOAD"], # required, accepts UPLOAD
|
226
|
+
# root: {
|
227
|
+
# linux: "StreamingSessionStorageRootPathLinux",
|
228
|
+
# windows: "StreamingSessionStorageRootPathWindows",
|
229
|
+
# },
|
230
|
+
# },
|
236
231
|
# streaming_image_ids: ["StreamingImageId"], # required
|
237
232
|
# },
|
238
233
|
# studio_component_ids: ["String"], # required
|
@@ -305,10 +300,6 @@ module Aws::NimbleStudio
|
|
305
300
|
include Aws::Structure
|
306
301
|
end
|
307
302
|
|
308
|
-
# <zonbook />
|
309
|
-
#
|
310
|
-
# <xhtml />
|
311
|
-
#
|
312
303
|
# @!attribute [rw] launch_profile
|
313
304
|
# The launch profile.
|
314
305
|
# @return [Types::LaunchProfile]
|
@@ -321,10 +312,6 @@ module Aws::NimbleStudio
|
|
321
312
|
include Aws::Structure
|
322
313
|
end
|
323
314
|
|
324
|
-
# <zonbook />
|
325
|
-
#
|
326
|
-
# <xhtml />
|
327
|
-
#
|
328
315
|
# @note When making an API call, you may pass CreateStreamingImageRequest
|
329
316
|
# data as a hash:
|
330
317
|
#
|
@@ -384,10 +371,6 @@ module Aws::NimbleStudio
|
|
384
371
|
include Aws::Structure
|
385
372
|
end
|
386
373
|
|
387
|
-
# <zonbook />
|
388
|
-
#
|
389
|
-
# <xhtml />
|
390
|
-
#
|
391
374
|
# @!attribute [rw] streaming_image
|
392
375
|
# The streaming image.
|
393
376
|
# @return [Types::StreamingImage]
|
@@ -400,10 +383,6 @@ module Aws::NimbleStudio
|
|
400
383
|
include Aws::Structure
|
401
384
|
end
|
402
385
|
|
403
|
-
# <zonbook />
|
404
|
-
#
|
405
|
-
# <xhtml />
|
406
|
-
#
|
407
386
|
# @note When making an API call, you may pass CreateStreamingSessionRequest
|
408
387
|
# data as a hash:
|
409
388
|
#
|
@@ -468,10 +447,6 @@ module Aws::NimbleStudio
|
|
468
447
|
include Aws::Structure
|
469
448
|
end
|
470
449
|
|
471
|
-
# <zonbook />
|
472
|
-
#
|
473
|
-
# <xhtml />
|
474
|
-
#
|
475
450
|
# @!attribute [rw] session
|
476
451
|
# The session.
|
477
452
|
# @return [Types::StreamingSession]
|
@@ -484,10 +459,6 @@ module Aws::NimbleStudio
|
|
484
459
|
include Aws::Structure
|
485
460
|
end
|
486
461
|
|
487
|
-
# <zonbook />
|
488
|
-
#
|
489
|
-
# <xhtml />
|
490
|
-
#
|
491
462
|
# @note When making an API call, you may pass CreateStreamingSessionStreamRequest
|
492
463
|
# data as a hash:
|
493
464
|
#
|
@@ -531,10 +502,6 @@ module Aws::NimbleStudio
|
|
531
502
|
include Aws::Structure
|
532
503
|
end
|
533
504
|
|
534
|
-
# <zonbook />
|
535
|
-
#
|
536
|
-
# <xhtml />
|
537
|
-
#
|
538
505
|
# @!attribute [rw] stream
|
539
506
|
# The stream.
|
540
507
|
# @return [Types::StreamingSessionStream]
|
@@ -547,10 +514,6 @@ module Aws::NimbleStudio
|
|
547
514
|
include Aws::Structure
|
548
515
|
end
|
549
516
|
|
550
|
-
# <zonbook />
|
551
|
-
#
|
552
|
-
# <xhtml />
|
553
|
-
#
|
554
517
|
# @note When making an API call, you may pass CreateStudioComponentRequest
|
555
518
|
# data as a hash:
|
556
519
|
#
|
@@ -688,10 +651,6 @@ module Aws::NimbleStudio
|
|
688
651
|
include Aws::Structure
|
689
652
|
end
|
690
653
|
|
691
|
-
# <zonbook />
|
692
|
-
#
|
693
|
-
# <xhtml />
|
694
|
-
#
|
695
654
|
# @note When making an API call, you may pass CreateStudioRequest
|
696
655
|
# data as a hash:
|
697
656
|
#
|
@@ -762,10 +721,6 @@ module Aws::NimbleStudio
|
|
762
721
|
include Aws::Structure
|
763
722
|
end
|
764
723
|
|
765
|
-
# <zonbook />
|
766
|
-
#
|
767
|
-
# <xhtml />
|
768
|
-
#
|
769
724
|
# @!attribute [rw] studio
|
770
725
|
# Information about a studio.
|
771
726
|
# @return [Types::Studio]
|
@@ -822,10 +777,6 @@ module Aws::NimbleStudio
|
|
822
777
|
include Aws::Structure
|
823
778
|
end
|
824
779
|
|
825
|
-
# <zonbook />
|
826
|
-
#
|
827
|
-
# <xhtml />
|
828
|
-
#
|
829
780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/nimble-2020-08-01/DeleteLaunchProfileMemberResponse AWS API Documentation
|
830
781
|
#
|
831
782
|
class DeleteLaunchProfileMemberResponse < Aws::EmptyStructure; end
|
@@ -867,10 +818,6 @@ module Aws::NimbleStudio
|
|
867
818
|
include Aws::Structure
|
868
819
|
end
|
869
820
|
|
870
|
-
# <zonbook />
|
871
|
-
#
|
872
|
-
# <xhtml />
|
873
|
-
#
|
874
821
|
# @!attribute [rw] launch_profile
|
875
822
|
# The launch profile.
|
876
823
|
# @return [Types::LaunchProfile]
|
@@ -920,10 +867,6 @@ module Aws::NimbleStudio
|
|
920
867
|
include Aws::Structure
|
921
868
|
end
|
922
869
|
|
923
|
-
# <zonbook />
|
924
|
-
#
|
925
|
-
# <xhtml />
|
926
|
-
#
|
927
870
|
# @!attribute [rw] streaming_image
|
928
871
|
# The streaming image.
|
929
872
|
# @return [Types::StreamingImage]
|
@@ -973,10 +916,6 @@ module Aws::NimbleStudio
|
|
973
916
|
include Aws::Structure
|
974
917
|
end
|
975
918
|
|
976
|
-
# <zonbook />
|
977
|
-
#
|
978
|
-
# <xhtml />
|
979
|
-
#
|
980
919
|
# @!attribute [rw] session
|
981
920
|
# The session.
|
982
921
|
# @return [Types::StreamingSession]
|
@@ -1026,10 +965,6 @@ module Aws::NimbleStudio
|
|
1026
965
|
include Aws::Structure
|
1027
966
|
end
|
1028
967
|
|
1029
|
-
# <zonbook />
|
1030
|
-
#
|
1031
|
-
# <xhtml />
|
1032
|
-
#
|
1033
968
|
# @!attribute [rw] studio_component
|
1034
969
|
# Information about the studio component.
|
1035
970
|
# @return [Types::StudioComponent]
|
@@ -1080,10 +1015,6 @@ module Aws::NimbleStudio
|
|
1080
1015
|
include Aws::Structure
|
1081
1016
|
end
|
1082
1017
|
|
1083
|
-
# <zonbook />
|
1084
|
-
#
|
1085
|
-
# <xhtml />
|
1086
|
-
#
|
1087
1018
|
# @see http://docs.aws.amazon.com/goto/WebAPI/nimble-2020-08-01/DeleteStudioMemberResponse AWS API Documentation
|
1088
1019
|
#
|
1089
1020
|
class DeleteStudioMemberResponse < Aws::EmptyStructure; end
|
@@ -1119,10 +1050,6 @@ module Aws::NimbleStudio
|
|
1119
1050
|
include Aws::Structure
|
1120
1051
|
end
|
1121
1052
|
|
1122
|
-
# <zonbook />
|
1123
|
-
#
|
1124
|
-
# <xhtml />
|
1125
|
-
#
|
1126
1053
|
# @!attribute [rw] studio
|
1127
1054
|
# Information about a studio.
|
1128
1055
|
# @return [Types::Studio]
|
@@ -1225,10 +1152,6 @@ module Aws::NimbleStudio
|
|
1225
1152
|
include Aws::Structure
|
1226
1153
|
end
|
1227
1154
|
|
1228
|
-
# <zonbook />
|
1229
|
-
#
|
1230
|
-
# <xhtml />
|
1231
|
-
#
|
1232
1155
|
# @!attribute [rw] eula
|
1233
1156
|
# The EULA.
|
1234
1157
|
# @return [Types::Eula]
|
@@ -1266,10 +1189,6 @@ module Aws::NimbleStudio
|
|
1266
1189
|
include Aws::Structure
|
1267
1190
|
end
|
1268
1191
|
|
1269
|
-
# <zonbook />
|
1270
|
-
#
|
1271
|
-
# <xhtml />
|
1272
|
-
#
|
1273
1192
|
# @!attribute [rw] launch_profile
|
1274
1193
|
# The launch profile.
|
1275
1194
|
# @return [Types::LaunchProfile]
|
@@ -1336,10 +1255,6 @@ module Aws::NimbleStudio
|
|
1336
1255
|
include Aws::Structure
|
1337
1256
|
end
|
1338
1257
|
|
1339
|
-
# <zonbook />
|
1340
|
-
#
|
1341
|
-
# <xhtml />
|
1342
|
-
#
|
1343
1258
|
# @!attribute [rw] launch_profile_initialization
|
1344
1259
|
# The launch profile initialization.
|
1345
1260
|
# @return [Types::LaunchProfileInitialization]
|
@@ -1384,10 +1299,6 @@ module Aws::NimbleStudio
|
|
1384
1299
|
include Aws::Structure
|
1385
1300
|
end
|
1386
1301
|
|
1387
|
-
# <zonbook />
|
1388
|
-
#
|
1389
|
-
# <xhtml />
|
1390
|
-
#
|
1391
1302
|
# @!attribute [rw] member
|
1392
1303
|
# The member.
|
1393
1304
|
# @return [Types::LaunchProfileMembership]
|
@@ -1425,10 +1336,6 @@ module Aws::NimbleStudio
|
|
1425
1336
|
include Aws::Structure
|
1426
1337
|
end
|
1427
1338
|
|
1428
|
-
# <zonbook />
|
1429
|
-
#
|
1430
|
-
# <xhtml />
|
1431
|
-
#
|
1432
1339
|
# @!attribute [rw] launch_profile
|
1433
1340
|
# The launch profile.
|
1434
1341
|
# @return [Types::LaunchProfile]
|
@@ -1466,10 +1373,6 @@ module Aws::NimbleStudio
|
|
1466
1373
|
include Aws::Structure
|
1467
1374
|
end
|
1468
1375
|
|
1469
|
-
# <zonbook />
|
1470
|
-
#
|
1471
|
-
# <xhtml />
|
1472
|
-
#
|
1473
1376
|
# @!attribute [rw] streaming_image
|
1474
1377
|
# The streaming image.
|
1475
1378
|
# @return [Types::StreamingImage]
|
@@ -1507,10 +1410,6 @@ module Aws::NimbleStudio
|
|
1507
1410
|
include Aws::Structure
|
1508
1411
|
end
|
1509
1412
|
|
1510
|
-
# <zonbook />
|
1511
|
-
#
|
1512
|
-
# <xhtml />
|
1513
|
-
#
|
1514
1413
|
# @!attribute [rw] session
|
1515
1414
|
# The session.
|
1516
1415
|
# @return [Types::StreamingSession]
|
@@ -1554,10 +1453,6 @@ module Aws::NimbleStudio
|
|
1554
1453
|
include Aws::Structure
|
1555
1454
|
end
|
1556
1455
|
|
1557
|
-
# <zonbook />
|
1558
|
-
#
|
1559
|
-
# <xhtml />
|
1560
|
-
#
|
1561
1456
|
# @!attribute [rw] stream
|
1562
1457
|
# The stream.
|
1563
1458
|
# @return [Types::StreamingSessionStream]
|
@@ -1595,10 +1490,6 @@ module Aws::NimbleStudio
|
|
1595
1490
|
include Aws::Structure
|
1596
1491
|
end
|
1597
1492
|
|
1598
|
-
# <zonbook />
|
1599
|
-
#
|
1600
|
-
# <xhtml />
|
1601
|
-
#
|
1602
1493
|
# @!attribute [rw] studio_component
|
1603
1494
|
# Information about the studio component.
|
1604
1495
|
# @return [Types::StudioComponent]
|
@@ -1637,10 +1528,6 @@ module Aws::NimbleStudio
|
|
1637
1528
|
include Aws::Structure
|
1638
1529
|
end
|
1639
1530
|
|
1640
|
-
# <zonbook />
|
1641
|
-
#
|
1642
|
-
# <xhtml />
|
1643
|
-
#
|
1644
1531
|
# @!attribute [rw] member
|
1645
1532
|
# The member.
|
1646
1533
|
# @return [Types::StudioMembership]
|
@@ -1672,10 +1559,6 @@ module Aws::NimbleStudio
|
|
1672
1559
|
include Aws::Structure
|
1673
1560
|
end
|
1674
1561
|
|
1675
|
-
# <zonbook />
|
1676
|
-
#
|
1677
|
-
# <xhtml />
|
1678
|
-
#
|
1679
1562
|
# @!attribute [rw] studio
|
1680
1563
|
# Information about a studio.
|
1681
1564
|
# @return [Types::Studio]
|
@@ -1812,7 +1695,7 @@ module Aws::NimbleStudio
|
|
1812
1695
|
end
|
1813
1696
|
|
1814
1697
|
# A Launch Profile Initialization contains information required for a
|
1815
|
-
# workstation or server to connect to a launch profile
|
1698
|
+
# workstation or server to connect to a launch profile.
|
1816
1699
|
#
|
1817
1700
|
# This includes scripts, endpoints, security groups, subnets, and other
|
1818
1701
|
# configuration.
|
@@ -1870,6 +1753,10 @@ module Aws::NimbleStudio
|
|
1870
1753
|
include Aws::Structure
|
1871
1754
|
end
|
1872
1755
|
|
1756
|
+
# The Launch Profile Initialization Active Directory contains
|
1757
|
+
# information required for the launch profile to connect to the Active
|
1758
|
+
# Directory.
|
1759
|
+
#
|
1873
1760
|
# @!attribute [rw] computer_attributes
|
1874
1761
|
# A collection of custom attributes for an Active Directory computer.
|
1875
1762
|
# @return [Array<Types::ActiveDirectoryComputerAttribute>]
|
@@ -1913,6 +1800,9 @@ module Aws::NimbleStudio
|
|
1913
1800
|
include Aws::Structure
|
1914
1801
|
end
|
1915
1802
|
|
1803
|
+
# The Launch Profile Initialization Script is used when start streaming
|
1804
|
+
# session runs.
|
1805
|
+
#
|
1916
1806
|
# @!attribute [rw] script
|
1917
1807
|
# The initialization script.
|
1918
1808
|
# @return [String]
|
@@ -1935,6 +1825,27 @@ module Aws::NimbleStudio
|
|
1935
1825
|
include Aws::Structure
|
1936
1826
|
end
|
1937
1827
|
|
1828
|
+
# Launch profile membership enables your studio admins to delegate
|
1829
|
+
# launch profile access to other studio users in the Nimble Studio
|
1830
|
+
# portal without needing to write or maintain complex IAM policies. A
|
1831
|
+
# launch profile member is a user association from your studio identity
|
1832
|
+
# source who is granted permissions to a launch profile.
|
1833
|
+
#
|
1834
|
+
# A launch profile member (type USER) provides the following permissions
|
1835
|
+
# to that launch profile:
|
1836
|
+
#
|
1837
|
+
# * GetLaunchProfile
|
1838
|
+
#
|
1839
|
+
# * GetLaunchProfileInitialization
|
1840
|
+
#
|
1841
|
+
# * GetLaunchProfileMembers
|
1842
|
+
#
|
1843
|
+
# * GetLaunchProfileMember
|
1844
|
+
#
|
1845
|
+
# * CreateStreamingSession
|
1846
|
+
#
|
1847
|
+
# * GetLaunchProfileDetails
|
1848
|
+
#
|
1938
1849
|
# @!attribute [rw] identity_store_id
|
1939
1850
|
# The ID of the identity store.
|
1940
1851
|
# @return [String]
|
@@ -2060,10 +1971,6 @@ module Aws::NimbleStudio
|
|
2060
1971
|
include Aws::Structure
|
2061
1972
|
end
|
2062
1973
|
|
2063
|
-
# <zonbook />
|
2064
|
-
#
|
2065
|
-
# <xhtml />
|
2066
|
-
#
|
2067
1974
|
# @!attribute [rw] eulas
|
2068
1975
|
# A collection of EULA resources.
|
2069
1976
|
# @return [Array<Types::Eula>]
|
@@ -2119,10 +2026,6 @@ module Aws::NimbleStudio
|
|
2119
2026
|
include Aws::Structure
|
2120
2027
|
end
|
2121
2028
|
|
2122
|
-
# <zonbook />
|
2123
|
-
#
|
2124
|
-
# <xhtml />
|
2125
|
-
#
|
2126
2029
|
# @!attribute [rw] members
|
2127
2030
|
# A list of members.
|
2128
2031
|
# @return [Array<Types::LaunchProfileMembership>]
|
@@ -2185,10 +2088,6 @@ module Aws::NimbleStudio
|
|
2185
2088
|
include Aws::Structure
|
2186
2089
|
end
|
2187
2090
|
|
2188
|
-
# <zonbook />
|
2189
|
-
#
|
2190
|
-
# <xhtml />
|
2191
|
-
#
|
2192
2091
|
# @!attribute [rw] launch_profiles
|
2193
2092
|
# A collection of launch profiles.
|
2194
2093
|
# @return [Array<Types::LaunchProfile>]
|
@@ -2238,10 +2137,6 @@ module Aws::NimbleStudio
|
|
2238
2137
|
include Aws::Structure
|
2239
2138
|
end
|
2240
2139
|
|
2241
|
-
# <zonbook />
|
2242
|
-
#
|
2243
|
-
# <xhtml />
|
2244
|
-
#
|
2245
2140
|
# @!attribute [rw] next_token
|
2246
2141
|
# The token for the next set of results, or null if there are no more
|
2247
2142
|
# results.
|
@@ -2303,10 +2198,6 @@ module Aws::NimbleStudio
|
|
2303
2198
|
include Aws::Structure
|
2304
2199
|
end
|
2305
2200
|
|
2306
|
-
# <zonbook />
|
2307
|
-
#
|
2308
|
-
# <xhtml />
|
2309
|
-
#
|
2310
2201
|
# @!attribute [rw] next_token
|
2311
2202
|
# The token for the next set of results, or null if there are no more
|
2312
2203
|
# results.
|
@@ -2370,10 +2261,6 @@ module Aws::NimbleStudio
|
|
2370
2261
|
include Aws::Structure
|
2371
2262
|
end
|
2372
2263
|
|
2373
|
-
# <zonbook />
|
2374
|
-
#
|
2375
|
-
# <xhtml />
|
2376
|
-
#
|
2377
2264
|
# @!attribute [rw] next_token
|
2378
2265
|
# The token for the next set of results, or null if there are no more
|
2379
2266
|
# results.
|
@@ -2423,12 +2310,8 @@ module Aws::NimbleStudio
|
|
2423
2310
|
include Aws::Structure
|
2424
2311
|
end
|
2425
2312
|
|
2426
|
-
# <zonbook />
|
2427
|
-
#
|
2428
|
-
# <xhtml />
|
2429
|
-
#
|
2430
2313
|
# @!attribute [rw] members
|
2431
|
-
# A list of members.
|
2314
|
+
# A list of admin members.
|
2432
2315
|
# @return [Array<Types::StudioMembership>]
|
2433
2316
|
#
|
2434
2317
|
# @!attribute [rw] next_token
|
@@ -2464,10 +2347,6 @@ module Aws::NimbleStudio
|
|
2464
2347
|
include Aws::Structure
|
2465
2348
|
end
|
2466
2349
|
|
2467
|
-
# <zonbook />
|
2468
|
-
#
|
2469
|
-
# <xhtml />
|
2470
|
-
#
|
2471
2350
|
# @!attribute [rw] next_token
|
2472
2351
|
# The token for the next set of results, or null if there are no more
|
2473
2352
|
# results.
|
@@ -2506,10 +2385,6 @@ module Aws::NimbleStudio
|
|
2506
2385
|
include Aws::Structure
|
2507
2386
|
end
|
2508
2387
|
|
2509
|
-
# <zonbook />
|
2510
|
-
#
|
2511
|
-
# <xhtml />
|
2512
|
-
#
|
2513
2388
|
# @!attribute [rw] tags
|
2514
2389
|
# A collection of labels, in the form of key:value pairs, that apply
|
2515
2390
|
# to this resource.
|
@@ -2523,6 +2398,8 @@ module Aws::NimbleStudio
|
|
2523
2398
|
include Aws::Structure
|
2524
2399
|
end
|
2525
2400
|
|
2401
|
+
# A new member that is added to a launch profile.
|
2402
|
+
#
|
2526
2403
|
# @note When making an API call, you may pass NewLaunchProfileMember
|
2527
2404
|
# data as a hash:
|
2528
2405
|
#
|
@@ -2548,6 +2425,8 @@ module Aws::NimbleStudio
|
|
2548
2425
|
include Aws::Structure
|
2549
2426
|
end
|
2550
2427
|
|
2428
|
+
# A new studio user's membership.
|
2429
|
+
#
|
2551
2430
|
# @note When making an API call, you may pass NewStudioMember
|
2552
2431
|
# data as a hash:
|
2553
2432
|
#
|
@@ -2573,10 +2452,6 @@ module Aws::NimbleStudio
|
|
2573
2452
|
include Aws::Structure
|
2574
2453
|
end
|
2575
2454
|
|
2576
|
-
# <zonbook />
|
2577
|
-
#
|
2578
|
-
# <xhtml />
|
2579
|
-
#
|
2580
2455
|
# @note When making an API call, you may pass PutLaunchProfileMembersRequest
|
2581
2456
|
# data as a hash:
|
2582
2457
|
#
|
@@ -2635,10 +2510,6 @@ module Aws::NimbleStudio
|
|
2635
2510
|
#
|
2636
2511
|
class PutLaunchProfileMembersResponse < Aws::EmptyStructure; end
|
2637
2512
|
|
2638
|
-
# <zonbook />
|
2639
|
-
#
|
2640
|
-
# <xhtml />
|
2641
|
-
#
|
2642
2513
|
# @note When making an API call, you may pass PutStudioMembersRequest
|
2643
2514
|
# data as a hash:
|
2644
2515
|
#
|
@@ -2687,10 +2558,6 @@ module Aws::NimbleStudio
|
|
2687
2558
|
include Aws::Structure
|
2688
2559
|
end
|
2689
2560
|
|
2690
|
-
# <zonbook />
|
2691
|
-
#
|
2692
|
-
# <xhtml />
|
2693
|
-
#
|
2694
2561
|
# @see http://docs.aws.amazon.com/goto/WebAPI/nimble-2020-08-01/PutStudioMembersResponse AWS API Documentation
|
2695
2562
|
#
|
2696
2563
|
class PutStudioMembersResponse < Aws::EmptyStructure; end
|
@@ -2905,10 +2772,6 @@ module Aws::NimbleStudio
|
|
2905
2772
|
include Aws::Structure
|
2906
2773
|
end
|
2907
2774
|
|
2908
|
-
# <zonbook />
|
2909
|
-
#
|
2910
|
-
# <xhtml />
|
2911
|
-
#
|
2912
2775
|
# @!attribute [rw] studio
|
2913
2776
|
# Information about a studio.
|
2914
2777
|
# @return [Types::Studio]
|
@@ -3009,6 +2872,10 @@ module Aws::NimbleStudio
|
|
3009
2872
|
# automatically be stopped by AWS (instead of terminated).
|
3010
2873
|
# @return [Integer]
|
3011
2874
|
#
|
2875
|
+
# @!attribute [rw] session_storage
|
2876
|
+
# (Optional) The upload storage for a streaming session.
|
2877
|
+
# @return [Types::StreamConfigurationSessionStorage]
|
2878
|
+
#
|
3012
2879
|
# @!attribute [rw] streaming_image_ids
|
3013
2880
|
# The streaming images that users can select from when launching a
|
3014
2881
|
# streaming session with this launch profile.
|
@@ -3021,6 +2888,7 @@ module Aws::NimbleStudio
|
|
3021
2888
|
:ec2_instance_types,
|
3022
2889
|
:max_session_length_in_minutes,
|
3023
2890
|
:max_stopped_session_length_in_minutes,
|
2891
|
+
:session_storage,
|
3024
2892
|
:streaming_image_ids)
|
3025
2893
|
SENSITIVE = []
|
3026
2894
|
include Aws::Structure
|
@@ -3037,6 +2905,13 @@ module Aws::NimbleStudio
|
|
3037
2905
|
# ec2_instance_types: ["g4dn.xlarge"], # required, accepts g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge
|
3038
2906
|
# max_session_length_in_minutes: 1,
|
3039
2907
|
# max_stopped_session_length_in_minutes: 1,
|
2908
|
+
# session_storage: {
|
2909
|
+
# mode: ["UPLOAD"], # required, accepts UPLOAD
|
2910
|
+
# root: {
|
2911
|
+
# linux: "StreamingSessionStorageRootPathLinux",
|
2912
|
+
# windows: "StreamingSessionStorageRootPathWindows",
|
2913
|
+
# },
|
2914
|
+
# },
|
3040
2915
|
# streaming_image_ids: ["StreamingImageId"], # required
|
3041
2916
|
# }
|
3042
2917
|
#
|
@@ -3059,13 +2934,28 @@ module Aws::NimbleStudio
|
|
3059
2934
|
# @return [Integer]
|
3060
2935
|
#
|
3061
2936
|
# @!attribute [rw] max_stopped_session_length_in_minutes
|
3062
|
-
#
|
3063
|
-
#
|
3064
|
-
#
|
3065
|
-
#
|
3066
|
-
#
|
2937
|
+
# Integer that determines if you can start and stop your sessions and
|
2938
|
+
# how long a session can stay in the STOPPED state. The default value
|
2939
|
+
# is 0. The maximum value is 5760.
|
2940
|
+
#
|
2941
|
+
# If the value is missing or set to 0, your sessions can’t be stopped.
|
2942
|
+
# If you then call StopStreamingSession, the session fails. If the
|
2943
|
+
# time that a session stays in the READY state exceeds the
|
2944
|
+
# maxSessionLengthInMinutes value, the session will automatically be
|
2945
|
+
# terminated by AWS (instead of stopped).
|
2946
|
+
#
|
2947
|
+
# If the value is set to a positive number, the session can be
|
2948
|
+
# stopped. You can call StopStreamingSession to stop sessions in the
|
2949
|
+
# READY state. If the time that a session stays in the READY state
|
2950
|
+
# exceeds the maxSessionLengthInMinutes value, the session will
|
2951
|
+
# automatically be stopped by AWS (instead of terminated).
|
3067
2952
|
# @return [Integer]
|
3068
2953
|
#
|
2954
|
+
# @!attribute [rw] session_storage
|
2955
|
+
# (Optional) The upload storage for a streaming workstation that is
|
2956
|
+
# created using this launch profile.
|
2957
|
+
# @return [Types::StreamConfigurationSessionStorage]
|
2958
|
+
#
|
3069
2959
|
# @!attribute [rw] streaming_image_ids
|
3070
2960
|
# The streaming images that users can select from when launching a
|
3071
2961
|
# streaming session with this launch profile.
|
@@ -3078,11 +2968,44 @@ module Aws::NimbleStudio
|
|
3078
2968
|
:ec2_instance_types,
|
3079
2969
|
:max_session_length_in_minutes,
|
3080
2970
|
:max_stopped_session_length_in_minutes,
|
2971
|
+
:session_storage,
|
3081
2972
|
:streaming_image_ids)
|
3082
2973
|
SENSITIVE = []
|
3083
2974
|
include Aws::Structure
|
3084
2975
|
end
|
3085
2976
|
|
2977
|
+
# The configuration for a streaming session’s upload storage.
|
2978
|
+
#
|
2979
|
+
# @note When making an API call, you may pass StreamConfigurationSessionStorage
|
2980
|
+
# data as a hash:
|
2981
|
+
#
|
2982
|
+
# {
|
2983
|
+
# mode: ["UPLOAD"], # required, accepts UPLOAD
|
2984
|
+
# root: {
|
2985
|
+
# linux: "StreamingSessionStorageRootPathLinux",
|
2986
|
+
# windows: "StreamingSessionStorageRootPathWindows",
|
2987
|
+
# },
|
2988
|
+
# }
|
2989
|
+
#
|
2990
|
+
# @!attribute [rw] mode
|
2991
|
+
# Allows artists to upload files to their workstations. The only valid
|
2992
|
+
# option is `UPLOAD`.
|
2993
|
+
# @return [Array<String>]
|
2994
|
+
#
|
2995
|
+
# @!attribute [rw] root
|
2996
|
+
# The configuration for the upload storage root of the streaming
|
2997
|
+
# session.
|
2998
|
+
# @return [Types::StreamingSessionStorageRoot]
|
2999
|
+
#
|
3000
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nimble-2020-08-01/StreamConfigurationSessionStorage AWS API Documentation
|
3001
|
+
#
|
3002
|
+
class StreamConfigurationSessionStorage < Struct.new(
|
3003
|
+
:mode,
|
3004
|
+
:root)
|
3005
|
+
SENSITIVE = []
|
3006
|
+
include Aws::Structure
|
3007
|
+
end
|
3008
|
+
|
3086
3009
|
# Represents a streaming image resource.
|
3087
3010
|
#
|
3088
3011
|
# Streaming images are used by studio users to select which operating
|
@@ -3308,6 +3231,36 @@ module Aws::NimbleStudio
|
|
3308
3231
|
include Aws::Structure
|
3309
3232
|
end
|
3310
3233
|
|
3234
|
+
# The upload storage root location (folder) on streaming workstations
|
3235
|
+
# where files are uploaded.
|
3236
|
+
#
|
3237
|
+
# @note When making an API call, you may pass StreamingSessionStorageRoot
|
3238
|
+
# data as a hash:
|
3239
|
+
#
|
3240
|
+
# {
|
3241
|
+
# linux: "StreamingSessionStorageRootPathLinux",
|
3242
|
+
# windows: "StreamingSessionStorageRootPathWindows",
|
3243
|
+
# }
|
3244
|
+
#
|
3245
|
+
# @!attribute [rw] linux
|
3246
|
+
# The folder path in Linux workstations where files are uploaded. The
|
3247
|
+
# default path is `$HOME/Downloads`.
|
3248
|
+
# @return [String]
|
3249
|
+
#
|
3250
|
+
# @!attribute [rw] windows
|
3251
|
+
# The folder path in Windows workstations where files are uploaded.
|
3252
|
+
# The default path is `%HOMEPATH%\Downloads`.
|
3253
|
+
# @return [String]
|
3254
|
+
#
|
3255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nimble-2020-08-01/StreamingSessionStorageRoot AWS API Documentation
|
3256
|
+
#
|
3257
|
+
class StreamingSessionStorageRoot < Struct.new(
|
3258
|
+
:linux,
|
3259
|
+
:windows)
|
3260
|
+
SENSITIVE = [:linux, :windows]
|
3261
|
+
include Aws::Structure
|
3262
|
+
end
|
3263
|
+
|
3311
3264
|
# A stream is an active connection to a streaming session, enabling a
|
3312
3265
|
# studio user to control the streaming session using a compatible
|
3313
3266
|
# client. Streaming session streams are compatible with the NICE DCV web
|
@@ -3679,6 +3632,8 @@ module Aws::NimbleStudio
|
|
3679
3632
|
include Aws::Structure
|
3680
3633
|
end
|
3681
3634
|
|
3635
|
+
# The studio component's summary.
|
3636
|
+
#
|
3682
3637
|
# @!attribute [rw] created_at
|
3683
3638
|
# The Unix epoch timestamp in seconds for when the resource was
|
3684
3639
|
# created.
|
@@ -3951,10 +3906,6 @@ module Aws::NimbleStudio
|
|
3951
3906
|
include Aws::Structure
|
3952
3907
|
end
|
3953
3908
|
|
3954
|
-
# <zonbook />
|
3955
|
-
#
|
3956
|
-
# <xhtml />
|
3957
|
-
#
|
3958
3909
|
# @note When making an API call, you may pass UpdateLaunchProfileRequest
|
3959
3910
|
# data as a hash:
|
3960
3911
|
#
|
@@ -3969,6 +3920,13 @@ module Aws::NimbleStudio
|
|
3969
3920
|
# ec2_instance_types: ["g4dn.xlarge"], # required, accepts g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge
|
3970
3921
|
# max_session_length_in_minutes: 1,
|
3971
3922
|
# max_stopped_session_length_in_minutes: 1,
|
3923
|
+
# session_storage: {
|
3924
|
+
# mode: ["UPLOAD"], # required, accepts UPLOAD
|
3925
|
+
# root: {
|
3926
|
+
# linux: "StreamingSessionStorageRootPathLinux",
|
3927
|
+
# windows: "StreamingSessionStorageRootPathWindows",
|
3928
|
+
# },
|
3929
|
+
# },
|
3972
3930
|
# streaming_image_ids: ["StreamingImageId"], # required
|
3973
3931
|
# },
|
3974
3932
|
# studio_component_ids: ["String"],
|
@@ -4030,10 +3988,6 @@ module Aws::NimbleStudio
|
|
4030
3988
|
include Aws::Structure
|
4031
3989
|
end
|
4032
3990
|
|
4033
|
-
# <zonbook />
|
4034
|
-
#
|
4035
|
-
# <xhtml />
|
4036
|
-
#
|
4037
3991
|
# @!attribute [rw] launch_profile
|
4038
3992
|
# The launch profile.
|
4039
3993
|
# @return [Types::LaunchProfile]
|
@@ -4046,10 +4000,6 @@ module Aws::NimbleStudio
|
|
4046
4000
|
include Aws::Structure
|
4047
4001
|
end
|
4048
4002
|
|
4049
|
-
# <zonbook />
|
4050
|
-
#
|
4051
|
-
# <xhtml />
|
4052
|
-
#
|
4053
4003
|
# @note When making an API call, you may pass UpdateStreamingImageRequest
|
4054
4004
|
# data as a hash:
|
4055
4005
|
#
|
@@ -4100,6 +4050,18 @@ module Aws::NimbleStudio
|
|
4100
4050
|
end
|
4101
4051
|
|
4102
4052
|
# @!attribute [rw] streaming_image
|
4053
|
+
# Represents a streaming image resource.
|
4054
|
+
#
|
4055
|
+
# Streaming images are used by studio users to select which operating
|
4056
|
+
# system and software they want to use in a Nimble Studio streaming
|
4057
|
+
# session.
|
4058
|
+
#
|
4059
|
+
# Amazon provides a number of streaming images that include popular
|
4060
|
+
# 3rd-party software.
|
4061
|
+
#
|
4062
|
+
# You can create your own streaming images using an Amazon Elastic
|
4063
|
+
# Compute Cloud (Amazon EC2) machine image that you create for this
|
4064
|
+
# purpose. You can also include software that your users require.
|
4103
4065
|
# @return [Types::StreamingImage]
|
4104
4066
|
#
|
4105
4067
|
# @see http://docs.aws.amazon.com/goto/WebAPI/nimble-2020-08-01/UpdateStreamingImageResponse AWS API Documentation
|
@@ -4110,10 +4072,6 @@ module Aws::NimbleStudio
|
|
4110
4072
|
include Aws::Structure
|
4111
4073
|
end
|
4112
4074
|
|
4113
|
-
# <zonbook />
|
4114
|
-
#
|
4115
|
-
# <xhtml />
|
4116
|
-
#
|
4117
4075
|
# @note When making an API call, you may pass UpdateStudioComponentRequest
|
4118
4076
|
# data as a hash:
|
4119
4077
|
#
|
@@ -4236,10 +4194,6 @@ module Aws::NimbleStudio
|
|
4236
4194
|
include Aws::Structure
|
4237
4195
|
end
|
4238
4196
|
|
4239
|
-
# <zonbook />
|
4240
|
-
#
|
4241
|
-
# <xhtml />
|
4242
|
-
#
|
4243
4197
|
# @!attribute [rw] studio_component
|
4244
4198
|
# Information about the studio component.
|
4245
4199
|
# @return [Types::StudioComponent]
|
@@ -4252,10 +4206,6 @@ module Aws::NimbleStudio
|
|
4252
4206
|
include Aws::Structure
|
4253
4207
|
end
|
4254
4208
|
|
4255
|
-
# <zonbook />
|
4256
|
-
#
|
4257
|
-
# <xhtml />
|
4258
|
-
#
|
4259
4209
|
# @note When making an API call, you may pass UpdateStudioRequest
|
4260
4210
|
# data as a hash:
|
4261
4211
|
#
|
@@ -4307,10 +4257,6 @@ module Aws::NimbleStudio
|
|
4307
4257
|
include Aws::Structure
|
4308
4258
|
end
|
4309
4259
|
|
4310
|
-
# <zonbook />
|
4311
|
-
#
|
4312
|
-
# <xhtml />
|
4313
|
-
#
|
4314
4260
|
# @!attribute [rw] studio
|
4315
4261
|
# Information about a studio.
|
4316
4262
|
# @return [Types::Studio]
|
data/lib/aws-sdk-nimblestudio.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-nimblestudio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.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: 2021-
|
11
|
+
date: 2021-12-21 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.
|
22
|
+
version: 3.125.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.
|
32
|
+
version: 3.125.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|