aws-sdk-appstream 1.7.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5b4d3197bf2dc4b717f372bd9d2f23ae75a88038
4
- data.tar.gz: 1c2be8e4946f7f475378a397086e3121a61fc98e
3
+ metadata.gz: 8d032dc5f6003e4f9003a77f0808a099b967f2fb
4
+ data.tar.gz: 5059ccf99856eafbb6fd64f3a8ce80b1a23881c2
5
5
  SHA512:
6
- metadata.gz: 837bff0b9903daa6a89a0d023158c19bbc06dd4aaa409ef91a0771b42cf61a9f51086c97692f3dc4cfe9fd63516050d5b17f1666fcd5c1b6ef2d04fdf9ccc968
7
- data.tar.gz: e813a733872d52e62212d2a58e1d2fec230ba6b2383841c307f8dc1418a2b6687e1fa38902e47ecc7610e5e4f8f71dbdf379667f1b9d7fcfbb4c13654856bfd5
6
+ metadata.gz: ee090c9f78b4f664e3186ae5b2d8256212d2dcfbd28eb41dd9a4ecd7db9b8a0666af6ddb9831a7029e643b5105463d0b38064b5122ba731d2815fe4812a8ae68
7
+ data.tar.gz: e2d6aee8b22cefd75398a1864983b064eeef0394d0a61a1a534b8b432cca47d6f01ed7fcbdbe41964cd9b7776532d4ab84849102a4c371128f44c7988e7d63e9
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-appstream/customizations'
43
43
  # @service
44
44
  module Aws::AppStream
45
45
 
46
- GEM_VERSION = '1.7.0'
46
+ GEM_VERSION = '1.8.0'
47
47
 
48
48
  end
@@ -588,6 +588,10 @@ module Aws::AppStream
588
588
  # Feedback link. If no URL is specified, no Send Feedback link is
589
589
  # displayed.
590
590
  #
591
+ # @option params [Array<Types::UserSetting>] :user_settings
592
+ # The actions that are enabled or disabled for users during their
593
+ # streaming sessions. By default, these actions are enabled.
594
+ #
591
595
  # @return [Types::CreateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
592
596
  #
593
597
  # * {Types::CreateStackResult#stack #stack} => Types::Stack
@@ -606,6 +610,12 @@ module Aws::AppStream
606
610
  # ],
607
611
  # redirect_url: "RedirectURL",
608
612
  # feedback_url: "FeedbackURL",
613
+ # user_settings: [
614
+ # {
615
+ # 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
616
+ # permission: "ENABLED", # required, accepts ENABLED, DISABLED
617
+ # },
618
+ # ],
609
619
  # })
610
620
  #
611
621
  # @example Response structure
@@ -623,6 +633,9 @@ module Aws::AppStream
623
633
  # resp.stack.stack_errors #=> Array
624
634
  # resp.stack.stack_errors[0].error_code #=> String, one of "STORAGE_CONNECTOR_ERROR", "INTERNAL_SERVICE_ERROR"
625
635
  # resp.stack.stack_errors[0].error_message #=> String
636
+ # resp.stack.user_settings #=> Array
637
+ # resp.stack.user_settings[0].action #=> String, one of "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", "CLIPBOARD_COPY_TO_LOCAL_DEVICE", "FILE_UPLOAD", "FILE_DOWNLOAD", "PRINTING_TO_LOCAL_DEVICE"
638
+ # resp.stack.user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
626
639
  #
627
640
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStack AWS API Documentation
628
641
  #
@@ -1181,6 +1194,9 @@ module Aws::AppStream
1181
1194
  # resp.stacks[0].stack_errors #=> Array
1182
1195
  # resp.stacks[0].stack_errors[0].error_code #=> String, one of "STORAGE_CONNECTOR_ERROR", "INTERNAL_SERVICE_ERROR"
1183
1196
  # resp.stacks[0].stack_errors[0].error_message #=> String
1197
+ # resp.stacks[0].user_settings #=> Array
1198
+ # resp.stacks[0].user_settings[0].action #=> String, one of "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", "CLIPBOARD_COPY_TO_LOCAL_DEVICE", "FILE_UPLOAD", "FILE_DOWNLOAD", "PRINTING_TO_LOCAL_DEVICE"
1199
+ # resp.stacks[0].user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
1184
1200
  # resp.next_token #=> String
1185
1201
  #
1186
1202
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeStacks AWS API Documentation
@@ -1815,6 +1831,10 @@ module Aws::AppStream
1815
1831
  # @option params [Array<String>] :attributes_to_delete
1816
1832
  # The stack attributes to delete.
1817
1833
  #
1834
+ # @option params [Array<Types::UserSetting>] :user_settings
1835
+ # The actions that are enabled or disabled for users during their
1836
+ # streaming sessions. By default, these actions are enabled.
1837
+ #
1818
1838
  # @return [Types::UpdateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1819
1839
  #
1820
1840
  # * {Types::UpdateStackResult#stack #stack} => Types::Stack
@@ -1834,7 +1854,13 @@ module Aws::AppStream
1834
1854
  # delete_storage_connectors: false,
1835
1855
  # redirect_url: "RedirectURL",
1836
1856
  # feedback_url: "FeedbackURL",
1837
- # attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, REDIRECT_URL, FEEDBACK_URL, THEME_NAME
1857
+ # attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS
1858
+ # user_settings: [
1859
+ # {
1860
+ # 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
1861
+ # permission: "ENABLED", # required, accepts ENABLED, DISABLED
1862
+ # },
1863
+ # ],
1838
1864
  # })
1839
1865
  #
1840
1866
  # @example Response structure
@@ -1852,6 +1878,9 @@ module Aws::AppStream
1852
1878
  # resp.stack.stack_errors #=> Array
1853
1879
  # resp.stack.stack_errors[0].error_code #=> String, one of "STORAGE_CONNECTOR_ERROR", "INTERNAL_SERVICE_ERROR"
1854
1880
  # resp.stack.stack_errors[0].error_message #=> String
1881
+ # resp.stack.user_settings #=> Array
1882
+ # resp.stack.user_settings[0].action #=> String, one of "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", "CLIPBOARD_COPY_TO_LOCAL_DEVICE", "FILE_UPLOAD", "FILE_DOWNLOAD", "PRINTING_TO_LOCAL_DEVICE"
1883
+ # resp.stack.user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
1855
1884
  #
1856
1885
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStack AWS API Documentation
1857
1886
  #
@@ -1875,7 +1904,7 @@ module Aws::AppStream
1875
1904
  params: params,
1876
1905
  config: config)
1877
1906
  context[:gem_name] = 'aws-sdk-appstream'
1878
- context[:gem_version] = '1.7.0'
1907
+ context[:gem_version] = '1.8.0'
1879
1908
  Seahorse::Client::Request.new(handlers, context)
1880
1909
  end
1881
1910
 
@@ -13,6 +13,7 @@ module Aws::AppStream
13
13
 
14
14
  AccountName = Shapes::StringShape.new(name: 'AccountName')
15
15
  AccountPassword = Shapes::StringShape.new(name: 'AccountPassword')
16
+ Action = Shapes::StringShape.new(name: 'Action')
16
17
  Application = Shapes::StructureShape.new(name: 'Application')
17
18
  Applications = Shapes::ListShape.new(name: 'Applications')
18
19
  AppstreamAgentVersion = Shapes::StringShape.new(name: 'AppstreamAgentVersion')
@@ -111,6 +112,7 @@ module Aws::AppStream
111
112
  OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException')
112
113
  OrganizationalUnitDistinguishedName = Shapes::StringShape.new(name: 'OrganizationalUnitDistinguishedName')
113
114
  OrganizationalUnitDistinguishedNamesList = Shapes::ListShape.new(name: 'OrganizationalUnitDistinguishedNamesList')
115
+ Permission = Shapes::StringShape.new(name: 'Permission')
114
116
  PlatformType = Shapes::StringShape.new(name: 'PlatformType')
115
117
  RedirectURL = Shapes::StringShape.new(name: 'RedirectURL')
116
118
  RegionName = Shapes::StringShape.new(name: 'RegionName')
@@ -164,6 +166,8 @@ module Aws::AppStream
164
166
  UpdateStackRequest = Shapes::StructureShape.new(name: 'UpdateStackRequest')
165
167
  UpdateStackResult = Shapes::StructureShape.new(name: 'UpdateStackResult')
166
168
  UserId = Shapes::StringShape.new(name: 'UserId')
169
+ UserSetting = Shapes::StructureShape.new(name: 'UserSetting')
170
+ UserSettingList = Shapes::ListShape.new(name: 'UserSettingList')
167
171
  VisibilityType = Shapes::StringShape.new(name: 'VisibilityType')
168
172
  VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
169
173
 
@@ -255,6 +259,7 @@ module Aws::AppStream
255
259
  CreateStackRequest.add_member(:storage_connectors, Shapes::ShapeRef.new(shape: StorageConnectorList, location_name: "StorageConnectors"))
256
260
  CreateStackRequest.add_member(:redirect_url, Shapes::ShapeRef.new(shape: RedirectURL, location_name: "RedirectURL"))
257
261
  CreateStackRequest.add_member(:feedback_url, Shapes::ShapeRef.new(shape: FeedbackURL, location_name: "FeedbackURL"))
262
+ CreateStackRequest.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettingList, location_name: "UserSettings"))
258
263
  CreateStackRequest.struct_class = Types::CreateStackRequest
259
264
 
260
265
  CreateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
@@ -508,6 +513,7 @@ module Aws::AppStream
508
513
  Stack.add_member(:redirect_url, Shapes::ShapeRef.new(shape: RedirectURL, location_name: "RedirectURL"))
509
514
  Stack.add_member(:feedback_url, Shapes::ShapeRef.new(shape: FeedbackURL, location_name: "FeedbackURL"))
510
515
  Stack.add_member(:stack_errors, Shapes::ShapeRef.new(shape: StackErrors, location_name: "StackErrors"))
516
+ Stack.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettingList, location_name: "UserSettings"))
511
517
  Stack.struct_class = Types::Stack
512
518
 
513
519
  StackAttributes.member = Shapes::ShapeRef.new(shape: StackAttribute)
@@ -604,11 +610,18 @@ module Aws::AppStream
604
610
  UpdateStackRequest.add_member(:redirect_url, Shapes::ShapeRef.new(shape: RedirectURL, location_name: "RedirectURL"))
605
611
  UpdateStackRequest.add_member(:feedback_url, Shapes::ShapeRef.new(shape: FeedbackURL, location_name: "FeedbackURL"))
606
612
  UpdateStackRequest.add_member(:attributes_to_delete, Shapes::ShapeRef.new(shape: StackAttributes, location_name: "AttributesToDelete"))
613
+ UpdateStackRequest.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettingList, location_name: "UserSettings"))
607
614
  UpdateStackRequest.struct_class = Types::UpdateStackRequest
608
615
 
609
616
  UpdateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
610
617
  UpdateStackResult.struct_class = Types::UpdateStackResult
611
618
 
619
+ UserSetting.add_member(:action, Shapes::ShapeRef.new(shape: Action, required: true, location_name: "Action"))
620
+ UserSetting.add_member(:permission, Shapes::ShapeRef.new(shape: Permission, required: true, location_name: "Permission"))
621
+ UserSetting.struct_class = Types::UserSetting
622
+
623
+ UserSettingList.member = Shapes::ShapeRef.new(shape: UserSetting)
624
+
612
625
  VpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, location_name: "SubnetIds"))
613
626
  VpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, location_name: "SecurityGroupIds"))
614
627
  VpcConfig.struct_class = Types::VpcConfig
@@ -532,6 +532,12 @@ module Aws::AppStream
532
532
  # ],
533
533
  # redirect_url: "RedirectURL",
534
534
  # feedback_url: "FeedbackURL",
535
+ # user_settings: [
536
+ # {
537
+ # 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
538
+ # permission: "ENABLED", # required, accepts ENABLED, DISABLED
539
+ # },
540
+ # ],
535
541
  # }
536
542
  #
537
543
  # @!attribute [rw] name
@@ -561,6 +567,11 @@ module Aws::AppStream
561
567
  # displayed.
562
568
  # @return [String]
563
569
  #
570
+ # @!attribute [rw] user_settings
571
+ # The actions that are enabled or disabled for users during their
572
+ # streaming sessions. By default, these actions are enabled.
573
+ # @return [Array<Types::UserSetting>]
574
+ #
564
575
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStackRequest AWS API Documentation
565
576
  #
566
577
  class CreateStackRequest < Struct.new(
@@ -569,7 +580,8 @@ module Aws::AppStream
569
580
  :display_name,
570
581
  :storage_connectors,
571
582
  :redirect_url,
572
- :feedback_url)
583
+ :feedback_url,
584
+ :user_settings)
573
585
  include Aws::Structure
574
586
  end
575
587
 
@@ -1743,6 +1755,11 @@ module Aws::AppStream
1743
1755
  # The errors for the stack.
1744
1756
  # @return [Array<Types::StackError>]
1745
1757
  #
1758
+ # @!attribute [rw] user_settings
1759
+ # The actions that are enabled or disabled for users during their
1760
+ # streaming sessions. By default these actions are enabled.
1761
+ # @return [Array<Types::UserSetting>]
1762
+ #
1746
1763
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Stack AWS API Documentation
1747
1764
  #
1748
1765
  class Stack < Struct.new(
@@ -1754,7 +1771,8 @@ module Aws::AppStream
1754
1771
  :storage_connectors,
1755
1772
  :redirect_url,
1756
1773
  :feedback_url,
1757
- :stack_errors)
1774
+ :stack_errors,
1775
+ :user_settings)
1758
1776
  include Aws::Structure
1759
1777
  end
1760
1778
 
@@ -2190,7 +2208,13 @@ module Aws::AppStream
2190
2208
  # delete_storage_connectors: false,
2191
2209
  # redirect_url: "RedirectURL",
2192
2210
  # feedback_url: "FeedbackURL",
2193
- # attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, REDIRECT_URL, FEEDBACK_URL, THEME_NAME
2211
+ # attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS
2212
+ # user_settings: [
2213
+ # {
2214
+ # 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
2215
+ # permission: "ENABLED", # required, accepts ENABLED, DISABLED
2216
+ # },
2217
+ # ],
2194
2218
  # }
2195
2219
  #
2196
2220
  # @!attribute [rw] display_name
@@ -2228,6 +2252,11 @@ module Aws::AppStream
2228
2252
  # The stack attributes to delete.
2229
2253
  # @return [Array<String>]
2230
2254
  #
2255
+ # @!attribute [rw] user_settings
2256
+ # The actions that are enabled or disabled for users during their
2257
+ # streaming sessions. By default, these actions are enabled.
2258
+ # @return [Array<Types::UserSetting>]
2259
+ #
2231
2260
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStackRequest AWS API Documentation
2232
2261
  #
2233
2262
  class UpdateStackRequest < Struct.new(
@@ -2238,7 +2267,8 @@ module Aws::AppStream
2238
2267
  :delete_storage_connectors,
2239
2268
  :redirect_url,
2240
2269
  :feedback_url,
2241
- :attributes_to_delete)
2270
+ :attributes_to_delete,
2271
+ :user_settings)
2242
2272
  include Aws::Structure
2243
2273
  end
2244
2274
 
@@ -2253,6 +2283,33 @@ module Aws::AppStream
2253
2283
  include Aws::Structure
2254
2284
  end
2255
2285
 
2286
+ # Describes an action and whether the action is enabled or disabled for
2287
+ # users during their streaming sessions.
2288
+ #
2289
+ # @note When making an API call, you may pass UserSetting
2290
+ # data as a hash:
2291
+ #
2292
+ # {
2293
+ # 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
2294
+ # permission: "ENABLED", # required, accepts ENABLED, DISABLED
2295
+ # }
2296
+ #
2297
+ # @!attribute [rw] action
2298
+ # The action that is enabled or disabled.
2299
+ # @return [String]
2300
+ #
2301
+ # @!attribute [rw] permission
2302
+ # Indicates whether the action is enabled or disabled.
2303
+ # @return [String]
2304
+ #
2305
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UserSetting AWS API Documentation
2306
+ #
2307
+ class UserSetting < Struct.new(
2308
+ :action,
2309
+ :permission)
2310
+ include Aws::Structure
2311
+ end
2312
+
2256
2313
  # Describes VPC configuration information.
2257
2314
  #
2258
2315
  # @note When making an API call, you may pass VpcConfig
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.7.0
4
+ version: 1.8.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: 2018-03-22 00:00:00.000000000 Z
11
+ date: 2018-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
76
  version: '0'
77
77
  requirements: []
78
78
  rubyforge_project:
79
- rubygems_version: 2.5.2.2
79
+ rubygems_version: 2.5.2.3
80
80
  signing_key:
81
81
  specification_version: 4
82
82
  summary: AWS SDK for Ruby - Amazon AppStream