aws-sdk-nimblestudio 1.3.0 → 1.4.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.rb +1 -1
- data/lib/aws-sdk-nimblestudio/client.rb +30 -14
- data/lib/aws-sdk-nimblestudio/client_api.rb +7 -2
- data/lib/aws-sdk-nimblestudio/types.rb +22 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87780e6b892e198bd526256079fa48baaa393aa37c0f723a441538d97e190b85
|
4
|
+
data.tar.gz: e0a3a253ebcc7e94de3ee3d66dfc65307e17e3e9de6df0067b9a8f29d68fe72d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 740a2f9abdc720522e4fe9715553e1ce3919d9319ffd98cc98af16892fb89a3b65e81faf4cfffa2051f60185cdd41c4dc396ab3276893ec19bc5753f1adeba44
|
7
|
+
data.tar.gz: bd27b4b98e1fc685bee2bd3d4d368751a61e3f8447bd8c4df4f2b127a6b2663819fe5a0c2dad0d7a8a35750631d4944f72cae872f6d9f2d1c39c96bbf9da9016
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.4.0 (2021-08-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add new attribute 'ownedBy' in Streaming Session APIs. 'ownedBy' represents the AWS SSO Identity Store User ID of the owner of the Streaming Session resource.
|
8
|
+
|
4
9
|
1.3.0 (2021-07-30)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
data/lib/aws-sdk-nimblestudio.rb
CHANGED
@@ -529,6 +529,8 @@ module Aws::NimbleStudio
|
|
529
529
|
#
|
530
530
|
# @option params [String] :launch_profile_id
|
531
531
|
#
|
532
|
+
# @option params [String] :owned_by
|
533
|
+
#
|
532
534
|
# @option params [String] :streaming_image_id
|
533
535
|
#
|
534
536
|
# @option params [required, String] :studio_id
|
@@ -545,6 +547,7 @@ module Aws::NimbleStudio
|
|
545
547
|
# client_token: "ClientToken",
|
546
548
|
# ec2_instance_type: "g4dn.xlarge", # accepts g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge
|
547
549
|
# launch_profile_id: "__string",
|
550
|
+
# owned_by: "__string",
|
548
551
|
# streaming_image_id: "StreamingImageId",
|
549
552
|
# studio_id: "__string", # required
|
550
553
|
# tags: {
|
@@ -559,6 +562,7 @@ module Aws::NimbleStudio
|
|
559
562
|
# resp.session.created_by #=> String
|
560
563
|
# resp.session.ec2_instance_type #=> String
|
561
564
|
# resp.session.launch_profile_id #=> String
|
565
|
+
# resp.session.owned_by #=> String
|
562
566
|
# resp.session.session_id #=> String
|
563
567
|
# resp.session.state #=> String, one of "CREATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "READY", "DELETED", "CREATE_FAILED", "DELETE_FAILED"
|
564
568
|
# resp.session.status_code #=> String, one of "STREAMING_SESSION_READY", "STREAMING_SESSION_DELETED", "STREAMING_SESSION_CREATE_IN_PROGRESS", "STREAMING_SESSION_DELETE_IN_PROGRESS", "INTERNAL_ERROR", "INSUFFICIENT_CAPACITY", "ACTIVE_DIRECTORY_DOMAIN_JOIN_ERROR", "NETWORK_CONNECTION_ERROR", "INITIALIZATION_SCRIPT_ERROR", "DECRYPT_STREAMING_IMAGE_ERROR", "NETWORK_INTERFACE_ERROR"
|
@@ -612,6 +616,7 @@ module Aws::NimbleStudio
|
|
612
616
|
# resp.stream.created_at #=> Time
|
613
617
|
# resp.stream.created_by #=> String
|
614
618
|
# resp.stream.expires_at #=> Time
|
619
|
+
# resp.stream.owned_by #=> String
|
615
620
|
# resp.stream.state #=> String, one of "READY", "CREATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "DELETED", "CREATE_FAILED", "DELETE_FAILED"
|
616
621
|
# resp.stream.status_code #=> String, one of "STREAM_CREATE_IN_PROGRESS", "STREAM_READY", "STREAM_DELETE_IN_PROGRESS", "STREAM_DELETED", "INTERNAL_ERROR", "NETWORK_CONNECTION_ERROR"
|
617
622
|
# resp.stream.stream_id #=> String
|
@@ -643,11 +648,11 @@ module Aws::NimbleStudio
|
|
643
648
|
#
|
644
649
|
# In Nimble Studio, resource names, descriptions, initialization
|
645
650
|
# scripts, and other data you provide are always encrypted at rest using
|
646
|
-
# an
|
647
|
-
# your behalf. You may provide your own
|
651
|
+
# an KMS key. By default, this key is owned by Amazon Web Services and
|
652
|
+
# managed on your behalf. You may provide your own KMS key when calling
|
648
653
|
# CreateStudio to encrypt this data using a key you own and manage.
|
649
654
|
#
|
650
|
-
# When providing an
|
655
|
+
# When providing an KMS key during studio creation, Nimble Studio
|
651
656
|
# creates KMS grants in your account to provide your studio user and
|
652
657
|
# admin roles access to these KMS keys.
|
653
658
|
#
|
@@ -1037,6 +1042,7 @@ module Aws::NimbleStudio
|
|
1037
1042
|
# resp.session.created_by #=> String
|
1038
1043
|
# resp.session.ec2_instance_type #=> String
|
1039
1044
|
# resp.session.launch_profile_id #=> String
|
1045
|
+
# resp.session.owned_by #=> String
|
1040
1046
|
# resp.session.session_id #=> String
|
1041
1047
|
# resp.session.state #=> String, one of "CREATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "READY", "DELETED", "CREATE_FAILED", "DELETE_FAILED"
|
1042
1048
|
# resp.session.status_code #=> String, one of "STREAMING_SESSION_READY", "STREAMING_SESSION_DELETED", "STREAMING_SESSION_CREATE_IN_PROGRESS", "STREAMING_SESSION_DELETE_IN_PROGRESS", "INTERNAL_ERROR", "INSUFFICIENT_CAPACITY", "ACTIVE_DIRECTORY_DOMAIN_JOIN_ERROR", "NETWORK_CONNECTION_ERROR", "INITIALIZATION_SCRIPT_ERROR", "DECRYPT_STREAMING_IMAGE_ERROR", "NETWORK_INTERFACE_ERROR"
|
@@ -1549,6 +1555,7 @@ module Aws::NimbleStudio
|
|
1549
1555
|
# resp.session.created_by #=> String
|
1550
1556
|
# resp.session.ec2_instance_type #=> String
|
1551
1557
|
# resp.session.launch_profile_id #=> String
|
1558
|
+
# resp.session.owned_by #=> String
|
1552
1559
|
# resp.session.session_id #=> String
|
1553
1560
|
# resp.session.state #=> String, one of "CREATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "READY", "DELETED", "CREATE_FAILED", "DELETE_FAILED"
|
1554
1561
|
# resp.session.status_code #=> String, one of "STREAMING_SESSION_READY", "STREAMING_SESSION_DELETED", "STREAMING_SESSION_CREATE_IN_PROGRESS", "STREAMING_SESSION_DELETE_IN_PROGRESS", "INTERNAL_ERROR", "INSUFFICIENT_CAPACITY", "ACTIVE_DIRECTORY_DOMAIN_JOIN_ERROR", "NETWORK_CONNECTION_ERROR", "INITIALIZATION_SCRIPT_ERROR", "DECRYPT_STREAMING_IMAGE_ERROR", "NETWORK_INTERFACE_ERROR"
|
@@ -1601,6 +1608,7 @@ module Aws::NimbleStudio
|
|
1601
1608
|
# resp.stream.created_at #=> Time
|
1602
1609
|
# resp.stream.created_by #=> String
|
1603
1610
|
# resp.stream.expires_at #=> Time
|
1611
|
+
# resp.stream.owned_by #=> String
|
1604
1612
|
# resp.stream.state #=> String, one of "READY", "CREATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "DELETED", "CREATE_FAILED", "DELETE_FAILED"
|
1605
1613
|
# resp.stream.status_code #=> String, one of "STREAM_CREATE_IN_PROGRESS", "STREAM_READY", "STREAM_DELETE_IN_PROGRESS", "STREAM_DELETED", "INTERNAL_ERROR", "NETWORK_CONNECTION_ERROR"
|
1606
1614
|
# resp.stream.stream_id #=> String
|
@@ -1952,8 +1960,8 @@ module Aws::NimbleStudio
|
|
1952
1960
|
|
1953
1961
|
# List the streaming image resources available to this studio.
|
1954
1962
|
#
|
1955
|
-
# This list will contain both images provided by
|
1956
|
-
# streaming images that you have created in your studio.
|
1963
|
+
# This list will contain both images provided by Amazon Web Services, as
|
1964
|
+
# well as streaming images that you have created in your studio.
|
1957
1965
|
#
|
1958
1966
|
# @option params [String] :next_token
|
1959
1967
|
#
|
@@ -2012,6 +2020,8 @@ module Aws::NimbleStudio
|
|
2012
2020
|
#
|
2013
2021
|
# @option params [String] :next_token
|
2014
2022
|
#
|
2023
|
+
# @option params [String] :owned_by
|
2024
|
+
#
|
2015
2025
|
# @option params [String] :session_ids
|
2016
2026
|
#
|
2017
2027
|
# @option params [required, String] :studio_id
|
@@ -2028,6 +2038,7 @@ module Aws::NimbleStudio
|
|
2028
2038
|
# resp = client.list_streaming_sessions({
|
2029
2039
|
# created_by: "__string",
|
2030
2040
|
# next_token: "__string",
|
2041
|
+
# owned_by: "__string",
|
2031
2042
|
# session_ids: "__string",
|
2032
2043
|
# studio_id: "__string", # required
|
2033
2044
|
# })
|
@@ -2041,6 +2052,7 @@ module Aws::NimbleStudio
|
|
2041
2052
|
# resp.sessions[0].created_by #=> String
|
2042
2053
|
# resp.sessions[0].ec2_instance_type #=> String
|
2043
2054
|
# resp.sessions[0].launch_profile_id #=> String
|
2055
|
+
# resp.sessions[0].owned_by #=> String
|
2044
2056
|
# resp.sessions[0].session_id #=> String
|
2045
2057
|
# resp.sessions[0].state #=> String, one of "CREATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "READY", "DELETED", "CREATE_FAILED", "DELETE_FAILED"
|
2046
2058
|
# resp.sessions[0].status_code #=> String, one of "STREAMING_SESSION_READY", "STREAMING_SESSION_DELETED", "STREAMING_SESSION_CREATE_IN_PROGRESS", "STREAMING_SESSION_DELETE_IN_PROGRESS", "INTERNAL_ERROR", "INSUFFICIENT_CAPACITY", "ACTIVE_DIRECTORY_DOMAIN_JOIN_ERROR", "NETWORK_CONNECTION_ERROR", "INITIALIZATION_SCRIPT_ERROR", "DECRYPT_STREAMING_IMAGE_ERROR", "NETWORK_INTERFACE_ERROR"
|
@@ -2182,7 +2194,8 @@ module Aws::NimbleStudio
|
|
2182
2194
|
req.send_request(options)
|
2183
2195
|
end
|
2184
2196
|
|
2185
|
-
# List studios in your
|
2197
|
+
# List studios in your Amazon Web Services account in the requested
|
2198
|
+
# Amazon Web Services Region.
|
2186
2199
|
#
|
2187
2200
|
# @option params [String] :next_token
|
2188
2201
|
#
|
@@ -2344,15 +2357,18 @@ module Aws::NimbleStudio
|
|
2344
2357
|
|
2345
2358
|
# Repairs the SSO configuration for a given studio.
|
2346
2359
|
#
|
2347
|
-
# If the studio has a valid
|
2348
|
-
# with it, this operation will fail with a
|
2360
|
+
# If the studio has a valid Amazon Web Services SSO configuration
|
2361
|
+
# currently associated with it, this operation will fail with a
|
2362
|
+
# validation error.
|
2349
2363
|
#
|
2350
|
-
# If the studio does not have a valid
|
2351
|
-
# associated with it, then a new
|
2352
|
-
#
|
2364
|
+
# If the studio does not have a valid Amazon Web Services SSO
|
2365
|
+
# configuration currently associated with it, then a new Amazon Web
|
2366
|
+
# Services SSO application is created for the studio and the studio is
|
2367
|
+
# changed to the READY state.
|
2353
2368
|
#
|
2354
|
-
# After the
|
2355
|
-
# Nimble Studio console to add administrators and users
|
2369
|
+
# After the Amazon Web Services SSO application is repaired, you must
|
2370
|
+
# use the Amazon Nimble Studio console to add administrators and users
|
2371
|
+
# to your studio.
|
2356
2372
|
#
|
2357
2373
|
# @option params [String] :client_token
|
2358
2374
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -2839,7 +2855,7 @@ module Aws::NimbleStudio
|
|
2839
2855
|
params: params,
|
2840
2856
|
config: config)
|
2841
2857
|
context[:gem_name] = 'aws-sdk-nimblestudio'
|
2842
|
-
context[:gem_version] = '1.
|
2858
|
+
context[:gem_version] = '1.4.0'
|
2843
2859
|
Seahorse::Client::Request.new(handlers, context)
|
2844
2860
|
end
|
2845
2861
|
|
@@ -213,12 +213,12 @@ module Aws::NimbleStudio
|
|
213
213
|
StreamingImageName = Shapes::StringShape.new(name: 'StreamingImageName')
|
214
214
|
StreamingImageOwner = Shapes::StringShape.new(name: 'StreamingImageOwner')
|
215
215
|
StreamingImagePlatform = Shapes::StringShape.new(name: 'StreamingImagePlatform')
|
216
|
-
StreamingImageSessionId = Shapes::StringShape.new(name: 'StreamingImageSessionId')
|
217
216
|
StreamingImageState = Shapes::StringShape.new(name: 'StreamingImageState')
|
218
217
|
StreamingImageStatusCode = Shapes::StringShape.new(name: 'StreamingImageStatusCode')
|
219
218
|
StreamingInstanceType = Shapes::StringShape.new(name: 'StreamingInstanceType')
|
220
219
|
StreamingInstanceTypeList = Shapes::ListShape.new(name: 'StreamingInstanceTypeList')
|
221
220
|
StreamingSession = Shapes::StructureShape.new(name: 'StreamingSession')
|
221
|
+
StreamingSessionId = Shapes::StringShape.new(name: 'StreamingSessionId')
|
222
222
|
StreamingSessionList = Shapes::ListShape.new(name: 'StreamingSessionList')
|
223
223
|
StreamingSessionState = Shapes::StringShape.new(name: 'StreamingSessionState')
|
224
224
|
StreamingSessionStatusCode = Shapes::StringShape.new(name: 'StreamingSessionStatusCode')
|
@@ -384,6 +384,7 @@ module Aws::NimbleStudio
|
|
384
384
|
|
385
385
|
CreateStreamingSessionInput.add_member(:ec2_instance_type, Shapes::ShapeRef.new(shape: StreamingInstanceType, location_name: "ec2InstanceType"))
|
386
386
|
CreateStreamingSessionInput.add_member(:launch_profile_id, Shapes::ShapeRef.new(shape: __string, location_name: "launchProfileId"))
|
387
|
+
CreateStreamingSessionInput.add_member(:owned_by, Shapes::ShapeRef.new(shape: __string, location_name: "ownedBy"))
|
387
388
|
CreateStreamingSessionInput.add_member(:streaming_image_id, Shapes::ShapeRef.new(shape: StreamingImageId, location_name: "streamingImageId"))
|
388
389
|
CreateStreamingSessionInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
389
390
|
CreateStreamingSessionInput.struct_class = Types::CreateStreamingSessionInput
|
@@ -394,6 +395,7 @@ module Aws::NimbleStudio
|
|
394
395
|
CreateStreamingSessionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "header", location_name: "X-Amz-Client-Token", metadata: {"idempotencyToken"=>true}))
|
395
396
|
CreateStreamingSessionRequest.add_member(:ec2_instance_type, Shapes::ShapeRef.new(shape: StreamingInstanceType, location_name: "ec2InstanceType"))
|
396
397
|
CreateStreamingSessionRequest.add_member(:launch_profile_id, Shapes::ShapeRef.new(shape: __string, location_name: "launchProfileId"))
|
398
|
+
CreateStreamingSessionRequest.add_member(:owned_by, Shapes::ShapeRef.new(shape: __string, location_name: "ownedBy"))
|
397
399
|
CreateStreamingSessionRequest.add_member(:streaming_image_id, Shapes::ShapeRef.new(shape: StreamingImageId, location_name: "streamingImageId"))
|
398
400
|
CreateStreamingSessionRequest.add_member(:studio_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "studioId"))
|
399
401
|
CreateStreamingSessionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
@@ -833,6 +835,7 @@ module Aws::NimbleStudio
|
|
833
835
|
|
834
836
|
ListStreamingSessionsRequest.add_member(:created_by, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "createdBy"))
|
835
837
|
ListStreamingSessionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
|
838
|
+
ListStreamingSessionsRequest.add_member(:owned_by, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "ownedBy"))
|
836
839
|
ListStreamingSessionsRequest.add_member(:session_ids, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "sessionIds"))
|
837
840
|
ListStreamingSessionsRequest.add_member(:studio_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "studioId"))
|
838
841
|
ListStreamingSessionsRequest.struct_class = Types::ListStreamingSessionsRequest
|
@@ -1001,7 +1004,8 @@ module Aws::NimbleStudio
|
|
1001
1004
|
StreamingSession.add_member(:created_by, Shapes::ShapeRef.new(shape: __string, location_name: "createdBy"))
|
1002
1005
|
StreamingSession.add_member(:ec2_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "ec2InstanceType"))
|
1003
1006
|
StreamingSession.add_member(:launch_profile_id, Shapes::ShapeRef.new(shape: __string, location_name: "launchProfileId"))
|
1004
|
-
StreamingSession.add_member(:
|
1007
|
+
StreamingSession.add_member(:owned_by, Shapes::ShapeRef.new(shape: __string, location_name: "ownedBy"))
|
1008
|
+
StreamingSession.add_member(:session_id, Shapes::ShapeRef.new(shape: StreamingSessionId, location_name: "sessionId"))
|
1005
1009
|
StreamingSession.add_member(:state, Shapes::ShapeRef.new(shape: StreamingSessionState, location_name: "state"))
|
1006
1010
|
StreamingSession.add_member(:status_code, Shapes::ShapeRef.new(shape: StreamingSessionStatusCode, location_name: "statusCode"))
|
1007
1011
|
StreamingSession.add_member(:status_message, Shapes::ShapeRef.new(shape: __string, location_name: "statusMessage"))
|
@@ -1017,6 +1021,7 @@ module Aws::NimbleStudio
|
|
1017
1021
|
StreamingSessionStream.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
1018
1022
|
StreamingSessionStream.add_member(:created_by, Shapes::ShapeRef.new(shape: __string, location_name: "createdBy"))
|
1019
1023
|
StreamingSessionStream.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
1024
|
+
StreamingSessionStream.add_member(:owned_by, Shapes::ShapeRef.new(shape: __string, location_name: "ownedBy"))
|
1020
1025
|
StreamingSessionStream.add_member(:state, Shapes::ShapeRef.new(shape: StreamingSessionStreamState, location_name: "state"))
|
1021
1026
|
StreamingSessionStream.add_member(:status_code, Shapes::ShapeRef.new(shape: StreamingSessionStreamStatusCode, location_name: "statusCode"))
|
1022
1027
|
StreamingSessionStream.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
|
@@ -447,6 +447,9 @@ module Aws::NimbleStudio
|
|
447
447
|
# @!attribute [rw] launch_profile_id
|
448
448
|
# @return [String]
|
449
449
|
#
|
450
|
+
# @!attribute [rw] owned_by
|
451
|
+
# @return [String]
|
452
|
+
#
|
450
453
|
# @!attribute [rw] streaming_image_id
|
451
454
|
# @return [String]
|
452
455
|
#
|
@@ -458,6 +461,7 @@ module Aws::NimbleStudio
|
|
458
461
|
class CreateStreamingSessionInput < Struct.new(
|
459
462
|
:ec2_instance_type,
|
460
463
|
:launch_profile_id,
|
464
|
+
:owned_by,
|
461
465
|
:streaming_image_id,
|
462
466
|
:tags)
|
463
467
|
SENSITIVE = []
|
@@ -482,6 +486,7 @@ module Aws::NimbleStudio
|
|
482
486
|
# client_token: "ClientToken",
|
483
487
|
# ec2_instance_type: "g4dn.xlarge", # accepts g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge
|
484
488
|
# launch_profile_id: "__string",
|
489
|
+
# owned_by: "__string",
|
485
490
|
# streaming_image_id: "StreamingImageId",
|
486
491
|
# studio_id: "__string", # required
|
487
492
|
# tags: {
|
@@ -500,6 +505,9 @@ module Aws::NimbleStudio
|
|
500
505
|
# @!attribute [rw] launch_profile_id
|
501
506
|
# @return [String]
|
502
507
|
#
|
508
|
+
# @!attribute [rw] owned_by
|
509
|
+
# @return [String]
|
510
|
+
#
|
503
511
|
# @!attribute [rw] streaming_image_id
|
504
512
|
# @return [String]
|
505
513
|
#
|
@@ -515,6 +523,7 @@ module Aws::NimbleStudio
|
|
515
523
|
:client_token,
|
516
524
|
:ec2_instance_type,
|
517
525
|
:launch_profile_id,
|
526
|
+
:owned_by,
|
518
527
|
:streaming_image_id,
|
519
528
|
:studio_id,
|
520
529
|
:tags)
|
@@ -2417,6 +2426,7 @@ module Aws::NimbleStudio
|
|
2417
2426
|
# {
|
2418
2427
|
# created_by: "__string",
|
2419
2428
|
# next_token: "__string",
|
2429
|
+
# owned_by: "__string",
|
2420
2430
|
# session_ids: "__string",
|
2421
2431
|
# studio_id: "__string", # required
|
2422
2432
|
# }
|
@@ -2427,6 +2437,9 @@ module Aws::NimbleStudio
|
|
2427
2437
|
# @!attribute [rw] next_token
|
2428
2438
|
# @return [String]
|
2429
2439
|
#
|
2440
|
+
# @!attribute [rw] owned_by
|
2441
|
+
# @return [String]
|
2442
|
+
#
|
2430
2443
|
# @!attribute [rw] session_ids
|
2431
2444
|
# @return [String]
|
2432
2445
|
#
|
@@ -2438,6 +2451,7 @@ module Aws::NimbleStudio
|
|
2438
2451
|
class ListStreamingSessionsRequest < Struct.new(
|
2439
2452
|
:created_by,
|
2440
2453
|
:next_token,
|
2454
|
+
:owned_by,
|
2441
2455
|
:session_ids,
|
2442
2456
|
:studio_id)
|
2443
2457
|
SENSITIVE = []
|
@@ -3179,8 +3193,10 @@ module Aws::NimbleStudio
|
|
3179
3193
|
# @!attribute [rw] launch_profile_id
|
3180
3194
|
# @return [String]
|
3181
3195
|
#
|
3196
|
+
# @!attribute [rw] owned_by
|
3197
|
+
# @return [String]
|
3198
|
+
#
|
3182
3199
|
# @!attribute [rw] session_id
|
3183
|
-
# The streaming image session ID.
|
3184
3200
|
# @return [String]
|
3185
3201
|
#
|
3186
3202
|
# @!attribute [rw] state
|
@@ -3216,6 +3232,7 @@ module Aws::NimbleStudio
|
|
3216
3232
|
:created_by,
|
3217
3233
|
:ec2_instance_type,
|
3218
3234
|
:launch_profile_id,
|
3235
|
+
:owned_by,
|
3219
3236
|
:session_id,
|
3220
3237
|
:state,
|
3221
3238
|
:status_code,
|
@@ -3238,6 +3255,9 @@ module Aws::NimbleStudio
|
|
3238
3255
|
# @!attribute [rw] expires_at
|
3239
3256
|
# @return [Time]
|
3240
3257
|
#
|
3258
|
+
# @!attribute [rw] owned_by
|
3259
|
+
# @return [String]
|
3260
|
+
#
|
3241
3261
|
# @!attribute [rw] state
|
3242
3262
|
# @return [String]
|
3243
3263
|
#
|
@@ -3256,6 +3276,7 @@ module Aws::NimbleStudio
|
|
3256
3276
|
:created_at,
|
3257
3277
|
:created_by,
|
3258
3278
|
:expires_at,
|
3279
|
+
:owned_by,
|
3259
3280
|
:state,
|
3260
3281
|
:status_code,
|
3261
3282
|
:stream_id,
|
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.4.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-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|