@aws-sdk/client-batch 3.731.1 → 3.734.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.
@@ -446,7 +446,7 @@ export interface LaunchTemplateSpecificationOverride {
446
446
  */
447
447
  version?: string | undefined;
448
448
  /**
449
- * <p>The instance type or family that this this override launch template should be applied to.</p>
449
+ * <p>The instance type or family that this override launch template should be applied to.</p>
450
450
  * <p>This parameter is required when defining a launch template override.</p>
451
451
  * <p>Information included in this parameter must meet the following requirements:</p>
452
452
  * <ul>
@@ -1196,9 +1196,12 @@ export interface ShareAttributes {
1196
1196
  export interface FairsharePolicy {
1197
1197
  /**
1198
1198
  * <p>The amount of time (in seconds) to use to calculate a fair share percentage for each fair
1199
- * share identifier in use. A value of zero (0) indicates that only current usage is measured. The
1200
- * decay allows for more recently run jobs to have more weight than jobs that ran earlier. The
1201
- * maximum supported value is 604800 (1 week).</p>
1199
+ * share identifier in use. A value of zero (0) indicates the default minimum time window (600 seconds).
1200
+ * The maximum supported value is 604800 (1 week).</p>
1201
+ * <p>The decay allows for more recently run jobs to have more weight than jobs that ran earlier.
1202
+ * Consider adjusting this number if you have jobs that (on average) run longer than ten minutes,
1203
+ * or a large difference in job count or job run times between share identifiers, and the allocation
1204
+ * of resources doesn’t meet your needs.</p>
1202
1205
  * @public
1203
1206
  */
1204
1207
  shareDecaySeconds?: number | undefined;
@@ -2766,7 +2769,7 @@ export interface TaskContainerProperties {
2766
2769
  */
2767
2770
  dependsOn?: TaskContainerDependency[] | undefined;
2768
2771
  /**
2769
- * <p>The environment variables to pass to a container. This parameter maps to Env inthe <a href="https://docs.docker.com/engine/api/v1.23/#create-a-container">Create a container</a>
2772
+ * <p>The environment variables to pass to a container. This parameter maps to Env in the <a href="https://docs.docker.com/engine/api/v1.23/#create-a-container">Create a container</a>
2770
2773
  * section of the <a href="https://docs.docker.com/engine/api/v1.23/">Docker Remote API</a>
2771
2774
  * and the <code>--env</code> parameter to <a href="https://docs.docker.com/engine/reference/run/">docker run</a>. </p>
2772
2775
  * <important>
@@ -4087,7 +4090,27 @@ export interface JobQueueDetail {
4087
4090
  */
4088
4091
  statusReason?: string | undefined;
4089
4092
  /**
4090
- * <p>The priority of the job queue. Job queues with a higher priority (or a higher integer value for the <code>priority</code> parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of <code>10</code> is given scheduling preference over a job queue with a priority value of <code>1</code>. All of the compute environments must be either Amazon EC2 (<code>EC2</code> or <code>SPOT</code>) or Fargate (<code>FARGATE</code> or <code>FARGATE_SPOT</code>). Amazon EC2 and Fargate compute environments can't be mixed.</p>
4093
+ * <p>The priority of the job queue. Job queue priority determines the order
4094
+ * that job queues are evaluated when multiple queues dispatch jobs within a
4095
+ * shared compute environment. A higher value for <code>priority</code> indicates
4096
+ * a higher priority. Queues are evaluated in cycles, in descending order by
4097
+ * priority. For example, a job queue with a priority value of <code>10</code> is
4098
+ * evaluated before a queue with a priority value of <code>1</code>. All of the
4099
+ * compute environments must be either Amazon EC2 (<code>EC2</code> or <code>SPOT</code>)
4100
+ * or Fargate (<code>FARGATE</code> or <code>FARGATE_SPOT</code>). Amazon EC2 and
4101
+ * Fargate compute environments can't be mixed.</p>
4102
+ * <note>
4103
+ * <p>Job queue priority doesn't guarantee that a particular job executes before
4104
+ * a job in a lower priority queue. Jobs added to higher priority queues during the
4105
+ * queue evaluation cycle might not be evaluated until the next cycle. A job is
4106
+ * dispatched from a queue only if resources are available when the queue is evaluated.
4107
+ * If there are insufficient resources available at that time, the cycle proceeds to the
4108
+ * next queue. This means that jobs added to higher priority queues might have to wait
4109
+ * for jobs in multiple lower priority queues to complete before they are dispatched.
4110
+ * You can use job dependencies to control the order for jobs from queues with different
4111
+ * priorities. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/job_dependencies.html">Job Dependencies</a>
4112
+ * in the <i>Batch User Guide</i>.</p>
4113
+ * </note>
4091
4114
  * @public
4092
4115
  */
4093
4116
  priority: number | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-batch",
3
3
  "description": "AWS SDK for JavaScript Batch Client for Node.js, Browser and React Native",
4
- "version": "3.731.1",
4
+ "version": "3.734.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-batch",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.731.0",
24
- "@aws-sdk/credential-provider-node": "3.731.1",
25
- "@aws-sdk/middleware-host-header": "3.731.0",
26
- "@aws-sdk/middleware-logger": "3.731.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.731.0",
28
- "@aws-sdk/middleware-user-agent": "3.731.0",
29
- "@aws-sdk/region-config-resolver": "3.731.0",
30
- "@aws-sdk/types": "3.731.0",
31
- "@aws-sdk/util-endpoints": "3.731.0",
32
- "@aws-sdk/util-user-agent-browser": "3.731.0",
33
- "@aws-sdk/util-user-agent-node": "3.731.0",
34
- "@smithy/config-resolver": "^4.0.0",
35
- "@smithy/core": "^3.0.0",
36
- "@smithy/fetch-http-handler": "^5.0.0",
37
- "@smithy/hash-node": "^4.0.0",
38
- "@smithy/invalid-dependency": "^4.0.0",
39
- "@smithy/middleware-content-length": "^4.0.0",
40
- "@smithy/middleware-endpoint": "^4.0.0",
41
- "@smithy/middleware-retry": "^4.0.0",
42
- "@smithy/middleware-serde": "^4.0.0",
43
- "@smithy/middleware-stack": "^4.0.0",
44
- "@smithy/node-config-provider": "^4.0.0",
45
- "@smithy/node-http-handler": "^4.0.0",
46
- "@smithy/protocol-http": "^5.0.0",
47
- "@smithy/smithy-client": "^4.0.0",
48
- "@smithy/types": "^4.0.0",
49
- "@smithy/url-parser": "^4.0.0",
23
+ "@aws-sdk/core": "3.734.0",
24
+ "@aws-sdk/credential-provider-node": "3.734.0",
25
+ "@aws-sdk/middleware-host-header": "3.734.0",
26
+ "@aws-sdk/middleware-logger": "3.734.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.734.0",
28
+ "@aws-sdk/middleware-user-agent": "3.734.0",
29
+ "@aws-sdk/region-config-resolver": "3.734.0",
30
+ "@aws-sdk/types": "3.734.0",
31
+ "@aws-sdk/util-endpoints": "3.734.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.734.0",
33
+ "@aws-sdk/util-user-agent-node": "3.734.0",
34
+ "@smithy/config-resolver": "^4.0.1",
35
+ "@smithy/core": "^3.1.1",
36
+ "@smithy/fetch-http-handler": "^5.0.1",
37
+ "@smithy/hash-node": "^4.0.1",
38
+ "@smithy/invalid-dependency": "^4.0.1",
39
+ "@smithy/middleware-content-length": "^4.0.1",
40
+ "@smithy/middleware-endpoint": "^4.0.2",
41
+ "@smithy/middleware-retry": "^4.0.3",
42
+ "@smithy/middleware-serde": "^4.0.1",
43
+ "@smithy/middleware-stack": "^4.0.1",
44
+ "@smithy/node-config-provider": "^4.0.1",
45
+ "@smithy/node-http-handler": "^4.0.2",
46
+ "@smithy/protocol-http": "^5.0.1",
47
+ "@smithy/smithy-client": "^4.1.2",
48
+ "@smithy/types": "^4.1.0",
49
+ "@smithy/url-parser": "^4.0.1",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.0",
54
- "@smithy/util-defaults-mode-node": "^4.0.0",
55
- "@smithy/util-endpoints": "^3.0.0",
56
- "@smithy/util-middleware": "^4.0.0",
57
- "@smithy/util-retry": "^4.0.0",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.3",
54
+ "@smithy/util-defaults-mode-node": "^4.0.3",
55
+ "@smithy/util-endpoints": "^3.0.1",
56
+ "@smithy/util-middleware": "^4.0.1",
57
+ "@smithy/util-retry": "^4.0.1",
58
58
  "@smithy/util-utf8": "^4.0.0",
59
59
  "tslib": "^2.6.2"
60
60
  },