aws-sdk-appstream 1.65.0 → 1.66.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df0c68b449e57841193fb5d8d358e3e8e17d2b51f30e7e6d05be3a7d054f3dd6
4
- data.tar.gz: 8bf1d3066dc89a10300d26d3618ff28af81a22a7e2f26c07e5438906c1de8ddf
3
+ metadata.gz: 3a30adb51aab9c1363fb0797743ebb55f3f65318dc2a8c847298c34b0ef13640
4
+ data.tar.gz: aaabd3aa2b8f8a45af59524a78b272150013fb9e81edced8fa4f9189451e27e7
5
5
  SHA512:
6
- metadata.gz: efb3c65b5e9cdd7fb8982ddc9c2302984788744deaad391d83ce4dbd5e237bc7a1458b71f77e8246c8450fb4c46254f968f1860a613c6b1579bf82f15491b693
7
- data.tar.gz: 9c5cf9ae8436455922c1094ad85abf9e59719472506c11f6a2d11150ecb32612ff26f443cbf35bfb0f5a3d50dd923893af599bda1770615ad4e45c08dc1061ca
6
+ metadata.gz: e44ef081ede83daeec58aca2afbcf3fa23da5d295277cf7b8d16f1292210e76c4aca0877e89703ef917d30151c0abdb76ec4f510823a4350ac224835a32259aa
7
+ data.tar.gz: e94396bb3cfb808157f42d87a16e025709962e89b2131b4f0e05d014bcc82185d10c2b578315ada3b759ef7953df6afff18b35ed0a96e0065348a39fa159c6b2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2022-06-29)
5
+ ------------------
6
+
7
+ * Feature - Includes support for StreamingExperienceSettings in CreateStack and UpdateStack APIs
8
+
4
9
  1.65.0 (2022-04-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -1525,6 +1525,10 @@ module Aws::AppStream
1525
1525
  # an iframe. You must approve the domains that you want to host embedded
1526
1526
  # AppStream 2.0 streaming sessions.
1527
1527
  #
1528
+ # @option params [Types::StreamingExperienceSettings] :streaming_experience_settings
1529
+ # The streaming protocol you want your stack to prefer. This can be UDP
1530
+ # or TCP. Currently, UDP is only supported in the Windows native client.
1531
+ #
1528
1532
  # @return [Types::CreateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1529
1533
  #
1530
1534
  # * {Types::CreateStackResult#stack #stack} => Types::Stack
@@ -1564,6 +1568,9 @@ module Aws::AppStream
1564
1568
  # },
1565
1569
  # ],
1566
1570
  # embed_host_domains: ["EmbedHostDomain"],
1571
+ # streaming_experience_settings: {
1572
+ # preferred_protocol: "TCP", # accepts TCP, UDP
1573
+ # },
1567
1574
  # })
1568
1575
  #
1569
1576
  # @example Response structure
@@ -1594,6 +1601,7 @@ module Aws::AppStream
1594
1601
  # resp.stack.access_endpoints[0].vpce_id #=> String
1595
1602
  # resp.stack.embed_host_domains #=> Array
1596
1603
  # resp.stack.embed_host_domains[0] #=> String
1604
+ # resp.stack.streaming_experience_settings.preferred_protocol #=> String, one of "TCP", "UDP"
1597
1605
  #
1598
1606
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStack AWS API Documentation
1599
1607
  #
@@ -2879,6 +2887,7 @@ module Aws::AppStream
2879
2887
  # resp.stacks[0].access_endpoints[0].vpce_id #=> String
2880
2888
  # resp.stacks[0].embed_host_domains #=> Array
2881
2889
  # resp.stacks[0].embed_host_domains[0] #=> String
2890
+ # resp.stacks[0].streaming_experience_settings.preferred_protocol #=> String, one of "TCP", "UDP"
2882
2891
  # resp.next_token #=> String
2883
2892
  #
2884
2893
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeStacks AWS API Documentation
@@ -3824,8 +3833,8 @@ module Aws::AppStream
3824
3833
  # * Elastic fleet type
3825
3834
  #
3826
3835
  # You can update the `DisplayName`, `IdleDisconnectTimeoutInSeconds`,
3827
- # `DisconnectTimeoutInSeconds`, `MaxConcurrentSessions`, and
3828
- # `UsbDeviceFilterStrings` attributes.
3836
+ # `DisconnectTimeoutInSeconds`, `MaxConcurrentSessions`,
3837
+ # `SessionScriptS3Location` and `UsbDeviceFilterStrings` attributes.
3829
3838
  #
3830
3839
  # If the fleet is in the `STARTING` or `STOPPED` state, you can't
3831
3840
  # update it.
@@ -4201,6 +4210,10 @@ module Aws::AppStream
4201
4210
  # an iframe. You must approve the domains that you want to host embedded
4202
4211
  # AppStream 2.0 streaming sessions.
4203
4212
  #
4213
+ # @option params [Types::StreamingExperienceSettings] :streaming_experience_settings
4214
+ # The streaming protocol you want your stack to prefer. This can be UDP
4215
+ # or TCP. Currently, UDP is only supported in the Windows native client.
4216
+ #
4204
4217
  # @return [Types::UpdateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4205
4218
  #
4206
4219
  # * {Types::UpdateStackResult#stack #stack} => Types::Stack
@@ -4221,7 +4234,7 @@ module Aws::AppStream
4221
4234
  # delete_storage_connectors: false,
4222
4235
  # redirect_url: "RedirectURL",
4223
4236
  # feedback_url: "FeedbackURL",
4224
- # attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS
4237
+ # attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS, STREAMING_EXPERIENCE_SETTINGS
4225
4238
  # user_settings: [
4226
4239
  # {
4227
4240
  # action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", # required, accepts CLIPBOARD_COPY_FROM_LOCAL_DEVICE, CLIPBOARD_COPY_TO_LOCAL_DEVICE, FILE_UPLOAD, FILE_DOWNLOAD, PRINTING_TO_LOCAL_DEVICE, DOMAIN_PASSWORD_SIGNIN, DOMAIN_SMART_CARD_SIGNIN
@@ -4239,6 +4252,9 @@ module Aws::AppStream
4239
4252
  # },
4240
4253
  # ],
4241
4254
  # embed_host_domains: ["EmbedHostDomain"],
4255
+ # streaming_experience_settings: {
4256
+ # preferred_protocol: "TCP", # accepts TCP, UDP
4257
+ # },
4242
4258
  # })
4243
4259
  #
4244
4260
  # @example Response structure
@@ -4269,6 +4285,7 @@ module Aws::AppStream
4269
4285
  # resp.stack.access_endpoints[0].vpce_id #=> String
4270
4286
  # resp.stack.embed_host_domains #=> Array
4271
4287
  # resp.stack.embed_host_domains[0] #=> String
4288
+ # resp.stack.streaming_experience_settings.preferred_protocol #=> String, one of "TCP", "UDP"
4272
4289
  #
4273
4290
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStack AWS API Documentation
4274
4291
  #
@@ -4292,7 +4309,7 @@ module Aws::AppStream
4292
4309
  params: params,
4293
4310
  config: config)
4294
4311
  context[:gem_name] = 'aws-sdk-appstream'
4295
- context[:gem_version] = '1.65.0'
4312
+ context[:gem_version] = '1.66.0'
4296
4313
  Seahorse::Client::Request.new(handlers, context)
4297
4314
  end
4298
4315
 
@@ -209,6 +209,7 @@ module Aws::AppStream
209
209
  Permission = Shapes::StringShape.new(name: 'Permission')
210
210
  PlatformType = Shapes::StringShape.new(name: 'PlatformType')
211
211
  Platforms = Shapes::ListShape.new(name: 'Platforms')
212
+ PreferredProtocol = Shapes::StringShape.new(name: 'PreferredProtocol')
212
213
  RedirectURL = Shapes::StringShape.new(name: 'RedirectURL')
213
214
  RegionName = Shapes::StringShape.new(name: 'RegionName')
214
215
  RequestLimitExceededException = Shapes::StructureShape.new(name: 'RequestLimitExceededException')
@@ -251,6 +252,7 @@ module Aws::AppStream
251
252
  StorageConnectorList = Shapes::ListShape.new(name: 'StorageConnectorList')
252
253
  StorageConnectorType = Shapes::StringShape.new(name: 'StorageConnectorType')
253
254
  StreamView = Shapes::StringShape.new(name: 'StreamView')
255
+ StreamingExperienceSettings = Shapes::StructureShape.new(name: 'StreamingExperienceSettings')
254
256
  StreamingUrlUserId = Shapes::StringShape.new(name: 'StreamingUrlUserId')
255
257
  String = Shapes::StringShape.new(name: 'String')
256
258
  StringList = Shapes::ListShape.new(name: 'StringList')
@@ -515,6 +517,7 @@ module Aws::AppStream
515
517
  CreateStackRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
516
518
  CreateStackRequest.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
517
519
  CreateStackRequest.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
520
+ CreateStackRequest.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
518
521
  CreateStackRequest.struct_class = Types::CreateStackRequest
519
522
 
520
523
  CreateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
@@ -1063,6 +1066,7 @@ module Aws::AppStream
1063
1066
  Stack.add_member(:application_settings, Shapes::ShapeRef.new(shape: ApplicationSettingsResponse, location_name: "ApplicationSettings"))
1064
1067
  Stack.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
1065
1068
  Stack.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
1069
+ Stack.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
1066
1070
  Stack.struct_class = Types::Stack
1067
1071
 
1068
1072
  StackAttributes.member = Shapes::ShapeRef.new(shape: StackAttribute)
@@ -1105,6 +1109,9 @@ module Aws::AppStream
1105
1109
 
1106
1110
  StorageConnectorList.member = Shapes::ShapeRef.new(shape: StorageConnector)
1107
1111
 
1112
+ StreamingExperienceSettings.add_member(:preferred_protocol, Shapes::ShapeRef.new(shape: PreferredProtocol, location_name: "PreferredProtocol"))
1113
+ StreamingExperienceSettings.struct_class = Types::StreamingExperienceSettings
1114
+
1108
1115
  StringList.member = Shapes::ShapeRef.new(shape: String)
1109
1116
 
1110
1117
  SubnetIdList.member = Shapes::ShapeRef.new(shape: String)
@@ -1203,6 +1210,7 @@ module Aws::AppStream
1203
1210
  UpdateStackRequest.add_member(:application_settings, Shapes::ShapeRef.new(shape: ApplicationSettings, location_name: "ApplicationSettings"))
1204
1211
  UpdateStackRequest.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
1205
1212
  UpdateStackRequest.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
1213
+ UpdateStackRequest.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
1206
1214
  UpdateStackRequest.struct_class = Types::UpdateStackRequest
1207
1215
 
1208
1216
  UpdateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
@@ -1478,6 +1478,9 @@ module Aws::AppStream
1478
1478
  # },
1479
1479
  # ],
1480
1480
  # embed_host_domains: ["EmbedHostDomain"],
1481
+ # streaming_experience_settings: {
1482
+ # preferred_protocol: "TCP", # accepts TCP, UDP
1483
+ # },
1481
1484
  # }
1482
1485
  #
1483
1486
  # @!attribute [rw] name
@@ -1551,6 +1554,12 @@ module Aws::AppStream
1551
1554
  # embedded AppStream 2.0 streaming sessions.
1552
1555
  # @return [Array<String>]
1553
1556
  #
1557
+ # @!attribute [rw] streaming_experience_settings
1558
+ # The streaming protocol you want your stack to prefer. This can be
1559
+ # UDP or TCP. Currently, UDP is only supported in the Windows native
1560
+ # client.
1561
+ # @return [Types::StreamingExperienceSettings]
1562
+ #
1554
1563
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStackRequest AWS API Documentation
1555
1564
  #
1556
1565
  class CreateStackRequest < Struct.new(
@@ -1564,7 +1573,8 @@ module Aws::AppStream
1564
1573
  :application_settings,
1565
1574
  :tags,
1566
1575
  :access_endpoints,
1567
- :embed_host_domains)
1576
+ :embed_host_domains,
1577
+ :streaming_experience_settings)
1568
1578
  SENSITIVE = []
1569
1579
  include Aws::Structure
1570
1580
  end
@@ -4566,6 +4576,12 @@ module Aws::AppStream
4566
4576
  # embedded AppStream 2.0 streaming sessions.
4567
4577
  # @return [Array<String>]
4568
4578
  #
4579
+ # @!attribute [rw] streaming_experience_settings
4580
+ # The streaming protocol you want your stack to prefer. This can be
4581
+ # UDP or TCP. Currently, UDP is only supported in the Windows native
4582
+ # client.
4583
+ # @return [Types::StreamingExperienceSettings]
4584
+ #
4569
4585
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Stack AWS API Documentation
4570
4586
  #
4571
4587
  class Stack < Struct.new(
@@ -4581,7 +4597,8 @@ module Aws::AppStream
4581
4597
  :user_settings,
4582
4598
  :application_settings,
4583
4599
  :access_endpoints,
4584
- :embed_host_domains)
4600
+ :embed_host_domains,
4601
+ :streaming_experience_settings)
4585
4602
  SENSITIVE = []
4586
4603
  include Aws::Structure
4587
4604
  end
@@ -4754,6 +4771,29 @@ module Aws::AppStream
4754
4771
  include Aws::Structure
4755
4772
  end
4756
4773
 
4774
+ # The streaming protocol you want your stack to prefer. This can be UDP
4775
+ # or TCP. Currently, UDP is only supported in the Windows native client.
4776
+ #
4777
+ # @note When making an API call, you may pass StreamingExperienceSettings
4778
+ # data as a hash:
4779
+ #
4780
+ # {
4781
+ # preferred_protocol: "TCP", # accepts TCP, UDP
4782
+ # }
4783
+ #
4784
+ # @!attribute [rw] preferred_protocol
4785
+ # The preferred protocol that you want to use while streaming your
4786
+ # application.
4787
+ # @return [String]
4788
+ #
4789
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StreamingExperienceSettings AWS API Documentation
4790
+ #
4791
+ class StreamingExperienceSettings < Struct.new(
4792
+ :preferred_protocol)
4793
+ SENSITIVE = []
4794
+ include Aws::Structure
4795
+ end
4796
+
4757
4797
  # @note When making an API call, you may pass TagResourceRequest
4758
4798
  # data as a hash:
4759
4799
  #
@@ -5374,7 +5414,7 @@ module Aws::AppStream
5374
5414
  # delete_storage_connectors: false,
5375
5415
  # redirect_url: "RedirectURL",
5376
5416
  # feedback_url: "FeedbackURL",
5377
- # attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS
5417
+ # attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS, STREAMING_EXPERIENCE_SETTINGS
5378
5418
  # user_settings: [
5379
5419
  # {
5380
5420
  # action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", # required, accepts CLIPBOARD_COPY_FROM_LOCAL_DEVICE, CLIPBOARD_COPY_TO_LOCAL_DEVICE, FILE_UPLOAD, FILE_DOWNLOAD, PRINTING_TO_LOCAL_DEVICE, DOMAIN_PASSWORD_SIGNIN, DOMAIN_SMART_CARD_SIGNIN
@@ -5392,6 +5432,9 @@ module Aws::AppStream
5392
5432
  # },
5393
5433
  # ],
5394
5434
  # embed_host_domains: ["EmbedHostDomain"],
5435
+ # streaming_experience_settings: {
5436
+ # preferred_protocol: "TCP", # accepts TCP, UDP
5437
+ # },
5395
5438
  # }
5396
5439
  #
5397
5440
  # @!attribute [rw] display_name
@@ -5453,6 +5496,12 @@ module Aws::AppStream
5453
5496
  # embedded AppStream 2.0 streaming sessions.
5454
5497
  # @return [Array<String>]
5455
5498
  #
5499
+ # @!attribute [rw] streaming_experience_settings
5500
+ # The streaming protocol you want your stack to prefer. This can be
5501
+ # UDP or TCP. Currently, UDP is only supported in the Windows native
5502
+ # client.
5503
+ # @return [Types::StreamingExperienceSettings]
5504
+ #
5456
5505
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStackRequest AWS API Documentation
5457
5506
  #
5458
5507
  class UpdateStackRequest < Struct.new(
@@ -5467,7 +5516,8 @@ module Aws::AppStream
5467
5516
  :user_settings,
5468
5517
  :application_settings,
5469
5518
  :access_endpoints,
5470
- :embed_host_domains)
5519
+ :embed_host_domains,
5520
+ :streaming_experience_settings)
5471
5521
  SENSITIVE = []
5472
5522
  include Aws::Structure
5473
5523
  end
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-appstream/customizations'
49
49
  # @!group service
50
50
  module Aws::AppStream
51
51
 
52
- GEM_VERSION = '1.65.0'
52
+ GEM_VERSION = '1.66.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appstream
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.65.0
4
+ version: 1.66.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-14 00:00:00.000000000 Z
11
+ date: 2022-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core