@aws-sdk/client-deadline 3.731.1 → 3.737.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.
Files changed (102) hide show
  1. package/README.md +80 -0
  2. package/dist-cjs/Deadline.js +20 -0
  3. package/dist-cjs/commands/CreateLimitCommand.js +27 -0
  4. package/dist-cjs/commands/CreateQueueLimitAssociationCommand.js +26 -0
  5. package/dist-cjs/commands/DeleteLimitCommand.js +26 -0
  6. package/dist-cjs/commands/DeleteQueueLimitAssociationCommand.js +26 -0
  7. package/dist-cjs/commands/GetLimitCommand.js +27 -0
  8. package/dist-cjs/commands/GetQueueLimitAssociationCommand.js +26 -0
  9. package/dist-cjs/commands/ListLimitsCommand.js +26 -0
  10. package/dist-cjs/commands/ListQueueLimitAssociationsCommand.js +26 -0
  11. package/dist-cjs/commands/UpdateLimitCommand.js +27 -0
  12. package/dist-cjs/commands/UpdateQueueLimitAssociationCommand.js +26 -0
  13. package/dist-cjs/commands/index.js +10 -0
  14. package/dist-cjs/models/models_0.js +12 -5
  15. package/dist-cjs/models/models_1.js +20 -1
  16. package/dist-cjs/pagination/ListLimitsPaginator.js +7 -0
  17. package/dist-cjs/pagination/ListQueueLimitAssociationsPaginator.js +7 -0
  18. package/dist-cjs/pagination/index.js +2 -0
  19. package/dist-cjs/protocols/Aws_restJson1.js +428 -6
  20. package/dist-cjs/waiters/index.js +1 -0
  21. package/dist-cjs/waiters/waitForQueueLimitAssociationStopped.js +36 -0
  22. package/dist-es/Deadline.js +20 -0
  23. package/dist-es/commands/CreateLimitCommand.js +23 -0
  24. package/dist-es/commands/CreateQueueLimitAssociationCommand.js +22 -0
  25. package/dist-es/commands/DeleteLimitCommand.js +22 -0
  26. package/dist-es/commands/DeleteQueueLimitAssociationCommand.js +22 -0
  27. package/dist-es/commands/GetLimitCommand.js +23 -0
  28. package/dist-es/commands/GetQueueLimitAssociationCommand.js +22 -0
  29. package/dist-es/commands/ListLimitsCommand.js +22 -0
  30. package/dist-es/commands/ListQueueLimitAssociationsCommand.js +22 -0
  31. package/dist-es/commands/UpdateLimitCommand.js +23 -0
  32. package/dist-es/commands/UpdateQueueLimitAssociationCommand.js +22 -0
  33. package/dist-es/commands/index.js +10 -0
  34. package/dist-es/models/models_0.js +8 -3
  35. package/dist-es/models/models_1.js +18 -0
  36. package/dist-es/pagination/ListLimitsPaginator.js +4 -0
  37. package/dist-es/pagination/ListQueueLimitAssociationsPaginator.js +4 -0
  38. package/dist-es/pagination/index.js +2 -0
  39. package/dist-es/protocols/Aws_restJson1.js +403 -1
  40. package/dist-es/waiters/index.js +1 -0
  41. package/dist-es/waiters/waitForQueueLimitAssociationStopped.js +31 -0
  42. package/dist-types/Deadline.d.ts +70 -0
  43. package/dist-types/DeadlineClient.d.ts +12 -2
  44. package/dist-types/commands/CreateJobCommand.d.ts +2 -1
  45. package/dist-types/commands/CreateLimitCommand.d.ts +100 -0
  46. package/dist-types/commands/CreateQueueLimitAssociationCommand.d.ts +90 -0
  47. package/dist-types/commands/DeleteLimitCommand.d.ts +85 -0
  48. package/dist-types/commands/DeleteQueueLimitAssociationCommand.d.ts +96 -0
  49. package/dist-types/commands/GetJobCommand.d.ts +2 -1
  50. package/dist-types/commands/GetLimitCommand.d.ts +98 -0
  51. package/dist-types/commands/GetQueueLimitAssociationCommand.d.ts +95 -0
  52. package/dist-types/commands/GetSessionActionCommand.d.ts +6 -0
  53. package/dist-types/commands/GetWorkerCommand.d.ts +1 -1
  54. package/dist-types/commands/ListJobsCommand.d.ts +1 -0
  55. package/dist-types/commands/ListLimitsCommand.d.ts +103 -0
  56. package/dist-types/commands/ListQueueEnvironmentsCommand.d.ts +1 -1
  57. package/dist-types/commands/ListQueueLimitAssociationsCommand.d.ts +98 -0
  58. package/dist-types/commands/ListQueueMembersCommand.d.ts +1 -2
  59. package/dist-types/commands/SearchJobsCommand.d.ts +1 -0
  60. package/dist-types/commands/UpdateJobCommand.d.ts +5 -4
  61. package/dist-types/commands/UpdateLimitCommand.d.ts +89 -0
  62. package/dist-types/commands/UpdateQueueLimitAssociationCommand.d.ts +90 -0
  63. package/dist-types/commands/UpdateSessionCommand.d.ts +2 -2
  64. package/dist-types/commands/UpdateStepCommand.d.ts +2 -2
  65. package/dist-types/commands/UpdateTaskCommand.d.ts +2 -2
  66. package/dist-types/commands/index.d.ts +10 -0
  67. package/dist-types/models/models_0.d.ts +497 -391
  68. package/dist-types/models/models_1.d.ts +622 -1
  69. package/dist-types/pagination/ListLimitsPaginator.d.ts +7 -0
  70. package/dist-types/pagination/ListQueueLimitAssociationsPaginator.d.ts +7 -0
  71. package/dist-types/pagination/index.d.ts +2 -0
  72. package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
  73. package/dist-types/ts3.4/Deadline.d.ts +170 -0
  74. package/dist-types/ts3.4/DeadlineClient.d.ts +60 -0
  75. package/dist-types/ts3.4/commands/CreateLimitCommand.d.ts +47 -0
  76. package/dist-types/ts3.4/commands/CreateQueueLimitAssociationCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/DeleteLimitCommand.d.ts +47 -0
  78. package/dist-types/ts3.4/commands/DeleteQueueLimitAssociationCommand.d.ts +51 -0
  79. package/dist-types/ts3.4/commands/GetLimitCommand.d.ts +47 -0
  80. package/dist-types/ts3.4/commands/GetQueueLimitAssociationCommand.d.ts +51 -0
  81. package/dist-types/ts3.4/commands/ListLimitsCommand.d.ts +47 -0
  82. package/dist-types/ts3.4/commands/ListQueueEnvironmentsCommand.d.ts +1 -1
  83. package/dist-types/ts3.4/commands/ListQueueLimitAssociationsCommand.d.ts +51 -0
  84. package/dist-types/ts3.4/commands/ListQueueMembersCommand.d.ts +4 -2
  85. package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +1 -1
  86. package/dist-types/ts3.4/commands/UpdateLimitCommand.d.ts +47 -0
  87. package/dist-types/ts3.4/commands/UpdateQueueLimitAssociationCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/UpdateSessionCommand.d.ts +1 -1
  89. package/dist-types/ts3.4/commands/UpdateStepCommand.d.ts +1 -1
  90. package/dist-types/ts3.4/commands/UpdateTaskCommand.d.ts +1 -1
  91. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  92. package/dist-types/ts3.4/models/models_0.d.ts +82 -76
  93. package/dist-types/ts3.4/models/models_1.d.ts +146 -1
  94. package/dist-types/ts3.4/pagination/ListLimitsPaginator.d.ts +11 -0
  95. package/dist-types/ts3.4/pagination/ListQueueLimitAssociationsPaginator.d.ts +11 -0
  96. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  97. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
  98. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  99. package/dist-types/ts3.4/waiters/waitForQueueLimitAssociationStopped.d.ts +11 -0
  100. package/dist-types/waiters/index.d.ts +1 -0
  101. package/dist-types/waiters/waitForQueueLimitAssociationStopped.d.ts +14 -0
  102. package/package.json +34 -34
@@ -0,0 +1,89 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient";
4
+ import { UpdateLimitRequest, UpdateLimitResponse } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateLimitCommand}.
14
+ */
15
+ export interface UpdateLimitCommandInput extends UpdateLimitRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateLimitCommand}.
21
+ */
22
+ export interface UpdateLimitCommandOutput extends UpdateLimitResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateLimitCommand_base: {
25
+ new (input: UpdateLimitCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateLimitCommandInput, UpdateLimitCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateLimitCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateLimitCommandInput, UpdateLimitCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates the properties of the specified limit. </p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { DeadlineClient, UpdateLimitCommand } from "@aws-sdk/client-deadline"; // ES Modules import
35
+ * // const { DeadlineClient, UpdateLimitCommand } = require("@aws-sdk/client-deadline"); // CommonJS import
36
+ * const client = new DeadlineClient(config);
37
+ * const input = { // UpdateLimitRequest
38
+ * farmId: "STRING_VALUE", // required
39
+ * limitId: "STRING_VALUE", // required
40
+ * displayName: "STRING_VALUE",
41
+ * description: "STRING_VALUE",
42
+ * maxCount: Number("int"),
43
+ * };
44
+ * const command = new UpdateLimitCommand(input);
45
+ * const response = await client.send(command);
46
+ * // {};
47
+ *
48
+ * ```
49
+ *
50
+ * @param UpdateLimitCommandInput - {@link UpdateLimitCommandInput}
51
+ * @returns {@link UpdateLimitCommandOutput}
52
+ * @see {@link UpdateLimitCommandInput} for command's `input` shape.
53
+ * @see {@link UpdateLimitCommandOutput} for command's `response` shape.
54
+ * @see {@link DeadlineClientResolvedConfig | config} for DeadlineClient's `config` shape.
55
+ *
56
+ * @throws {@link AccessDeniedException} (client fault)
57
+ * <p>You don't have permission to perform the action.</p>
58
+ *
59
+ * @throws {@link InternalServerErrorException} (server fault)
60
+ * <p>Deadline Cloud can't process your request right now. Try again later.</p>
61
+ *
62
+ * @throws {@link ResourceNotFoundException} (client fault)
63
+ * <p>The requested resource can't be found.</p>
64
+ *
65
+ * @throws {@link ThrottlingException} (client fault)
66
+ * <p>Your request exceeded a request rate quota.</p>
67
+ *
68
+ * @throws {@link ValidationException} (client fault)
69
+ * <p>The request isn't valid. This can occur if your request contains malformed JSON or
70
+ * unsupported characters.</p>
71
+ *
72
+ * @throws {@link DeadlineServiceException}
73
+ * <p>Base exception class for all service exceptions from Deadline service.</p>
74
+ *
75
+ * @public
76
+ */
77
+ export declare class UpdateLimitCommand extends UpdateLimitCommand_base {
78
+ /** @internal type navigation helper, not in runtime. */
79
+ protected static __types: {
80
+ api: {
81
+ input: UpdateLimitRequest;
82
+ output: {};
83
+ };
84
+ sdk: {
85
+ input: UpdateLimitCommandInput;
86
+ output: UpdateLimitCommandOutput;
87
+ };
88
+ };
89
+ }
@@ -0,0 +1,90 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient";
4
+ import { UpdateQueueLimitAssociationRequest, UpdateQueueLimitAssociationResponse } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateQueueLimitAssociationCommand}.
14
+ */
15
+ export interface UpdateQueueLimitAssociationCommandInput extends UpdateQueueLimitAssociationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateQueueLimitAssociationCommand}.
21
+ */
22
+ export interface UpdateQueueLimitAssociationCommandOutput extends UpdateQueueLimitAssociationResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateQueueLimitAssociationCommand_base: {
25
+ new (input: UpdateQueueLimitAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateQueueLimitAssociationCommandInput, UpdateQueueLimitAssociationCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateQueueLimitAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateQueueLimitAssociationCommandInput, UpdateQueueLimitAssociationCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates the status of the queue. If you set the status to one of the
31
+ * <code>STOP_LIMIT_USAGE*</code> values, there will be a delay before the status
32
+ * transitions to the <code>STOPPED</code> state. </p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { DeadlineClient, UpdateQueueLimitAssociationCommand } from "@aws-sdk/client-deadline"; // ES Modules import
37
+ * // const { DeadlineClient, UpdateQueueLimitAssociationCommand } = require("@aws-sdk/client-deadline"); // CommonJS import
38
+ * const client = new DeadlineClient(config);
39
+ * const input = { // UpdateQueueLimitAssociationRequest
40
+ * farmId: "STRING_VALUE", // required
41
+ * queueId: "STRING_VALUE", // required
42
+ * limitId: "STRING_VALUE", // required
43
+ * status: "ACTIVE" || "STOP_LIMIT_USAGE_AND_COMPLETE_TASKS" || "STOP_LIMIT_USAGE_AND_CANCEL_TASKS", // required
44
+ * };
45
+ * const command = new UpdateQueueLimitAssociationCommand(input);
46
+ * const response = await client.send(command);
47
+ * // {};
48
+ *
49
+ * ```
50
+ *
51
+ * @param UpdateQueueLimitAssociationCommandInput - {@link UpdateQueueLimitAssociationCommandInput}
52
+ * @returns {@link UpdateQueueLimitAssociationCommandOutput}
53
+ * @see {@link UpdateQueueLimitAssociationCommandInput} for command's `input` shape.
54
+ * @see {@link UpdateQueueLimitAssociationCommandOutput} for command's `response` shape.
55
+ * @see {@link DeadlineClientResolvedConfig | config} for DeadlineClient's `config` shape.
56
+ *
57
+ * @throws {@link AccessDeniedException} (client fault)
58
+ * <p>You don't have permission to perform the action.</p>
59
+ *
60
+ * @throws {@link InternalServerErrorException} (server fault)
61
+ * <p>Deadline Cloud can't process your request right now. Try again later.</p>
62
+ *
63
+ * @throws {@link ResourceNotFoundException} (client fault)
64
+ * <p>The requested resource can't be found.</p>
65
+ *
66
+ * @throws {@link ThrottlingException} (client fault)
67
+ * <p>Your request exceeded a request rate quota.</p>
68
+ *
69
+ * @throws {@link ValidationException} (client fault)
70
+ * <p>The request isn't valid. This can occur if your request contains malformed JSON or
71
+ * unsupported characters.</p>
72
+ *
73
+ * @throws {@link DeadlineServiceException}
74
+ * <p>Base exception class for all service exceptions from Deadline service.</p>
75
+ *
76
+ * @public
77
+ */
78
+ export declare class UpdateQueueLimitAssociationCommand extends UpdateQueueLimitAssociationCommand_base {
79
+ /** @internal type navigation helper, not in runtime. */
80
+ protected static __types: {
81
+ api: {
82
+ input: UpdateQueueLimitAssociationRequest;
83
+ output: {};
84
+ };
85
+ sdk: {
86
+ input: UpdateQueueLimitAssociationCommandInput;
87
+ output: UpdateQueueLimitAssociationCommandOutput;
88
+ };
89
+ };
90
+ }
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient";
4
- import { UpdateSessionRequest, UpdateSessionResponse } from "../models/models_0";
4
+ import { UpdateSessionRequest, UpdateSessionResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -36,11 +36,11 @@ declare const UpdateSessionCommand_base: {
36
36
  * const client = new DeadlineClient(config);
37
37
  * const input = { // UpdateSessionRequest
38
38
  * clientToken: "STRING_VALUE",
39
+ * targetLifecycleStatus: "ENDED", // required
39
40
  * farmId: "STRING_VALUE", // required
40
41
  * queueId: "STRING_VALUE", // required
41
42
  * jobId: "STRING_VALUE", // required
42
43
  * sessionId: "STRING_VALUE", // required
43
- * targetLifecycleStatus: "ENDED", // required
44
44
  * };
45
45
  * const command = new UpdateSessionCommand(input);
46
46
  * const response = await client.send(command);
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient";
4
- import { UpdateStepRequest, UpdateStepResponse } from "../models/models_0";
4
+ import { UpdateStepRequest, UpdateStepResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -35,12 +35,12 @@ declare const UpdateStepCommand_base: {
35
35
  * // const { DeadlineClient, UpdateStepCommand } = require("@aws-sdk/client-deadline"); // CommonJS import
36
36
  * const client = new DeadlineClient(config);
37
37
  * const input = { // UpdateStepRequest
38
+ * targetTaskRunStatus: "READY" || "FAILED" || "SUCCEEDED" || "CANCELED" || "SUSPENDED" || "PENDING", // required
38
39
  * clientToken: "STRING_VALUE",
39
40
  * farmId: "STRING_VALUE", // required
40
41
  * queueId: "STRING_VALUE", // required
41
42
  * jobId: "STRING_VALUE", // required
42
43
  * stepId: "STRING_VALUE", // required
43
- * targetTaskRunStatus: "READY" || "FAILED" || "SUCCEEDED" || "CANCELED" || "SUSPENDED" || "PENDING", // required
44
44
  * };
45
45
  * const command = new UpdateStepCommand(input);
46
46
  * const response = await client.send(command);
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient";
4
- import { UpdateTaskRequest, UpdateTaskResponse } from "../models/models_0";
4
+ import { UpdateTaskRequest, UpdateTaskResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -36,12 +36,12 @@ declare const UpdateTaskCommand_base: {
36
36
  * const client = new DeadlineClient(config);
37
37
  * const input = { // UpdateTaskRequest
38
38
  * clientToken: "STRING_VALUE",
39
+ * targetRunStatus: "READY" || "FAILED" || "SUCCEEDED" || "CANCELED" || "SUSPENDED" || "PENDING", // required
39
40
  * farmId: "STRING_VALUE", // required
40
41
  * queueId: "STRING_VALUE", // required
41
42
  * jobId: "STRING_VALUE", // required
42
43
  * stepId: "STRING_VALUE", // required
43
44
  * taskId: "STRING_VALUE", // required
44
- * targetRunStatus: "READY" || "FAILED" || "SUCCEEDED" || "CANCELED" || "SUSPENDED" || "PENDING", // required
45
45
  * };
46
46
  * const command = new UpdateTaskCommand(input);
47
47
  * const response = await client.send(command);
@@ -14,21 +14,25 @@ export * from "./CreateFarmCommand";
14
14
  export * from "./CreateFleetCommand";
15
15
  export * from "./CreateJobCommand";
16
16
  export * from "./CreateLicenseEndpointCommand";
17
+ export * from "./CreateLimitCommand";
17
18
  export * from "./CreateMonitorCommand";
18
19
  export * from "./CreateQueueCommand";
19
20
  export * from "./CreateQueueEnvironmentCommand";
20
21
  export * from "./CreateQueueFleetAssociationCommand";
22
+ export * from "./CreateQueueLimitAssociationCommand";
21
23
  export * from "./CreateStorageProfileCommand";
22
24
  export * from "./CreateWorkerCommand";
23
25
  export * from "./DeleteBudgetCommand";
24
26
  export * from "./DeleteFarmCommand";
25
27
  export * from "./DeleteFleetCommand";
26
28
  export * from "./DeleteLicenseEndpointCommand";
29
+ export * from "./DeleteLimitCommand";
27
30
  export * from "./DeleteMeteredProductCommand";
28
31
  export * from "./DeleteMonitorCommand";
29
32
  export * from "./DeleteQueueCommand";
30
33
  export * from "./DeleteQueueEnvironmentCommand";
31
34
  export * from "./DeleteQueueFleetAssociationCommand";
35
+ export * from "./DeleteQueueLimitAssociationCommand";
32
36
  export * from "./DeleteStorageProfileCommand";
33
37
  export * from "./DeleteWorkerCommand";
34
38
  export * from "./DisassociateMemberFromFarmCommand";
@@ -40,10 +44,12 @@ export * from "./GetFarmCommand";
40
44
  export * from "./GetFleetCommand";
41
45
  export * from "./GetJobCommand";
42
46
  export * from "./GetLicenseEndpointCommand";
47
+ export * from "./GetLimitCommand";
43
48
  export * from "./GetMonitorCommand";
44
49
  export * from "./GetQueueCommand";
45
50
  export * from "./GetQueueEnvironmentCommand";
46
51
  export * from "./GetQueueFleetAssociationCommand";
52
+ export * from "./GetQueueLimitAssociationCommand";
47
53
  export * from "./GetSessionActionCommand";
48
54
  export * from "./GetSessionCommand";
49
55
  export * from "./GetSessionsStatisticsAggregationCommand";
@@ -62,10 +68,12 @@ export * from "./ListJobMembersCommand";
62
68
  export * from "./ListJobParameterDefinitionsCommand";
63
69
  export * from "./ListJobsCommand";
64
70
  export * from "./ListLicenseEndpointsCommand";
71
+ export * from "./ListLimitsCommand";
65
72
  export * from "./ListMeteredProductsCommand";
66
73
  export * from "./ListMonitorsCommand";
67
74
  export * from "./ListQueueEnvironmentsCommand";
68
75
  export * from "./ListQueueFleetAssociationsCommand";
76
+ export * from "./ListQueueLimitAssociationsCommand";
69
77
  export * from "./ListQueueMembersCommand";
70
78
  export * from "./ListQueuesCommand";
71
79
  export * from "./ListSessionActionsCommand";
@@ -91,10 +99,12 @@ export * from "./UpdateBudgetCommand";
91
99
  export * from "./UpdateFarmCommand";
92
100
  export * from "./UpdateFleetCommand";
93
101
  export * from "./UpdateJobCommand";
102
+ export * from "./UpdateLimitCommand";
94
103
  export * from "./UpdateMonitorCommand";
95
104
  export * from "./UpdateQueueCommand";
96
105
  export * from "./UpdateQueueEnvironmentCommand";
97
106
  export * from "./UpdateQueueFleetAssociationCommand";
107
+ export * from "./UpdateQueueLimitAssociationCommand";
98
108
  export * from "./UpdateSessionCommand";
99
109
  export * from "./UpdateStepCommand";
100
110
  export * from "./UpdateStorageProfileCommand";