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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2650ae07229700616f0e6c536b01f5945fdefe4b156ce050ce349471d234f274
4
- data.tar.gz: 06f0082874d8caa9fb1aa25870c4104db67dc835524c90f6fa9a6cdc88d25f5e
3
+ metadata.gz: 8794c1c33d533b270cf06cd7b8e02f0e1f68741a1c3e04b544f04691cfff5e0f
4
+ data.tar.gz: 6cc3f6ca63a7c17e1ec949dbd6b0bcbe1b1c25bf8c625778db4f333e1989b8a5
5
5
  SHA512:
6
- metadata.gz: c80302241b93005d94188adf79d1c65944296609a86a0c421e1cbf09746457a7ba00d685405d3eb760fcf17932ee45f8ce213248a7dc15ccdf06d0e00c93d8ac
7
- data.tar.gz: ab90b247adf078a767cafe447324bf6640d4693db1a4929e8d85043ef079f67a1f8058c9d62097f4cbf8d5ced77ced5e199670a91adb60c7e9a806ccd3112952
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.25.0
1
+ 1.27.0
@@ -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 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::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
- # 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::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 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.
@@ -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. The resource
677
- # identifier of the ARN must start with `AWSPCS` or it must have
678
- # `/aws-pcs/` in its path.
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
- # * `arn:aws:iam::111122223333:instance-profile/aws-pcs/example-role-2`
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. The resource
1493
- # identifier of the ARN must start with `AWSPCS` or it must have
1494
- # `/aws-pcs/` in its path.
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
- # * `arn:aws:iam::111122223333:instance-profile/aws-pcs/example-role-2`
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.25.0'
1668
+ context[:gem_version] = '1.27.0'
1674
1669
  Seahorse::Client::Request.new(handlers, context)
1675
1670
  end
1676
1671
 
@@ -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. The resource
402
- # identifier of the ARN must start with `AWSPCS` or it must have
403
- # `/aws-pcs/` in its path.
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
- # * `arn:aws:iam::111122223333:instance-profile/aws-pcs/example-role-2`
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. The resource
718
- # identifier of the ARN must start with `AWSPCS` or it must have
719
- # `/aws-pcs/` in its path.
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
- # * `arn:aws:iam::111122223333:instance-profile/aws-pcs/example-role-2`
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. The resource
1969
- # identifier of the ARN must start with `AWSPCS` or it must have
1970
- # `/aws-pcs/` in its path.
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
- # * `arn:aws:iam::111122223333:instance-profile/aws-pcs/example-role-2`
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
@@ -55,7 +55,7 @@ module Aws::PCS
55
55
  autoload :EndpointProvider, 'aws-sdk-pcs/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-pcs/endpoints'
57
57
 
58
- GEM_VERSION = '1.25.0'
58
+ GEM_VERSION = '1.27.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-pcs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services