aws-sdk-pcs 1.5.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-pcs/client.rb +21 -9
- data/lib/aws-sdk-pcs/types.rb +46 -13
- data/lib/aws-sdk-pcs.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1e6246583023ad34530884402fddebf5bab2fd6c1badfd0aa998d22ad3671e3
|
4
|
+
data.tar.gz: 1ffc1c71c727927d0701f6ed9a8b6b63533f074d76bce3bc2a1689be02f5d96d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cfed652570886b987122603893cd53a3e6ed2ba7f6b05d174918007cff69de6d1c781b65a4eb722550b7452a112e48ad2723ea3c0b011c36467442132cf7b48
|
7
|
+
data.tar.gz: a5fa2214c3707c136012b4c1b0a35f8ff64645a723b76857382c177862cd632306df83f34a7efb52043909fa9552b97a99c0132cf90c462149ae3a5eb00c5af7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
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
|
+
|
9
|
+
1.6.0 (2024-09-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.5.0 (2024-09-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.7.0
|
data/lib/aws-sdk-pcs/client.rb
CHANGED
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
|
|
36
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
37
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:pcs)
|
40
|
-
|
41
39
|
module Aws::PCS
|
42
40
|
# An API client for PCS. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -633,10 +631,16 @@ module Aws::PCS
|
|
633
631
|
# @option params [required, String] :iam_instance_profile_arn
|
634
632
|
# The Amazon Resource Name (ARN) of the IAM instance profile used to
|
635
633
|
# pass an IAM role when launching EC2 instances. The role contained in
|
636
|
-
# your instance profile must have
|
637
|
-
#
|
638
|
-
#
|
639
|
-
#
|
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`
|
640
644
|
#
|
641
645
|
# @option params [required, Types::ScalingConfigurationRequest] :scaling_configuration
|
642
646
|
# Specifies the boundaries of the compute node group auto scaling.
|
@@ -1438,8 +1442,16 @@ module Aws::PCS
|
|
1438
1442
|
# @option params [String] :iam_instance_profile_arn
|
1439
1443
|
# The Amazon Resource Name (ARN) of the IAM instance profile used to
|
1440
1444
|
# pass an IAM role when launching EC2 instances. The role contained in
|
1441
|
-
# your instance profile must have
|
1442
|
-
#
|
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`
|
1443
1455
|
#
|
1444
1456
|
# @option params [Types::UpdateComputeNodeGroupSlurmConfigurationRequest] :slurm_configuration
|
1445
1457
|
# Additional options related to the Slurm scheduler.
|
@@ -1612,7 +1624,7 @@ module Aws::PCS
|
|
1612
1624
|
tracer: tracer
|
1613
1625
|
)
|
1614
1626
|
context[:gem_name] = 'aws-sdk-pcs'
|
1615
|
-
context[:gem_version] = '1.
|
1627
|
+
context[:gem_version] = '1.7.0'
|
1616
1628
|
Seahorse::Client::Request.new(handlers, context)
|
1617
1629
|
end
|
1618
1630
|
|
data/lib/aws-sdk-pcs/types.rb
CHANGED
@@ -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`
|
277
|
-
#
|
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`
|
573
|
-
#
|
574
|
-
#
|
575
|
-
#
|
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:
|
1594
|
-
#
|
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`
|
1746
|
-
#
|
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
@@ -11,6 +11,8 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:pcs)
|
15
|
+
|
14
16
|
# This module provides support for AWS Parallel Computing Service. This module is available in the
|
15
17
|
# `aws-sdk-pcs` gem.
|
16
18
|
#
|
@@ -53,7 +55,7 @@ module Aws::PCS
|
|
53
55
|
autoload :EndpointProvider, 'aws-sdk-pcs/endpoint_provider'
|
54
56
|
autoload :Endpoints, 'aws-sdk-pcs/endpoints'
|
55
57
|
|
56
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.7.0'
|
57
59
|
|
58
60
|
end
|
59
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.
|
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-
|
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
|