@aws-sdk/client-deadline 3.734.0 → 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 +1 -1
@@ -15,21 +15,25 @@ import { CreateFarmCommandInput, CreateFarmCommandOutput } from "./commands/Crea
15
15
  import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
16
16
  import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
17
17
  import { CreateLicenseEndpointCommandInput, CreateLicenseEndpointCommandOutput } from "./commands/CreateLicenseEndpointCommand";
18
+ import { CreateLimitCommandInput, CreateLimitCommandOutput } from "./commands/CreateLimitCommand";
18
19
  import { CreateMonitorCommandInput, CreateMonitorCommandOutput } from "./commands/CreateMonitorCommand";
19
20
  import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
20
21
  import { CreateQueueEnvironmentCommandInput, CreateQueueEnvironmentCommandOutput } from "./commands/CreateQueueEnvironmentCommand";
21
22
  import { CreateQueueFleetAssociationCommandInput, CreateQueueFleetAssociationCommandOutput } from "./commands/CreateQueueFleetAssociationCommand";
23
+ import { CreateQueueLimitAssociationCommandInput, CreateQueueLimitAssociationCommandOutput } from "./commands/CreateQueueLimitAssociationCommand";
22
24
  import { CreateStorageProfileCommandInput, CreateStorageProfileCommandOutput } from "./commands/CreateStorageProfileCommand";
23
25
  import { CreateWorkerCommandInput, CreateWorkerCommandOutput } from "./commands/CreateWorkerCommand";
24
26
  import { DeleteBudgetCommandInput, DeleteBudgetCommandOutput } from "./commands/DeleteBudgetCommand";
25
27
  import { DeleteFarmCommandInput, DeleteFarmCommandOutput } from "./commands/DeleteFarmCommand";
26
28
  import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
27
29
  import { DeleteLicenseEndpointCommandInput, DeleteLicenseEndpointCommandOutput } from "./commands/DeleteLicenseEndpointCommand";
30
+ import { DeleteLimitCommandInput, DeleteLimitCommandOutput } from "./commands/DeleteLimitCommand";
28
31
  import { DeleteMeteredProductCommandInput, DeleteMeteredProductCommandOutput } from "./commands/DeleteMeteredProductCommand";
29
32
  import { DeleteMonitorCommandInput, DeleteMonitorCommandOutput } from "./commands/DeleteMonitorCommand";
30
33
  import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/DeleteQueueCommand";
31
34
  import { DeleteQueueEnvironmentCommandInput, DeleteQueueEnvironmentCommandOutput } from "./commands/DeleteQueueEnvironmentCommand";
32
35
  import { DeleteQueueFleetAssociationCommandInput, DeleteQueueFleetAssociationCommandOutput } from "./commands/DeleteQueueFleetAssociationCommand";
36
+ import { DeleteQueueLimitAssociationCommandInput, DeleteQueueLimitAssociationCommandOutput } from "./commands/DeleteQueueLimitAssociationCommand";
33
37
  import { DeleteStorageProfileCommandInput, DeleteStorageProfileCommandOutput } from "./commands/DeleteStorageProfileCommand";
34
38
  import { DeleteWorkerCommandInput, DeleteWorkerCommandOutput } from "./commands/DeleteWorkerCommand";
35
39
  import { DisassociateMemberFromFarmCommandInput, DisassociateMemberFromFarmCommandOutput } from "./commands/DisassociateMemberFromFarmCommand";
@@ -41,10 +45,12 @@ import { GetFarmCommandInput, GetFarmCommandOutput } from "./commands/GetFarmCom
41
45
  import { GetFleetCommandInput, GetFleetCommandOutput } from "./commands/GetFleetCommand";
42
46
  import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
43
47
  import { GetLicenseEndpointCommandInput, GetLicenseEndpointCommandOutput } from "./commands/GetLicenseEndpointCommand";
48
+ import { GetLimitCommandInput, GetLimitCommandOutput } from "./commands/GetLimitCommand";
44
49
  import { GetMonitorCommandInput, GetMonitorCommandOutput } from "./commands/GetMonitorCommand";
45
50
  import { GetQueueCommandInput, GetQueueCommandOutput } from "./commands/GetQueueCommand";
46
51
  import { GetQueueEnvironmentCommandInput, GetQueueEnvironmentCommandOutput } from "./commands/GetQueueEnvironmentCommand";
47
52
  import { GetQueueFleetAssociationCommandInput, GetQueueFleetAssociationCommandOutput } from "./commands/GetQueueFleetAssociationCommand";
53
+ import { GetQueueLimitAssociationCommandInput, GetQueueLimitAssociationCommandOutput } from "./commands/GetQueueLimitAssociationCommand";
48
54
  import { GetSessionActionCommandInput, GetSessionActionCommandOutput } from "./commands/GetSessionActionCommand";
49
55
  import { GetSessionCommandInput, GetSessionCommandOutput } from "./commands/GetSessionCommand";
50
56
  import { GetSessionsStatisticsAggregationCommandInput, GetSessionsStatisticsAggregationCommandOutput } from "./commands/GetSessionsStatisticsAggregationCommand";
@@ -63,10 +69,12 @@ import { ListJobMembersCommandInput, ListJobMembersCommandOutput } from "./comma
63
69
  import { ListJobParameterDefinitionsCommandInput, ListJobParameterDefinitionsCommandOutput } from "./commands/ListJobParameterDefinitionsCommand";
64
70
  import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
65
71
  import { ListLicenseEndpointsCommandInput, ListLicenseEndpointsCommandOutput } from "./commands/ListLicenseEndpointsCommand";
72
+ import { ListLimitsCommandInput, ListLimitsCommandOutput } from "./commands/ListLimitsCommand";
66
73
  import { ListMeteredProductsCommandInput, ListMeteredProductsCommandOutput } from "./commands/ListMeteredProductsCommand";
67
74
  import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "./commands/ListMonitorsCommand";
68
75
  import { ListQueueEnvironmentsCommandInput, ListQueueEnvironmentsCommandOutput } from "./commands/ListQueueEnvironmentsCommand";
69
76
  import { ListQueueFleetAssociationsCommandInput, ListQueueFleetAssociationsCommandOutput } from "./commands/ListQueueFleetAssociationsCommand";
77
+ import { ListQueueLimitAssociationsCommandInput, ListQueueLimitAssociationsCommandOutput } from "./commands/ListQueueLimitAssociationsCommand";
70
78
  import { ListQueueMembersCommandInput, ListQueueMembersCommandOutput } from "./commands/ListQueueMembersCommand";
71
79
  import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
72
80
  import { ListSessionActionsCommandInput, ListSessionActionsCommandOutput } from "./commands/ListSessionActionsCommand";
@@ -92,10 +100,12 @@ import { UpdateBudgetCommandInput, UpdateBudgetCommandOutput } from "./commands/
92
100
  import { UpdateFarmCommandInput, UpdateFarmCommandOutput } from "./commands/UpdateFarmCommand";
93
101
  import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
94
102
  import { UpdateJobCommandInput, UpdateJobCommandOutput } from "./commands/UpdateJobCommand";
103
+ import { UpdateLimitCommandInput, UpdateLimitCommandOutput } from "./commands/UpdateLimitCommand";
95
104
  import { UpdateMonitorCommandInput, UpdateMonitorCommandOutput } from "./commands/UpdateMonitorCommand";
96
105
  import { UpdateQueueCommandInput, UpdateQueueCommandOutput } from "./commands/UpdateQueueCommand";
97
106
  import { UpdateQueueEnvironmentCommandInput, UpdateQueueEnvironmentCommandOutput } from "./commands/UpdateQueueEnvironmentCommand";
98
107
  import { UpdateQueueFleetAssociationCommandInput, UpdateQueueFleetAssociationCommandOutput } from "./commands/UpdateQueueFleetAssociationCommand";
108
+ import { UpdateQueueLimitAssociationCommandInput, UpdateQueueLimitAssociationCommandOutput } from "./commands/UpdateQueueLimitAssociationCommand";
99
109
  import { UpdateSessionCommandInput, UpdateSessionCommandOutput } from "./commands/UpdateSessionCommand";
100
110
  import { UpdateStepCommandInput, UpdateStepCommandOutput } from "./commands/UpdateStepCommand";
101
111
  import { UpdateStorageProfileCommandInput, UpdateStorageProfileCommandOutput } from "./commands/UpdateStorageProfileCommand";
@@ -200,6 +210,12 @@ export interface Deadline {
200
210
  createLicenseEndpoint(args: CreateLicenseEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateLicenseEndpointCommandOutput>;
201
211
  createLicenseEndpoint(args: CreateLicenseEndpointCommandInput, cb: (err: any, data?: CreateLicenseEndpointCommandOutput) => void): void;
202
212
  createLicenseEndpoint(args: CreateLicenseEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLicenseEndpointCommandOutput) => void): void;
213
+ /**
214
+ * @see {@link CreateLimitCommand}
215
+ */
216
+ createLimit(args: CreateLimitCommandInput, options?: __HttpHandlerOptions): Promise<CreateLimitCommandOutput>;
217
+ createLimit(args: CreateLimitCommandInput, cb: (err: any, data?: CreateLimitCommandOutput) => void): void;
218
+ createLimit(args: CreateLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLimitCommandOutput) => void): void;
203
219
  /**
204
220
  * @see {@link CreateMonitorCommand}
205
221
  */
@@ -224,6 +240,12 @@ export interface Deadline {
224
240
  createQueueFleetAssociation(args: CreateQueueFleetAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateQueueFleetAssociationCommandOutput>;
225
241
  createQueueFleetAssociation(args: CreateQueueFleetAssociationCommandInput, cb: (err: any, data?: CreateQueueFleetAssociationCommandOutput) => void): void;
226
242
  createQueueFleetAssociation(args: CreateQueueFleetAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQueueFleetAssociationCommandOutput) => void): void;
243
+ /**
244
+ * @see {@link CreateQueueLimitAssociationCommand}
245
+ */
246
+ createQueueLimitAssociation(args: CreateQueueLimitAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateQueueLimitAssociationCommandOutput>;
247
+ createQueueLimitAssociation(args: CreateQueueLimitAssociationCommandInput, cb: (err: any, data?: CreateQueueLimitAssociationCommandOutput) => void): void;
248
+ createQueueLimitAssociation(args: CreateQueueLimitAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQueueLimitAssociationCommandOutput) => void): void;
227
249
  /**
228
250
  * @see {@link CreateStorageProfileCommand}
229
251
  */
@@ -260,6 +282,12 @@ export interface Deadline {
260
282
  deleteLicenseEndpoint(args: DeleteLicenseEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLicenseEndpointCommandOutput>;
261
283
  deleteLicenseEndpoint(args: DeleteLicenseEndpointCommandInput, cb: (err: any, data?: DeleteLicenseEndpointCommandOutput) => void): void;
262
284
  deleteLicenseEndpoint(args: DeleteLicenseEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLicenseEndpointCommandOutput) => void): void;
285
+ /**
286
+ * @see {@link DeleteLimitCommand}
287
+ */
288
+ deleteLimit(args: DeleteLimitCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLimitCommandOutput>;
289
+ deleteLimit(args: DeleteLimitCommandInput, cb: (err: any, data?: DeleteLimitCommandOutput) => void): void;
290
+ deleteLimit(args: DeleteLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLimitCommandOutput) => void): void;
263
291
  /**
264
292
  * @see {@link DeleteMeteredProductCommand}
265
293
  */
@@ -290,6 +318,12 @@ export interface Deadline {
290
318
  deleteQueueFleetAssociation(args: DeleteQueueFleetAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueueFleetAssociationCommandOutput>;
291
319
  deleteQueueFleetAssociation(args: DeleteQueueFleetAssociationCommandInput, cb: (err: any, data?: DeleteQueueFleetAssociationCommandOutput) => void): void;
292
320
  deleteQueueFleetAssociation(args: DeleteQueueFleetAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueueFleetAssociationCommandOutput) => void): void;
321
+ /**
322
+ * @see {@link DeleteQueueLimitAssociationCommand}
323
+ */
324
+ deleteQueueLimitAssociation(args: DeleteQueueLimitAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueueLimitAssociationCommandOutput>;
325
+ deleteQueueLimitAssociation(args: DeleteQueueLimitAssociationCommandInput, cb: (err: any, data?: DeleteQueueLimitAssociationCommandOutput) => void): void;
326
+ deleteQueueLimitAssociation(args: DeleteQueueLimitAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueueLimitAssociationCommandOutput) => void): void;
293
327
  /**
294
328
  * @see {@link DeleteStorageProfileCommand}
295
329
  */
@@ -356,6 +390,12 @@ export interface Deadline {
356
390
  getLicenseEndpoint(args: GetLicenseEndpointCommandInput, options?: __HttpHandlerOptions): Promise<GetLicenseEndpointCommandOutput>;
357
391
  getLicenseEndpoint(args: GetLicenseEndpointCommandInput, cb: (err: any, data?: GetLicenseEndpointCommandOutput) => void): void;
358
392
  getLicenseEndpoint(args: GetLicenseEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLicenseEndpointCommandOutput) => void): void;
393
+ /**
394
+ * @see {@link GetLimitCommand}
395
+ */
396
+ getLimit(args: GetLimitCommandInput, options?: __HttpHandlerOptions): Promise<GetLimitCommandOutput>;
397
+ getLimit(args: GetLimitCommandInput, cb: (err: any, data?: GetLimitCommandOutput) => void): void;
398
+ getLimit(args: GetLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLimitCommandOutput) => void): void;
359
399
  /**
360
400
  * @see {@link GetMonitorCommand}
361
401
  */
@@ -380,6 +420,12 @@ export interface Deadline {
380
420
  getQueueFleetAssociation(args: GetQueueFleetAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetQueueFleetAssociationCommandOutput>;
381
421
  getQueueFleetAssociation(args: GetQueueFleetAssociationCommandInput, cb: (err: any, data?: GetQueueFleetAssociationCommandOutput) => void): void;
382
422
  getQueueFleetAssociation(args: GetQueueFleetAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQueueFleetAssociationCommandOutput) => void): void;
423
+ /**
424
+ * @see {@link GetQueueLimitAssociationCommand}
425
+ */
426
+ getQueueLimitAssociation(args: GetQueueLimitAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetQueueLimitAssociationCommandOutput>;
427
+ getQueueLimitAssociation(args: GetQueueLimitAssociationCommandInput, cb: (err: any, data?: GetQueueLimitAssociationCommandOutput) => void): void;
428
+ getQueueLimitAssociation(args: GetQueueLimitAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQueueLimitAssociationCommandOutput) => void): void;
383
429
  /**
384
430
  * @see {@link GetSessionCommand}
385
431
  */
@@ -491,6 +537,12 @@ export interface Deadline {
491
537
  listLicenseEndpoints(args: ListLicenseEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseEndpointsCommandOutput>;
492
538
  listLicenseEndpoints(args: ListLicenseEndpointsCommandInput, cb: (err: any, data?: ListLicenseEndpointsCommandOutput) => void): void;
493
539
  listLicenseEndpoints(args: ListLicenseEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseEndpointsCommandOutput) => void): void;
540
+ /**
541
+ * @see {@link ListLimitsCommand}
542
+ */
543
+ listLimits(args: ListLimitsCommandInput, options?: __HttpHandlerOptions): Promise<ListLimitsCommandOutput>;
544
+ listLimits(args: ListLimitsCommandInput, cb: (err: any, data?: ListLimitsCommandOutput) => void): void;
545
+ listLimits(args: ListLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLimitsCommandOutput) => void): void;
494
546
  /**
495
547
  * @see {@link ListMeteredProductsCommand}
496
548
  */
@@ -516,6 +568,12 @@ export interface Deadline {
516
568
  listQueueFleetAssociations(args: ListQueueFleetAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListQueueFleetAssociationsCommandOutput>;
517
569
  listQueueFleetAssociations(args: ListQueueFleetAssociationsCommandInput, cb: (err: any, data?: ListQueueFleetAssociationsCommandOutput) => void): void;
518
570
  listQueueFleetAssociations(args: ListQueueFleetAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueueFleetAssociationsCommandOutput) => void): void;
571
+ /**
572
+ * @see {@link ListQueueLimitAssociationsCommand}
573
+ */
574
+ listQueueLimitAssociations(args: ListQueueLimitAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListQueueLimitAssociationsCommandOutput>;
575
+ listQueueLimitAssociations(args: ListQueueLimitAssociationsCommandInput, cb: (err: any, data?: ListQueueLimitAssociationsCommandOutput) => void): void;
576
+ listQueueLimitAssociations(args: ListQueueLimitAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueueLimitAssociationsCommandOutput) => void): void;
519
577
  /**
520
578
  * @see {@link ListQueueMembersCommand}
521
579
  */
@@ -666,6 +724,12 @@ export interface Deadline {
666
724
  updateJob(args: UpdateJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateJobCommandOutput>;
667
725
  updateJob(args: UpdateJobCommandInput, cb: (err: any, data?: UpdateJobCommandOutput) => void): void;
668
726
  updateJob(args: UpdateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateJobCommandOutput) => void): void;
727
+ /**
728
+ * @see {@link UpdateLimitCommand}
729
+ */
730
+ updateLimit(args: UpdateLimitCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLimitCommandOutput>;
731
+ updateLimit(args: UpdateLimitCommandInput, cb: (err: any, data?: UpdateLimitCommandOutput) => void): void;
732
+ updateLimit(args: UpdateLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLimitCommandOutput) => void): void;
669
733
  /**
670
734
  * @see {@link UpdateMonitorCommand}
671
735
  */
@@ -690,6 +754,12 @@ export interface Deadline {
690
754
  updateQueueFleetAssociation(args: UpdateQueueFleetAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueFleetAssociationCommandOutput>;
691
755
  updateQueueFleetAssociation(args: UpdateQueueFleetAssociationCommandInput, cb: (err: any, data?: UpdateQueueFleetAssociationCommandOutput) => void): void;
692
756
  updateQueueFleetAssociation(args: UpdateQueueFleetAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueFleetAssociationCommandOutput) => void): void;
757
+ /**
758
+ * @see {@link UpdateQueueLimitAssociationCommand}
759
+ */
760
+ updateQueueLimitAssociation(args: UpdateQueueLimitAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueLimitAssociationCommandOutput>;
761
+ updateQueueLimitAssociation(args: UpdateQueueLimitAssociationCommandInput, cb: (err: any, data?: UpdateQueueLimitAssociationCommandOutput) => void): void;
762
+ updateQueueLimitAssociation(args: UpdateQueueLimitAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueLimitAssociationCommandOutput) => void): void;
693
763
  /**
694
764
  * @see {@link UpdateSessionCommand}
695
765
  */
@@ -23,21 +23,25 @@ import { CreateFarmCommandInput, CreateFarmCommandOutput } from "./commands/Crea
23
23
  import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
24
24
  import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
25
25
  import { CreateLicenseEndpointCommandInput, CreateLicenseEndpointCommandOutput } from "./commands/CreateLicenseEndpointCommand";
26
+ import { CreateLimitCommandInput, CreateLimitCommandOutput } from "./commands/CreateLimitCommand";
26
27
  import { CreateMonitorCommandInput, CreateMonitorCommandOutput } from "./commands/CreateMonitorCommand";
27
28
  import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
28
29
  import { CreateQueueEnvironmentCommandInput, CreateQueueEnvironmentCommandOutput } from "./commands/CreateQueueEnvironmentCommand";
29
30
  import { CreateQueueFleetAssociationCommandInput, CreateQueueFleetAssociationCommandOutput } from "./commands/CreateQueueFleetAssociationCommand";
31
+ import { CreateQueueLimitAssociationCommandInput, CreateQueueLimitAssociationCommandOutput } from "./commands/CreateQueueLimitAssociationCommand";
30
32
  import { CreateStorageProfileCommandInput, CreateStorageProfileCommandOutput } from "./commands/CreateStorageProfileCommand";
31
33
  import { CreateWorkerCommandInput, CreateWorkerCommandOutput } from "./commands/CreateWorkerCommand";
32
34
  import { DeleteBudgetCommandInput, DeleteBudgetCommandOutput } from "./commands/DeleteBudgetCommand";
33
35
  import { DeleteFarmCommandInput, DeleteFarmCommandOutput } from "./commands/DeleteFarmCommand";
34
36
  import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
35
37
  import { DeleteLicenseEndpointCommandInput, DeleteLicenseEndpointCommandOutput } from "./commands/DeleteLicenseEndpointCommand";
38
+ import { DeleteLimitCommandInput, DeleteLimitCommandOutput } from "./commands/DeleteLimitCommand";
36
39
  import { DeleteMeteredProductCommandInput, DeleteMeteredProductCommandOutput } from "./commands/DeleteMeteredProductCommand";
37
40
  import { DeleteMonitorCommandInput, DeleteMonitorCommandOutput } from "./commands/DeleteMonitorCommand";
38
41
  import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/DeleteQueueCommand";
39
42
  import { DeleteQueueEnvironmentCommandInput, DeleteQueueEnvironmentCommandOutput } from "./commands/DeleteQueueEnvironmentCommand";
40
43
  import { DeleteQueueFleetAssociationCommandInput, DeleteQueueFleetAssociationCommandOutput } from "./commands/DeleteQueueFleetAssociationCommand";
44
+ import { DeleteQueueLimitAssociationCommandInput, DeleteQueueLimitAssociationCommandOutput } from "./commands/DeleteQueueLimitAssociationCommand";
41
45
  import { DeleteStorageProfileCommandInput, DeleteStorageProfileCommandOutput } from "./commands/DeleteStorageProfileCommand";
42
46
  import { DeleteWorkerCommandInput, DeleteWorkerCommandOutput } from "./commands/DeleteWorkerCommand";
43
47
  import { DisassociateMemberFromFarmCommandInput, DisassociateMemberFromFarmCommandOutput } from "./commands/DisassociateMemberFromFarmCommand";
@@ -49,10 +53,12 @@ import { GetFarmCommandInput, GetFarmCommandOutput } from "./commands/GetFarmCom
49
53
  import { GetFleetCommandInput, GetFleetCommandOutput } from "./commands/GetFleetCommand";
50
54
  import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
51
55
  import { GetLicenseEndpointCommandInput, GetLicenseEndpointCommandOutput } from "./commands/GetLicenseEndpointCommand";
56
+ import { GetLimitCommandInput, GetLimitCommandOutput } from "./commands/GetLimitCommand";
52
57
  import { GetMonitorCommandInput, GetMonitorCommandOutput } from "./commands/GetMonitorCommand";
53
58
  import { GetQueueCommandInput, GetQueueCommandOutput } from "./commands/GetQueueCommand";
54
59
  import { GetQueueEnvironmentCommandInput, GetQueueEnvironmentCommandOutput } from "./commands/GetQueueEnvironmentCommand";
55
60
  import { GetQueueFleetAssociationCommandInput, GetQueueFleetAssociationCommandOutput } from "./commands/GetQueueFleetAssociationCommand";
61
+ import { GetQueueLimitAssociationCommandInput, GetQueueLimitAssociationCommandOutput } from "./commands/GetQueueLimitAssociationCommand";
56
62
  import { GetSessionActionCommandInput, GetSessionActionCommandOutput } from "./commands/GetSessionActionCommand";
57
63
  import { GetSessionCommandInput, GetSessionCommandOutput } from "./commands/GetSessionCommand";
58
64
  import { GetSessionsStatisticsAggregationCommandInput, GetSessionsStatisticsAggregationCommandOutput } from "./commands/GetSessionsStatisticsAggregationCommand";
@@ -71,10 +77,12 @@ import { ListJobMembersCommandInput, ListJobMembersCommandOutput } from "./comma
71
77
  import { ListJobParameterDefinitionsCommandInput, ListJobParameterDefinitionsCommandOutput } from "./commands/ListJobParameterDefinitionsCommand";
72
78
  import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
73
79
  import { ListLicenseEndpointsCommandInput, ListLicenseEndpointsCommandOutput } from "./commands/ListLicenseEndpointsCommand";
80
+ import { ListLimitsCommandInput, ListLimitsCommandOutput } from "./commands/ListLimitsCommand";
74
81
  import { ListMeteredProductsCommandInput, ListMeteredProductsCommandOutput } from "./commands/ListMeteredProductsCommand";
75
82
  import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "./commands/ListMonitorsCommand";
76
83
  import { ListQueueEnvironmentsCommandInput, ListQueueEnvironmentsCommandOutput } from "./commands/ListQueueEnvironmentsCommand";
77
84
  import { ListQueueFleetAssociationsCommandInput, ListQueueFleetAssociationsCommandOutput } from "./commands/ListQueueFleetAssociationsCommand";
85
+ import { ListQueueLimitAssociationsCommandInput, ListQueueLimitAssociationsCommandOutput } from "./commands/ListQueueLimitAssociationsCommand";
78
86
  import { ListQueueMembersCommandInput, ListQueueMembersCommandOutput } from "./commands/ListQueueMembersCommand";
79
87
  import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
80
88
  import { ListSessionActionsCommandInput, ListSessionActionsCommandOutput } from "./commands/ListSessionActionsCommand";
@@ -100,10 +108,12 @@ import { UpdateBudgetCommandInput, UpdateBudgetCommandOutput } from "./commands/
100
108
  import { UpdateFarmCommandInput, UpdateFarmCommandOutput } from "./commands/UpdateFarmCommand";
101
109
  import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
102
110
  import { UpdateJobCommandInput, UpdateJobCommandOutput } from "./commands/UpdateJobCommand";
111
+ import { UpdateLimitCommandInput, UpdateLimitCommandOutput } from "./commands/UpdateLimitCommand";
103
112
  import { UpdateMonitorCommandInput, UpdateMonitorCommandOutput } from "./commands/UpdateMonitorCommand";
104
113
  import { UpdateQueueCommandInput, UpdateQueueCommandOutput } from "./commands/UpdateQueueCommand";
105
114
  import { UpdateQueueEnvironmentCommandInput, UpdateQueueEnvironmentCommandOutput } from "./commands/UpdateQueueEnvironmentCommand";
106
115
  import { UpdateQueueFleetAssociationCommandInput, UpdateQueueFleetAssociationCommandOutput } from "./commands/UpdateQueueFleetAssociationCommand";
116
+ import { UpdateQueueLimitAssociationCommandInput, UpdateQueueLimitAssociationCommandOutput } from "./commands/UpdateQueueLimitAssociationCommand";
107
117
  import { UpdateSessionCommandInput, UpdateSessionCommandOutput } from "./commands/UpdateSessionCommand";
108
118
  import { UpdateStepCommandInput, UpdateStepCommandOutput } from "./commands/UpdateStepCommand";
109
119
  import { UpdateStorageProfileCommandInput, UpdateStorageProfileCommandOutput } from "./commands/UpdateStorageProfileCommand";
@@ -116,11 +126,11 @@ export { __Client };
116
126
  /**
117
127
  * @public
118
128
  */
119
- export type ServiceInputTypes = AssociateMemberToFarmCommandInput | AssociateMemberToFleetCommandInput | AssociateMemberToJobCommandInput | AssociateMemberToQueueCommandInput | AssumeFleetRoleForReadCommandInput | AssumeFleetRoleForWorkerCommandInput | AssumeQueueRoleForReadCommandInput | AssumeQueueRoleForUserCommandInput | AssumeQueueRoleForWorkerCommandInput | BatchGetJobEntityCommandInput | CopyJobTemplateCommandInput | CreateBudgetCommandInput | CreateFarmCommandInput | CreateFleetCommandInput | CreateJobCommandInput | CreateLicenseEndpointCommandInput | CreateMonitorCommandInput | CreateQueueCommandInput | CreateQueueEnvironmentCommandInput | CreateQueueFleetAssociationCommandInput | CreateStorageProfileCommandInput | CreateWorkerCommandInput | DeleteBudgetCommandInput | DeleteFarmCommandInput | DeleteFleetCommandInput | DeleteLicenseEndpointCommandInput | DeleteMeteredProductCommandInput | DeleteMonitorCommandInput | DeleteQueueCommandInput | DeleteQueueEnvironmentCommandInput | DeleteQueueFleetAssociationCommandInput | DeleteStorageProfileCommandInput | DeleteWorkerCommandInput | DisassociateMemberFromFarmCommandInput | DisassociateMemberFromFleetCommandInput | DisassociateMemberFromJobCommandInput | DisassociateMemberFromQueueCommandInput | GetBudgetCommandInput | GetFarmCommandInput | GetFleetCommandInput | GetJobCommandInput | GetLicenseEndpointCommandInput | GetMonitorCommandInput | GetQueueCommandInput | GetQueueEnvironmentCommandInput | GetQueueFleetAssociationCommandInput | GetSessionActionCommandInput | GetSessionCommandInput | GetSessionsStatisticsAggregationCommandInput | GetStepCommandInput | GetStorageProfileCommandInput | GetStorageProfileForQueueCommandInput | GetTaskCommandInput | GetWorkerCommandInput | ListAvailableMeteredProductsCommandInput | ListBudgetsCommandInput | ListFarmMembersCommandInput | ListFarmsCommandInput | ListFleetMembersCommandInput | ListFleetsCommandInput | ListJobMembersCommandInput | ListJobParameterDefinitionsCommandInput | ListJobsCommandInput | ListLicenseEndpointsCommandInput | ListMeteredProductsCommandInput | ListMonitorsCommandInput | ListQueueEnvironmentsCommandInput | ListQueueFleetAssociationsCommandInput | ListQueueMembersCommandInput | ListQueuesCommandInput | ListSessionActionsCommandInput | ListSessionsCommandInput | ListSessionsForWorkerCommandInput | ListStepConsumersCommandInput | ListStepDependenciesCommandInput | ListStepsCommandInput | ListStorageProfilesCommandInput | ListStorageProfilesForQueueCommandInput | ListTagsForResourceCommandInput | ListTasksCommandInput | ListWorkersCommandInput | PutMeteredProductCommandInput | SearchJobsCommandInput | SearchStepsCommandInput | SearchTasksCommandInput | SearchWorkersCommandInput | StartSessionsStatisticsAggregationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBudgetCommandInput | UpdateFarmCommandInput | UpdateFleetCommandInput | UpdateJobCommandInput | UpdateMonitorCommandInput | UpdateQueueCommandInput | UpdateQueueEnvironmentCommandInput | UpdateQueueFleetAssociationCommandInput | UpdateSessionCommandInput | UpdateStepCommandInput | UpdateStorageProfileCommandInput | UpdateTaskCommandInput | UpdateWorkerCommandInput | UpdateWorkerScheduleCommandInput;
129
+ export type ServiceInputTypes = AssociateMemberToFarmCommandInput | AssociateMemberToFleetCommandInput | AssociateMemberToJobCommandInput | AssociateMemberToQueueCommandInput | AssumeFleetRoleForReadCommandInput | AssumeFleetRoleForWorkerCommandInput | AssumeQueueRoleForReadCommandInput | AssumeQueueRoleForUserCommandInput | AssumeQueueRoleForWorkerCommandInput | BatchGetJobEntityCommandInput | CopyJobTemplateCommandInput | CreateBudgetCommandInput | CreateFarmCommandInput | CreateFleetCommandInput | CreateJobCommandInput | CreateLicenseEndpointCommandInput | CreateLimitCommandInput | CreateMonitorCommandInput | CreateQueueCommandInput | CreateQueueEnvironmentCommandInput | CreateQueueFleetAssociationCommandInput | CreateQueueLimitAssociationCommandInput | CreateStorageProfileCommandInput | CreateWorkerCommandInput | DeleteBudgetCommandInput | DeleteFarmCommandInput | DeleteFleetCommandInput | DeleteLicenseEndpointCommandInput | DeleteLimitCommandInput | DeleteMeteredProductCommandInput | DeleteMonitorCommandInput | DeleteQueueCommandInput | DeleteQueueEnvironmentCommandInput | DeleteQueueFleetAssociationCommandInput | DeleteQueueLimitAssociationCommandInput | DeleteStorageProfileCommandInput | DeleteWorkerCommandInput | DisassociateMemberFromFarmCommandInput | DisassociateMemberFromFleetCommandInput | DisassociateMemberFromJobCommandInput | DisassociateMemberFromQueueCommandInput | GetBudgetCommandInput | GetFarmCommandInput | GetFleetCommandInput | GetJobCommandInput | GetLicenseEndpointCommandInput | GetLimitCommandInput | GetMonitorCommandInput | GetQueueCommandInput | GetQueueEnvironmentCommandInput | GetQueueFleetAssociationCommandInput | GetQueueLimitAssociationCommandInput | GetSessionActionCommandInput | GetSessionCommandInput | GetSessionsStatisticsAggregationCommandInput | GetStepCommandInput | GetStorageProfileCommandInput | GetStorageProfileForQueueCommandInput | GetTaskCommandInput | GetWorkerCommandInput | ListAvailableMeteredProductsCommandInput | ListBudgetsCommandInput | ListFarmMembersCommandInput | ListFarmsCommandInput | ListFleetMembersCommandInput | ListFleetsCommandInput | ListJobMembersCommandInput | ListJobParameterDefinitionsCommandInput | ListJobsCommandInput | ListLicenseEndpointsCommandInput | ListLimitsCommandInput | ListMeteredProductsCommandInput | ListMonitorsCommandInput | ListQueueEnvironmentsCommandInput | ListQueueFleetAssociationsCommandInput | ListQueueLimitAssociationsCommandInput | ListQueueMembersCommandInput | ListQueuesCommandInput | ListSessionActionsCommandInput | ListSessionsCommandInput | ListSessionsForWorkerCommandInput | ListStepConsumersCommandInput | ListStepDependenciesCommandInput | ListStepsCommandInput | ListStorageProfilesCommandInput | ListStorageProfilesForQueueCommandInput | ListTagsForResourceCommandInput | ListTasksCommandInput | ListWorkersCommandInput | PutMeteredProductCommandInput | SearchJobsCommandInput | SearchStepsCommandInput | SearchTasksCommandInput | SearchWorkersCommandInput | StartSessionsStatisticsAggregationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBudgetCommandInput | UpdateFarmCommandInput | UpdateFleetCommandInput | UpdateJobCommandInput | UpdateLimitCommandInput | UpdateMonitorCommandInput | UpdateQueueCommandInput | UpdateQueueEnvironmentCommandInput | UpdateQueueFleetAssociationCommandInput | UpdateQueueLimitAssociationCommandInput | UpdateSessionCommandInput | UpdateStepCommandInput | UpdateStorageProfileCommandInput | UpdateTaskCommandInput | UpdateWorkerCommandInput | UpdateWorkerScheduleCommandInput;
120
130
  /**
121
131
  * @public
122
132
  */
123
- export type ServiceOutputTypes = AssociateMemberToFarmCommandOutput | AssociateMemberToFleetCommandOutput | AssociateMemberToJobCommandOutput | AssociateMemberToQueueCommandOutput | AssumeFleetRoleForReadCommandOutput | AssumeFleetRoleForWorkerCommandOutput | AssumeQueueRoleForReadCommandOutput | AssumeQueueRoleForUserCommandOutput | AssumeQueueRoleForWorkerCommandOutput | BatchGetJobEntityCommandOutput | CopyJobTemplateCommandOutput | CreateBudgetCommandOutput | CreateFarmCommandOutput | CreateFleetCommandOutput | CreateJobCommandOutput | CreateLicenseEndpointCommandOutput | CreateMonitorCommandOutput | CreateQueueCommandOutput | CreateQueueEnvironmentCommandOutput | CreateQueueFleetAssociationCommandOutput | CreateStorageProfileCommandOutput | CreateWorkerCommandOutput | DeleteBudgetCommandOutput | DeleteFarmCommandOutput | DeleteFleetCommandOutput | DeleteLicenseEndpointCommandOutput | DeleteMeteredProductCommandOutput | DeleteMonitorCommandOutput | DeleteQueueCommandOutput | DeleteQueueEnvironmentCommandOutput | DeleteQueueFleetAssociationCommandOutput | DeleteStorageProfileCommandOutput | DeleteWorkerCommandOutput | DisassociateMemberFromFarmCommandOutput | DisassociateMemberFromFleetCommandOutput | DisassociateMemberFromJobCommandOutput | DisassociateMemberFromQueueCommandOutput | GetBudgetCommandOutput | GetFarmCommandOutput | GetFleetCommandOutput | GetJobCommandOutput | GetLicenseEndpointCommandOutput | GetMonitorCommandOutput | GetQueueCommandOutput | GetQueueEnvironmentCommandOutput | GetQueueFleetAssociationCommandOutput | GetSessionActionCommandOutput | GetSessionCommandOutput | GetSessionsStatisticsAggregationCommandOutput | GetStepCommandOutput | GetStorageProfileCommandOutput | GetStorageProfileForQueueCommandOutput | GetTaskCommandOutput | GetWorkerCommandOutput | ListAvailableMeteredProductsCommandOutput | ListBudgetsCommandOutput | ListFarmMembersCommandOutput | ListFarmsCommandOutput | ListFleetMembersCommandOutput | ListFleetsCommandOutput | ListJobMembersCommandOutput | ListJobParameterDefinitionsCommandOutput | ListJobsCommandOutput | ListLicenseEndpointsCommandOutput | ListMeteredProductsCommandOutput | ListMonitorsCommandOutput | ListQueueEnvironmentsCommandOutput | ListQueueFleetAssociationsCommandOutput | ListQueueMembersCommandOutput | ListQueuesCommandOutput | ListSessionActionsCommandOutput | ListSessionsCommandOutput | ListSessionsForWorkerCommandOutput | ListStepConsumersCommandOutput | ListStepDependenciesCommandOutput | ListStepsCommandOutput | ListStorageProfilesCommandOutput | ListStorageProfilesForQueueCommandOutput | ListTagsForResourceCommandOutput | ListTasksCommandOutput | ListWorkersCommandOutput | PutMeteredProductCommandOutput | SearchJobsCommandOutput | SearchStepsCommandOutput | SearchTasksCommandOutput | SearchWorkersCommandOutput | StartSessionsStatisticsAggregationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBudgetCommandOutput | UpdateFarmCommandOutput | UpdateFleetCommandOutput | UpdateJobCommandOutput | UpdateMonitorCommandOutput | UpdateQueueCommandOutput | UpdateQueueEnvironmentCommandOutput | UpdateQueueFleetAssociationCommandOutput | UpdateSessionCommandOutput | UpdateStepCommandOutput | UpdateStorageProfileCommandOutput | UpdateTaskCommandOutput | UpdateWorkerCommandOutput | UpdateWorkerScheduleCommandOutput;
133
+ export type ServiceOutputTypes = AssociateMemberToFarmCommandOutput | AssociateMemberToFleetCommandOutput | AssociateMemberToJobCommandOutput | AssociateMemberToQueueCommandOutput | AssumeFleetRoleForReadCommandOutput | AssumeFleetRoleForWorkerCommandOutput | AssumeQueueRoleForReadCommandOutput | AssumeQueueRoleForUserCommandOutput | AssumeQueueRoleForWorkerCommandOutput | BatchGetJobEntityCommandOutput | CopyJobTemplateCommandOutput | CreateBudgetCommandOutput | CreateFarmCommandOutput | CreateFleetCommandOutput | CreateJobCommandOutput | CreateLicenseEndpointCommandOutput | CreateLimitCommandOutput | CreateMonitorCommandOutput | CreateQueueCommandOutput | CreateQueueEnvironmentCommandOutput | CreateQueueFleetAssociationCommandOutput | CreateQueueLimitAssociationCommandOutput | CreateStorageProfileCommandOutput | CreateWorkerCommandOutput | DeleteBudgetCommandOutput | DeleteFarmCommandOutput | DeleteFleetCommandOutput | DeleteLicenseEndpointCommandOutput | DeleteLimitCommandOutput | DeleteMeteredProductCommandOutput | DeleteMonitorCommandOutput | DeleteQueueCommandOutput | DeleteQueueEnvironmentCommandOutput | DeleteQueueFleetAssociationCommandOutput | DeleteQueueLimitAssociationCommandOutput | DeleteStorageProfileCommandOutput | DeleteWorkerCommandOutput | DisassociateMemberFromFarmCommandOutput | DisassociateMemberFromFleetCommandOutput | DisassociateMemberFromJobCommandOutput | DisassociateMemberFromQueueCommandOutput | GetBudgetCommandOutput | GetFarmCommandOutput | GetFleetCommandOutput | GetJobCommandOutput | GetLicenseEndpointCommandOutput | GetLimitCommandOutput | GetMonitorCommandOutput | GetQueueCommandOutput | GetQueueEnvironmentCommandOutput | GetQueueFleetAssociationCommandOutput | GetQueueLimitAssociationCommandOutput | GetSessionActionCommandOutput | GetSessionCommandOutput | GetSessionsStatisticsAggregationCommandOutput | GetStepCommandOutput | GetStorageProfileCommandOutput | GetStorageProfileForQueueCommandOutput | GetTaskCommandOutput | GetWorkerCommandOutput | ListAvailableMeteredProductsCommandOutput | ListBudgetsCommandOutput | ListFarmMembersCommandOutput | ListFarmsCommandOutput | ListFleetMembersCommandOutput | ListFleetsCommandOutput | ListJobMembersCommandOutput | ListJobParameterDefinitionsCommandOutput | ListJobsCommandOutput | ListLicenseEndpointsCommandOutput | ListLimitsCommandOutput | ListMeteredProductsCommandOutput | ListMonitorsCommandOutput | ListQueueEnvironmentsCommandOutput | ListQueueFleetAssociationsCommandOutput | ListQueueLimitAssociationsCommandOutput | ListQueueMembersCommandOutput | ListQueuesCommandOutput | ListSessionActionsCommandOutput | ListSessionsCommandOutput | ListSessionsForWorkerCommandOutput | ListStepConsumersCommandOutput | ListStepDependenciesCommandOutput | ListStepsCommandOutput | ListStorageProfilesCommandOutput | ListStorageProfilesForQueueCommandOutput | ListTagsForResourceCommandOutput | ListTasksCommandOutput | ListWorkersCommandOutput | PutMeteredProductCommandOutput | SearchJobsCommandOutput | SearchStepsCommandOutput | SearchTasksCommandOutput | SearchWorkersCommandOutput | StartSessionsStatisticsAggregationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBudgetCommandOutput | UpdateFarmCommandOutput | UpdateFleetCommandOutput | UpdateJobCommandOutput | UpdateLimitCommandOutput | UpdateMonitorCommandOutput | UpdateQueueCommandOutput | UpdateQueueEnvironmentCommandOutput | UpdateQueueFleetAssociationCommandOutput | UpdateQueueLimitAssociationCommandOutput | UpdateSessionCommandOutput | UpdateStepCommandOutput | UpdateStorageProfileCommandOutput | UpdateTaskCommandOutput | UpdateWorkerCommandOutput | UpdateWorkerScheduleCommandOutput;
124
134
  /**
125
135
  * @public
126
136
  */
@@ -27,7 +27,7 @@ declare const CreateJobCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Creates a job. A job is a set of instructions that AWS Deadline Cloud uses to schedule
30
+ * <p>Creates a job. A job is a set of instructions that Deadline Cloud uses to schedule
31
31
  * and run work on available workers. For more information, see <a href="https://docs.aws.amazon.com/deadline-cloud/latest/userguide/deadline-cloud-jobs.html">Deadline Cloud
32
32
  * jobs</a>.</p>
33
33
  * @example
@@ -70,6 +70,7 @@ declare const CreateJobCommand_base: {
70
70
  * targetTaskRunStatus: "READY" || "SUSPENDED",
71
71
  * maxFailedTasksCount: Number("int"),
72
72
  * maxRetriesPerTask: Number("int"),
73
+ * maxWorkerCount: Number("int"),
73
74
  * sourceJobId: "STRING_VALUE",
74
75
  * };
75
76
  * const command = new CreateJobCommand(input);
@@ -0,0 +1,100 @@
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 { CreateLimitRequest, CreateLimitResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateLimitCommand}.
14
+ */
15
+ export interface CreateLimitCommandInput extends CreateLimitRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateLimitCommand}.
21
+ */
22
+ export interface CreateLimitCommandOutput extends CreateLimitResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateLimitCommand_base: {
25
+ new (input: CreateLimitCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLimitCommandInput, CreateLimitCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CreateLimitCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLimitCommandInput, CreateLimitCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates a limit that manages the distribution of shared resources, such as floating
31
+ * licenses. A limit can throttle work assignments, help manage workloads, and track current
32
+ * usage. Before you use a limit, you must associate the limit with one or more queues. </p>
33
+ * <p>You must add the <code>amountRequirementName</code> to a step in a job template to
34
+ * declare the limit requirement.</p>
35
+ * @example
36
+ * Use a bare-bones client and the command you need to make an API call.
37
+ * ```javascript
38
+ * import { DeadlineClient, CreateLimitCommand } from "@aws-sdk/client-deadline"; // ES Modules import
39
+ * // const { DeadlineClient, CreateLimitCommand } = require("@aws-sdk/client-deadline"); // CommonJS import
40
+ * const client = new DeadlineClient(config);
41
+ * const input = { // CreateLimitRequest
42
+ * clientToken: "STRING_VALUE",
43
+ * displayName: "STRING_VALUE", // required
44
+ * amountRequirementName: "STRING_VALUE", // required
45
+ * maxCount: Number("int"), // required
46
+ * farmId: "STRING_VALUE", // required
47
+ * description: "STRING_VALUE",
48
+ * };
49
+ * const command = new CreateLimitCommand(input);
50
+ * const response = await client.send(command);
51
+ * // { // CreateLimitResponse
52
+ * // limitId: "STRING_VALUE", // required
53
+ * // };
54
+ *
55
+ * ```
56
+ *
57
+ * @param CreateLimitCommandInput - {@link CreateLimitCommandInput}
58
+ * @returns {@link CreateLimitCommandOutput}
59
+ * @see {@link CreateLimitCommandInput} for command's `input` shape.
60
+ * @see {@link CreateLimitCommandOutput} for command's `response` shape.
61
+ * @see {@link DeadlineClientResolvedConfig | config} for DeadlineClient's `config` shape.
62
+ *
63
+ * @throws {@link AccessDeniedException} (client fault)
64
+ * <p>You don't have permission to perform the action.</p>
65
+ *
66
+ * @throws {@link InternalServerErrorException} (server fault)
67
+ * <p>Deadline Cloud can't process your request right now. Try again later.</p>
68
+ *
69
+ * @throws {@link ResourceNotFoundException} (client fault)
70
+ * <p>The requested resource can't be found.</p>
71
+ *
72
+ * @throws {@link ServiceQuotaExceededException} (client fault)
73
+ * <p>You exceeded your service quota. Service quotas, also referred to as limits, are the
74
+ * maximum number of service resources or operations for your Amazon Web Services account.</p>
75
+ *
76
+ * @throws {@link ThrottlingException} (client fault)
77
+ * <p>Your request exceeded a request rate quota.</p>
78
+ *
79
+ * @throws {@link ValidationException} (client fault)
80
+ * <p>The request isn't valid. This can occur if your request contains malformed JSON or
81
+ * unsupported characters.</p>
82
+ *
83
+ * @throws {@link DeadlineServiceException}
84
+ * <p>Base exception class for all service exceptions from Deadline service.</p>
85
+ *
86
+ * @public
87
+ */
88
+ export declare class CreateLimitCommand extends CreateLimitCommand_base {
89
+ /** @internal type navigation helper, not in runtime. */
90
+ protected static __types: {
91
+ api: {
92
+ input: CreateLimitRequest;
93
+ output: CreateLimitResponse;
94
+ };
95
+ sdk: {
96
+ input: CreateLimitCommandInput;
97
+ output: CreateLimitCommandOutput;
98
+ };
99
+ };
100
+ }
@@ -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 { CreateQueueLimitAssociationRequest, CreateQueueLimitAssociationResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateQueueLimitAssociationCommand}.
14
+ */
15
+ export interface CreateQueueLimitAssociationCommandInput extends CreateQueueLimitAssociationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateQueueLimitAssociationCommand}.
21
+ */
22
+ export interface CreateQueueLimitAssociationCommandOutput extends CreateQueueLimitAssociationResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateQueueLimitAssociationCommand_base: {
25
+ new (input: CreateQueueLimitAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateQueueLimitAssociationCommandInput, CreateQueueLimitAssociationCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CreateQueueLimitAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateQueueLimitAssociationCommandInput, CreateQueueLimitAssociationCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Associates a limit with a particular queue. After the limit is associated, all workers
31
+ * for jobs that specify the limit associated with the queue are subject to the limit. You
32
+ * can't associate two limits with the same <code>amountRequirementName</code> to the same
33
+ * queue.</p>
34
+ * @example
35
+ * Use a bare-bones client and the command you need to make an API call.
36
+ * ```javascript
37
+ * import { DeadlineClient, CreateQueueLimitAssociationCommand } from "@aws-sdk/client-deadline"; // ES Modules import
38
+ * // const { DeadlineClient, CreateQueueLimitAssociationCommand } = require("@aws-sdk/client-deadline"); // CommonJS import
39
+ * const client = new DeadlineClient(config);
40
+ * const input = { // CreateQueueLimitAssociationRequest
41
+ * farmId: "STRING_VALUE", // required
42
+ * queueId: "STRING_VALUE", // required
43
+ * limitId: "STRING_VALUE", // required
44
+ * };
45
+ * const command = new CreateQueueLimitAssociationCommand(input);
46
+ * const response = await client.send(command);
47
+ * // {};
48
+ *
49
+ * ```
50
+ *
51
+ * @param CreateQueueLimitAssociationCommandInput - {@link CreateQueueLimitAssociationCommandInput}
52
+ * @returns {@link CreateQueueLimitAssociationCommandOutput}
53
+ * @see {@link CreateQueueLimitAssociationCommandInput} for command's `input` shape.
54
+ * @see {@link CreateQueueLimitAssociationCommandOutput} 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 CreateQueueLimitAssociationCommand extends CreateQueueLimitAssociationCommand_base {
79
+ /** @internal type navigation helper, not in runtime. */
80
+ protected static __types: {
81
+ api: {
82
+ input: CreateQueueLimitAssociationRequest;
83
+ output: {};
84
+ };
85
+ sdk: {
86
+ input: CreateQueueLimitAssociationCommandInput;
87
+ output: CreateQueueLimitAssociationCommandOutput;
88
+ };
89
+ };
90
+ }
@@ -0,0 +1,85 @@
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 { DeleteLimitRequest, DeleteLimitResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteLimitCommand}.
14
+ */
15
+ export interface DeleteLimitCommandInput extends DeleteLimitRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteLimitCommand}.
21
+ */
22
+ export interface DeleteLimitCommandOutput extends DeleteLimitResponse, __MetadataBearer {
23
+ }
24
+ declare const DeleteLimitCommand_base: {
25
+ new (input: DeleteLimitCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLimitCommandInput, DeleteLimitCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DeleteLimitCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLimitCommandInput, DeleteLimitCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Removes a limit from the specified farm. Before you delete a limit you must use the
31
+ * <code>DeleteQueueLimitAssociation</code> operation to remove the association with any
32
+ * queues. </p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { DeadlineClient, DeleteLimitCommand } from "@aws-sdk/client-deadline"; // ES Modules import
37
+ * // const { DeadlineClient, DeleteLimitCommand } = require("@aws-sdk/client-deadline"); // CommonJS import
38
+ * const client = new DeadlineClient(config);
39
+ * const input = { // DeleteLimitRequest
40
+ * farmId: "STRING_VALUE", // required
41
+ * limitId: "STRING_VALUE", // required
42
+ * };
43
+ * const command = new DeleteLimitCommand(input);
44
+ * const response = await client.send(command);
45
+ * // {};
46
+ *
47
+ * ```
48
+ *
49
+ * @param DeleteLimitCommandInput - {@link DeleteLimitCommandInput}
50
+ * @returns {@link DeleteLimitCommandOutput}
51
+ * @see {@link DeleteLimitCommandInput} for command's `input` shape.
52
+ * @see {@link DeleteLimitCommandOutput} for command's `response` shape.
53
+ * @see {@link DeadlineClientResolvedConfig | config} for DeadlineClient's `config` shape.
54
+ *
55
+ * @throws {@link AccessDeniedException} (client fault)
56
+ * <p>You don't have permission to perform the action.</p>
57
+ *
58
+ * @throws {@link InternalServerErrorException} (server fault)
59
+ * <p>Deadline Cloud can't process your request right now. Try again later.</p>
60
+ *
61
+ * @throws {@link ThrottlingException} (client fault)
62
+ * <p>Your request exceeded a request rate quota.</p>
63
+ *
64
+ * @throws {@link ValidationException} (client fault)
65
+ * <p>The request isn't valid. This can occur if your request contains malformed JSON or
66
+ * unsupported characters.</p>
67
+ *
68
+ * @throws {@link DeadlineServiceException}
69
+ * <p>Base exception class for all service exceptions from Deadline service.</p>
70
+ *
71
+ * @public
72
+ */
73
+ export declare class DeleteLimitCommand extends DeleteLimitCommand_base {
74
+ /** @internal type navigation helper, not in runtime. */
75
+ protected static __types: {
76
+ api: {
77
+ input: DeleteLimitRequest;
78
+ output: {};
79
+ };
80
+ sdk: {
81
+ input: DeleteLimitCommandInput;
82
+ output: DeleteLimitCommandOutput;
83
+ };
84
+ };
85
+ }