aws-sdk-appstream 1.103.0 → 1.105.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +32 -1
- data/lib/aws-sdk-appstream/client_api.rb +1 -0
- data/lib/aws-sdk-appstream/types.rb +8 -1
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db9dde6c25dba4e9f310ec168cba934883f28a7218f15b394eb656d4266674a1
|
4
|
+
data.tar.gz: f7c0fdc055f5a3154c8bcfa8a1679ea2e7f0288c035d828a0592dd676709b1c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d9f424f45242ea169a0f9a52923ab7fa093ae75107d58897fd4471028ca0d24635604ddc21c6c6e621ae065c4d9dbf56bd4630de31f5a88989043a37802e882
|
7
|
+
data.tar.gz: 5d62f656ae1a7caf5a57e78e5b46d485f2b86f3278601612d16c69eae81d29565e40ffbc5229fe33ae30de3727220864199ebaffff1c442b7eb84cfaf05d5097
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.105.0 (2025-01-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for managing admin consent requirement on selected domains for OneDrive Storage Connectors in AppStream2.0.
|
8
|
+
|
9
|
+
1.104.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.103.0 (2024-12-19)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.105.0
|
@@ -257,11 +257,34 @@ module Aws::AppStream
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -1932,6 +1955,7 @@ module Aws::AppStream
|
|
1932
1955
|
# connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS, GOOGLE_DRIVE, ONE_DRIVE
|
1933
1956
|
# resource_identifier: "ResourceIdentifier",
|
1934
1957
|
# domains: ["Domain"],
|
1958
|
+
# domains_require_admin_consent: ["Domain"],
|
1935
1959
|
# },
|
1936
1960
|
# ],
|
1937
1961
|
# redirect_url: "RedirectURL",
|
@@ -1974,6 +1998,8 @@ module Aws::AppStream
|
|
1974
1998
|
# resp.stack.storage_connectors[0].resource_identifier #=> String
|
1975
1999
|
# resp.stack.storage_connectors[0].domains #=> Array
|
1976
2000
|
# resp.stack.storage_connectors[0].domains[0] #=> String
|
2001
|
+
# resp.stack.storage_connectors[0].domains_require_admin_consent #=> Array
|
2002
|
+
# resp.stack.storage_connectors[0].domains_require_admin_consent[0] #=> String
|
1977
2003
|
# resp.stack.redirect_url #=> String
|
1978
2004
|
# resp.stack.feedback_url #=> String
|
1979
2005
|
# resp.stack.stack_errors #=> Array
|
@@ -3538,6 +3564,8 @@ module Aws::AppStream
|
|
3538
3564
|
# resp.stacks[0].storage_connectors[0].resource_identifier #=> String
|
3539
3565
|
# resp.stacks[0].storage_connectors[0].domains #=> Array
|
3540
3566
|
# resp.stacks[0].storage_connectors[0].domains[0] #=> String
|
3567
|
+
# resp.stacks[0].storage_connectors[0].domains_require_admin_consent #=> Array
|
3568
|
+
# resp.stacks[0].storage_connectors[0].domains_require_admin_consent[0] #=> String
|
3541
3569
|
# resp.stacks[0].redirect_url #=> String
|
3542
3570
|
# resp.stacks[0].feedback_url #=> String
|
3543
3571
|
# resp.stacks[0].stack_errors #=> Array
|
@@ -5246,6 +5274,7 @@ module Aws::AppStream
|
|
5246
5274
|
# connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS, GOOGLE_DRIVE, ONE_DRIVE
|
5247
5275
|
# resource_identifier: "ResourceIdentifier",
|
5248
5276
|
# domains: ["Domain"],
|
5277
|
+
# domains_require_admin_consent: ["Domain"],
|
5249
5278
|
# },
|
5250
5279
|
# ],
|
5251
5280
|
# delete_storage_connectors: false,
|
@@ -5287,6 +5316,8 @@ module Aws::AppStream
|
|
5287
5316
|
# resp.stack.storage_connectors[0].resource_identifier #=> String
|
5288
5317
|
# resp.stack.storage_connectors[0].domains #=> Array
|
5289
5318
|
# resp.stack.storage_connectors[0].domains[0] #=> String
|
5319
|
+
# resp.stack.storage_connectors[0].domains_require_admin_consent #=> Array
|
5320
|
+
# resp.stack.storage_connectors[0].domains_require_admin_consent[0] #=> String
|
5290
5321
|
# resp.stack.redirect_url #=> String
|
5291
5322
|
# resp.stack.feedback_url #=> String
|
5292
5323
|
# resp.stack.stack_errors #=> Array
|
@@ -5420,7 +5451,7 @@ module Aws::AppStream
|
|
5420
5451
|
tracer: tracer
|
5421
5452
|
)
|
5422
5453
|
context[:gem_name] = 'aws-sdk-appstream'
|
5423
|
-
context[:gem_version] = '1.
|
5454
|
+
context[:gem_version] = '1.105.0'
|
5424
5455
|
Seahorse::Client::Request.new(handlers, context)
|
5425
5456
|
end
|
5426
5457
|
|
@@ -1319,6 +1319,7 @@ module Aws::AppStream
|
|
1319
1319
|
StorageConnector.add_member(:connector_type, Shapes::ShapeRef.new(shape: StorageConnectorType, required: true, location_name: "ConnectorType"))
|
1320
1320
|
StorageConnector.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: ResourceIdentifier, location_name: "ResourceIdentifier"))
|
1321
1321
|
StorageConnector.add_member(:domains, Shapes::ShapeRef.new(shape: DomainList, location_name: "Domains"))
|
1322
|
+
StorageConnector.add_member(:domains_require_admin_consent, Shapes::ShapeRef.new(shape: DomainList, location_name: "DomainsRequireAdminConsent"))
|
1322
1323
|
StorageConnector.struct_class = Types::StorageConnector
|
1323
1324
|
|
1324
1325
|
StorageConnectorList.member = Shapes::ShapeRef.new(shape: StorageConnector)
|
@@ -4919,12 +4919,19 @@ module Aws::AppStream
|
|
4919
4919
|
# The names of the domains for the account.
|
4920
4920
|
# @return [Array<String>]
|
4921
4921
|
#
|
4922
|
+
# @!attribute [rw] domains_require_admin_consent
|
4923
|
+
# The OneDrive for Business domains where you require admin consent
|
4924
|
+
# when users try to link their OneDrive account to AppStream 2.0. The
|
4925
|
+
# attribute can only be specified when ConnectorType=ONE\_DRIVE.
|
4926
|
+
# @return [Array<String>]
|
4927
|
+
#
|
4922
4928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StorageConnector AWS API Documentation
|
4923
4929
|
#
|
4924
4930
|
class StorageConnector < Struct.new(
|
4925
4931
|
:connector_type,
|
4926
4932
|
:resource_identifier,
|
4927
|
-
:domains
|
4933
|
+
:domains,
|
4934
|
+
:domains_require_admin_consent)
|
4928
4935
|
SENSITIVE = []
|
4929
4936
|
include Aws::Structure
|
4930
4937
|
end
|
data/lib/aws-sdk-appstream.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -403,7 +405,8 @@ module Aws
|
|
403
405
|
{
|
404
406
|
connector_type: ("HOMEFOLDERS" | "GOOGLE_DRIVE" | "ONE_DRIVE"),
|
405
407
|
resource_identifier: ::String?,
|
406
|
-
domains: Array[::String]
|
408
|
+
domains: Array[::String]?,
|
409
|
+
domains_require_admin_consent: Array[::String]?
|
407
410
|
},
|
408
411
|
],
|
409
412
|
?redirect_url: ::String,
|
@@ -1216,7 +1219,8 @@ module Aws
|
|
1216
1219
|
{
|
1217
1220
|
connector_type: ("HOMEFOLDERS" | "GOOGLE_DRIVE" | "ONE_DRIVE"),
|
1218
1221
|
resource_identifier: ::String?,
|
1219
|
-
domains: Array[::String]
|
1222
|
+
domains: Array[::String]?,
|
1223
|
+
domains_require_admin_consent: Array[::String]?
|
1220
1224
|
},
|
1221
1225
|
],
|
1222
1226
|
?delete_storage_connectors: bool,
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -1251,6 +1251,7 @@ module Aws::AppStream
|
|
1251
1251
|
attr_accessor connector_type: ("HOMEFOLDERS" | "GOOGLE_DRIVE" | "ONE_DRIVE")
|
1252
1252
|
attr_accessor resource_identifier: ::String
|
1253
1253
|
attr_accessor domains: ::Array[::String]
|
1254
|
+
attr_accessor domains_require_admin_consent: ::Array[::String]
|
1254
1255
|
SENSITIVE: []
|
1255
1256
|
end
|
1256
1257
|
|
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.
|
4
|
+
version: 1.105.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:
|
11
|
+
date: 2025-01-30 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.
|
22
|
+
version: 3.216.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.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|