Skip to content

Commit

Permalink
docs(client-pcs): Documentation update: added the default value of th…
Browse files Browse the repository at this point in the history
…e Slurm configuration parameter scaleDownIdleTimeInSeconds to its description.
  • Loading branch information
awstools committed Oct 24, 2024
1 parent f624638 commit 568714e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion clients/client-pcs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ related to those compute nodes.</p>

## Installing

To install the this package, simply type add or install @aws-sdk/client-pcs
To install this package, simply type add or install @aws-sdk/client-pcs
using your favorite package manager:

- `npm install @aws-sdk/client-pcs`
Expand Down
8 changes: 6 additions & 2 deletions clients/client-pcs/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1240,7 +1240,9 @@ export type Size = (typeof Size)[keyof typeof Size];
*/
export interface ClusterSlurmConfigurationRequest {
/**
* <p>The time before an idle node is scaled down.</p>
* <p>The time (in seconds) before an idle node is scaled down.</p>
* <p>Default: <code>600</code>
* </p>
* @public
*/
scaleDownIdleTimeInSeconds?: number;
Expand Down Expand Up @@ -1484,7 +1486,9 @@ export interface SlurmAuthKey {
*/
export interface ClusterSlurmConfiguration {
/**
* <p>The time before an idle node is scaled down.</p>
* <p>The time (in seconds) before an idle node is scaled down.</p>
* <p>Default: <code>600</code>
* </p>
* @public
*/
scaleDownIdleTimeInSeconds?: number;
Expand Down
4 changes: 2 additions & 2 deletions codegen/sdk-codegen/aws-models/pcs.json
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@
"scaleDownIdleTimeInSeconds": {
"target": "smithy.api#Integer",
"traits": {
"smithy.api#documentation": "<p>The time before an idle node is scaled down.</p>",
"smithy.api#documentation": "<p>The time (in seconds) before an idle node is scaled down.</p>\n <p>Default: <code>600</code>\n </p>",
"smithy.api#range": {
"min": 1
}
Expand Down Expand Up @@ -956,7 +956,7 @@
"scaleDownIdleTimeInSeconds": {
"target": "smithy.api#Integer",
"traits": {
"smithy.api#documentation": "<p>The time before an idle node is scaled down.</p>",
"smithy.api#documentation": "<p>The time (in seconds) before an idle node is scaled down.</p>\n <p>Default: <code>600</code>\n </p>",
"smithy.api#range": {
"min": 1
}
Expand Down

0 comments on commit 568714e

Please sign in to comment.