@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
@@ -109,6 +109,10 @@ import {
109
109
  CreateLicenseEndpointCommandInput,
110
110
  CreateLicenseEndpointCommandOutput,
111
111
  } from "./commands/CreateLicenseEndpointCommand";
112
+ import {
113
+ CreateLimitCommandInput,
114
+ CreateLimitCommandOutput,
115
+ } from "./commands/CreateLimitCommand";
112
116
  import {
113
117
  CreateMonitorCommandInput,
114
118
  CreateMonitorCommandOutput,
@@ -125,6 +129,10 @@ import {
125
129
  CreateQueueFleetAssociationCommandInput,
126
130
  CreateQueueFleetAssociationCommandOutput,
127
131
  } from "./commands/CreateQueueFleetAssociationCommand";
132
+ import {
133
+ CreateQueueLimitAssociationCommandInput,
134
+ CreateQueueLimitAssociationCommandOutput,
135
+ } from "./commands/CreateQueueLimitAssociationCommand";
128
136
  import {
129
137
  CreateStorageProfileCommandInput,
130
138
  CreateStorageProfileCommandOutput,
@@ -149,6 +157,10 @@ import {
149
157
  DeleteLicenseEndpointCommandInput,
150
158
  DeleteLicenseEndpointCommandOutput,
151
159
  } from "./commands/DeleteLicenseEndpointCommand";
160
+ import {
161
+ DeleteLimitCommandInput,
162
+ DeleteLimitCommandOutput,
163
+ } from "./commands/DeleteLimitCommand";
152
164
  import {
153
165
  DeleteMeteredProductCommandInput,
154
166
  DeleteMeteredProductCommandOutput,
@@ -169,6 +181,10 @@ import {
169
181
  DeleteQueueFleetAssociationCommandInput,
170
182
  DeleteQueueFleetAssociationCommandOutput,
171
183
  } from "./commands/DeleteQueueFleetAssociationCommand";
184
+ import {
185
+ DeleteQueueLimitAssociationCommandInput,
186
+ DeleteQueueLimitAssociationCommandOutput,
187
+ } from "./commands/DeleteQueueLimitAssociationCommand";
172
188
  import {
173
189
  DeleteStorageProfileCommandInput,
174
190
  DeleteStorageProfileCommandOutput,
@@ -213,6 +229,10 @@ import {
213
229
  GetLicenseEndpointCommandInput,
214
230
  GetLicenseEndpointCommandOutput,
215
231
  } from "./commands/GetLicenseEndpointCommand";
232
+ import {
233
+ GetLimitCommandInput,
234
+ GetLimitCommandOutput,
235
+ } from "./commands/GetLimitCommand";
216
236
  import {
217
237
  GetMonitorCommandInput,
218
238
  GetMonitorCommandOutput,
@@ -229,6 +249,10 @@ import {
229
249
  GetQueueFleetAssociationCommandInput,
230
250
  GetQueueFleetAssociationCommandOutput,
231
251
  } from "./commands/GetQueueFleetAssociationCommand";
252
+ import {
253
+ GetQueueLimitAssociationCommandInput,
254
+ GetQueueLimitAssociationCommandOutput,
255
+ } from "./commands/GetQueueLimitAssociationCommand";
232
256
  import {
233
257
  GetSessionActionCommandInput,
234
258
  GetSessionActionCommandOutput,
@@ -301,6 +325,10 @@ import {
301
325
  ListLicenseEndpointsCommandInput,
302
326
  ListLicenseEndpointsCommandOutput,
303
327
  } from "./commands/ListLicenseEndpointsCommand";
328
+ import {
329
+ ListLimitsCommandInput,
330
+ ListLimitsCommandOutput,
331
+ } from "./commands/ListLimitsCommand";
304
332
  import {
305
333
  ListMeteredProductsCommandInput,
306
334
  ListMeteredProductsCommandOutput,
@@ -317,6 +345,10 @@ import {
317
345
  ListQueueFleetAssociationsCommandInput,
318
346
  ListQueueFleetAssociationsCommandOutput,
319
347
  } from "./commands/ListQueueFleetAssociationsCommand";
348
+ import {
349
+ ListQueueLimitAssociationsCommandInput,
350
+ ListQueueLimitAssociationsCommandOutput,
351
+ } from "./commands/ListQueueLimitAssociationsCommand";
320
352
  import {
321
353
  ListQueueMembersCommandInput,
322
354
  ListQueueMembersCommandOutput,
@@ -417,6 +449,10 @@ import {
417
449
  UpdateJobCommandInput,
418
450
  UpdateJobCommandOutput,
419
451
  } from "./commands/UpdateJobCommand";
452
+ import {
453
+ UpdateLimitCommandInput,
454
+ UpdateLimitCommandOutput,
455
+ } from "./commands/UpdateLimitCommand";
420
456
  import {
421
457
  UpdateMonitorCommandInput,
422
458
  UpdateMonitorCommandOutput,
@@ -433,6 +469,10 @@ import {
433
469
  UpdateQueueFleetAssociationCommandInput,
434
470
  UpdateQueueFleetAssociationCommandOutput,
435
471
  } from "./commands/UpdateQueueFleetAssociationCommand";
472
+ import {
473
+ UpdateQueueLimitAssociationCommandInput,
474
+ UpdateQueueLimitAssociationCommandOutput,
475
+ } from "./commands/UpdateQueueLimitAssociationCommand";
436
476
  import {
437
477
  UpdateSessionCommandInput,
438
478
  UpdateSessionCommandOutput,
@@ -481,21 +521,25 @@ export type ServiceInputTypes =
481
521
  | CreateFleetCommandInput
482
522
  | CreateJobCommandInput
483
523
  | CreateLicenseEndpointCommandInput
524
+ | CreateLimitCommandInput
484
525
  | CreateMonitorCommandInput
485
526
  | CreateQueueCommandInput
486
527
  | CreateQueueEnvironmentCommandInput
487
528
  | CreateQueueFleetAssociationCommandInput
529
+ | CreateQueueLimitAssociationCommandInput
488
530
  | CreateStorageProfileCommandInput
489
531
  | CreateWorkerCommandInput
490
532
  | DeleteBudgetCommandInput
491
533
  | DeleteFarmCommandInput
492
534
  | DeleteFleetCommandInput
493
535
  | DeleteLicenseEndpointCommandInput
536
+ | DeleteLimitCommandInput
494
537
  | DeleteMeteredProductCommandInput
495
538
  | DeleteMonitorCommandInput
496
539
  | DeleteQueueCommandInput
497
540
  | DeleteQueueEnvironmentCommandInput
498
541
  | DeleteQueueFleetAssociationCommandInput
542
+ | DeleteQueueLimitAssociationCommandInput
499
543
  | DeleteStorageProfileCommandInput
500
544
  | DeleteWorkerCommandInput
501
545
  | DisassociateMemberFromFarmCommandInput
@@ -507,10 +551,12 @@ export type ServiceInputTypes =
507
551
  | GetFleetCommandInput
508
552
  | GetJobCommandInput
509
553
  | GetLicenseEndpointCommandInput
554
+ | GetLimitCommandInput
510
555
  | GetMonitorCommandInput
511
556
  | GetQueueCommandInput
512
557
  | GetQueueEnvironmentCommandInput
513
558
  | GetQueueFleetAssociationCommandInput
559
+ | GetQueueLimitAssociationCommandInput
514
560
  | GetSessionActionCommandInput
515
561
  | GetSessionCommandInput
516
562
  | GetSessionsStatisticsAggregationCommandInput
@@ -529,10 +575,12 @@ export type ServiceInputTypes =
529
575
  | ListJobParameterDefinitionsCommandInput
530
576
  | ListJobsCommandInput
531
577
  | ListLicenseEndpointsCommandInput
578
+ | ListLimitsCommandInput
532
579
  | ListMeteredProductsCommandInput
533
580
  | ListMonitorsCommandInput
534
581
  | ListQueueEnvironmentsCommandInput
535
582
  | ListQueueFleetAssociationsCommandInput
583
+ | ListQueueLimitAssociationsCommandInput
536
584
  | ListQueueMembersCommandInput
537
585
  | ListQueuesCommandInput
538
586
  | ListSessionActionsCommandInput
@@ -558,10 +606,12 @@ export type ServiceInputTypes =
558
606
  | UpdateFarmCommandInput
559
607
  | UpdateFleetCommandInput
560
608
  | UpdateJobCommandInput
609
+ | UpdateLimitCommandInput
561
610
  | UpdateMonitorCommandInput
562
611
  | UpdateQueueCommandInput
563
612
  | UpdateQueueEnvironmentCommandInput
564
613
  | UpdateQueueFleetAssociationCommandInput
614
+ | UpdateQueueLimitAssociationCommandInput
565
615
  | UpdateSessionCommandInput
566
616
  | UpdateStepCommandInput
567
617
  | UpdateStorageProfileCommandInput
@@ -585,21 +635,25 @@ export type ServiceOutputTypes =
585
635
  | CreateFleetCommandOutput
586
636
  | CreateJobCommandOutput
587
637
  | CreateLicenseEndpointCommandOutput
638
+ | CreateLimitCommandOutput
588
639
  | CreateMonitorCommandOutput
589
640
  | CreateQueueCommandOutput
590
641
  | CreateQueueEnvironmentCommandOutput
591
642
  | CreateQueueFleetAssociationCommandOutput
643
+ | CreateQueueLimitAssociationCommandOutput
592
644
  | CreateStorageProfileCommandOutput
593
645
  | CreateWorkerCommandOutput
594
646
  | DeleteBudgetCommandOutput
595
647
  | DeleteFarmCommandOutput
596
648
  | DeleteFleetCommandOutput
597
649
  | DeleteLicenseEndpointCommandOutput
650
+ | DeleteLimitCommandOutput
598
651
  | DeleteMeteredProductCommandOutput
599
652
  | DeleteMonitorCommandOutput
600
653
  | DeleteQueueCommandOutput
601
654
  | DeleteQueueEnvironmentCommandOutput
602
655
  | DeleteQueueFleetAssociationCommandOutput
656
+ | DeleteQueueLimitAssociationCommandOutput
603
657
  | DeleteStorageProfileCommandOutput
604
658
  | DeleteWorkerCommandOutput
605
659
  | DisassociateMemberFromFarmCommandOutput
@@ -611,10 +665,12 @@ export type ServiceOutputTypes =
611
665
  | GetFleetCommandOutput
612
666
  | GetJobCommandOutput
613
667
  | GetLicenseEndpointCommandOutput
668
+ | GetLimitCommandOutput
614
669
  | GetMonitorCommandOutput
615
670
  | GetQueueCommandOutput
616
671
  | GetQueueEnvironmentCommandOutput
617
672
  | GetQueueFleetAssociationCommandOutput
673
+ | GetQueueLimitAssociationCommandOutput
618
674
  | GetSessionActionCommandOutput
619
675
  | GetSessionCommandOutput
620
676
  | GetSessionsStatisticsAggregationCommandOutput
@@ -633,10 +689,12 @@ export type ServiceOutputTypes =
633
689
  | ListJobParameterDefinitionsCommandOutput
634
690
  | ListJobsCommandOutput
635
691
  | ListLicenseEndpointsCommandOutput
692
+ | ListLimitsCommandOutput
636
693
  | ListMeteredProductsCommandOutput
637
694
  | ListMonitorsCommandOutput
638
695
  | ListQueueEnvironmentsCommandOutput
639
696
  | ListQueueFleetAssociationsCommandOutput
697
+ | ListQueueLimitAssociationsCommandOutput
640
698
  | ListQueueMembersCommandOutput
641
699
  | ListQueuesCommandOutput
642
700
  | ListSessionActionsCommandOutput
@@ -662,10 +720,12 @@ export type ServiceOutputTypes =
662
720
  | UpdateFarmCommandOutput
663
721
  | UpdateFleetCommandOutput
664
722
  | UpdateJobCommandOutput
723
+ | UpdateLimitCommandOutput
665
724
  | UpdateMonitorCommandOutput
666
725
  | UpdateQueueCommandOutput
667
726
  | UpdateQueueEnvironmentCommandOutput
668
727
  | UpdateQueueFleetAssociationCommandOutput
728
+ | UpdateQueueLimitAssociationCommandOutput
669
729
  | UpdateSessionCommandOutput
670
730
  | UpdateStepCommandOutput
671
731
  | UpdateStorageProfileCommandOutput
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeadlineClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DeadlineClient";
8
+ import { CreateLimitRequest, CreateLimitResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface CreateLimitCommandInput extends CreateLimitRequest {}
12
+ export interface CreateLimitCommandOutput
13
+ extends CreateLimitResponse,
14
+ __MetadataBearer {}
15
+ declare const CreateLimitCommand_base: {
16
+ new (
17
+ input: CreateLimitCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ CreateLimitCommandInput,
20
+ CreateLimitCommandOutput,
21
+ DeadlineClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: CreateLimitCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ CreateLimitCommandInput,
29
+ CreateLimitCommandOutput,
30
+ DeadlineClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class CreateLimitCommand extends CreateLimitCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: CreateLimitRequest;
40
+ output: CreateLimitResponse;
41
+ };
42
+ sdk: {
43
+ input: CreateLimitCommandInput;
44
+ output: CreateLimitCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeadlineClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DeadlineClient";
8
+ import {
9
+ CreateQueueLimitAssociationRequest,
10
+ CreateQueueLimitAssociationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateQueueLimitAssociationCommandInput
15
+ extends CreateQueueLimitAssociationRequest {}
16
+ export interface CreateQueueLimitAssociationCommandOutput
17
+ extends CreateQueueLimitAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateQueueLimitAssociationCommand_base: {
20
+ new (
21
+ input: CreateQueueLimitAssociationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateQueueLimitAssociationCommandInput,
24
+ CreateQueueLimitAssociationCommandOutput,
25
+ DeadlineClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateQueueLimitAssociationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateQueueLimitAssociationCommandInput,
33
+ CreateQueueLimitAssociationCommandOutput,
34
+ DeadlineClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateQueueLimitAssociationCommand extends CreateQueueLimitAssociationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateQueueLimitAssociationRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: CreateQueueLimitAssociationCommandInput;
48
+ output: CreateQueueLimitAssociationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeadlineClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DeadlineClient";
8
+ import { DeleteLimitRequest, DeleteLimitResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteLimitCommandInput extends DeleteLimitRequest {}
12
+ export interface DeleteLimitCommandOutput
13
+ extends DeleteLimitResponse,
14
+ __MetadataBearer {}
15
+ declare const DeleteLimitCommand_base: {
16
+ new (
17
+ input: DeleteLimitCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteLimitCommandInput,
20
+ DeleteLimitCommandOutput,
21
+ DeadlineClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DeleteLimitCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteLimitCommandInput,
29
+ DeleteLimitCommandOutput,
30
+ DeadlineClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteLimitCommand extends DeleteLimitCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteLimitRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteLimitCommandInput;
44
+ output: DeleteLimitCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeadlineClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DeadlineClient";
8
+ import {
9
+ DeleteQueueLimitAssociationRequest,
10
+ DeleteQueueLimitAssociationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteQueueLimitAssociationCommandInput
15
+ extends DeleteQueueLimitAssociationRequest {}
16
+ export interface DeleteQueueLimitAssociationCommandOutput
17
+ extends DeleteQueueLimitAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteQueueLimitAssociationCommand_base: {
20
+ new (
21
+ input: DeleteQueueLimitAssociationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteQueueLimitAssociationCommandInput,
24
+ DeleteQueueLimitAssociationCommandOutput,
25
+ DeadlineClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeleteQueueLimitAssociationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteQueueLimitAssociationCommandInput,
33
+ DeleteQueueLimitAssociationCommandOutput,
34
+ DeadlineClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteQueueLimitAssociationCommand extends DeleteQueueLimitAssociationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteQueueLimitAssociationRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteQueueLimitAssociationCommandInput;
48
+ output: DeleteQueueLimitAssociationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeadlineClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DeadlineClient";
8
+ import { GetLimitRequest, GetLimitResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetLimitCommandInput extends GetLimitRequest {}
12
+ export interface GetLimitCommandOutput
13
+ extends GetLimitResponse,
14
+ __MetadataBearer {}
15
+ declare const GetLimitCommand_base: {
16
+ new (
17
+ input: GetLimitCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetLimitCommandInput,
20
+ GetLimitCommandOutput,
21
+ DeadlineClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetLimitCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetLimitCommandInput,
29
+ GetLimitCommandOutput,
30
+ DeadlineClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetLimitCommand extends GetLimitCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetLimitRequest;
40
+ output: GetLimitResponse;
41
+ };
42
+ sdk: {
43
+ input: GetLimitCommandInput;
44
+ output: GetLimitCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeadlineClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DeadlineClient";
8
+ import {
9
+ GetQueueLimitAssociationRequest,
10
+ GetQueueLimitAssociationResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetQueueLimitAssociationCommandInput
15
+ extends GetQueueLimitAssociationRequest {}
16
+ export interface GetQueueLimitAssociationCommandOutput
17
+ extends GetQueueLimitAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetQueueLimitAssociationCommand_base: {
20
+ new (
21
+ input: GetQueueLimitAssociationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetQueueLimitAssociationCommandInput,
24
+ GetQueueLimitAssociationCommandOutput,
25
+ DeadlineClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetQueueLimitAssociationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetQueueLimitAssociationCommandInput,
33
+ GetQueueLimitAssociationCommandOutput,
34
+ DeadlineClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetQueueLimitAssociationCommand extends GetQueueLimitAssociationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetQueueLimitAssociationRequest;
44
+ output: GetQueueLimitAssociationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetQueueLimitAssociationCommandInput;
48
+ output: GetQueueLimitAssociationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeadlineClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DeadlineClient";
8
+ import { ListLimitsRequest, ListLimitsResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListLimitsCommandInput extends ListLimitsRequest {}
12
+ export interface ListLimitsCommandOutput
13
+ extends ListLimitsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListLimitsCommand_base: {
16
+ new (
17
+ input: ListLimitsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListLimitsCommandInput,
20
+ ListLimitsCommandOutput,
21
+ DeadlineClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: ListLimitsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListLimitsCommandInput,
29
+ ListLimitsCommandOutput,
30
+ DeadlineClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListLimitsCommand extends ListLimitsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListLimitsRequest;
40
+ output: ListLimitsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListLimitsCommandInput;
44
+ output: ListLimitsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ListQueueEnvironmentsRequest,
10
10
  ListQueueEnvironmentsResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ListQueueEnvironmentsCommandInput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeadlineClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DeadlineClient";
8
+ import {
9
+ ListQueueLimitAssociationsRequest,
10
+ ListQueueLimitAssociationsResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListQueueLimitAssociationsCommandInput
15
+ extends ListQueueLimitAssociationsRequest {}
16
+ export interface ListQueueLimitAssociationsCommandOutput
17
+ extends ListQueueLimitAssociationsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListQueueLimitAssociationsCommand_base: {
20
+ new (
21
+ input: ListQueueLimitAssociationsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListQueueLimitAssociationsCommandInput,
24
+ ListQueueLimitAssociationsCommandOutput,
25
+ DeadlineClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListQueueLimitAssociationsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListQueueLimitAssociationsCommandInput,
33
+ ListQueueLimitAssociationsCommandOutput,
34
+ DeadlineClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListQueueLimitAssociationsCommand extends ListQueueLimitAssociationsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListQueueLimitAssociationsRequest;
44
+ output: ListQueueLimitAssociationsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListQueueLimitAssociationsCommandInput;
48
+ output: ListQueueLimitAssociationsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../DeadlineClient";
8
- import { ListQueueMembersRequest } from "../models/models_0";
9
- import { ListQueueMembersResponse } from "../models/models_1";
8
+ import {
9
+ ListQueueMembersRequest,
10
+ ListQueueMembersResponse,
11
+ } from "../models/models_1";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface ListQueueMembersCommandInput extends ListQueueMembersRequest {}
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../DeadlineClient";
8
- import { UpdateJobRequest, UpdateJobResponse } from "../models/models_0";
8
+ import { UpdateJobRequest, UpdateJobResponse } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface UpdateJobCommandInput extends UpdateJobRequest {}