aws-sdk-pcs 1.25.0 → 1.27.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-pcs/client.rb +20 -25
- data/lib/aws-sdk-pcs/types.rb +15 -18
- data/lib/aws-sdk-pcs.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8794c1c33d533b270cf06cd7b8e02f0e1f68741a1c3e04b544f04691cfff5e0f
|
4
|
+
data.tar.gz: 6cc3f6ca63a7c17e1ec949dbd6b0bcbe1b1c25bf8c625778db4f333e1989b8a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5e675129ae5ae3deb1b5fd7e4442390c6360f0046c796426442fd956396e67a808c0c502eb3fce74d666cfe586773738def52f368471e688a1e74a6fa5980b0
|
7
|
+
data.tar.gz: a80924ada1361d996c32ad0fbb4715b891a7001752b084e7d0c9645a41f6bad34b19c2861afb7e9f9f131425a5e8214398eb250e066e8c956a3121d20b237bf6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.27.0 (2025-08-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updated the regex pattern and description of iamInstanceProfileArn in the CreateComputeNodeGroup and UpdateComputeNodeGroup API actions. Name and path requirements apply to the ARN of the IAM role associated with the instance profile and not the ARN of the instance profile.
|
8
|
+
|
9
|
+
1.26.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.25.0 (2025-08-01)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.27.0
|
data/lib/aws-sdk-pcs/client.rb
CHANGED
@@ -95,8 +95,8 @@ module Aws::PCS
|
|
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
|
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::PCS
|
|
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::PCS
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
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::PCS
|
|
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
|
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.
|
@@ -673,15 +670,14 @@ module Aws::PCS
|
|
673
670
|
# The Amazon Resource Name (ARN) of the IAM instance profile used to
|
674
671
|
# pass an IAM role when launching EC2 instances. The role contained in
|
675
672
|
# your instance profile must have the
|
676
|
-
# `pcs:RegisterComputeNodeGroupInstance` permission
|
677
|
-
#
|
678
|
-
#
|
673
|
+
# `pcs:RegisterComputeNodeGroupInstance` permission and the role name
|
674
|
+
# must start with `AWSPCS` or must have the path `/aws-pcs/`. For more
|
675
|
+
# information, see [IAM instance profiles for PCS][1] in the *PCS User
|
676
|
+
# Guide*.
|
679
677
|
#
|
680
|
-
# **Examples**
|
681
678
|
#
|
682
|
-
# * `arn:aws:iam::111122223333:instance-profile/AWSPCS-example-role-1`
|
683
679
|
#
|
684
|
-
#
|
680
|
+
# [1]: https://docs.aws.amazon.com/pcs/latest/userguide/security-instance-profiles.html
|
685
681
|
#
|
686
682
|
# @option params [required, Types::ScalingConfigurationRequest] :scaling_configuration
|
687
683
|
# Specifies the boundaries of the compute node group auto scaling.
|
@@ -1489,15 +1485,14 @@ module Aws::PCS
|
|
1489
1485
|
# The Amazon Resource Name (ARN) of the IAM instance profile used to
|
1490
1486
|
# pass an IAM role when launching EC2 instances. The role contained in
|
1491
1487
|
# your instance profile must have the
|
1492
|
-
# `pcs:RegisterComputeNodeGroupInstance` permission
|
1493
|
-
#
|
1494
|
-
#
|
1488
|
+
# `pcs:RegisterComputeNodeGroupInstance` permission and the role name
|
1489
|
+
# must start with `AWSPCS` or must have the path `/aws-pcs/`. For more
|
1490
|
+
# information, see [IAM instance profiles for PCS][1] in the *PCS User
|
1491
|
+
# Guide*.
|
1495
1492
|
#
|
1496
|
-
# **Examples**
|
1497
1493
|
#
|
1498
|
-
# * `arn:aws:iam::111122223333:instance-profile/AWSPCS-example-role-1`
|
1499
1494
|
#
|
1500
|
-
#
|
1495
|
+
# [1]: https://docs.aws.amazon.com/pcs/latest/userguide/security-instance-profiles.html
|
1501
1496
|
#
|
1502
1497
|
# @option params [Types::UpdateComputeNodeGroupSlurmConfigurationRequest] :slurm_configuration
|
1503
1498
|
# Additional options related to the Slurm scheduler.
|
@@ -1670,7 +1665,7 @@ module Aws::PCS
|
|
1670
1665
|
tracer: tracer
|
1671
1666
|
)
|
1672
1667
|
context[:gem_name] = 'aws-sdk-pcs'
|
1673
|
-
context[:gem_version] = '1.
|
1668
|
+
context[:gem_version] = '1.27.0'
|
1674
1669
|
Seahorse::Client::Request.new(handlers, context)
|
1675
1670
|
end
|
1676
1671
|
|
data/lib/aws-sdk-pcs/types.rb
CHANGED
@@ -398,15 +398,14 @@ module Aws::PCS
|
|
398
398
|
# The Amazon Resource Name (ARN) of the IAM instance profile used to
|
399
399
|
# pass an IAM role when launching EC2 instances. The role contained in
|
400
400
|
# your instance profile must have the
|
401
|
-
# `pcs:RegisterComputeNodeGroupInstance` permission
|
402
|
-
#
|
403
|
-
#
|
401
|
+
# `pcs:RegisterComputeNodeGroupInstance` permission and the role name
|
402
|
+
# must start with `AWSPCS` or must have the path `/aws-pcs/`. For more
|
403
|
+
# information, see [IAM instance profiles for PCS][1] in the *PCS User
|
404
|
+
# Guide*.
|
404
405
|
#
|
405
|
-
# **Examples**
|
406
406
|
#
|
407
|
-
# * `arn:aws:iam::111122223333:instance-profile/AWSPCS-example-role-1`
|
408
407
|
#
|
409
|
-
#
|
408
|
+
# [1]: https://docs.aws.amazon.com/pcs/latest/userguide/security-instance-profiles.html
|
410
409
|
# @return [String]
|
411
410
|
#
|
412
411
|
# @!attribute [rw] scaling_configuration
|
@@ -714,15 +713,14 @@ module Aws::PCS
|
|
714
713
|
# The Amazon Resource Name (ARN) of the IAM instance profile used to
|
715
714
|
# pass an IAM role when launching EC2 instances. The role contained in
|
716
715
|
# your instance profile must have the
|
717
|
-
# `pcs:RegisterComputeNodeGroupInstance` permission
|
718
|
-
#
|
719
|
-
#
|
716
|
+
# `pcs:RegisterComputeNodeGroupInstance` permission and the role name
|
717
|
+
# must start with `AWSPCS` or must have the path `/aws-pcs/`. For more
|
718
|
+
# information, see [IAM instance profiles for PCS][1] in the *PCS User
|
719
|
+
# Guide*.
|
720
720
|
#
|
721
|
-
# **Examples**
|
722
721
|
#
|
723
|
-
# * `arn:aws:iam::111122223333:instance-profile/AWSPCS-example-role-1`
|
724
722
|
#
|
725
|
-
#
|
723
|
+
# [1]: https://docs.aws.amazon.com/pcs/latest/userguide/security-instance-profiles.html
|
726
724
|
# @return [String]
|
727
725
|
#
|
728
726
|
# @!attribute [rw] scaling_configuration
|
@@ -1965,15 +1963,14 @@ module Aws::PCS
|
|
1965
1963
|
# The Amazon Resource Name (ARN) of the IAM instance profile used to
|
1966
1964
|
# pass an IAM role when launching EC2 instances. The role contained in
|
1967
1965
|
# your instance profile must have the
|
1968
|
-
# `pcs:RegisterComputeNodeGroupInstance` permission
|
1969
|
-
#
|
1970
|
-
#
|
1966
|
+
# `pcs:RegisterComputeNodeGroupInstance` permission and the role name
|
1967
|
+
# must start with `AWSPCS` or must have the path `/aws-pcs/`. For more
|
1968
|
+
# information, see [IAM instance profiles for PCS][1] in the *PCS User
|
1969
|
+
# Guide*.
|
1971
1970
|
#
|
1972
|
-
# **Examples**
|
1973
1971
|
#
|
1974
|
-
# * `arn:aws:iam::111122223333:instance-profile/AWSPCS-example-role-1`
|
1975
1972
|
#
|
1976
|
-
#
|
1973
|
+
# [1]: https://docs.aws.amazon.com/pcs/latest/userguide/security-instance-profiles.html
|
1977
1974
|
# @return [String]
|
1978
1975
|
#
|
1979
1976
|
# @!attribute [rw] slurm_configuration
|
data/lib/aws-sdk-pcs.rb
CHANGED