@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
package/README.md CHANGED
@@ -337,6 +337,14 @@ CreateLicenseEndpoint
337
337
 
338
338
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/CreateLicenseEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/CreateLicenseEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/CreateLicenseEndpointCommandOutput/)
339
339
 
340
+ </details>
341
+ <details>
342
+ <summary>
343
+ CreateLimit
344
+ </summary>
345
+
346
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/CreateLimitCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/CreateLimitCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/CreateLimitCommandOutput/)
347
+
340
348
  </details>
341
349
  <details>
342
350
  <summary>
@@ -369,6 +377,14 @@ CreateQueueFleetAssociation
369
377
 
370
378
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/CreateQueueFleetAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/CreateQueueFleetAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/CreateQueueFleetAssociationCommandOutput/)
371
379
 
380
+ </details>
381
+ <details>
382
+ <summary>
383
+ CreateQueueLimitAssociation
384
+ </summary>
385
+
386
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/CreateQueueLimitAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/CreateQueueLimitAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/CreateQueueLimitAssociationCommandOutput/)
387
+
372
388
  </details>
373
389
  <details>
374
390
  <summary>
@@ -417,6 +433,14 @@ DeleteLicenseEndpoint
417
433
 
418
434
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/DeleteLicenseEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/DeleteLicenseEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/DeleteLicenseEndpointCommandOutput/)
419
435
 
436
+ </details>
437
+ <details>
438
+ <summary>
439
+ DeleteLimit
440
+ </summary>
441
+
442
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/DeleteLimitCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/DeleteLimitCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/DeleteLimitCommandOutput/)
443
+
420
444
  </details>
421
445
  <details>
422
446
  <summary>
@@ -457,6 +481,14 @@ DeleteQueueFleetAssociation
457
481
 
458
482
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/DeleteQueueFleetAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/DeleteQueueFleetAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/DeleteQueueFleetAssociationCommandOutput/)
459
483
 
484
+ </details>
485
+ <details>
486
+ <summary>
487
+ DeleteQueueLimitAssociation
488
+ </summary>
489
+
490
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/DeleteQueueLimitAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/DeleteQueueLimitAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/DeleteQueueLimitAssociationCommandOutput/)
491
+
460
492
  </details>
461
493
  <details>
462
494
  <summary>
@@ -545,6 +577,14 @@ GetLicenseEndpoint
545
577
 
546
578
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/GetLicenseEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/GetLicenseEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/GetLicenseEndpointCommandOutput/)
547
579
 
580
+ </details>
581
+ <details>
582
+ <summary>
583
+ GetLimit
584
+ </summary>
585
+
586
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/GetLimitCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/GetLimitCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/GetLimitCommandOutput/)
587
+
548
588
  </details>
549
589
  <details>
550
590
  <summary>
@@ -577,6 +617,14 @@ GetQueueFleetAssociation
577
617
 
578
618
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/GetQueueFleetAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/GetQueueFleetAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/GetQueueFleetAssociationCommandOutput/)
579
619
 
620
+ </details>
621
+ <details>
622
+ <summary>
623
+ GetQueueLimitAssociation
624
+ </summary>
625
+
626
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/GetQueueLimitAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/GetQueueLimitAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/GetQueueLimitAssociationCommandOutput/)
627
+
580
628
  </details>
581
629
  <details>
582
630
  <summary>
@@ -721,6 +769,14 @@ ListLicenseEndpoints
721
769
 
722
770
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/ListLicenseEndpointsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/ListLicenseEndpointsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/ListLicenseEndpointsCommandOutput/)
723
771
 
772
+ </details>
773
+ <details>
774
+ <summary>
775
+ ListLimits
776
+ </summary>
777
+
778
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/ListLimitsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/ListLimitsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/ListLimitsCommandOutput/)
779
+
724
780
  </details>
725
781
  <details>
726
782
  <summary>
@@ -753,6 +809,14 @@ ListQueueFleetAssociations
753
809
 
754
810
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/ListQueueFleetAssociationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/ListQueueFleetAssociationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/ListQueueFleetAssociationsCommandOutput/)
755
811
 
812
+ </details>
813
+ <details>
814
+ <summary>
815
+ ListQueueLimitAssociations
816
+ </summary>
817
+
818
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/ListQueueLimitAssociationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/ListQueueLimitAssociationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/ListQueueLimitAssociationsCommandOutput/)
819
+
756
820
  </details>
757
821
  <details>
758
822
  <summary>
@@ -953,6 +1017,14 @@ UpdateJob
953
1017
 
954
1018
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/UpdateJobCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/UpdateJobCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/UpdateJobCommandOutput/)
955
1019
 
1020
+ </details>
1021
+ <details>
1022
+ <summary>
1023
+ UpdateLimit
1024
+ </summary>
1025
+
1026
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/UpdateLimitCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/UpdateLimitCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/UpdateLimitCommandOutput/)
1027
+
956
1028
  </details>
957
1029
  <details>
958
1030
  <summary>
@@ -985,6 +1057,14 @@ UpdateQueueFleetAssociation
985
1057
 
986
1058
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/UpdateQueueFleetAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/UpdateQueueFleetAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/UpdateQueueFleetAssociationCommandOutput/)
987
1059
 
1060
+ </details>
1061
+ <details>
1062
+ <summary>
1063
+ UpdateQueueLimitAssociation
1064
+ </summary>
1065
+
1066
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/deadline/command/UpdateQueueLimitAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/UpdateQueueLimitAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-deadline/Interface/UpdateQueueLimitAssociationCommandOutput/)
1067
+
988
1068
  </details>
989
1069
  <details>
990
1070
  <summary>
@@ -18,21 +18,25 @@ const CreateFarmCommand_1 = require("./commands/CreateFarmCommand");
18
18
  const CreateFleetCommand_1 = require("./commands/CreateFleetCommand");
19
19
  const CreateJobCommand_1 = require("./commands/CreateJobCommand");
20
20
  const CreateLicenseEndpointCommand_1 = require("./commands/CreateLicenseEndpointCommand");
21
+ const CreateLimitCommand_1 = require("./commands/CreateLimitCommand");
21
22
  const CreateMonitorCommand_1 = require("./commands/CreateMonitorCommand");
22
23
  const CreateQueueCommand_1 = require("./commands/CreateQueueCommand");
23
24
  const CreateQueueEnvironmentCommand_1 = require("./commands/CreateQueueEnvironmentCommand");
24
25
  const CreateQueueFleetAssociationCommand_1 = require("./commands/CreateQueueFleetAssociationCommand");
26
+ const CreateQueueLimitAssociationCommand_1 = require("./commands/CreateQueueLimitAssociationCommand");
25
27
  const CreateStorageProfileCommand_1 = require("./commands/CreateStorageProfileCommand");
26
28
  const CreateWorkerCommand_1 = require("./commands/CreateWorkerCommand");
27
29
  const DeleteBudgetCommand_1 = require("./commands/DeleteBudgetCommand");
28
30
  const DeleteFarmCommand_1 = require("./commands/DeleteFarmCommand");
29
31
  const DeleteFleetCommand_1 = require("./commands/DeleteFleetCommand");
30
32
  const DeleteLicenseEndpointCommand_1 = require("./commands/DeleteLicenseEndpointCommand");
33
+ const DeleteLimitCommand_1 = require("./commands/DeleteLimitCommand");
31
34
  const DeleteMeteredProductCommand_1 = require("./commands/DeleteMeteredProductCommand");
32
35
  const DeleteMonitorCommand_1 = require("./commands/DeleteMonitorCommand");
33
36
  const DeleteQueueCommand_1 = require("./commands/DeleteQueueCommand");
34
37
  const DeleteQueueEnvironmentCommand_1 = require("./commands/DeleteQueueEnvironmentCommand");
35
38
  const DeleteQueueFleetAssociationCommand_1 = require("./commands/DeleteQueueFleetAssociationCommand");
39
+ const DeleteQueueLimitAssociationCommand_1 = require("./commands/DeleteQueueLimitAssociationCommand");
36
40
  const DeleteStorageProfileCommand_1 = require("./commands/DeleteStorageProfileCommand");
37
41
  const DeleteWorkerCommand_1 = require("./commands/DeleteWorkerCommand");
38
42
  const DisassociateMemberFromFarmCommand_1 = require("./commands/DisassociateMemberFromFarmCommand");
@@ -44,10 +48,12 @@ const GetFarmCommand_1 = require("./commands/GetFarmCommand");
44
48
  const GetFleetCommand_1 = require("./commands/GetFleetCommand");
45
49
  const GetJobCommand_1 = require("./commands/GetJobCommand");
46
50
  const GetLicenseEndpointCommand_1 = require("./commands/GetLicenseEndpointCommand");
51
+ const GetLimitCommand_1 = require("./commands/GetLimitCommand");
47
52
  const GetMonitorCommand_1 = require("./commands/GetMonitorCommand");
48
53
  const GetQueueCommand_1 = require("./commands/GetQueueCommand");
49
54
  const GetQueueEnvironmentCommand_1 = require("./commands/GetQueueEnvironmentCommand");
50
55
  const GetQueueFleetAssociationCommand_1 = require("./commands/GetQueueFleetAssociationCommand");
56
+ const GetQueueLimitAssociationCommand_1 = require("./commands/GetQueueLimitAssociationCommand");
51
57
  const GetSessionActionCommand_1 = require("./commands/GetSessionActionCommand");
52
58
  const GetSessionCommand_1 = require("./commands/GetSessionCommand");
53
59
  const GetSessionsStatisticsAggregationCommand_1 = require("./commands/GetSessionsStatisticsAggregationCommand");
@@ -66,10 +72,12 @@ const ListJobMembersCommand_1 = require("./commands/ListJobMembersCommand");
66
72
  const ListJobParameterDefinitionsCommand_1 = require("./commands/ListJobParameterDefinitionsCommand");
67
73
  const ListJobsCommand_1 = require("./commands/ListJobsCommand");
68
74
  const ListLicenseEndpointsCommand_1 = require("./commands/ListLicenseEndpointsCommand");
75
+ const ListLimitsCommand_1 = require("./commands/ListLimitsCommand");
69
76
  const ListMeteredProductsCommand_1 = require("./commands/ListMeteredProductsCommand");
70
77
  const ListMonitorsCommand_1 = require("./commands/ListMonitorsCommand");
71
78
  const ListQueueEnvironmentsCommand_1 = require("./commands/ListQueueEnvironmentsCommand");
72
79
  const ListQueueFleetAssociationsCommand_1 = require("./commands/ListQueueFleetAssociationsCommand");
80
+ const ListQueueLimitAssociationsCommand_1 = require("./commands/ListQueueLimitAssociationsCommand");
73
81
  const ListQueueMembersCommand_1 = require("./commands/ListQueueMembersCommand");
74
82
  const ListQueuesCommand_1 = require("./commands/ListQueuesCommand");
75
83
  const ListSessionActionsCommand_1 = require("./commands/ListSessionActionsCommand");
@@ -95,10 +103,12 @@ const UpdateBudgetCommand_1 = require("./commands/UpdateBudgetCommand");
95
103
  const UpdateFarmCommand_1 = require("./commands/UpdateFarmCommand");
96
104
  const UpdateFleetCommand_1 = require("./commands/UpdateFleetCommand");
97
105
  const UpdateJobCommand_1 = require("./commands/UpdateJobCommand");
106
+ const UpdateLimitCommand_1 = require("./commands/UpdateLimitCommand");
98
107
  const UpdateMonitorCommand_1 = require("./commands/UpdateMonitorCommand");
99
108
  const UpdateQueueCommand_1 = require("./commands/UpdateQueueCommand");
100
109
  const UpdateQueueEnvironmentCommand_1 = require("./commands/UpdateQueueEnvironmentCommand");
101
110
  const UpdateQueueFleetAssociationCommand_1 = require("./commands/UpdateQueueFleetAssociationCommand");
111
+ const UpdateQueueLimitAssociationCommand_1 = require("./commands/UpdateQueueLimitAssociationCommand");
102
112
  const UpdateSessionCommand_1 = require("./commands/UpdateSessionCommand");
103
113
  const UpdateStepCommand_1 = require("./commands/UpdateStepCommand");
104
114
  const UpdateStorageProfileCommand_1 = require("./commands/UpdateStorageProfileCommand");
@@ -123,21 +133,25 @@ const commands = {
123
133
  CreateFleetCommand: CreateFleetCommand_1.CreateFleetCommand,
124
134
  CreateJobCommand: CreateJobCommand_1.CreateJobCommand,
125
135
  CreateLicenseEndpointCommand: CreateLicenseEndpointCommand_1.CreateLicenseEndpointCommand,
136
+ CreateLimitCommand: CreateLimitCommand_1.CreateLimitCommand,
126
137
  CreateMonitorCommand: CreateMonitorCommand_1.CreateMonitorCommand,
127
138
  CreateQueueCommand: CreateQueueCommand_1.CreateQueueCommand,
128
139
  CreateQueueEnvironmentCommand: CreateQueueEnvironmentCommand_1.CreateQueueEnvironmentCommand,
129
140
  CreateQueueFleetAssociationCommand: CreateQueueFleetAssociationCommand_1.CreateQueueFleetAssociationCommand,
141
+ CreateQueueLimitAssociationCommand: CreateQueueLimitAssociationCommand_1.CreateQueueLimitAssociationCommand,
130
142
  CreateStorageProfileCommand: CreateStorageProfileCommand_1.CreateStorageProfileCommand,
131
143
  CreateWorkerCommand: CreateWorkerCommand_1.CreateWorkerCommand,
132
144
  DeleteBudgetCommand: DeleteBudgetCommand_1.DeleteBudgetCommand,
133
145
  DeleteFarmCommand: DeleteFarmCommand_1.DeleteFarmCommand,
134
146
  DeleteFleetCommand: DeleteFleetCommand_1.DeleteFleetCommand,
135
147
  DeleteLicenseEndpointCommand: DeleteLicenseEndpointCommand_1.DeleteLicenseEndpointCommand,
148
+ DeleteLimitCommand: DeleteLimitCommand_1.DeleteLimitCommand,
136
149
  DeleteMeteredProductCommand: DeleteMeteredProductCommand_1.DeleteMeteredProductCommand,
137
150
  DeleteMonitorCommand: DeleteMonitorCommand_1.DeleteMonitorCommand,
138
151
  DeleteQueueCommand: DeleteQueueCommand_1.DeleteQueueCommand,
139
152
  DeleteQueueEnvironmentCommand: DeleteQueueEnvironmentCommand_1.DeleteQueueEnvironmentCommand,
140
153
  DeleteQueueFleetAssociationCommand: DeleteQueueFleetAssociationCommand_1.DeleteQueueFleetAssociationCommand,
154
+ DeleteQueueLimitAssociationCommand: DeleteQueueLimitAssociationCommand_1.DeleteQueueLimitAssociationCommand,
141
155
  DeleteStorageProfileCommand: DeleteStorageProfileCommand_1.DeleteStorageProfileCommand,
142
156
  DeleteWorkerCommand: DeleteWorkerCommand_1.DeleteWorkerCommand,
143
157
  DisassociateMemberFromFarmCommand: DisassociateMemberFromFarmCommand_1.DisassociateMemberFromFarmCommand,
@@ -149,10 +163,12 @@ const commands = {
149
163
  GetFleetCommand: GetFleetCommand_1.GetFleetCommand,
150
164
  GetJobCommand: GetJobCommand_1.GetJobCommand,
151
165
  GetLicenseEndpointCommand: GetLicenseEndpointCommand_1.GetLicenseEndpointCommand,
166
+ GetLimitCommand: GetLimitCommand_1.GetLimitCommand,
152
167
  GetMonitorCommand: GetMonitorCommand_1.GetMonitorCommand,
153
168
  GetQueueCommand: GetQueueCommand_1.GetQueueCommand,
154
169
  GetQueueEnvironmentCommand: GetQueueEnvironmentCommand_1.GetQueueEnvironmentCommand,
155
170
  GetQueueFleetAssociationCommand: GetQueueFleetAssociationCommand_1.GetQueueFleetAssociationCommand,
171
+ GetQueueLimitAssociationCommand: GetQueueLimitAssociationCommand_1.GetQueueLimitAssociationCommand,
156
172
  GetSessionCommand: GetSessionCommand_1.GetSessionCommand,
157
173
  GetSessionActionCommand: GetSessionActionCommand_1.GetSessionActionCommand,
158
174
  GetSessionsStatisticsAggregationCommand: GetSessionsStatisticsAggregationCommand_1.GetSessionsStatisticsAggregationCommand,
@@ -171,10 +187,12 @@ const commands = {
171
187
  ListJobParameterDefinitionsCommand: ListJobParameterDefinitionsCommand_1.ListJobParameterDefinitionsCommand,
172
188
  ListJobsCommand: ListJobsCommand_1.ListJobsCommand,
173
189
  ListLicenseEndpointsCommand: ListLicenseEndpointsCommand_1.ListLicenseEndpointsCommand,
190
+ ListLimitsCommand: ListLimitsCommand_1.ListLimitsCommand,
174
191
  ListMeteredProductsCommand: ListMeteredProductsCommand_1.ListMeteredProductsCommand,
175
192
  ListMonitorsCommand: ListMonitorsCommand_1.ListMonitorsCommand,
176
193
  ListQueueEnvironmentsCommand: ListQueueEnvironmentsCommand_1.ListQueueEnvironmentsCommand,
177
194
  ListQueueFleetAssociationsCommand: ListQueueFleetAssociationsCommand_1.ListQueueFleetAssociationsCommand,
195
+ ListQueueLimitAssociationsCommand: ListQueueLimitAssociationsCommand_1.ListQueueLimitAssociationsCommand,
178
196
  ListQueueMembersCommand: ListQueueMembersCommand_1.ListQueueMembersCommand,
179
197
  ListQueuesCommand: ListQueuesCommand_1.ListQueuesCommand,
180
198
  ListSessionActionsCommand: ListSessionActionsCommand_1.ListSessionActionsCommand,
@@ -200,10 +218,12 @@ const commands = {
200
218
  UpdateFarmCommand: UpdateFarmCommand_1.UpdateFarmCommand,
201
219
  UpdateFleetCommand: UpdateFleetCommand_1.UpdateFleetCommand,
202
220
  UpdateJobCommand: UpdateJobCommand_1.UpdateJobCommand,
221
+ UpdateLimitCommand: UpdateLimitCommand_1.UpdateLimitCommand,
203
222
  UpdateMonitorCommand: UpdateMonitorCommand_1.UpdateMonitorCommand,
204
223
  UpdateQueueCommand: UpdateQueueCommand_1.UpdateQueueCommand,
205
224
  UpdateQueueEnvironmentCommand: UpdateQueueEnvironmentCommand_1.UpdateQueueEnvironmentCommand,
206
225
  UpdateQueueFleetAssociationCommand: UpdateQueueFleetAssociationCommand_1.UpdateQueueFleetAssociationCommand,
226
+ UpdateQueueLimitAssociationCommand: UpdateQueueLimitAssociationCommand_1.UpdateQueueLimitAssociationCommand,
207
227
  UpdateSessionCommand: UpdateSessionCommand_1.UpdateSessionCommand,
208
228
  UpdateStepCommand: UpdateStepCommand_1.UpdateStepCommand,
209
229
  UpdateStorageProfileCommand: UpdateStorageProfileCommand_1.UpdateStorageProfileCommand,
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateLimitCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const models_0_1 = require("../models/models_0");
10
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
+ class CreateLimitCommand extends smithy_client_1.Command
12
+ .classBuilder()
13
+ .ep(EndpointParameters_1.commonParams)
14
+ .m(function (Command, cs, config, o) {
15
+ return [
16
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
17
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
18
+ ];
19
+ })
20
+ .s("Deadline", "CreateLimit", {})
21
+ .n("DeadlineClient", "CreateLimitCommand")
22
+ .f(models_0_1.CreateLimitRequestFilterSensitiveLog, void 0)
23
+ .ser(Aws_restJson1_1.se_CreateLimitCommand)
24
+ .de(Aws_restJson1_1.de_CreateLimitCommand)
25
+ .build() {
26
+ }
27
+ exports.CreateLimitCommand = CreateLimitCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateQueueLimitAssociationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class CreateQueueLimitAssociationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("Deadline", "CreateQueueLimitAssociation", {})
20
+ .n("DeadlineClient", "CreateQueueLimitAssociationCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_CreateQueueLimitAssociationCommand)
23
+ .de(Aws_restJson1_1.de_CreateQueueLimitAssociationCommand)
24
+ .build() {
25
+ }
26
+ exports.CreateQueueLimitAssociationCommand = CreateQueueLimitAssociationCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteLimitCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class DeleteLimitCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("Deadline", "DeleteLimit", {})
20
+ .n("DeadlineClient", "DeleteLimitCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_DeleteLimitCommand)
23
+ .de(Aws_restJson1_1.de_DeleteLimitCommand)
24
+ .build() {
25
+ }
26
+ exports.DeleteLimitCommand = DeleteLimitCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteQueueLimitAssociationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class DeleteQueueLimitAssociationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("Deadline", "DeleteQueueLimitAssociation", {})
20
+ .n("DeadlineClient", "DeleteQueueLimitAssociationCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_DeleteQueueLimitAssociationCommand)
23
+ .de(Aws_restJson1_1.de_DeleteQueueLimitAssociationCommand)
24
+ .build() {
25
+ }
26
+ exports.DeleteQueueLimitAssociationCommand = DeleteQueueLimitAssociationCommand;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetLimitCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const models_0_1 = require("../models/models_0");
10
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
+ class GetLimitCommand extends smithy_client_1.Command
12
+ .classBuilder()
13
+ .ep(EndpointParameters_1.commonParams)
14
+ .m(function (Command, cs, config, o) {
15
+ return [
16
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
17
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
18
+ ];
19
+ })
20
+ .s("Deadline", "GetLimit", {})
21
+ .n("DeadlineClient", "GetLimitCommand")
22
+ .f(void 0, models_0_1.GetLimitResponseFilterSensitiveLog)
23
+ .ser(Aws_restJson1_1.se_GetLimitCommand)
24
+ .de(Aws_restJson1_1.de_GetLimitCommand)
25
+ .build() {
26
+ }
27
+ exports.GetLimitCommand = GetLimitCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetQueueLimitAssociationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class GetQueueLimitAssociationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("Deadline", "GetQueueLimitAssociation", {})
20
+ .n("DeadlineClient", "GetQueueLimitAssociationCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_GetQueueLimitAssociationCommand)
23
+ .de(Aws_restJson1_1.de_GetQueueLimitAssociationCommand)
24
+ .build() {
25
+ }
26
+ exports.GetQueueLimitAssociationCommand = GetQueueLimitAssociationCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListLimitsCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class ListLimitsCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("Deadline", "ListLimits", {})
20
+ .n("DeadlineClient", "ListLimitsCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_ListLimitsCommand)
23
+ .de(Aws_restJson1_1.de_ListLimitsCommand)
24
+ .build() {
25
+ }
26
+ exports.ListLimitsCommand = ListLimitsCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListQueueLimitAssociationsCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class ListQueueLimitAssociationsCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("Deadline", "ListQueueLimitAssociations", {})
20
+ .n("DeadlineClient", "ListQueueLimitAssociationsCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_ListQueueLimitAssociationsCommand)
23
+ .de(Aws_restJson1_1.de_ListQueueLimitAssociationsCommand)
24
+ .build() {
25
+ }
26
+ exports.ListQueueLimitAssociationsCommand = ListQueueLimitAssociationsCommand;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateLimitCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const models_1_1 = require("../models/models_1");
10
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
+ class UpdateLimitCommand extends smithy_client_1.Command
12
+ .classBuilder()
13
+ .ep(EndpointParameters_1.commonParams)
14
+ .m(function (Command, cs, config, o) {
15
+ return [
16
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
17
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
18
+ ];
19
+ })
20
+ .s("Deadline", "UpdateLimit", {})
21
+ .n("DeadlineClient", "UpdateLimitCommand")
22
+ .f(models_1_1.UpdateLimitRequestFilterSensitiveLog, void 0)
23
+ .ser(Aws_restJson1_1.se_UpdateLimitCommand)
24
+ .de(Aws_restJson1_1.de_UpdateLimitCommand)
25
+ .build() {
26
+ }
27
+ exports.UpdateLimitCommand = UpdateLimitCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateQueueLimitAssociationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class UpdateQueueLimitAssociationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("Deadline", "UpdateQueueLimitAssociation", {})
20
+ .n("DeadlineClient", "UpdateQueueLimitAssociationCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_UpdateQueueLimitAssociationCommand)
23
+ .de(Aws_restJson1_1.de_UpdateQueueLimitAssociationCommand)
24
+ .build() {
25
+ }
26
+ exports.UpdateQueueLimitAssociationCommand = UpdateQueueLimitAssociationCommand;
@@ -17,21 +17,25 @@ tslib_1.__exportStar(require("./CreateFarmCommand"), exports);
17
17
  tslib_1.__exportStar(require("./CreateFleetCommand"), exports);
18
18
  tslib_1.__exportStar(require("./CreateJobCommand"), exports);
19
19
  tslib_1.__exportStar(require("./CreateLicenseEndpointCommand"), exports);
20
+ tslib_1.__exportStar(require("./CreateLimitCommand"), exports);
20
21
  tslib_1.__exportStar(require("./CreateMonitorCommand"), exports);
21
22
  tslib_1.__exportStar(require("./CreateQueueCommand"), exports);
22
23
  tslib_1.__exportStar(require("./CreateQueueEnvironmentCommand"), exports);
23
24
  tslib_1.__exportStar(require("./CreateQueueFleetAssociationCommand"), exports);
25
+ tslib_1.__exportStar(require("./CreateQueueLimitAssociationCommand"), exports);
24
26
  tslib_1.__exportStar(require("./CreateStorageProfileCommand"), exports);
25
27
  tslib_1.__exportStar(require("./CreateWorkerCommand"), exports);
26
28
  tslib_1.__exportStar(require("./DeleteBudgetCommand"), exports);
27
29
  tslib_1.__exportStar(require("./DeleteFarmCommand"), exports);
28
30
  tslib_1.__exportStar(require("./DeleteFleetCommand"), exports);
29
31
  tslib_1.__exportStar(require("./DeleteLicenseEndpointCommand"), exports);
32
+ tslib_1.__exportStar(require("./DeleteLimitCommand"), exports);
30
33
  tslib_1.__exportStar(require("./DeleteMeteredProductCommand"), exports);
31
34
  tslib_1.__exportStar(require("./DeleteMonitorCommand"), exports);
32
35
  tslib_1.__exportStar(require("./DeleteQueueCommand"), exports);
33
36
  tslib_1.__exportStar(require("./DeleteQueueEnvironmentCommand"), exports);
34
37
  tslib_1.__exportStar(require("./DeleteQueueFleetAssociationCommand"), exports);
38
+ tslib_1.__exportStar(require("./DeleteQueueLimitAssociationCommand"), exports);
35
39
  tslib_1.__exportStar(require("./DeleteStorageProfileCommand"), exports);
36
40
  tslib_1.__exportStar(require("./DeleteWorkerCommand"), exports);
37
41
  tslib_1.__exportStar(require("./DisassociateMemberFromFarmCommand"), exports);
@@ -43,10 +47,12 @@ tslib_1.__exportStar(require("./GetFarmCommand"), exports);
43
47
  tslib_1.__exportStar(require("./GetFleetCommand"), exports);
44
48
  tslib_1.__exportStar(require("./GetJobCommand"), exports);
45
49
  tslib_1.__exportStar(require("./GetLicenseEndpointCommand"), exports);
50
+ tslib_1.__exportStar(require("./GetLimitCommand"), exports);
46
51
  tslib_1.__exportStar(require("./GetMonitorCommand"), exports);
47
52
  tslib_1.__exportStar(require("./GetQueueCommand"), exports);
48
53
  tslib_1.__exportStar(require("./GetQueueEnvironmentCommand"), exports);
49
54
  tslib_1.__exportStar(require("./GetQueueFleetAssociationCommand"), exports);
55
+ tslib_1.__exportStar(require("./GetQueueLimitAssociationCommand"), exports);
50
56
  tslib_1.__exportStar(require("./GetSessionActionCommand"), exports);
51
57
  tslib_1.__exportStar(require("./GetSessionCommand"), exports);
52
58
  tslib_1.__exportStar(require("./GetSessionsStatisticsAggregationCommand"), exports);
@@ -65,10 +71,12 @@ tslib_1.__exportStar(require("./ListJobMembersCommand"), exports);
65
71
  tslib_1.__exportStar(require("./ListJobParameterDefinitionsCommand"), exports);
66
72
  tslib_1.__exportStar(require("./ListJobsCommand"), exports);
67
73
  tslib_1.__exportStar(require("./ListLicenseEndpointsCommand"), exports);
74
+ tslib_1.__exportStar(require("./ListLimitsCommand"), exports);
68
75
  tslib_1.__exportStar(require("./ListMeteredProductsCommand"), exports);
69
76
  tslib_1.__exportStar(require("./ListMonitorsCommand"), exports);
70
77
  tslib_1.__exportStar(require("./ListQueueEnvironmentsCommand"), exports);
71
78
  tslib_1.__exportStar(require("./ListQueueFleetAssociationsCommand"), exports);
79
+ tslib_1.__exportStar(require("./ListQueueLimitAssociationsCommand"), exports);
72
80
  tslib_1.__exportStar(require("./ListQueueMembersCommand"), exports);
73
81
  tslib_1.__exportStar(require("./ListQueuesCommand"), exports);
74
82
  tslib_1.__exportStar(require("./ListSessionActionsCommand"), exports);
@@ -94,10 +102,12 @@ tslib_1.__exportStar(require("./UpdateBudgetCommand"), exports);
94
102
  tslib_1.__exportStar(require("./UpdateFarmCommand"), exports);
95
103
  tslib_1.__exportStar(require("./UpdateFleetCommand"), exports);
96
104
  tslib_1.__exportStar(require("./UpdateJobCommand"), exports);
105
+ tslib_1.__exportStar(require("./UpdateLimitCommand"), exports);
97
106
  tslib_1.__exportStar(require("./UpdateMonitorCommand"), exports);
98
107
  tslib_1.__exportStar(require("./UpdateQueueCommand"), exports);
99
108
  tslib_1.__exportStar(require("./UpdateQueueEnvironmentCommand"), exports);
100
109
  tslib_1.__exportStar(require("./UpdateQueueFleetAssociationCommand"), exports);
110
+ tslib_1.__exportStar(require("./UpdateQueueLimitAssociationCommand"), exports);
101
111
  tslib_1.__exportStar(require("./UpdateSessionCommand"), exports);
102
112
  tslib_1.__exportStar(require("./UpdateStepCommand"), exports);
103
113
  tslib_1.__exportStar(require("./UpdateStorageProfileCommand"), exports);