aws-sdk-appstream 1.69.0 → 1.70.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: a19e3704e5e5bbdc79a051f4d7e86351278f6eec5b6cbc1cd16f60c99633f7cd
4
+ data.tar.gz: 602ce3ad2daaa77a87a54badd18bd588dbb0134686c29ca4b9ade6735f570a95
5
5
  SHA512:
6
- metadata.gz: 9404e36d783ceb34a14e442125eaded47478fdd2d4ce81226917519eb8959c0331f7b4392ad9b52bebb3e75cb96ecb2038286a565a8bbd8e975db232eafc4c68
7
- data.tar.gz: b87d25bdfe3eb399def7f7a4ec2d72e01ecdab8304d14ca0677c235a63605026df9fdf30db94fa5dff4a1c520b15a958006b8bc3dc011c603949f620c79e7869
6
+ metadata.gz: cc6843cea6c28c2d18cd6a2d61eca62ce87d703430c7fcddfd98fc3e66a3f445bd641e6e2cdd922665c0a27811e96c3927b1200cd70c4a8db7b0f1be672db0d6
7
+ data.tar.gz: 2e4e8667aefca2cc6f62b70b4d8eea85dd358772822d8ca1b90ab3376b29d9e948d813345f81220eb4bb9b46e7bc4e28d8eae2dbe890dee78c068edcc308b291
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2023-01-27)
5
+ ------------------
6
+
7
+ * Feature - Fixing the issue where Appstream waiters hang for fleet_started and fleet_stopped.
8
+
4
9
  1.69.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.69.0
1
+ 1.70.0
@@ -4384,7 +4384,7 @@ module Aws::AppStream
4384
4384
  params: params,
4385
4385
  config: config)
4386
4386
  context[:gem_name] = 'aws-sdk-appstream'
4387
- context[:gem_version] = '1.69.0'
4387
+ context[:gem_version] = '1.70.0'
4388
4388
  Seahorse::Client::Request.new(handlers, context)
4389
4389
  end
4390
4390
 
@@ -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.70.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.70.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-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core