aws-sdk-appstream 1.113.0 → 1.115.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: da4eb63b2142a469a0f1f4fa52bc1b6426fa39b211226434077b63f9b741eb5e
4
- data.tar.gz: 3a7f7ade5a3975c38f23416a95f6fad4cfaee482be9758d548b0e03e055d79b8
3
+ metadata.gz: f1725c8c4170179bdb630ad0947038a6c77f797f5b33128a4fd1859771d173f5
4
+ data.tar.gz: 70eb8e15f4bde2dcde7b600dd7f5a077a5ebe80d6ecde12d70c0bf18bd790534
5
5
  SHA512:
6
- metadata.gz: e7b87e375b716841e17b01cc26e542a2786448ee41728122023a9a91a459c415ee7ed7bc0e7128ccbd3e2fb1f6de007fe343a5e30ef249aa3a6b158dff39c64d
7
- data.tar.gz: 8420ac28fe2fcd2f3e546164ee24bdbe4dc6a8e919fc80ff988f71a610952ffaff690549d0a72064721e1dbf2d090157f976cc78d0ca52bfb72471e0234737fd
6
+ metadata.gz: 66501ca4ed0529634349d0e620c17d3a96e7b4f17d84a625e5106c8321c8bab8553cec599c90ce936d2fb29bca743fa6f634da5db1eb4e703e5f81a5282d8083
7
+ data.tar.gz: 4ab0f31d0c64ab52738b5856850b92c8e0dfacaa69d200ecc2e13b0925dbf32fa709e845078247804a70f4e8665f03d202f63cd83de3f1495ffe9154d082435d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.115.0 (2025-08-06)
5
+ ------------------
6
+
7
+ * Feature - Added support for G6 instances
8
+
9
+ 1.114.0 (2025-08-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.113.0 (2025-07-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.113.0
1
+ 1.115.0
@@ -95,8 +95,8 @@ module Aws::AppStream
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials used for authentication. This can be an instance of any one of the
99
- # following classes:
98
+ # Your AWS credentials used for authentication. This can be any class that includes and implements
99
+ # `Aws::CredentialProvider`, or instance of any one of the following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
102
102
  # credentials.
@@ -124,8 +124,7 @@ module Aws::AppStream
124
124
  # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
125
125
  # from the Cognito Identity service.
126
126
  #
127
- # When `:credentials` are not configured directly, the following
128
- # locations will be searched for credentials:
127
+ # When `:credentials` are not configured directly, the following locations will be searched for credentials:
129
128
  #
130
129
  # * `Aws.config[:credentials]`
131
130
  #
@@ -139,12 +138,10 @@ module Aws::AppStream
139
138
  #
140
139
  # * `~/.aws/config`
141
140
  #
142
- # * EC2/ECS IMDS instance profile - When used by default, the timeouts
143
- # are very aggressive. Construct and pass an instance of
144
- # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
145
- # enable retries and extended timeouts. Instance profile credential
146
- # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
- # to `true`.
141
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
142
+ # Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
143
+ # enable retries and extended timeouts. Instance profile credential fetching can be disabled by
144
+ # setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
148
145
  #
149
146
  # @option options [required, String] :region
150
147
  # The AWS region to connect to. The configured `:region` is
@@ -384,8 +381,8 @@ module Aws::AppStream
384
381
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
385
382
  #
386
383
  # @option options [Aws::TokenProvider] :token_provider
387
- # Your Bearer token used for authentication. This can be an instance of any one of the
388
- # following classes:
384
+ # Your Bearer token used for authentication. This can be any class that includes and implements
385
+ # `Aws::TokenProvider`, or instance of any one of the following classes:
389
386
  #
390
387
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
391
388
  # tokens.
@@ -1362,6 +1359,24 @@ module Aws::AppStream
1362
1359
  #
1363
1360
  # * stream.graphics-pro.16xlarge
1364
1361
  #
1362
+ # * stream.graphics.g6.xlarge
1363
+ #
1364
+ # * stream.graphics.g6.2xlarge
1365
+ #
1366
+ # * stream.graphics.g6.4xlarge
1367
+ #
1368
+ # * stream.graphics.g6.8xlarge
1369
+ #
1370
+ # * stream.graphics.g6.16xlarge
1371
+ #
1372
+ # * stream.graphics.g6.12xlarge
1373
+ #
1374
+ # * stream.graphics.g6.24xlarge
1375
+ #
1376
+ # * stream.graphics.gr6.4xlarge
1377
+ #
1378
+ # * stream.graphics.gr6.8xlarge
1379
+ #
1365
1380
  # The following instance types are available for Elastic fleets:
1366
1381
  #
1367
1382
  # * stream.standard.small
@@ -1706,6 +1721,38 @@ module Aws::AppStream
1706
1721
  #
1707
1722
  # * stream.graphics-pro.16xlarge
1708
1723
  #
1724
+ # * stream.graphics.g5.xlarge
1725
+ #
1726
+ # * stream.graphics.g5.2xlarge
1727
+ #
1728
+ # * stream.graphics.g5.4xlarge
1729
+ #
1730
+ # * stream.graphics.g5.8xlarge
1731
+ #
1732
+ # * stream.graphics.g5.16xlarge
1733
+ #
1734
+ # * stream.graphics.g5.12xlarge
1735
+ #
1736
+ # * stream.graphics.g5.24xlarge
1737
+ #
1738
+ # * stream.graphics.g6.xlarge
1739
+ #
1740
+ # * stream.graphics.g6.2xlarge
1741
+ #
1742
+ # * stream.graphics.g6.4xlarge
1743
+ #
1744
+ # * stream.graphics.g6.8xlarge
1745
+ #
1746
+ # * stream.graphics.g6.16xlarge
1747
+ #
1748
+ # * stream.graphics.g6.12xlarge
1749
+ #
1750
+ # * stream.graphics.g6.24xlarge
1751
+ #
1752
+ # * stream.graphics.gr6.4xlarge
1753
+ #
1754
+ # * stream.graphics.gr6.8xlarge
1755
+ #
1709
1756
  # @option params [String] :description
1710
1757
  # The description to display.
1711
1758
  #
@@ -5460,7 +5507,7 @@ module Aws::AppStream
5460
5507
  tracer: tracer
5461
5508
  )
5462
5509
  context[:gem_name] = 'aws-sdk-appstream'
5463
- context[:gem_version] = '1.113.0'
5510
+ context[:gem_version] = '1.115.0'
5464
5511
  Seahorse::Client::Request.new(handlers, context)
5465
5512
  end
5466
5513
 
@@ -1224,6 +1224,24 @@ module Aws::AppStream
1224
1224
  #
1225
1225
  # * stream.graphics-pro.16xlarge
1226
1226
  #
1227
+ # * stream.graphics.g6.xlarge
1228
+ #
1229
+ # * stream.graphics.g6.2xlarge
1230
+ #
1231
+ # * stream.graphics.g6.4xlarge
1232
+ #
1233
+ # * stream.graphics.g6.8xlarge
1234
+ #
1235
+ # * stream.graphics.g6.16xlarge
1236
+ #
1237
+ # * stream.graphics.g6.12xlarge
1238
+ #
1239
+ # * stream.graphics.g6.24xlarge
1240
+ #
1241
+ # * stream.graphics.gr6.4xlarge
1242
+ #
1243
+ # * stream.graphics.gr6.8xlarge
1244
+ #
1227
1245
  # The following instance types are available for Elastic fleets:
1228
1246
  #
1229
1247
  # * stream.standard.small
@@ -1531,6 +1549,38 @@ module Aws::AppStream
1531
1549
  # * stream.graphics-pro.8xlarge
1532
1550
  #
1533
1551
  # * stream.graphics-pro.16xlarge
1552
+ #
1553
+ # * stream.graphics.g5.xlarge
1554
+ #
1555
+ # * stream.graphics.g5.2xlarge
1556
+ #
1557
+ # * stream.graphics.g5.4xlarge
1558
+ #
1559
+ # * stream.graphics.g5.8xlarge
1560
+ #
1561
+ # * stream.graphics.g5.16xlarge
1562
+ #
1563
+ # * stream.graphics.g5.12xlarge
1564
+ #
1565
+ # * stream.graphics.g5.24xlarge
1566
+ #
1567
+ # * stream.graphics.g6.xlarge
1568
+ #
1569
+ # * stream.graphics.g6.2xlarge
1570
+ #
1571
+ # * stream.graphics.g6.4xlarge
1572
+ #
1573
+ # * stream.graphics.g6.8xlarge
1574
+ #
1575
+ # * stream.graphics.g6.16xlarge
1576
+ #
1577
+ # * stream.graphics.g6.12xlarge
1578
+ #
1579
+ # * stream.graphics.g6.24xlarge
1580
+ #
1581
+ # * stream.graphics.gr6.4xlarge
1582
+ #
1583
+ # * stream.graphics.gr6.8xlarge
1534
1584
  # @return [String]
1535
1585
  #
1536
1586
  # @!attribute [rw] description
@@ -3523,6 +3573,38 @@ module Aws::AppStream
3523
3573
  # * stream.graphics-pro.8xlarge
3524
3574
  #
3525
3575
  # * stream.graphics-pro.16xlarge
3576
+ #
3577
+ # * stream.graphics.g5.xlarge
3578
+ #
3579
+ # * stream.graphics.g5.2xlarge
3580
+ #
3581
+ # * stream.graphics.g5.4xlarge
3582
+ #
3583
+ # * stream.graphics.g5.8xlarge
3584
+ #
3585
+ # * stream.graphics.g5.16xlarge
3586
+ #
3587
+ # * stream.graphics.g5.12xlarge
3588
+ #
3589
+ # * stream.graphics.g5.24xlarge
3590
+ #
3591
+ # * stream.graphics.g6.xlarge
3592
+ #
3593
+ # * stream.graphics.g6.2xlarge
3594
+ #
3595
+ # * stream.graphics.g6.4xlarge
3596
+ #
3597
+ # * stream.graphics.g6.8xlarge
3598
+ #
3599
+ # * stream.graphics.g6.16xlarge
3600
+ #
3601
+ # * stream.graphics.g6.12xlarge
3602
+ #
3603
+ # * stream.graphics.g6.24xlarge
3604
+ #
3605
+ # * stream.graphics.gr6.4xlarge
3606
+ #
3607
+ # * stream.graphics.gr6.8xlarge
3526
3608
  # @return [String]
3527
3609
  #
3528
3610
  # @!attribute [rw] fleet_type
@@ -3756,7 +3838,8 @@ module Aws::AppStream
3756
3838
  #
3757
3839
  # @!attribute [rw] image_builder_name
3758
3840
  # The name of the image builder that was used to create the private
3759
- # image. If the image is shared, this value is null.
3841
+ # image. If the image is shared, copied, or updated by using Managed
3842
+ # Image Updates, this value is null.
3760
3843
  # @return [String]
3761
3844
  #
3762
3845
  # @!attribute [rw] platform
@@ -3959,6 +4042,38 @@ module Aws::AppStream
3959
4042
  # * stream.graphics-pro.8xlarge
3960
4043
  #
3961
4044
  # * stream.graphics-pro.16xlarge
4045
+ #
4046
+ # * stream.graphics.g5.xlarge
4047
+ #
4048
+ # * stream.graphics.g5.2xlarge
4049
+ #
4050
+ # * stream.graphics.g5.4xlarge
4051
+ #
4052
+ # * stream.graphics.g5.8xlarge
4053
+ #
4054
+ # * stream.graphics.g5.16xlarge
4055
+ #
4056
+ # * stream.graphics.g5.12xlarge
4057
+ #
4058
+ # * stream.graphics.g5.24xlarge
4059
+ #
4060
+ # * stream.graphics.g6.xlarge
4061
+ #
4062
+ # * stream.graphics.g6.2xlarge
4063
+ #
4064
+ # * stream.graphics.g6.4xlarge
4065
+ #
4066
+ # * stream.graphics.g6.8xlarge
4067
+ #
4068
+ # * stream.graphics.g6.16xlarge
4069
+ #
4070
+ # * stream.graphics.g6.12xlarge
4071
+ #
4072
+ # * stream.graphics.g6.24xlarge
4073
+ #
4074
+ # * stream.graphics.gr6.4xlarge
4075
+ #
4076
+ # * stream.graphics.gr6.8xlarge
3962
4077
  # @return [String]
3963
4078
  #
3964
4079
  # @!attribute [rw] platform
@@ -55,7 +55,7 @@ module Aws::AppStream
55
55
  autoload :EndpointProvider, 'aws-sdk-appstream/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-appstream/endpoints'
57
57
 
58
- GEM_VERSION = '1.113.0'
58
+ GEM_VERSION = '1.115.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appstream
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.113.0
4
+ version: 1.115.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services