aws-sdk-appstream 1.69.0 → 1.71.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: ef5324357eed800b99b6e680b6756ab1baf4739bca0d34c3067f2fa09f334651
4
- data.tar.gz: 4c7782fbc4e0d12aa7016daf0401da0111fcef102ead3cf8f969637a5ba811e4
3
+ metadata.gz: 9e0ad9b2d4faf4a63a652f971a6a37ce724037ebc49212b25fa430dc0218eba1
4
+ data.tar.gz: 55b2dab7928a83501a2f2c97f2d6a8b74c557c6292bd5236d46ddf0fe3098ded
5
5
  SHA512:
6
- metadata.gz: 9404e36d783ceb34a14e442125eaded47478fdd2d4ce81226917519eb8959c0331f7b4392ad9b52bebb3e75cb96ecb2038286a565a8bbd8e975db232eafc4c68
7
- data.tar.gz: b87d25bdfe3eb399def7f7a4ec2d72e01ecdab8304d14ca0677c235a63605026df9fdf30db94fa5dff4a1c520b15a958006b8bc3dc011c603949f620c79e7869
6
+ metadata.gz: 723bcf1de2530bc9fd8d53be863720cc2b1eed3d3887f31891c4df73f3d21e4e15ed6f8c2575192b4dee35be6f5e8a763ffa7d154ec36d0eae862d2ef18e8b43
7
+ data.tar.gz: bbd7173776e673abac03a047dde5904a363d93708f05c48d3d3bb2f05389a885f92b9cb3efdef0df6eba634e0fa8085d3ab42972e57060b187695b97f484b348
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.70.0 (2023-01-27)
10
+ ------------------
11
+
12
+ * Feature - Fixing the issue where Appstream waiters hang for fleet_started and fleet_stopped.
13
+
4
14
  1.69.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.69.0
1
+ 1.71.0
@@ -275,6 +275,11 @@ module Aws::AppStream
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -4384,7 +4389,7 @@ module Aws::AppStream
4384
4389
  params: params,
4385
4390
  config: config)
4386
4391
  context[:gem_name] = 'aws-sdk-appstream'
4387
- context[:gem_version] = '1.69.0'
4392
+ context[:gem_version] = '1.71.0'
4388
4393
  Seahorse::Client::Request.new(handlers, context)
4389
4394
  end
4390
4395
 
@@ -50,6 +50,9 @@ module Aws::AppStream
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
+ if self[:region].nil?
54
+ raise ArgumentError, "Missing required EndpointParameter: :region"
55
+ end
53
56
  self[:use_dual_stack] = options[:use_dual_stack]
54
57
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
58
  if self[:use_dual_stack].nil?
@@ -15,7 +15,7 @@ module Aws::AppStream
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
17
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
18
+ if Aws::Endpoints::Matchers.set?(endpoint)
19
19
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
20
  raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
21
  end
@@ -94,19 +94,19 @@ module Aws::AppStream
94
94
  "state" => "success",
95
95
  "matcher" => "pathAll",
96
96
  "argument" => "fleets[].state",
97
- "expected" => "ACTIVE"
97
+ "expected" => "RUNNING"
98
98
  },
99
99
  {
100
100
  "state" => "failure",
101
101
  "matcher" => "pathAny",
102
102
  "argument" => "fleets[].state",
103
- "expected" => "PENDING_DEACTIVATE"
103
+ "expected" => "STOPPING"
104
104
  },
105
105
  {
106
106
  "state" => "failure",
107
107
  "matcher" => "pathAny",
108
108
  "argument" => "fleets[].state",
109
- "expected" => "INACTIVE"
109
+ "expected" => "STOPPED"
110
110
  }
111
111
  ]
112
112
  )
@@ -144,19 +144,19 @@ module Aws::AppStream
144
144
  "state" => "success",
145
145
  "matcher" => "pathAll",
146
146
  "argument" => "fleets[].state",
147
- "expected" => "INACTIVE"
147
+ "expected" => "STOPPED"
148
148
  },
149
149
  {
150
150
  "state" => "failure",
151
151
  "matcher" => "pathAny",
152
152
  "argument" => "fleets[].state",
153
- "expected" => "PENDING_ACTIVATE"
153
+ "expected" => "STARTING"
154
154
  },
155
155
  {
156
156
  "state" => "failure",
157
157
  "matcher" => "pathAny",
158
158
  "argument" => "fleets[].state",
159
- "expected" => "ACTIVE"
159
+ "expected" => "RUNNING"
160
160
  }
161
161
  ]
162
162
  )
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-appstream/customizations'
53
53
  # @!group service
54
54
  module Aws::AppStream
55
55
 
56
- GEM_VERSION = '1.69.0'
56
+ GEM_VERSION = '1.71.0'
57
57
 
58
58
  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.69.0
4
+ version: 1.71.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: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement