@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
@@ -16,21 +16,25 @@ import { CreateFarmCommandInput, CreateFarmCommandOutput } from "../commands/Cre
16
16
  import { CreateFleetCommandInput, CreateFleetCommandOutput } from "../commands/CreateFleetCommand";
17
17
  import { CreateJobCommandInput, CreateJobCommandOutput } from "../commands/CreateJobCommand";
18
18
  import { CreateLicenseEndpointCommandInput, CreateLicenseEndpointCommandOutput } from "../commands/CreateLicenseEndpointCommand";
19
+ import { CreateLimitCommandInput, CreateLimitCommandOutput } from "../commands/CreateLimitCommand";
19
20
  import { CreateMonitorCommandInput, CreateMonitorCommandOutput } from "../commands/CreateMonitorCommand";
20
21
  import { CreateQueueCommandInput, CreateQueueCommandOutput } from "../commands/CreateQueueCommand";
21
22
  import { CreateQueueEnvironmentCommandInput, CreateQueueEnvironmentCommandOutput } from "../commands/CreateQueueEnvironmentCommand";
22
23
  import { CreateQueueFleetAssociationCommandInput, CreateQueueFleetAssociationCommandOutput } from "../commands/CreateQueueFleetAssociationCommand";
24
+ import { CreateQueueLimitAssociationCommandInput, CreateQueueLimitAssociationCommandOutput } from "../commands/CreateQueueLimitAssociationCommand";
23
25
  import { CreateStorageProfileCommandInput, CreateStorageProfileCommandOutput } from "../commands/CreateStorageProfileCommand";
24
26
  import { CreateWorkerCommandInput, CreateWorkerCommandOutput } from "../commands/CreateWorkerCommand";
25
27
  import { DeleteBudgetCommandInput, DeleteBudgetCommandOutput } from "../commands/DeleteBudgetCommand";
26
28
  import { DeleteFarmCommandInput, DeleteFarmCommandOutput } from "../commands/DeleteFarmCommand";
27
29
  import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "../commands/DeleteFleetCommand";
28
30
  import { DeleteLicenseEndpointCommandInput, DeleteLicenseEndpointCommandOutput } from "../commands/DeleteLicenseEndpointCommand";
31
+ import { DeleteLimitCommandInput, DeleteLimitCommandOutput } from "../commands/DeleteLimitCommand";
29
32
  import { DeleteMeteredProductCommandInput, DeleteMeteredProductCommandOutput } from "../commands/DeleteMeteredProductCommand";
30
33
  import { DeleteMonitorCommandInput, DeleteMonitorCommandOutput } from "../commands/DeleteMonitorCommand";
31
34
  import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "../commands/DeleteQueueCommand";
32
35
  import { DeleteQueueEnvironmentCommandInput, DeleteQueueEnvironmentCommandOutput } from "../commands/DeleteQueueEnvironmentCommand";
33
36
  import { DeleteQueueFleetAssociationCommandInput, DeleteQueueFleetAssociationCommandOutput } from "../commands/DeleteQueueFleetAssociationCommand";
37
+ import { DeleteQueueLimitAssociationCommandInput, DeleteQueueLimitAssociationCommandOutput } from "../commands/DeleteQueueLimitAssociationCommand";
34
38
  import { DeleteStorageProfileCommandInput, DeleteStorageProfileCommandOutput } from "../commands/DeleteStorageProfileCommand";
35
39
  import { DeleteWorkerCommandInput, DeleteWorkerCommandOutput } from "../commands/DeleteWorkerCommand";
36
40
  import { DisassociateMemberFromFarmCommandInput, DisassociateMemberFromFarmCommandOutput } from "../commands/DisassociateMemberFromFarmCommand";
@@ -42,10 +46,12 @@ import { GetFarmCommandInput, GetFarmCommandOutput } from "../commands/GetFarmCo
42
46
  import { GetFleetCommandInput, GetFleetCommandOutput } from "../commands/GetFleetCommand";
43
47
  import { GetJobCommandInput, GetJobCommandOutput } from "../commands/GetJobCommand";
44
48
  import { GetLicenseEndpointCommandInput, GetLicenseEndpointCommandOutput } from "../commands/GetLicenseEndpointCommand";
49
+ import { GetLimitCommandInput, GetLimitCommandOutput } from "../commands/GetLimitCommand";
45
50
  import { GetMonitorCommandInput, GetMonitorCommandOutput } from "../commands/GetMonitorCommand";
46
51
  import { GetQueueCommandInput, GetQueueCommandOutput } from "../commands/GetQueueCommand";
47
52
  import { GetQueueEnvironmentCommandInput, GetQueueEnvironmentCommandOutput } from "../commands/GetQueueEnvironmentCommand";
48
53
  import { GetQueueFleetAssociationCommandInput, GetQueueFleetAssociationCommandOutput } from "../commands/GetQueueFleetAssociationCommand";
54
+ import { GetQueueLimitAssociationCommandInput, GetQueueLimitAssociationCommandOutput } from "../commands/GetQueueLimitAssociationCommand";
49
55
  import { GetSessionActionCommandInput, GetSessionActionCommandOutput } from "../commands/GetSessionActionCommand";
50
56
  import { GetSessionCommandInput, GetSessionCommandOutput } from "../commands/GetSessionCommand";
51
57
  import { GetSessionsStatisticsAggregationCommandInput, GetSessionsStatisticsAggregationCommandOutput } from "../commands/GetSessionsStatisticsAggregationCommand";
@@ -64,10 +70,12 @@ import { ListJobMembersCommandInput, ListJobMembersCommandOutput } from "../comm
64
70
  import { ListJobParameterDefinitionsCommandInput, ListJobParameterDefinitionsCommandOutput } from "../commands/ListJobParameterDefinitionsCommand";
65
71
  import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
66
72
  import { ListLicenseEndpointsCommandInput, ListLicenseEndpointsCommandOutput } from "../commands/ListLicenseEndpointsCommand";
73
+ import { ListLimitsCommandInput, ListLimitsCommandOutput } from "../commands/ListLimitsCommand";
67
74
  import { ListMeteredProductsCommandInput, ListMeteredProductsCommandOutput } from "../commands/ListMeteredProductsCommand";
68
75
  import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "../commands/ListMonitorsCommand";
69
76
  import { ListQueueEnvironmentsCommandInput, ListQueueEnvironmentsCommandOutput } from "../commands/ListQueueEnvironmentsCommand";
70
77
  import { ListQueueFleetAssociationsCommandInput, ListQueueFleetAssociationsCommandOutput } from "../commands/ListQueueFleetAssociationsCommand";
78
+ import { ListQueueLimitAssociationsCommandInput, ListQueueLimitAssociationsCommandOutput } from "../commands/ListQueueLimitAssociationsCommand";
71
79
  import { ListQueueMembersCommandInput, ListQueueMembersCommandOutput } from "../commands/ListQueueMembersCommand";
72
80
  import { ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand";
73
81
  import { ListSessionActionsCommandInput, ListSessionActionsCommandOutput } from "../commands/ListSessionActionsCommand";
@@ -93,10 +101,12 @@ import { UpdateBudgetCommandInput, UpdateBudgetCommandOutput } from "../commands
93
101
  import { UpdateFarmCommandInput, UpdateFarmCommandOutput } from "../commands/UpdateFarmCommand";
94
102
  import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "../commands/UpdateFleetCommand";
95
103
  import { UpdateJobCommandInput, UpdateJobCommandOutput } from "../commands/UpdateJobCommand";
104
+ import { UpdateLimitCommandInput, UpdateLimitCommandOutput } from "../commands/UpdateLimitCommand";
96
105
  import { UpdateMonitorCommandInput, UpdateMonitorCommandOutput } from "../commands/UpdateMonitorCommand";
97
106
  import { UpdateQueueCommandInput, UpdateQueueCommandOutput } from "../commands/UpdateQueueCommand";
98
107
  import { UpdateQueueEnvironmentCommandInput, UpdateQueueEnvironmentCommandOutput } from "../commands/UpdateQueueEnvironmentCommand";
99
108
  import { UpdateQueueFleetAssociationCommandInput, UpdateQueueFleetAssociationCommandOutput } from "../commands/UpdateQueueFleetAssociationCommand";
109
+ import { UpdateQueueLimitAssociationCommandInput, UpdateQueueLimitAssociationCommandOutput } from "../commands/UpdateQueueLimitAssociationCommand";
100
110
  import { UpdateSessionCommandInput, UpdateSessionCommandOutput } from "../commands/UpdateSessionCommand";
101
111
  import { UpdateStepCommandInput, UpdateStepCommandOutput } from "../commands/UpdateStepCommand";
102
112
  import { UpdateStorageProfileCommandInput, UpdateStorageProfileCommandOutput } from "../commands/UpdateStorageProfileCommand";
@@ -167,6 +177,10 @@ export declare const se_CreateJobCommand: (input: CreateJobCommandInput, context
167
177
  * serializeAws_restJson1CreateLicenseEndpointCommand
168
178
  */
169
179
  export declare const se_CreateLicenseEndpointCommand: (input: CreateLicenseEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
180
+ /**
181
+ * serializeAws_restJson1CreateLimitCommand
182
+ */
183
+ export declare const se_CreateLimitCommand: (input: CreateLimitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
170
184
  /**
171
185
  * serializeAws_restJson1CreateMonitorCommand
172
186
  */
@@ -183,6 +197,10 @@ export declare const se_CreateQueueEnvironmentCommand: (input: CreateQueueEnviro
183
197
  * serializeAws_restJson1CreateQueueFleetAssociationCommand
184
198
  */
185
199
  export declare const se_CreateQueueFleetAssociationCommand: (input: CreateQueueFleetAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
200
+ /**
201
+ * serializeAws_restJson1CreateQueueLimitAssociationCommand
202
+ */
203
+ export declare const se_CreateQueueLimitAssociationCommand: (input: CreateQueueLimitAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
186
204
  /**
187
205
  * serializeAws_restJson1CreateStorageProfileCommand
188
206
  */
@@ -207,6 +225,10 @@ export declare const se_DeleteFleetCommand: (input: DeleteFleetCommandInput, con
207
225
  * serializeAws_restJson1DeleteLicenseEndpointCommand
208
226
  */
209
227
  export declare const se_DeleteLicenseEndpointCommand: (input: DeleteLicenseEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
228
+ /**
229
+ * serializeAws_restJson1DeleteLimitCommand
230
+ */
231
+ export declare const se_DeleteLimitCommand: (input: DeleteLimitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
210
232
  /**
211
233
  * serializeAws_restJson1DeleteMeteredProductCommand
212
234
  */
@@ -227,6 +249,10 @@ export declare const se_DeleteQueueEnvironmentCommand: (input: DeleteQueueEnviro
227
249
  * serializeAws_restJson1DeleteQueueFleetAssociationCommand
228
250
  */
229
251
  export declare const se_DeleteQueueFleetAssociationCommand: (input: DeleteQueueFleetAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
252
+ /**
253
+ * serializeAws_restJson1DeleteQueueLimitAssociationCommand
254
+ */
255
+ export declare const se_DeleteQueueLimitAssociationCommand: (input: DeleteQueueLimitAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
230
256
  /**
231
257
  * serializeAws_restJson1DeleteStorageProfileCommand
232
258
  */
@@ -271,6 +297,10 @@ export declare const se_GetJobCommand: (input: GetJobCommandInput, context: __Se
271
297
  * serializeAws_restJson1GetLicenseEndpointCommand
272
298
  */
273
299
  export declare const se_GetLicenseEndpointCommand: (input: GetLicenseEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
300
+ /**
301
+ * serializeAws_restJson1GetLimitCommand
302
+ */
303
+ export declare const se_GetLimitCommand: (input: GetLimitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
274
304
  /**
275
305
  * serializeAws_restJson1GetMonitorCommand
276
306
  */
@@ -287,6 +317,10 @@ export declare const se_GetQueueEnvironmentCommand: (input: GetQueueEnvironmentC
287
317
  * serializeAws_restJson1GetQueueFleetAssociationCommand
288
318
  */
289
319
  export declare const se_GetQueueFleetAssociationCommand: (input: GetQueueFleetAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
320
+ /**
321
+ * serializeAws_restJson1GetQueueLimitAssociationCommand
322
+ */
323
+ export declare const se_GetQueueLimitAssociationCommand: (input: GetQueueLimitAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
290
324
  /**
291
325
  * serializeAws_restJson1GetSessionCommand
292
326
  */
@@ -359,6 +393,10 @@ export declare const se_ListJobsCommand: (input: ListJobsCommandInput, context:
359
393
  * serializeAws_restJson1ListLicenseEndpointsCommand
360
394
  */
361
395
  export declare const se_ListLicenseEndpointsCommand: (input: ListLicenseEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
396
+ /**
397
+ * serializeAws_restJson1ListLimitsCommand
398
+ */
399
+ export declare const se_ListLimitsCommand: (input: ListLimitsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
362
400
  /**
363
401
  * serializeAws_restJson1ListMeteredProductsCommand
364
402
  */
@@ -375,6 +413,10 @@ export declare const se_ListQueueEnvironmentsCommand: (input: ListQueueEnvironme
375
413
  * serializeAws_restJson1ListQueueFleetAssociationsCommand
376
414
  */
377
415
  export declare const se_ListQueueFleetAssociationsCommand: (input: ListQueueFleetAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
416
+ /**
417
+ * serializeAws_restJson1ListQueueLimitAssociationsCommand
418
+ */
419
+ export declare const se_ListQueueLimitAssociationsCommand: (input: ListQueueLimitAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
378
420
  /**
379
421
  * serializeAws_restJson1ListQueueMembersCommand
380
422
  */
@@ -475,6 +517,10 @@ export declare const se_UpdateFleetCommand: (input: UpdateFleetCommandInput, con
475
517
  * serializeAws_restJson1UpdateJobCommand
476
518
  */
477
519
  export declare const se_UpdateJobCommand: (input: UpdateJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
520
+ /**
521
+ * serializeAws_restJson1UpdateLimitCommand
522
+ */
523
+ export declare const se_UpdateLimitCommand: (input: UpdateLimitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
478
524
  /**
479
525
  * serializeAws_restJson1UpdateMonitorCommand
480
526
  */
@@ -491,6 +537,10 @@ export declare const se_UpdateQueueEnvironmentCommand: (input: UpdateQueueEnviro
491
537
  * serializeAws_restJson1UpdateQueueFleetAssociationCommand
492
538
  */
493
539
  export declare const se_UpdateQueueFleetAssociationCommand: (input: UpdateQueueFleetAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
540
+ /**
541
+ * serializeAws_restJson1UpdateQueueLimitAssociationCommand
542
+ */
543
+ export declare const se_UpdateQueueLimitAssociationCommand: (input: UpdateQueueLimitAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
494
544
  /**
495
545
  * serializeAws_restJson1UpdateSessionCommand
496
546
  */
@@ -579,6 +629,10 @@ export declare const de_CreateJobCommand: (output: __HttpResponse, context: __Se
579
629
  * deserializeAws_restJson1CreateLicenseEndpointCommand
580
630
  */
581
631
  export declare const de_CreateLicenseEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLicenseEndpointCommandOutput>;
632
+ /**
633
+ * deserializeAws_restJson1CreateLimitCommand
634
+ */
635
+ export declare const de_CreateLimitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLimitCommandOutput>;
582
636
  /**
583
637
  * deserializeAws_restJson1CreateMonitorCommand
584
638
  */
@@ -595,6 +649,10 @@ export declare const de_CreateQueueEnvironmentCommand: (output: __HttpResponse,
595
649
  * deserializeAws_restJson1CreateQueueFleetAssociationCommand
596
650
  */
597
651
  export declare const de_CreateQueueFleetAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQueueFleetAssociationCommandOutput>;
652
+ /**
653
+ * deserializeAws_restJson1CreateQueueLimitAssociationCommand
654
+ */
655
+ export declare const de_CreateQueueLimitAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQueueLimitAssociationCommandOutput>;
598
656
  /**
599
657
  * deserializeAws_restJson1CreateStorageProfileCommand
600
658
  */
@@ -619,6 +677,10 @@ export declare const de_DeleteFleetCommand: (output: __HttpResponse, context: __
619
677
  * deserializeAws_restJson1DeleteLicenseEndpointCommand
620
678
  */
621
679
  export declare const de_DeleteLicenseEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLicenseEndpointCommandOutput>;
680
+ /**
681
+ * deserializeAws_restJson1DeleteLimitCommand
682
+ */
683
+ export declare const de_DeleteLimitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLimitCommandOutput>;
622
684
  /**
623
685
  * deserializeAws_restJson1DeleteMeteredProductCommand
624
686
  */
@@ -639,6 +701,10 @@ export declare const de_DeleteQueueEnvironmentCommand: (output: __HttpResponse,
639
701
  * deserializeAws_restJson1DeleteQueueFleetAssociationCommand
640
702
  */
641
703
  export declare const de_DeleteQueueFleetAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueueFleetAssociationCommandOutput>;
704
+ /**
705
+ * deserializeAws_restJson1DeleteQueueLimitAssociationCommand
706
+ */
707
+ export declare const de_DeleteQueueLimitAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueueLimitAssociationCommandOutput>;
642
708
  /**
643
709
  * deserializeAws_restJson1DeleteStorageProfileCommand
644
710
  */
@@ -683,6 +749,10 @@ export declare const de_GetJobCommand: (output: __HttpResponse, context: __Serde
683
749
  * deserializeAws_restJson1GetLicenseEndpointCommand
684
750
  */
685
751
  export declare const de_GetLicenseEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLicenseEndpointCommandOutput>;
752
+ /**
753
+ * deserializeAws_restJson1GetLimitCommand
754
+ */
755
+ export declare const de_GetLimitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLimitCommandOutput>;
686
756
  /**
687
757
  * deserializeAws_restJson1GetMonitorCommand
688
758
  */
@@ -699,6 +769,10 @@ export declare const de_GetQueueEnvironmentCommand: (output: __HttpResponse, con
699
769
  * deserializeAws_restJson1GetQueueFleetAssociationCommand
700
770
  */
701
771
  export declare const de_GetQueueFleetAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueueFleetAssociationCommandOutput>;
772
+ /**
773
+ * deserializeAws_restJson1GetQueueLimitAssociationCommand
774
+ */
775
+ export declare const de_GetQueueLimitAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueueLimitAssociationCommandOutput>;
702
776
  /**
703
777
  * deserializeAws_restJson1GetSessionCommand
704
778
  */
@@ -771,6 +845,10 @@ export declare const de_ListJobsCommand: (output: __HttpResponse, context: __Ser
771
845
  * deserializeAws_restJson1ListLicenseEndpointsCommand
772
846
  */
773
847
  export declare const de_ListLicenseEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLicenseEndpointsCommandOutput>;
848
+ /**
849
+ * deserializeAws_restJson1ListLimitsCommand
850
+ */
851
+ export declare const de_ListLimitsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLimitsCommandOutput>;
774
852
  /**
775
853
  * deserializeAws_restJson1ListMeteredProductsCommand
776
854
  */
@@ -787,6 +865,10 @@ export declare const de_ListQueueEnvironmentsCommand: (output: __HttpResponse, c
787
865
  * deserializeAws_restJson1ListQueueFleetAssociationsCommand
788
866
  */
789
867
  export declare const de_ListQueueFleetAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueueFleetAssociationsCommandOutput>;
868
+ /**
869
+ * deserializeAws_restJson1ListQueueLimitAssociationsCommand
870
+ */
871
+ export declare const de_ListQueueLimitAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueueLimitAssociationsCommandOutput>;
790
872
  /**
791
873
  * deserializeAws_restJson1ListQueueMembersCommand
792
874
  */
@@ -887,6 +969,10 @@ export declare const de_UpdateFleetCommand: (output: __HttpResponse, context: __
887
969
  * deserializeAws_restJson1UpdateJobCommand
888
970
  */
889
971
  export declare const de_UpdateJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateJobCommandOutput>;
972
+ /**
973
+ * deserializeAws_restJson1UpdateLimitCommand
974
+ */
975
+ export declare const de_UpdateLimitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLimitCommandOutput>;
890
976
  /**
891
977
  * deserializeAws_restJson1UpdateMonitorCommand
892
978
  */
@@ -903,6 +989,10 @@ export declare const de_UpdateQueueEnvironmentCommand: (output: __HttpResponse,
903
989
  * deserializeAws_restJson1UpdateQueueFleetAssociationCommand
904
990
  */
905
991
  export declare const de_UpdateQueueFleetAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQueueFleetAssociationCommandOutput>;
992
+ /**
993
+ * deserializeAws_restJson1UpdateQueueLimitAssociationCommand
994
+ */
995
+ export declare const de_UpdateQueueLimitAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQueueLimitAssociationCommandOutput>;
906
996
  /**
907
997
  * deserializeAws_restJson1UpdateSessionCommand
908
998
  */
@@ -63,6 +63,10 @@ import {
63
63
  CreateLicenseEndpointCommandInput,
64
64
  CreateLicenseEndpointCommandOutput,
65
65
  } from "./commands/CreateLicenseEndpointCommand";
66
+ import {
67
+ CreateLimitCommandInput,
68
+ CreateLimitCommandOutput,
69
+ } from "./commands/CreateLimitCommand";
66
70
  import {
67
71
  CreateMonitorCommandInput,
68
72
  CreateMonitorCommandOutput,
@@ -79,6 +83,10 @@ import {
79
83
  CreateQueueFleetAssociationCommandInput,
80
84
  CreateQueueFleetAssociationCommandOutput,
81
85
  } from "./commands/CreateQueueFleetAssociationCommand";
86
+ import {
87
+ CreateQueueLimitAssociationCommandInput,
88
+ CreateQueueLimitAssociationCommandOutput,
89
+ } from "./commands/CreateQueueLimitAssociationCommand";
82
90
  import {
83
91
  CreateStorageProfileCommandInput,
84
92
  CreateStorageProfileCommandOutput,
@@ -103,6 +111,10 @@ import {
103
111
  DeleteLicenseEndpointCommandInput,
104
112
  DeleteLicenseEndpointCommandOutput,
105
113
  } from "./commands/DeleteLicenseEndpointCommand";
114
+ import {
115
+ DeleteLimitCommandInput,
116
+ DeleteLimitCommandOutput,
117
+ } from "./commands/DeleteLimitCommand";
106
118
  import {
107
119
  DeleteMeteredProductCommandInput,
108
120
  DeleteMeteredProductCommandOutput,
@@ -123,6 +135,10 @@ import {
123
135
  DeleteQueueFleetAssociationCommandInput,
124
136
  DeleteQueueFleetAssociationCommandOutput,
125
137
  } from "./commands/DeleteQueueFleetAssociationCommand";
138
+ import {
139
+ DeleteQueueLimitAssociationCommandInput,
140
+ DeleteQueueLimitAssociationCommandOutput,
141
+ } from "./commands/DeleteQueueLimitAssociationCommand";
126
142
  import {
127
143
  DeleteStorageProfileCommandInput,
128
144
  DeleteStorageProfileCommandOutput,
@@ -167,6 +183,10 @@ import {
167
183
  GetLicenseEndpointCommandInput,
168
184
  GetLicenseEndpointCommandOutput,
169
185
  } from "./commands/GetLicenseEndpointCommand";
186
+ import {
187
+ GetLimitCommandInput,
188
+ GetLimitCommandOutput,
189
+ } from "./commands/GetLimitCommand";
170
190
  import {
171
191
  GetMonitorCommandInput,
172
192
  GetMonitorCommandOutput,
@@ -183,6 +203,10 @@ import {
183
203
  GetQueueFleetAssociationCommandInput,
184
204
  GetQueueFleetAssociationCommandOutput,
185
205
  } from "./commands/GetQueueFleetAssociationCommand";
206
+ import {
207
+ GetQueueLimitAssociationCommandInput,
208
+ GetQueueLimitAssociationCommandOutput,
209
+ } from "./commands/GetQueueLimitAssociationCommand";
186
210
  import {
187
211
  GetSessionActionCommandInput,
188
212
  GetSessionActionCommandOutput,
@@ -255,6 +279,10 @@ import {
255
279
  ListLicenseEndpointsCommandInput,
256
280
  ListLicenseEndpointsCommandOutput,
257
281
  } from "./commands/ListLicenseEndpointsCommand";
282
+ import {
283
+ ListLimitsCommandInput,
284
+ ListLimitsCommandOutput,
285
+ } from "./commands/ListLimitsCommand";
258
286
  import {
259
287
  ListMeteredProductsCommandInput,
260
288
  ListMeteredProductsCommandOutput,
@@ -271,6 +299,10 @@ import {
271
299
  ListQueueFleetAssociationsCommandInput,
272
300
  ListQueueFleetAssociationsCommandOutput,
273
301
  } from "./commands/ListQueueFleetAssociationsCommand";
302
+ import {
303
+ ListQueueLimitAssociationsCommandInput,
304
+ ListQueueLimitAssociationsCommandOutput,
305
+ } from "./commands/ListQueueLimitAssociationsCommand";
274
306
  import {
275
307
  ListQueueMembersCommandInput,
276
308
  ListQueueMembersCommandOutput,
@@ -371,6 +403,10 @@ import {
371
403
  UpdateJobCommandInput,
372
404
  UpdateJobCommandOutput,
373
405
  } from "./commands/UpdateJobCommand";
406
+ import {
407
+ UpdateLimitCommandInput,
408
+ UpdateLimitCommandOutput,
409
+ } from "./commands/UpdateLimitCommand";
374
410
  import {
375
411
  UpdateMonitorCommandInput,
376
412
  UpdateMonitorCommandOutput,
@@ -387,6 +423,10 @@ import {
387
423
  UpdateQueueFleetAssociationCommandInput,
388
424
  UpdateQueueFleetAssociationCommandOutput,
389
425
  } from "./commands/UpdateQueueFleetAssociationCommand";
426
+ import {
427
+ UpdateQueueLimitAssociationCommandInput,
428
+ UpdateQueueLimitAssociationCommandOutput,
429
+ } from "./commands/UpdateQueueLimitAssociationCommand";
390
430
  import {
391
431
  UpdateSessionCommandInput,
392
432
  UpdateSessionCommandOutput,
@@ -621,6 +661,19 @@ export interface Deadline {
621
661
  options: __HttpHandlerOptions,
622
662
  cb: (err: any, data?: CreateLicenseEndpointCommandOutput) => void
623
663
  ): void;
664
+ createLimit(
665
+ args: CreateLimitCommandInput,
666
+ options?: __HttpHandlerOptions
667
+ ): Promise<CreateLimitCommandOutput>;
668
+ createLimit(
669
+ args: CreateLimitCommandInput,
670
+ cb: (err: any, data?: CreateLimitCommandOutput) => void
671
+ ): void;
672
+ createLimit(
673
+ args: CreateLimitCommandInput,
674
+ options: __HttpHandlerOptions,
675
+ cb: (err: any, data?: CreateLimitCommandOutput) => void
676
+ ): void;
624
677
  createMonitor(
625
678
  args: CreateMonitorCommandInput,
626
679
  options?: __HttpHandlerOptions
@@ -673,6 +726,19 @@ export interface Deadline {
673
726
  options: __HttpHandlerOptions,
674
727
  cb: (err: any, data?: CreateQueueFleetAssociationCommandOutput) => void
675
728
  ): void;
729
+ createQueueLimitAssociation(
730
+ args: CreateQueueLimitAssociationCommandInput,
731
+ options?: __HttpHandlerOptions
732
+ ): Promise<CreateQueueLimitAssociationCommandOutput>;
733
+ createQueueLimitAssociation(
734
+ args: CreateQueueLimitAssociationCommandInput,
735
+ cb: (err: any, data?: CreateQueueLimitAssociationCommandOutput) => void
736
+ ): void;
737
+ createQueueLimitAssociation(
738
+ args: CreateQueueLimitAssociationCommandInput,
739
+ options: __HttpHandlerOptions,
740
+ cb: (err: any, data?: CreateQueueLimitAssociationCommandOutput) => void
741
+ ): void;
676
742
  createStorageProfile(
677
743
  args: CreateStorageProfileCommandInput,
678
744
  options?: __HttpHandlerOptions
@@ -751,6 +817,19 @@ export interface Deadline {
751
817
  options: __HttpHandlerOptions,
752
818
  cb: (err: any, data?: DeleteLicenseEndpointCommandOutput) => void
753
819
  ): void;
820
+ deleteLimit(
821
+ args: DeleteLimitCommandInput,
822
+ options?: __HttpHandlerOptions
823
+ ): Promise<DeleteLimitCommandOutput>;
824
+ deleteLimit(
825
+ args: DeleteLimitCommandInput,
826
+ cb: (err: any, data?: DeleteLimitCommandOutput) => void
827
+ ): void;
828
+ deleteLimit(
829
+ args: DeleteLimitCommandInput,
830
+ options: __HttpHandlerOptions,
831
+ cb: (err: any, data?: DeleteLimitCommandOutput) => void
832
+ ): void;
754
833
  deleteMeteredProduct(
755
834
  args: DeleteMeteredProductCommandInput,
756
835
  options?: __HttpHandlerOptions
@@ -816,6 +895,19 @@ export interface Deadline {
816
895
  options: __HttpHandlerOptions,
817
896
  cb: (err: any, data?: DeleteQueueFleetAssociationCommandOutput) => void
818
897
  ): void;
898
+ deleteQueueLimitAssociation(
899
+ args: DeleteQueueLimitAssociationCommandInput,
900
+ options?: __HttpHandlerOptions
901
+ ): Promise<DeleteQueueLimitAssociationCommandOutput>;
902
+ deleteQueueLimitAssociation(
903
+ args: DeleteQueueLimitAssociationCommandInput,
904
+ cb: (err: any, data?: DeleteQueueLimitAssociationCommandOutput) => void
905
+ ): void;
906
+ deleteQueueLimitAssociation(
907
+ args: DeleteQueueLimitAssociationCommandInput,
908
+ options: __HttpHandlerOptions,
909
+ cb: (err: any, data?: DeleteQueueLimitAssociationCommandOutput) => void
910
+ ): void;
819
911
  deleteStorageProfile(
820
912
  args: DeleteStorageProfileCommandInput,
821
913
  options?: __HttpHandlerOptions
@@ -959,6 +1051,19 @@ export interface Deadline {
959
1051
  options: __HttpHandlerOptions,
960
1052
  cb: (err: any, data?: GetLicenseEndpointCommandOutput) => void
961
1053
  ): void;
1054
+ getLimit(
1055
+ args: GetLimitCommandInput,
1056
+ options?: __HttpHandlerOptions
1057
+ ): Promise<GetLimitCommandOutput>;
1058
+ getLimit(
1059
+ args: GetLimitCommandInput,
1060
+ cb: (err: any, data?: GetLimitCommandOutput) => void
1061
+ ): void;
1062
+ getLimit(
1063
+ args: GetLimitCommandInput,
1064
+ options: __HttpHandlerOptions,
1065
+ cb: (err: any, data?: GetLimitCommandOutput) => void
1066
+ ): void;
962
1067
  getMonitor(
963
1068
  args: GetMonitorCommandInput,
964
1069
  options?: __HttpHandlerOptions
@@ -1011,6 +1116,19 @@ export interface Deadline {
1011
1116
  options: __HttpHandlerOptions,
1012
1117
  cb: (err: any, data?: GetQueueFleetAssociationCommandOutput) => void
1013
1118
  ): void;
1119
+ getQueueLimitAssociation(
1120
+ args: GetQueueLimitAssociationCommandInput,
1121
+ options?: __HttpHandlerOptions
1122
+ ): Promise<GetQueueLimitAssociationCommandOutput>;
1123
+ getQueueLimitAssociation(
1124
+ args: GetQueueLimitAssociationCommandInput,
1125
+ cb: (err: any, data?: GetQueueLimitAssociationCommandOutput) => void
1126
+ ): void;
1127
+ getQueueLimitAssociation(
1128
+ args: GetQueueLimitAssociationCommandInput,
1129
+ options: __HttpHandlerOptions,
1130
+ cb: (err: any, data?: GetQueueLimitAssociationCommandOutput) => void
1131
+ ): void;
1014
1132
  getSession(
1015
1133
  args: GetSessionCommandInput,
1016
1134
  options?: __HttpHandlerOptions
@@ -1248,6 +1366,19 @@ export interface Deadline {
1248
1366
  options: __HttpHandlerOptions,
1249
1367
  cb: (err: any, data?: ListLicenseEndpointsCommandOutput) => void
1250
1368
  ): void;
1369
+ listLimits(
1370
+ args: ListLimitsCommandInput,
1371
+ options?: __HttpHandlerOptions
1372
+ ): Promise<ListLimitsCommandOutput>;
1373
+ listLimits(
1374
+ args: ListLimitsCommandInput,
1375
+ cb: (err: any, data?: ListLimitsCommandOutput) => void
1376
+ ): void;
1377
+ listLimits(
1378
+ args: ListLimitsCommandInput,
1379
+ options: __HttpHandlerOptions,
1380
+ cb: (err: any, data?: ListLimitsCommandOutput) => void
1381
+ ): void;
1251
1382
  listMeteredProducts(
1252
1383
  args: ListMeteredProductsCommandInput,
1253
1384
  options?: __HttpHandlerOptions
@@ -1301,6 +1432,19 @@ export interface Deadline {
1301
1432
  options: __HttpHandlerOptions,
1302
1433
  cb: (err: any, data?: ListQueueFleetAssociationsCommandOutput) => void
1303
1434
  ): void;
1435
+ listQueueLimitAssociations(
1436
+ args: ListQueueLimitAssociationsCommandInput,
1437
+ options?: __HttpHandlerOptions
1438
+ ): Promise<ListQueueLimitAssociationsCommandOutput>;
1439
+ listQueueLimitAssociations(
1440
+ args: ListQueueLimitAssociationsCommandInput,
1441
+ cb: (err: any, data?: ListQueueLimitAssociationsCommandOutput) => void
1442
+ ): void;
1443
+ listQueueLimitAssociations(
1444
+ args: ListQueueLimitAssociationsCommandInput,
1445
+ options: __HttpHandlerOptions,
1446
+ cb: (err: any, data?: ListQueueLimitAssociationsCommandOutput) => void
1447
+ ): void;
1304
1448
  listQueueMembers(
1305
1449
  args: ListQueueMembersCommandInput,
1306
1450
  options?: __HttpHandlerOptions
@@ -1632,6 +1776,19 @@ export interface Deadline {
1632
1776
  options: __HttpHandlerOptions,
1633
1777
  cb: (err: any, data?: UpdateJobCommandOutput) => void
1634
1778
  ): void;
1779
+ updateLimit(
1780
+ args: UpdateLimitCommandInput,
1781
+ options?: __HttpHandlerOptions
1782
+ ): Promise<UpdateLimitCommandOutput>;
1783
+ updateLimit(
1784
+ args: UpdateLimitCommandInput,
1785
+ cb: (err: any, data?: UpdateLimitCommandOutput) => void
1786
+ ): void;
1787
+ updateLimit(
1788
+ args: UpdateLimitCommandInput,
1789
+ options: __HttpHandlerOptions,
1790
+ cb: (err: any, data?: UpdateLimitCommandOutput) => void
1791
+ ): void;
1635
1792
  updateMonitor(
1636
1793
  args: UpdateMonitorCommandInput,
1637
1794
  options?: __HttpHandlerOptions
@@ -1684,6 +1841,19 @@ export interface Deadline {
1684
1841
  options: __HttpHandlerOptions,
1685
1842
  cb: (err: any, data?: UpdateQueueFleetAssociationCommandOutput) => void
1686
1843
  ): void;
1844
+ updateQueueLimitAssociation(
1845
+ args: UpdateQueueLimitAssociationCommandInput,
1846
+ options?: __HttpHandlerOptions
1847
+ ): Promise<UpdateQueueLimitAssociationCommandOutput>;
1848
+ updateQueueLimitAssociation(
1849
+ args: UpdateQueueLimitAssociationCommandInput,
1850
+ cb: (err: any, data?: UpdateQueueLimitAssociationCommandOutput) => void
1851
+ ): void;
1852
+ updateQueueLimitAssociation(
1853
+ args: UpdateQueueLimitAssociationCommandInput,
1854
+ options: __HttpHandlerOptions,
1855
+ cb: (err: any, data?: UpdateQueueLimitAssociationCommandOutput) => void
1856
+ ): void;
1687
1857
  updateSession(
1688
1858
  args: UpdateSessionCommandInput,
1689
1859
  options?: __HttpHandlerOptions