aws-sdk-appstream 1.47.0 → 1.52.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.
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -471,6 +471,8 @@ module Aws::AppStream
471
471
  # The instance type to use when launching fleet instances. The
472
472
  # following instance types are available:
473
473
  #
474
+ # * stream.standard.small
475
+ #
474
476
  # * stream.standard.medium
475
477
  #
476
478
  # * stream.standard.large
@@ -761,6 +763,8 @@ module Aws::AppStream
761
763
  # The instance type to use when launching the image builder. The
762
764
  # following instance types are available:
763
765
  #
766
+ # * stream.standard.small
767
+ #
764
768
  # * stream.standard.medium
765
769
  #
766
770
  # * stream.standard.large
@@ -992,7 +996,7 @@ module Aws::AppStream
992
996
  # feedback_url: "FeedbackURL",
993
997
  # user_settings: [
994
998
  # {
995
- # 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
999
+ # 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
996
1000
  # permission: "ENABLED", # required, accepts ENABLED, DISABLED
997
1001
  # },
998
1002
  # ],
@@ -1140,6 +1144,9 @@ module Aws::AppStream
1140
1144
  # @!attribute [rw] application_id
1141
1145
  # The name of the application to launch after the session starts. This
1142
1146
  # is the name that you specified as **Name** in the Image Assistant.
1147
+ # If your fleet is enabled for the **Desktop** stream view, you can
1148
+ # also choose to launch directly to the operating system desktop. To
1149
+ # do so, specify **Desktop**.
1143
1150
  # @return [String]
1144
1151
  #
1145
1152
  # @!attribute [rw] validity
@@ -1187,6 +1194,97 @@ module Aws::AppStream
1187
1194
  include Aws::Structure
1188
1195
  end
1189
1196
 
1197
+ # @note When making an API call, you may pass CreateUpdatedImageRequest
1198
+ # data as a hash:
1199
+ #
1200
+ # {
1201
+ # existing_image_name: "Name", # required
1202
+ # new_image_name: "Name", # required
1203
+ # new_image_description: "Description",
1204
+ # new_image_display_name: "DisplayName",
1205
+ # new_image_tags: {
1206
+ # "TagKey" => "TagValue",
1207
+ # },
1208
+ # dry_run: false,
1209
+ # }
1210
+ #
1211
+ # @!attribute [rw] existing_image_name
1212
+ # The name of the image to update.
1213
+ # @return [String]
1214
+ #
1215
+ # @!attribute [rw] new_image_name
1216
+ # The name of the new image. The name must be unique within the AWS
1217
+ # account and Region.
1218
+ # @return [String]
1219
+ #
1220
+ # @!attribute [rw] new_image_description
1221
+ # The description to display for the new image.
1222
+ # @return [String]
1223
+ #
1224
+ # @!attribute [rw] new_image_display_name
1225
+ # The name to display for the new image.
1226
+ # @return [String]
1227
+ #
1228
+ # @!attribute [rw] new_image_tags
1229
+ # The tags to associate with the new image. A tag is a key-value pair,
1230
+ # and the value is optional. For example, Environment=Test. If you do
1231
+ # not specify a value, Environment=.
1232
+ #
1233
+ # Generally allowed characters are: letters, numbers, and spaces
1234
+ # representable in UTF-8, and the following special characters:
1235
+ #
1236
+ # \_ . : / = + \\ - @
1237
+ #
1238
+ # If you do not specify a value, the value is set to an empty string.
1239
+ #
1240
+ # For more information about tags, see [Tagging Your Resources][1] in
1241
+ # the *Amazon AppStream 2.0 Administration Guide*.
1242
+ #
1243
+ #
1244
+ #
1245
+ # [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html
1246
+ # @return [Hash<String,String>]
1247
+ #
1248
+ # @!attribute [rw] dry_run
1249
+ # Indicates whether to display the status of image update availability
1250
+ # before AppStream 2.0 initiates the process of creating a new updated
1251
+ # image. If this value is set to `true`, AppStream 2.0 displays
1252
+ # whether image updates are available. If this value is set to
1253
+ # `false`, AppStream 2.0 initiates the process of creating a new
1254
+ # updated image without displaying whether image updates are
1255
+ # available.
1256
+ # @return [Boolean]
1257
+ #
1258
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUpdatedImageRequest AWS API Documentation
1259
+ #
1260
+ class CreateUpdatedImageRequest < Struct.new(
1261
+ :existing_image_name,
1262
+ :new_image_name,
1263
+ :new_image_description,
1264
+ :new_image_display_name,
1265
+ :new_image_tags,
1266
+ :dry_run)
1267
+ SENSITIVE = []
1268
+ include Aws::Structure
1269
+ end
1270
+
1271
+ # @!attribute [rw] image
1272
+ # Describes an image.
1273
+ # @return [Types::Image]
1274
+ #
1275
+ # @!attribute [rw] can_update_image
1276
+ # Indicates whether a new image can be created.
1277
+ # @return [Boolean]
1278
+ #
1279
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUpdatedImageResult AWS API Documentation
1280
+ #
1281
+ class CreateUpdatedImageResult < Struct.new(
1282
+ :image,
1283
+ :can_update_image)
1284
+ SENSITIVE = []
1285
+ include Aws::Structure
1286
+ end
1287
+
1190
1288
  # @api private
1191
1289
  #
1192
1290
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUsageReportSubscriptionRequest AWS API Documentation
@@ -2249,6 +2347,8 @@ module Aws::AppStream
2249
2347
  # The instance type to use when launching fleet instances. The
2250
2348
  # following instance types are available:
2251
2349
  #
2350
+ # * stream.standard.small
2351
+ #
2252
2352
  # * stream.standard.medium
2253
2353
  #
2254
2354
  # * stream.standard.large
@@ -2557,6 +2657,11 @@ module Aws::AppStream
2557
2657
  # specified image.
2558
2658
  # @return [Types::ImagePermissions]
2559
2659
  #
2660
+ # @!attribute [rw] image_errors
2661
+ # Describes the errors that are returned when a new image can't be
2662
+ # created.
2663
+ # @return [Array<Types::ResourceError>]
2664
+ #
2560
2665
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Image AWS API Documentation
2561
2666
  #
2562
2667
  class Image < Struct.new(
@@ -2575,7 +2680,8 @@ module Aws::AppStream
2575
2680
  :created_time,
2576
2681
  :public_base_image_released_date,
2577
2682
  :appstream_agent_version,
2578
- :image_permissions)
2683
+ :image_permissions,
2684
+ :image_errors)
2579
2685
  SENSITIVE = []
2580
2686
  include Aws::Structure
2581
2687
  end
@@ -2610,6 +2716,8 @@ module Aws::AppStream
2610
2716
  # The instance type for the image builder. The following instance
2611
2717
  # types are available:
2612
2718
  #
2719
+ # * stream.standard.small
2720
+ #
2613
2721
  # * stream.standard.medium
2614
2722
  #
2615
2723
  # * stream.standard.large
@@ -2828,7 +2936,7 @@ module Aws::AppStream
2828
2936
  include Aws::Structure
2829
2937
  end
2830
2938
 
2831
- # The image does not support storage connectors.
2939
+ # The image can't be updated because it's not compatible for updates.
2832
2940
  #
2833
2941
  # @!attribute [rw] message
2834
2942
  # The error message in the exception.
@@ -3707,6 +3815,8 @@ module Aws::AppStream
3707
3815
  # The instance type to use when launching fleet instances. The
3708
3816
  # following instance types are available:
3709
3817
  #
3818
+ # * stream.standard.small
3819
+ #
3710
3820
  # * stream.standard.medium
3711
3821
  #
3712
3822
  # * stream.standard.large
@@ -3979,7 +4089,7 @@ module Aws::AppStream
3979
4089
  # 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
3980
4090
  # user_settings: [
3981
4091
  # {
3982
- # 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
4092
+ # 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
3983
4093
  # permission: "ENABLED", # required, accepts ENABLED, DISABLED
3984
4094
  # },
3985
4095
  # ],
@@ -4196,7 +4306,7 @@ module Aws::AppStream
4196
4306
  # data as a hash:
4197
4307
  #
4198
4308
  # {
4199
- # 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
4309
+ # 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
4200
4310
  # permission: "ENABLED", # required, accepts ENABLED, DISABLED
4201
4311
  # }
4202
4312
  #
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
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.47.0
4
+ version: 1.52.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: 2020-09-15 00:00:00.000000000 Z
11
+ date: 2021-04-08 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.99.0
22
+ version: 3.112.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.99.0
32
+ version: 3.112.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -47,11 +47,14 @@ dependencies:
47
47
  description: Official AWS Ruby gem for Amazon AppStream. This gem is part of the AWS
48
48
  SDK for Ruby.
49
49
  email:
50
- - trevrowe@amazon.com
50
+ - aws-dr-rubygems@amazon.com
51
51
  executables: []
52
52
  extensions: []
53
53
  extra_rdoc_files: []
54
54
  files:
55
+ - CHANGELOG.md
56
+ - LICENSE.txt
57
+ - VERSION
55
58
  - lib/aws-sdk-appstream.rb
56
59
  - lib/aws-sdk-appstream/client.rb
57
60
  - lib/aws-sdk-appstream/client_api.rb
@@ -64,8 +67,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
64
67
  licenses:
65
68
  - Apache-2.0
66
69
  metadata:
67
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-appstream
68
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-appstream/CHANGELOG.md
70
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appstream
71
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appstream/CHANGELOG.md
69
72
  post_install_message:
70
73
  rdoc_options: []
71
74
  require_paths: