aws-sdk-appstream 1.13.0 → 1.14.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
  SHA1:
3
- metadata.gz: 7e787ef8ea159ed62a5f37c6d7c4e7562b601982
4
- data.tar.gz: 53b3296d2826dfb7ef74854b42256abd2a149e20
3
+ metadata.gz: 86075eb806402751f135b51076601e563010d905
4
+ data.tar.gz: e3a814970e4ad6e75286f59c053a94188f18e663
5
5
  SHA512:
6
- metadata.gz: 757ba2d0ee51c88b89f18df0d39f70bf1749131668352ff36f55ff553510c69d411fe51cb87657d2c36694fa403f172d042c393af1da03d8cb79dced3c05361a
7
- data.tar.gz: 8a1a99f94b94cd1a93c508f34056c247b01aaa4e52b0112c289e7f0fe9fe00646d08a0c39c8eae37b63a53edd997160bda287d90f78aef64e6b12ecae291d044
6
+ metadata.gz: 1ffedd6a319192db069bc232636834752fa804f0f549c8138182c797dec91458be70fe6a932a16f3208427d6f905db8d0f3e57bf36ff2142a059b40ddfb98615
7
+ data.tar.gz: 812167f6ded638f064426c3f8e7e65bae20f927eb66a0f3b1f03a58206e3f34b1cb5f1f6cda6e1d578a6f92e4d6390e59ac6d05796bdb88f726a83dbfbf26b01
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-appstream/customizations'
43
43
  # @service
44
44
  module Aws::AppStream
45
45
 
46
- GEM_VERSION = '1.13.0'
46
+ GEM_VERSION = '1.14.0'
47
47
 
48
48
  end
@@ -19,6 +19,8 @@ require 'aws-sdk-core/plugins/response_paging.rb'
19
19
  require 'aws-sdk-core/plugins/stub_responses.rb'
20
20
  require 'aws-sdk-core/plugins/idempotency_token.rb'
21
21
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
22
+ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
23
+ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
22
24
  require 'aws-sdk-core/plugins/signature_v4.rb'
23
25
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
24
26
 
@@ -47,6 +49,8 @@ module Aws::AppStream
47
49
  add_plugin(Aws::Plugins::StubResponses)
48
50
  add_plugin(Aws::Plugins::IdempotencyToken)
49
51
  add_plugin(Aws::Plugins::JsonvalueConverter)
52
+ add_plugin(Aws::Plugins::ClientMetricsPlugin)
53
+ add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
50
54
  add_plugin(Aws::Plugins::SignatureV4)
51
55
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
52
56
 
@@ -92,6 +96,22 @@ module Aws::AppStream
92
96
  #
93
97
  # @option options [String] :access_key_id
94
98
  #
99
+ # @option options [] :client_side_monitoring (false)
100
+ # When `true`, client-side metrics will be collected for all API requests from
101
+ # this client.
102
+ #
103
+ # @option options [] :client_side_monitoring_client_id ("")
104
+ # Allows you to provide an identifier for this client which will be attached to
105
+ # all generated client side metrics. Defaults to an empty string.
106
+ #
107
+ # @option options [] :client_side_monitoring_port (31000)
108
+ # Required for publishing client metrics. The port that the client side monitoring
109
+ # agent is running on, where client metrics will be published via UDP.
110
+ #
111
+ # @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
112
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
113
+ # will use the Client Side Monitoring Agent Publisher.
114
+ #
95
115
  # @option options [Boolean] :convert_params (true)
96
116
  # When `true`, an attempt is made to coerce request parameters into
97
117
  # the required types.
@@ -618,6 +638,12 @@ module Aws::AppStream
618
638
  # The actions that are enabled or disabled for users during their
619
639
  # streaming sessions. By default, these actions are enabled.
620
640
  #
641
+ # @option params [Types::ApplicationSettings] :application_settings
642
+ # The persistent application settings for users of a stack. When these
643
+ # settings are enabled, changes that users make to applications and
644
+ # Windows settings are automatically saved after each session and
645
+ # applied to the next session.
646
+ #
621
647
  # @return [Types::CreateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
622
648
  #
623
649
  # * {Types::CreateStackResult#stack #stack} => Types::Stack
@@ -643,6 +669,10 @@ module Aws::AppStream
643
669
  # permission: "ENABLED", # required, accepts ENABLED, DISABLED
644
670
  # },
645
671
  # ],
672
+ # application_settings: {
673
+ # enabled: false, # required
674
+ # settings_group: "SettingsGroup",
675
+ # },
646
676
  # })
647
677
  #
648
678
  # @example Response structure
@@ -665,6 +695,9 @@ module Aws::AppStream
665
695
  # resp.stack.user_settings #=> Array
666
696
  # 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"
667
697
  # resp.stack.user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
698
+ # resp.stack.application_settings.enabled #=> Boolean
699
+ # resp.stack.application_settings.settings_group #=> String
700
+ # resp.stack.application_settings.s3_bucket_name #=> String
668
701
  #
669
702
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStack AWS API Documentation
670
703
  #
@@ -1117,8 +1150,8 @@ module Aws::AppStream
1117
1150
  req.send_request(options)
1118
1151
  end
1119
1152
 
1120
- # Retrieves a list that describes the permissions for a private image
1121
- # that you own.
1153
+ # Retrieves a list that describes the permissions for shared AWS account
1154
+ # IDs on a private image that you own.
1122
1155
  #
1123
1156
  # @option params [required, String] :name
1124
1157
  # The name of the private image for which to describe permissions. The
@@ -1169,11 +1202,11 @@ module Aws::AppStream
1169
1202
  end
1170
1203
 
1171
1204
  # Retrieves a list that describes one or more specified images, if the
1172
- # image names are provided. Otherwise, all images in the account are
1173
- # described.
1205
+ # image names or image ARNs are provided. Otherwise, all images in the
1206
+ # account are described.
1174
1207
  #
1175
1208
  # @option params [Array<String>] :names
1176
- # The names of the images to describe.
1209
+ # The names of the public or private images to describe.
1177
1210
  #
1178
1211
  # @option params [Array<String>] :arns
1179
1212
  # The ARNs of the public, private, and shared images to describe.
@@ -1352,6 +1385,9 @@ module Aws::AppStream
1352
1385
  # resp.stacks[0].user_settings #=> Array
1353
1386
  # 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"
1354
1387
  # resp.stacks[0].user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
1388
+ # resp.stacks[0].application_settings.enabled #=> Boolean
1389
+ # resp.stacks[0].application_settings.settings_group #=> String
1390
+ # resp.stacks[0].application_settings.s3_bucket_name #=> String
1355
1391
  # resp.next_token #=> String
1356
1392
  #
1357
1393
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeStacks AWS API Documentation
@@ -2033,6 +2069,12 @@ module Aws::AppStream
2033
2069
  # The actions that are enabled or disabled for users during their
2034
2070
  # streaming sessions. By default, these actions are enabled.
2035
2071
  #
2072
+ # @option params [Types::ApplicationSettings] :application_settings
2073
+ # The persistent application settings for users of a stack. When these
2074
+ # settings are enabled, changes that users make to applications and
2075
+ # Windows settings are automatically saved after each session and
2076
+ # applied to the next session.
2077
+ #
2036
2078
  # @return [Types::UpdateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2037
2079
  #
2038
2080
  # * {Types::UpdateStackResult#stack #stack} => Types::Stack
@@ -2060,6 +2102,10 @@ module Aws::AppStream
2060
2102
  # permission: "ENABLED", # required, accepts ENABLED, DISABLED
2061
2103
  # },
2062
2104
  # ],
2105
+ # application_settings: {
2106
+ # enabled: false, # required
2107
+ # settings_group: "SettingsGroup",
2108
+ # },
2063
2109
  # })
2064
2110
  #
2065
2111
  # @example Response structure
@@ -2082,6 +2128,9 @@ module Aws::AppStream
2082
2128
  # resp.stack.user_settings #=> Array
2083
2129
  # 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"
2084
2130
  # resp.stack.user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
2131
+ # resp.stack.application_settings.enabled #=> Boolean
2132
+ # resp.stack.application_settings.settings_group #=> String
2133
+ # resp.stack.application_settings.s3_bucket_name #=> String
2085
2134
  #
2086
2135
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStack AWS API Documentation
2087
2136
  #
@@ -2105,7 +2154,7 @@ module Aws::AppStream
2105
2154
  params: params,
2106
2155
  config: config)
2107
2156
  context[:gem_name] = 'aws-sdk-appstream'
2108
- context[:gem_version] = '1.13.0'
2157
+ context[:gem_version] = '1.14.0'
2109
2158
  Seahorse::Client::Request.new(handlers, context)
2110
2159
  end
2111
2160
 
@@ -15,6 +15,8 @@ module Aws::AppStream
15
15
  AccountPassword = Shapes::StringShape.new(name: 'AccountPassword')
16
16
  Action = Shapes::StringShape.new(name: 'Action')
17
17
  Application = Shapes::StructureShape.new(name: 'Application')
18
+ ApplicationSettings = Shapes::StructureShape.new(name: 'ApplicationSettings')
19
+ ApplicationSettingsResponse = Shapes::StructureShape.new(name: 'ApplicationSettingsResponse')
18
20
  Applications = Shapes::ListShape.new(name: 'Applications')
19
21
  AppstreamAgentVersion = Shapes::StringShape.new(name: 'AppstreamAgentVersion')
20
22
  Arn = Shapes::StringShape.new(name: 'Arn')
@@ -141,6 +143,7 @@ module Aws::AppStream
141
143
  Session = Shapes::StructureShape.new(name: 'Session')
142
144
  SessionList = Shapes::ListShape.new(name: 'SessionList')
143
145
  SessionState = Shapes::StringShape.new(name: 'SessionState')
146
+ SettingsGroup = Shapes::StringShape.new(name: 'SettingsGroup')
144
147
  SharedImagePermissions = Shapes::StructureShape.new(name: 'SharedImagePermissions')
145
148
  SharedImagePermissionsList = Shapes::ListShape.new(name: 'SharedImagePermissionsList')
146
149
  Stack = Shapes::StructureShape.new(name: 'Stack')
@@ -197,6 +200,15 @@ module Aws::AppStream
197
200
  Application.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location_name: "Metadata"))
198
201
  Application.struct_class = Types::Application
199
202
 
203
+ ApplicationSettings.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
204
+ ApplicationSettings.add_member(:settings_group, Shapes::ShapeRef.new(shape: SettingsGroup, location_name: "SettingsGroup"))
205
+ ApplicationSettings.struct_class = Types::ApplicationSettings
206
+
207
+ ApplicationSettingsResponse.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
208
+ ApplicationSettingsResponse.add_member(:settings_group, Shapes::ShapeRef.new(shape: SettingsGroup, location_name: "SettingsGroup"))
209
+ ApplicationSettingsResponse.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "S3BucketName"))
210
+ ApplicationSettingsResponse.struct_class = Types::ApplicationSettingsResponse
211
+
200
212
  Applications.member = Shapes::ShapeRef.new(shape: Application)
201
213
 
202
214
  ArnList.member = Shapes::ShapeRef.new(shape: Arn)
@@ -283,6 +295,7 @@ module Aws::AppStream
283
295
  CreateStackRequest.add_member(:redirect_url, Shapes::ShapeRef.new(shape: RedirectURL, location_name: "RedirectURL"))
284
296
  CreateStackRequest.add_member(:feedback_url, Shapes::ShapeRef.new(shape: FeedbackURL, location_name: "FeedbackURL"))
285
297
  CreateStackRequest.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettingList, location_name: "UserSettings"))
298
+ CreateStackRequest.add_member(:application_settings, Shapes::ShapeRef.new(shape: ApplicationSettings, location_name: "ApplicationSettings"))
286
299
  CreateStackRequest.struct_class = Types::CreateStackRequest
287
300
 
288
301
  CreateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
@@ -578,6 +591,7 @@ module Aws::AppStream
578
591
  Stack.add_member(:feedback_url, Shapes::ShapeRef.new(shape: FeedbackURL, location_name: "FeedbackURL"))
579
592
  Stack.add_member(:stack_errors, Shapes::ShapeRef.new(shape: StackErrors, location_name: "StackErrors"))
580
593
  Stack.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettingList, location_name: "UserSettings"))
594
+ Stack.add_member(:application_settings, Shapes::ShapeRef.new(shape: ApplicationSettingsResponse, location_name: "ApplicationSettings"))
581
595
  Stack.struct_class = Types::Stack
582
596
 
583
597
  StackAttributes.member = Shapes::ShapeRef.new(shape: StackAttribute)
@@ -684,6 +698,7 @@ module Aws::AppStream
684
698
  UpdateStackRequest.add_member(:feedback_url, Shapes::ShapeRef.new(shape: FeedbackURL, location_name: "FeedbackURL"))
685
699
  UpdateStackRequest.add_member(:attributes_to_delete, Shapes::ShapeRef.new(shape: StackAttributes, location_name: "AttributesToDelete"))
686
700
  UpdateStackRequest.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettingList, location_name: "UserSettings"))
701
+ UpdateStackRequest.add_member(:application_settings, Shapes::ShapeRef.new(shape: ApplicationSettings, location_name: "ApplicationSettings"))
687
702
  UpdateStackRequest.struct_class = Types::UpdateStackRequest
688
703
 
689
704
  UpdateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
@@ -706,13 +721,16 @@ module Aws::AppStream
706
721
  api.version = "2016-12-01"
707
722
 
708
723
  api.metadata = {
724
+ "apiVersion" => "2016-12-01",
709
725
  "endpointPrefix" => "appstream2",
710
726
  "jsonVersion" => "1.1",
711
727
  "protocol" => "json",
712
728
  "serviceFullName" => "Amazon AppStream",
729
+ "serviceId" => "AppStream",
713
730
  "signatureVersion" => "v4",
714
731
  "signingName" => "appstream",
715
732
  "targetPrefix" => "PhotonAdminProxyService",
733
+ "uid" => "appstream-2016-12-01",
716
734
  }
717
735
 
718
736
  api.add_operation(:associate_fleet, Seahorse::Model::Operation.new.tap do |o|
@@ -52,6 +52,64 @@ module Aws::AppStream
52
52
  include Aws::Structure
53
53
  end
54
54
 
55
+ # The persistent application settings for users of a stack.
56
+ #
57
+ # @note When making an API call, you may pass ApplicationSettings
58
+ # data as a hash:
59
+ #
60
+ # {
61
+ # enabled: false, # required
62
+ # settings_group: "SettingsGroup",
63
+ # }
64
+ #
65
+ # @!attribute [rw] enabled
66
+ # Enables or disables persistent application settings for users during
67
+ # their streaming sessions.
68
+ # @return [Boolean]
69
+ #
70
+ # @!attribute [rw] settings_group
71
+ # The path prefix for the S3 bucket where users’ persistent
72
+ # application settings are stored. You can allow the same persistent
73
+ # application settings to be used across multiple stacks by specifying
74
+ # the same settings group for each stack.
75
+ # @return [String]
76
+ #
77
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ApplicationSettings AWS API Documentation
78
+ #
79
+ class ApplicationSettings < Struct.new(
80
+ :enabled,
81
+ :settings_group)
82
+ include Aws::Structure
83
+ end
84
+
85
+ # Describes the persistent application settings for users of a stack.
86
+ #
87
+ # @!attribute [rw] enabled
88
+ # Specifies whether persistent application settings are enabled for
89
+ # users during their streaming sessions.
90
+ # @return [Boolean]
91
+ #
92
+ # @!attribute [rw] settings_group
93
+ # The path prefix for the S3 bucket where users’ persistent
94
+ # application settings are stored.
95
+ # @return [String]
96
+ #
97
+ # @!attribute [rw] s3_bucket_name
98
+ # The S3 bucket where users’ persistent application settings are
99
+ # stored. When persistent application settings are enabled for the
100
+ # first time for an account in an AWS Region, an S3 bucket is created.
101
+ # The bucket is unique to the AWS account and the Region.
102
+ # @return [String]
103
+ #
104
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ApplicationSettingsResponse AWS API Documentation
105
+ #
106
+ class ApplicationSettingsResponse < Struct.new(
107
+ :enabled,
108
+ :settings_group,
109
+ :s3_bucket_name)
110
+ include Aws::Structure
111
+ end
112
+
55
113
  # @note When making an API call, you may pass AssociateFleetRequest
56
114
  # data as a hash:
57
115
  #
@@ -551,6 +609,10 @@ module Aws::AppStream
551
609
  # permission: "ENABLED", # required, accepts ENABLED, DISABLED
552
610
  # },
553
611
  # ],
612
+ # application_settings: {
613
+ # enabled: false, # required
614
+ # settings_group: "SettingsGroup",
615
+ # },
554
616
  # }
555
617
  #
556
618
  # @!attribute [rw] name
@@ -585,6 +647,13 @@ module Aws::AppStream
585
647
  # streaming sessions. By default, these actions are enabled.
586
648
  # @return [Array<Types::UserSetting>]
587
649
  #
650
+ # @!attribute [rw] application_settings
651
+ # The persistent application settings for users of a stack. When these
652
+ # settings are enabled, changes that users make to applications and
653
+ # Windows settings are automatically saved after each session and
654
+ # applied to the next session.
655
+ # @return [Types::ApplicationSettings]
656
+ #
588
657
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStackRequest AWS API Documentation
589
658
  #
590
659
  class CreateStackRequest < Struct.new(
@@ -594,7 +663,8 @@ module Aws::AppStream
594
663
  :storage_connectors,
595
664
  :redirect_url,
596
665
  :feedback_url,
597
- :user_settings)
666
+ :user_settings,
667
+ :application_settings)
598
668
  include Aws::Structure
599
669
  end
600
670
 
@@ -1047,7 +1117,7 @@ module Aws::AppStream
1047
1117
  # }
1048
1118
  #
1049
1119
  # @!attribute [rw] names
1050
- # The names of the images to describe.
1120
+ # The names of the public or private images to describe.
1051
1121
  # @return [Array<String>]
1052
1122
  #
1053
1123
  # @!attribute [rw] arns
@@ -1976,6 +2046,10 @@ module Aws::AppStream
1976
2046
  # streaming sessions. By default these actions are enabled.
1977
2047
  # @return [Array<Types::UserSetting>]
1978
2048
  #
2049
+ # @!attribute [rw] application_settings
2050
+ # The persistent application settings for users of the stack.
2051
+ # @return [Types::ApplicationSettingsResponse]
2052
+ #
1979
2053
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Stack AWS API Documentation
1980
2054
  #
1981
2055
  class Stack < Struct.new(
@@ -1988,7 +2062,8 @@ module Aws::AppStream
1988
2062
  :redirect_url,
1989
2063
  :feedback_url,
1990
2064
  :stack_errors,
1991
- :user_settings)
2065
+ :user_settings,
2066
+ :application_settings)
1992
2067
  include Aws::Structure
1993
2068
  end
1994
2069
 
@@ -2482,6 +2557,10 @@ module Aws::AppStream
2482
2557
  # permission: "ENABLED", # required, accepts ENABLED, DISABLED
2483
2558
  # },
2484
2559
  # ],
2560
+ # application_settings: {
2561
+ # enabled: false, # required
2562
+ # settings_group: "SettingsGroup",
2563
+ # },
2485
2564
  # }
2486
2565
  #
2487
2566
  # @!attribute [rw] display_name
@@ -2524,6 +2603,13 @@ module Aws::AppStream
2524
2603
  # streaming sessions. By default, these actions are enabled.
2525
2604
  # @return [Array<Types::UserSetting>]
2526
2605
  #
2606
+ # @!attribute [rw] application_settings
2607
+ # The persistent application settings for users of a stack. When these
2608
+ # settings are enabled, changes that users make to applications and
2609
+ # Windows settings are automatically saved after each session and
2610
+ # applied to the next session.
2611
+ # @return [Types::ApplicationSettings]
2612
+ #
2527
2613
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStackRequest AWS API Documentation
2528
2614
  #
2529
2615
  class UpdateStackRequest < Struct.new(
@@ -2535,7 +2621,8 @@ module Aws::AppStream
2535
2621
  :redirect_url,
2536
2622
  :feedback_url,
2537
2623
  :attributes_to_delete,
2538
- :user_settings)
2624
+ :user_settings,
2625
+ :application_settings)
2539
2626
  include Aws::Structure
2540
2627
  end
2541
2628
 
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.13.0
4
+ version: 1.14.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-07-13 00:00:00.000000000 Z
11
+ date: 2018-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core