@@ -10,6 +10,11 @@ import {
10
10
} from "./commands/ClaimGameServerCommand" ;
11
11
import { CreateAliasCommand , CreateAliasCommandInput , CreateAliasCommandOutput } from "./commands/CreateAliasCommand" ;
12
12
import { CreateBuildCommand , CreateBuildCommandInput , CreateBuildCommandOutput } from "./commands/CreateBuildCommand" ;
13
+ import {
14
+ CreateContainerGroupDefinitionCommand ,
15
+ CreateContainerGroupDefinitionCommandInput ,
16
+ CreateContainerGroupDefinitionCommandOutput ,
17
+ } from "./commands/CreateContainerGroupDefinitionCommand" ;
13
18
import { CreateFleetCommand , CreateFleetCommandInput , CreateFleetCommandOutput } from "./commands/CreateFleetCommand" ;
14
19
import {
15
20
CreateFleetLocationsCommand ,
@@ -73,6 +78,11 @@ import {
73
78
} from "./commands/CreateVpcPeeringConnectionCommand" ;
74
79
import { DeleteAliasCommand , DeleteAliasCommandInput , DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand" ;
75
80
import { DeleteBuildCommand , DeleteBuildCommandInput , DeleteBuildCommandOutput } from "./commands/DeleteBuildCommand" ;
81
+ import {
82
+ DeleteContainerGroupDefinitionCommand ,
83
+ DeleteContainerGroupDefinitionCommandInput ,
84
+ DeleteContainerGroupDefinitionCommandOutput ,
85
+ } from "./commands/DeleteContainerGroupDefinitionCommand" ;
76
86
import { DeleteFleetCommand , DeleteFleetCommandInput , DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand" ;
77
87
import {
78
88
DeleteFleetLocationsCommand ,
@@ -149,6 +159,11 @@ import {
149
159
DescribeComputeCommandInput ,
150
160
DescribeComputeCommandOutput ,
151
161
} from "./commands/DescribeComputeCommand" ;
162
+ import {
163
+ DescribeContainerGroupDefinitionCommand ,
164
+ DescribeContainerGroupDefinitionCommandInput ,
165
+ DescribeContainerGroupDefinitionCommandOutput ,
166
+ } from "./commands/DescribeContainerGroupDefinitionCommand" ;
152
167
import {
153
168
DescribeEC2InstanceLimitsCommand ,
154
169
DescribeEC2InstanceLimitsCommandInput ,
@@ -302,6 +317,11 @@ import {
302
317
import { ListAliasesCommand , ListAliasesCommandInput , ListAliasesCommandOutput } from "./commands/ListAliasesCommand" ;
303
318
import { ListBuildsCommand , ListBuildsCommandInput , ListBuildsCommandOutput } from "./commands/ListBuildsCommand" ;
304
319
import { ListComputeCommand , ListComputeCommandInput , ListComputeCommandOutput } from "./commands/ListComputeCommand" ;
320
+ import {
321
+ ListContainerGroupDefinitionsCommand ,
322
+ ListContainerGroupDefinitionsCommandInput ,
323
+ ListContainerGroupDefinitionsCommandOutput ,
324
+ } from "./commands/ListContainerGroupDefinitionsCommand" ;
305
325
import { ListFleetsCommand , ListFleetsCommandInput , ListFleetsCommandOutput } from "./commands/ListFleetsCommand" ;
306
326
import {
307
327
ListGameServerGroupsCommand ,
@@ -469,6 +489,7 @@ const commands = {
469
489
ClaimGameServerCommand,
470
490
CreateAliasCommand,
471
491
CreateBuildCommand,
492
+ CreateContainerGroupDefinitionCommand,
472
493
CreateFleetCommand,
473
494
CreateFleetLocationsCommand,
474
495
CreateGameServerGroupCommand,
@@ -484,6 +505,7 @@ const commands = {
484
505
CreateVpcPeeringConnectionCommand,
485
506
DeleteAliasCommand,
486
507
DeleteBuildCommand,
508
+ DeleteContainerGroupDefinitionCommand,
487
509
DeleteFleetCommand,
488
510
DeleteFleetLocationsCommand,
489
511
DeleteGameServerGroupCommand,
@@ -500,6 +522,7 @@ const commands = {
500
522
DescribeAliasCommand,
501
523
DescribeBuildCommand,
502
524
DescribeComputeCommand,
525
+ DescribeContainerGroupDefinitionCommand,
503
526
DescribeEC2InstanceLimitsCommand,
504
527
DescribeFleetAttributesCommand,
505
528
DescribeFleetCapacityCommand,
@@ -533,6 +556,7 @@ const commands = {
533
556
ListAliasesCommand,
534
557
ListBuildsCommand,
535
558
ListComputeCommand,
559
+ ListContainerGroupDefinitionsCommand,
536
560
ListFleetsCommand,
537
561
ListGameServerGroupsCommand,
538
562
ListGameServersCommand,
@@ -620,6 +644,23 @@ export interface GameLift {
620
644
cb : ( err : any , data ?: CreateBuildCommandOutput ) => void
621
645
) : void ;
622
646
647
+ /**
648
+ * @see {@link CreateContainerGroupDefinitionCommand }
649
+ */
650
+ createContainerGroupDefinition (
651
+ args : CreateContainerGroupDefinitionCommandInput ,
652
+ options ?: __HttpHandlerOptions
653
+ ) : Promise < CreateContainerGroupDefinitionCommandOutput > ;
654
+ createContainerGroupDefinition (
655
+ args : CreateContainerGroupDefinitionCommandInput ,
656
+ cb : ( err : any , data ?: CreateContainerGroupDefinitionCommandOutput ) => void
657
+ ) : void ;
658
+ createContainerGroupDefinition (
659
+ args : CreateContainerGroupDefinitionCommandInput ,
660
+ options : __HttpHandlerOptions ,
661
+ cb : ( err : any , data ?: CreateContainerGroupDefinitionCommandOutput ) => void
662
+ ) : void ;
663
+
623
664
/**
624
665
* @see {@link CreateFleetCommand }
625
666
*/
@@ -849,6 +890,23 @@ export interface GameLift {
849
890
cb : ( err : any , data ?: DeleteBuildCommandOutput ) => void
850
891
) : void ;
851
892
893
+ /**
894
+ * @see {@link DeleteContainerGroupDefinitionCommand }
895
+ */
896
+ deleteContainerGroupDefinition (
897
+ args : DeleteContainerGroupDefinitionCommandInput ,
898
+ options ?: __HttpHandlerOptions
899
+ ) : Promise < DeleteContainerGroupDefinitionCommandOutput > ;
900
+ deleteContainerGroupDefinition (
901
+ args : DeleteContainerGroupDefinitionCommandInput ,
902
+ cb : ( err : any , data ?: DeleteContainerGroupDefinitionCommandOutput ) => void
903
+ ) : void ;
904
+ deleteContainerGroupDefinition (
905
+ args : DeleteContainerGroupDefinitionCommandInput ,
906
+ options : __HttpHandlerOptions ,
907
+ cb : ( err : any , data ?: DeleteContainerGroupDefinitionCommandOutput ) => void
908
+ ) : void ;
909
+
852
910
/**
853
911
* @see {@link DeleteFleetCommand }
854
912
*/
@@ -1091,6 +1149,23 @@ export interface GameLift {
1091
1149
cb : ( err : any , data ?: DescribeComputeCommandOutput ) => void
1092
1150
) : void ;
1093
1151
1152
+ /**
1153
+ * @see {@link DescribeContainerGroupDefinitionCommand }
1154
+ */
1155
+ describeContainerGroupDefinition (
1156
+ args : DescribeContainerGroupDefinitionCommandInput ,
1157
+ options ?: __HttpHandlerOptions
1158
+ ) : Promise < DescribeContainerGroupDefinitionCommandOutput > ;
1159
+ describeContainerGroupDefinition (
1160
+ args : DescribeContainerGroupDefinitionCommandInput ,
1161
+ cb : ( err : any , data ?: DescribeContainerGroupDefinitionCommandOutput ) => void
1162
+ ) : void ;
1163
+ describeContainerGroupDefinition (
1164
+ args : DescribeContainerGroupDefinitionCommandInput ,
1165
+ options : __HttpHandlerOptions ,
1166
+ cb : ( err : any , data ?: DescribeContainerGroupDefinitionCommandOutput ) => void
1167
+ ) : void ;
1168
+
1094
1169
/**
1095
1170
* @see {@link DescribeEC2InstanceLimitsCommand }
1096
1171
*/
@@ -1645,6 +1720,24 @@ export interface GameLift {
1645
1720
cb : ( err : any , data ?: ListComputeCommandOutput ) => void
1646
1721
) : void ;
1647
1722
1723
+ /**
1724
+ * @see {@link ListContainerGroupDefinitionsCommand }
1725
+ */
1726
+ listContainerGroupDefinitions ( ) : Promise < ListContainerGroupDefinitionsCommandOutput > ;
1727
+ listContainerGroupDefinitions (
1728
+ args : ListContainerGroupDefinitionsCommandInput ,
1729
+ options ?: __HttpHandlerOptions
1730
+ ) : Promise < ListContainerGroupDefinitionsCommandOutput > ;
1731
+ listContainerGroupDefinitions (
1732
+ args : ListContainerGroupDefinitionsCommandInput ,
1733
+ cb : ( err : any , data ?: ListContainerGroupDefinitionsCommandOutput ) => void
1734
+ ) : void ;
1735
+ listContainerGroupDefinitions (
1736
+ args : ListContainerGroupDefinitionsCommandInput ,
1737
+ options : __HttpHandlerOptions ,
1738
+ cb : ( err : any , data ?: ListContainerGroupDefinitionsCommandOutput ) => void
1739
+ ) : void ;
1740
+
1648
1741
/**
1649
1742
* @see {@link ListFleetsCommand }
1650
1743
*/
0 commit comments