aws-sdk-pcs 1.6.0 → 1.7.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: 5f0c5f0418d0e4833950da152d231be49f5ce6b223b60d06e0b52c4e671713fe
4
- data.tar.gz: 6f13af4f49dec4cc4f2f30832710529e833228fa3b039b52b488380e827afc46
3
+ metadata.gz: d1e6246583023ad34530884402fddebf5bab2fd6c1badfd0aa998d22ad3671e3
4
+ data.tar.gz: 1ffc1c71c727927d0701f6ed9a8b6b63533f074d76bce3bc2a1689be02f5d96d
5
5
  SHA512:
6
- metadata.gz: e1299348f89f2d8bd9eca62a25120135d4923ce03c1dfcac14594569708b390225b4aa9ec044737db76432752a4c4369240343c90bcc18194418c23db4b37901
7
- data.tar.gz: 45c2467dfb75eb53f30e6b686297719bfe2c5ef2f76e247d11baae68fc1546697688e54b4f6e6219fabc4d5e7c80892827bc38df653e354ae35c9e06481c7866
6
+ metadata.gz: 7cfed652570886b987122603893cd53a3e6ed2ba7f6b05d174918007cff69de6d1c781b65a4eb722550b7452a112e48ad2723ea3c0b011c36467442132cf7b48
7
+ data.tar.gz: a5fa2214c3707c136012b4c1b0a35f8ff64645a723b76857382c177862cd632306df83f34a7efb52043909fa9552b97a99c0132cf90c462149ae3a5eb00c5af7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2024-09-26)
5
+ ------------------
6
+
7
+ * Feature - AWS PCS API documentation - Edited the description of the iamInstanceProfileArn parameter of the CreateComputeNodeGroup and UpdateComputeNodeGroup actions; edited the description of the SlurmCustomSetting data type to list the supported parameters for clusters and compute node groups.
8
+
4
9
  1.6.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -631,10 +631,16 @@ module Aws::PCS
631
631
  # @option params [required, String] :iam_instance_profile_arn
632
632
  # The Amazon Resource Name (ARN) of the IAM instance profile used to
633
633
  # pass an IAM role when launching EC2 instances. The role contained in
634
- # your instance profile must have `pcs:RegisterComputeNodeGroupInstance`
635
- # permissions attached in order to provision instances correctly. The
636
- # resource identifier of the ARN must start with `AWSPCS`. For example,
637
- # `arn:aws:iam:123456789012:instance-profile/AWSPCSMyComputeNodeInstanceProfile`.
634
+ # your instance profile must have the
635
+ # `pcs:RegisterComputeNodeGroupInstance` permission. The resource
636
+ # identifier of the ARN must start with `AWSPCS` or it must have
637
+ # `/aws-pcs/` in its path.
638
+ #
639
+ # **Examples**
640
+ #
641
+ # * `arn:aws:iam::111122223333:instance-profile/AWSPCS-example-role-1`
642
+ #
643
+ # * `arn:aws:iam::111122223333:instance-profile/aws-pcs/example-role-2`
638
644
  #
639
645
  # @option params [required, Types::ScalingConfigurationRequest] :scaling_configuration
640
646
  # Specifies the boundaries of the compute node group auto scaling.
@@ -1436,8 +1442,16 @@ module Aws::PCS
1436
1442
  # @option params [String] :iam_instance_profile_arn
1437
1443
  # The Amazon Resource Name (ARN) of the IAM instance profile used to
1438
1444
  # pass an IAM role when launching EC2 instances. The role contained in
1439
- # your instance profile must have `pcs:RegisterComputeNodeGroupInstance`
1440
- # permissions attached to provision instances correctly.
1445
+ # your instance profile must have the
1446
+ # `pcs:RegisterComputeNodeGroupInstance` permission. The resource
1447
+ # identifier of the ARN must start with `AWSPCS` or it must have
1448
+ # `/aws-pcs/` in its path.
1449
+ #
1450
+ # **Examples**
1451
+ #
1452
+ # * `arn:aws:iam::111122223333:instance-profile/AWSPCS-example-role-1`
1453
+ #
1454
+ # * `arn:aws:iam::111122223333:instance-profile/aws-pcs/example-role-2`
1441
1455
  #
1442
1456
  # @option params [Types::UpdateComputeNodeGroupSlurmConfigurationRequest] :slurm_configuration
1443
1457
  # Additional options related to the Slurm scheduler.
@@ -1610,7 +1624,7 @@ module Aws::PCS
1610
1624
  tracer: tracer
1611
1625
  )
1612
1626
  context[:gem_name] = 'aws-sdk-pcs'
1613
- context[:gem_version] = '1.6.0'
1627
+ context[:gem_version] = '1.7.0'
1614
1628
  Seahorse::Client::Request.new(handlers, context)
1615
1629
  end
1616
1630
 
@@ -272,9 +272,16 @@ module Aws::PCS
272
272
  # @!attribute [rw] iam_instance_profile_arn
273
273
  # The Amazon Resource Name (ARN) of the IAM instance profile used to
274
274
  # pass an IAM role when launching EC2 instances. The role contained in
275
- # your instance profile must have
276
- # `pcs:RegisterComputeNodeGroupInstance` permissions attached to
277
- # provision instances correctly.
275
+ # your instance profile must have the
276
+ # `pcs:RegisterComputeNodeGroupInstance` permission. The resource
277
+ # identifier of the ARN must start with `AWSPCS` or it must have
278
+ # `/aws-pcs/` in its path.
279
+ #
280
+ # **Examples**
281
+ #
282
+ # * `arn:aws:iam::111122223333:instance-profile/AWSPCS-example-role-1`
283
+ #
284
+ # * `arn:aws:iam::111122223333:instance-profile/aws-pcs/example-role-2`
278
285
  # @return [String]
279
286
  #
280
287
  # @!attribute [rw] scaling_configuration
@@ -568,11 +575,16 @@ module Aws::PCS
568
575
  # @!attribute [rw] iam_instance_profile_arn
569
576
  # The Amazon Resource Name (ARN) of the IAM instance profile used to
570
577
  # pass an IAM role when launching EC2 instances. The role contained in
571
- # your instance profile must have
572
- # `pcs:RegisterComputeNodeGroupInstance` permissions attached in order
573
- # to provision instances correctly. The resource identifier of the ARN
574
- # must start with `AWSPCS`. For example,
575
- # `arn:aws:iam:123456789012:instance-profile/AWSPCSMyComputeNodeInstanceProfile`.
578
+ # your instance profile must have the
579
+ # `pcs:RegisterComputeNodeGroupInstance` permission. The resource
580
+ # identifier of the ARN must start with `AWSPCS` or it must have
581
+ # `/aws-pcs/` in its path.
582
+ #
583
+ # **Examples**
584
+ #
585
+ # * `arn:aws:iam::111122223333:instance-profile/AWSPCS-example-role-1`
586
+ #
587
+ # * `arn:aws:iam::111122223333:instance-profile/aws-pcs/example-role-2`
576
588
  # @return [String]
577
589
  #
578
590
  # @!attribute [rw] scaling_configuration
@@ -1590,14 +1602,28 @@ module Aws::PCS
1590
1602
  #
1591
1603
  # @!attribute [rw] parameter_name
1592
1604
  # Amazon Web Services PCS supports configuration of the following
1593
- # Slurm parameters: [ `Prolog` ][1], [ `Epilog` ][2], and [
1594
- # `SelectTypeParameters` ][3].
1605
+ # Slurm parameters:
1606
+ #
1607
+ # * For **clusters**
1608
+ #
1609
+ # * [ `Prolog` ][1]
1610
+ #
1611
+ # * [ `Epilog` ][2]
1612
+ #
1613
+ # * [ `SelectTypeParameters` ][3]
1614
+ #
1615
+ # * For **compute node groups**
1616
+ #
1617
+ # * [ `Weight` ][4]
1618
+ #
1619
+ # * [ `RealMemory` ][4]
1595
1620
  #
1596
1621
  #
1597
1622
  #
1598
1623
  # [1]: https://slurm.schedmd.com/slurm.conf.html#OPT_Prolog_1
1599
1624
  # [2]: https://slurm.schedmd.com/slurm.conf.html#OPT_Epilog_1
1600
1625
  # [3]: https://slurm.schedmd.com/slurm.conf.html#OPT_SelectTypeParameters
1626
+ # [4]: https://slurm.schedmd.com/slurm.conf.html#OPT_Weight
1601
1627
  # @return [String]
1602
1628
  #
1603
1629
  # @!attribute [rw] parameter_value
@@ -1741,9 +1767,16 @@ module Aws::PCS
1741
1767
  # @!attribute [rw] iam_instance_profile_arn
1742
1768
  # The Amazon Resource Name (ARN) of the IAM instance profile used to
1743
1769
  # pass an IAM role when launching EC2 instances. The role contained in
1744
- # your instance profile must have
1745
- # `pcs:RegisterComputeNodeGroupInstance` permissions attached to
1746
- # provision instances correctly.
1770
+ # your instance profile must have the
1771
+ # `pcs:RegisterComputeNodeGroupInstance` permission. The resource
1772
+ # identifier of the ARN must start with `AWSPCS` or it must have
1773
+ # `/aws-pcs/` in its path.
1774
+ #
1775
+ # **Examples**
1776
+ #
1777
+ # * `arn:aws:iam::111122223333:instance-profile/AWSPCS-example-role-1`
1778
+ #
1779
+ # * `arn:aws:iam::111122223333:instance-profile/aws-pcs/example-role-2`
1747
1780
  # @return [String]
1748
1781
  #
1749
1782
  # @!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.6.0'
58
+ GEM_VERSION = '1.7.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pcs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.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: 2024-09-24 00:00:00.000000000 Z
11
+ date: 2024-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core