@aws-sdk/client-gamelift 3.686.0 → 3.690.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.
- package/README.md +72 -0
- package/dist-cjs/index.js +830 -188
- package/dist-es/GameLift.js +18 -0
- package/dist-es/commands/CreateContainerFleetCommand.js +23 -0
- package/dist-es/commands/CreateFleetCommand.js +2 -2
- package/dist-es/commands/DeleteContainerFleetCommand.js +22 -0
- package/dist-es/commands/DescribeContainerFleetCommand.js +23 -0
- package/dist-es/commands/DescribeFleetAttributesCommand.js +1 -2
- package/dist-es/commands/DescribeFleetDeploymentCommand.js +22 -0
- package/dist-es/commands/ListContainerFleetsCommand.js +23 -0
- package/dist-es/commands/ListContainerGroupDefinitionVersionsCommand.js +23 -0
- package/dist-es/commands/ListContainerGroupDefinitionsCommand.js +1 -1
- package/dist-es/commands/ListFleetDeploymentsCommand.js +22 -0
- package/dist-es/commands/RegisterComputeCommand.js +1 -1
- package/dist-es/commands/RequestUploadCredentialsCommand.js +1 -1
- package/dist-es/commands/UpdateContainerFleetCommand.js +23 -0
- package/dist-es/commands/UpdateContainerGroupDefinitionCommand.js +23 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +132 -81
- package/dist-es/models/models_1.js +50 -1
- package/dist-es/pagination/ListContainerFleetsPaginator.js +4 -0
- package/dist-es/pagination/ListContainerGroupDefinitionVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListFleetDeploymentsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_1.js +352 -7
- package/dist-types/GameLift.d.ts +65 -0
- package/dist-types/GameLiftClient.d.ts +11 -2
- package/dist-types/commands/CreateBuildCommand.d.ts +27 -21
- package/dist-types/commands/CreateContainerFleetCommand.d.ts +283 -0
- package/dist-types/commands/CreateContainerGroupDefinitionCommand.d.ts +278 -119
- package/dist-types/commands/CreateFleetCommand.d.ts +5 -88
- package/dist-types/commands/CreateFleetLocationsCommand.d.ts +3 -6
- package/dist-types/commands/CreateScriptCommand.d.ts +9 -12
- package/dist-types/commands/DeleteContainerFleetCommand.d.ts +102 -0
- package/dist-types/commands/DeleteContainerGroupDefinitionCommand.d.ts +24 -7
- package/dist-types/commands/DeleteScalingPolicyCommand.d.ts +3 -0
- package/dist-types/commands/DeregisterComputeCommand.d.ts +2 -5
- package/dist-types/commands/DescribeComputeCommand.d.ts +14 -21
- package/dist-types/commands/DescribeContainerFleetCommand.d.ts +157 -0
- package/dist-types/commands/DescribeContainerGroupDefinitionCommand.d.ts +95 -48
- package/dist-types/commands/DescribeFleetAttributesCommand.d.ts +2 -21
- package/dist-types/commands/DescribeFleetCapacityCommand.d.ts +8 -8
- package/dist-types/commands/DescribeFleetDeploymentCommand.d.ts +125 -0
- package/dist-types/commands/DescribeFleetEventsCommand.d.ts +4 -1
- package/dist-types/commands/DescribeFleetLocationCapacityCommand.d.ts +4 -4
- package/dist-types/commands/DescribeFleetPortSettingsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeRuntimeConfigurationCommand.d.ts +2 -4
- package/dist-types/commands/GetComputeAccessCommand.d.ts +20 -30
- package/dist-types/commands/GetComputeAuthTokenCommand.d.ts +18 -13
- package/dist-types/commands/ListComputeCommand.d.ts +36 -28
- package/dist-types/commands/ListContainerFleetsCommand.d.ts +165 -0
- package/dist-types/commands/ListContainerGroupDefinitionVersionsCommand.d.ts +216 -0
- package/dist-types/commands/ListContainerGroupDefinitionsCommand.d.ts +97 -49
- package/dist-types/commands/ListFleetDeploymentsCommand.d.ts +132 -0
- package/dist-types/commands/ListFleetsCommand.d.ts +2 -10
- package/dist-types/commands/ListGameServerGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListGameServersCommand.d.ts +1 -1
- package/dist-types/commands/ListLocationsCommand.d.ts +1 -1
- package/dist-types/commands/ListScriptsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -1
- package/dist-types/commands/PutScalingPolicyCommand.d.ts +4 -1
- package/dist-types/commands/RegisterComputeCommand.d.ts +13 -19
- package/dist-types/commands/RegisterGameServerCommand.d.ts +1 -1
- package/dist-types/commands/RequestUploadCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/ResolveAliasCommand.d.ts +1 -1
- package/dist-types/commands/ResumeGameServerGroupCommand.d.ts +1 -2
- package/dist-types/commands/StartGameSessionPlacementCommand.d.ts +2 -2
- package/dist-types/commands/StopFleetActionsCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UpdateContainerFleetCommand.d.ts +253 -0
- package/dist-types/commands/UpdateContainerGroupDefinitionCommand.d.ts +310 -0
- package/dist-types/commands/UpdateFleetCapacityCommand.d.ts +6 -9
- package/dist-types/commands/UpdateRuntimeConfigurationCommand.d.ts +1 -3
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +5518 -5258
- package/dist-types/models/models_1.d.ts +897 -18
- package/dist-types/pagination/ListContainerFleetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListContainerGroupDefinitionVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFleetDeploymentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +81 -0
- package/dist-types/ts3.4/GameLift.d.ts +161 -0
- package/dist-types/ts3.4/GameLiftClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/CreateContainerFleetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteContainerFleetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteContainerGroupDefinitionCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/DescribeContainerFleetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeFleetDeploymentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListContainerFleetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListContainerGroupDefinitionVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListContainerGroupDefinitionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListFleetDeploymentsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFleetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListGameServerGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListGameServersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListLocationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListScriptsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutScalingPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RegisterComputeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RegisterGameServerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RequestUploadCredentialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResolveAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResumeGameServerGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateContainerFleetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateContainerGroupDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +333 -261
- package/dist-types/ts3.4/models/models_1.d.ts +222 -0
- package/dist-types/ts3.4/pagination/ListContainerFleetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListContainerGroupDefinitionVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFleetDeploymentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +108 -0
- package/package.json +6 -6
|
@@ -197,22 +197,14 @@ export type ComparisonOperatorType =
|
|
|
197
197
|
(typeof ComparisonOperatorType)[keyof typeof ComparisonOperatorType];
|
|
198
198
|
export declare const ComputeStatus: {
|
|
199
199
|
readonly ACTIVE: "ACTIVE";
|
|
200
|
+
readonly IMPAIRED: "IMPAIRED";
|
|
200
201
|
readonly PENDING: "PENDING";
|
|
201
202
|
readonly TERMINATING: "TERMINATING";
|
|
202
203
|
};
|
|
203
204
|
export type ComputeStatus = (typeof ComputeStatus)[keyof typeof ComputeStatus];
|
|
204
|
-
export
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
};
|
|
208
|
-
export type IpProtocol = (typeof IpProtocol)[keyof typeof IpProtocol];
|
|
209
|
-
export interface ContainerPortMapping {
|
|
210
|
-
ContainerPort?: number;
|
|
211
|
-
ConnectionPort?: number;
|
|
212
|
-
Protocol?: IpProtocol;
|
|
213
|
-
}
|
|
214
|
-
export interface ContainerAttributes {
|
|
215
|
-
ContainerPortMappings?: ContainerPortMapping[];
|
|
205
|
+
export interface ContainerAttribute {
|
|
206
|
+
ContainerName?: string;
|
|
207
|
+
ContainerRuntimeId?: string;
|
|
216
208
|
}
|
|
217
209
|
export declare const EC2InstanceType: {
|
|
218
210
|
readonly c3_2xlarge: "c3.2xlarge";
|
|
@@ -408,11 +400,11 @@ export interface Compute {
|
|
|
408
400
|
GameLiftServiceSdkEndpoint?: string;
|
|
409
401
|
GameLiftAgentEndpoint?: string;
|
|
410
402
|
InstanceId?: string;
|
|
411
|
-
ContainerAttributes?:
|
|
403
|
+
ContainerAttributes?: ContainerAttribute[];
|
|
404
|
+
GameServerContainerGroupDefinitionArn?: string;
|
|
412
405
|
}
|
|
413
406
|
export declare const ComputeType: {
|
|
414
407
|
readonly ANYWHERE: "ANYWHERE";
|
|
415
|
-
readonly CONTAINER: "CONTAINER";
|
|
416
408
|
readonly EC2: "EC2";
|
|
417
409
|
};
|
|
418
410
|
export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
|
|
@@ -436,16 +428,119 @@ export interface ContainerEnvironment {
|
|
|
436
428
|
Name: string | undefined;
|
|
437
429
|
Value: string | undefined;
|
|
438
430
|
}
|
|
439
|
-
export
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
431
|
+
export declare const ContainerFleetBillingType: {
|
|
432
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
433
|
+
readonly SPOT: "SPOT";
|
|
434
|
+
};
|
|
435
|
+
export type ContainerFleetBillingType =
|
|
436
|
+
(typeof ContainerFleetBillingType)[keyof typeof ContainerFleetBillingType];
|
|
437
|
+
export interface DeploymentDetails {
|
|
438
|
+
LatestDeploymentId?: string;
|
|
439
|
+
}
|
|
440
|
+
export interface GameSessionCreationLimitPolicy {
|
|
441
|
+
NewGameSessionsPerCreator?: number;
|
|
442
|
+
PolicyPeriodInMinutes?: number;
|
|
445
443
|
}
|
|
446
|
-
export
|
|
447
|
-
|
|
448
|
-
|
|
444
|
+
export declare const IpProtocol: {
|
|
445
|
+
readonly TCP: "TCP";
|
|
446
|
+
readonly UDP: "UDP";
|
|
447
|
+
};
|
|
448
|
+
export type IpProtocol = (typeof IpProtocol)[keyof typeof IpProtocol];
|
|
449
|
+
export interface IpPermission {
|
|
450
|
+
FromPort: number | undefined;
|
|
451
|
+
ToPort: number | undefined;
|
|
452
|
+
IpRange: string | undefined;
|
|
453
|
+
Protocol: IpProtocol | undefined;
|
|
454
|
+
}
|
|
455
|
+
export declare const ContainerFleetLocationStatus: {
|
|
456
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
457
|
+
readonly ACTIVE: "ACTIVE";
|
|
458
|
+
readonly CREATED: "CREATED";
|
|
459
|
+
readonly CREATING: "CREATING";
|
|
460
|
+
readonly DELETING: "DELETING";
|
|
461
|
+
readonly PENDING: "PENDING";
|
|
462
|
+
readonly UPDATING: "UPDATING";
|
|
463
|
+
};
|
|
464
|
+
export type ContainerFleetLocationStatus =
|
|
465
|
+
(typeof ContainerFleetLocationStatus)[keyof typeof ContainerFleetLocationStatus];
|
|
466
|
+
export interface ContainerFleetLocationAttributes {
|
|
467
|
+
Location?: string;
|
|
468
|
+
Status?: ContainerFleetLocationStatus;
|
|
469
|
+
}
|
|
470
|
+
export declare const LogDestination: {
|
|
471
|
+
readonly CLOUDWATCH: "CLOUDWATCH";
|
|
472
|
+
readonly NONE: "NONE";
|
|
473
|
+
readonly S3: "S3";
|
|
474
|
+
};
|
|
475
|
+
export type LogDestination =
|
|
476
|
+
(typeof LogDestination)[keyof typeof LogDestination];
|
|
477
|
+
export interface LogConfiguration {
|
|
478
|
+
LogDestination?: LogDestination;
|
|
479
|
+
S3BucketName?: string;
|
|
480
|
+
LogGroupArn?: string;
|
|
481
|
+
}
|
|
482
|
+
export declare const ProtectionPolicy: {
|
|
483
|
+
readonly FullProtection: "FullProtection";
|
|
484
|
+
readonly NoProtection: "NoProtection";
|
|
485
|
+
};
|
|
486
|
+
export type ProtectionPolicy =
|
|
487
|
+
(typeof ProtectionPolicy)[keyof typeof ProtectionPolicy];
|
|
488
|
+
export declare const ContainerFleetStatus: {
|
|
489
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
490
|
+
readonly ACTIVE: "ACTIVE";
|
|
491
|
+
readonly CREATED: "CREATED";
|
|
492
|
+
readonly CREATING: "CREATING";
|
|
493
|
+
readonly DELETING: "DELETING";
|
|
494
|
+
readonly PENDING: "PENDING";
|
|
495
|
+
readonly UPDATING: "UPDATING";
|
|
496
|
+
};
|
|
497
|
+
export type ContainerFleetStatus =
|
|
498
|
+
(typeof ContainerFleetStatus)[keyof typeof ContainerFleetStatus];
|
|
499
|
+
export interface ContainerFleet {
|
|
500
|
+
FleetId?: string;
|
|
501
|
+
FleetArn?: string;
|
|
502
|
+
FleetRoleArn?: string;
|
|
503
|
+
GameServerContainerGroupDefinitionName?: string;
|
|
504
|
+
GameServerContainerGroupDefinitionArn?: string;
|
|
505
|
+
PerInstanceContainerGroupDefinitionName?: string;
|
|
506
|
+
PerInstanceContainerGroupDefinitionArn?: string;
|
|
507
|
+
InstanceConnectionPortRange?: ConnectionPortRange;
|
|
508
|
+
InstanceInboundPermissions?: IpPermission[];
|
|
509
|
+
GameServerContainerGroupsPerInstance?: number;
|
|
510
|
+
MaximumGameServerContainerGroupsPerInstance?: number;
|
|
511
|
+
InstanceType?: string;
|
|
512
|
+
BillingType?: ContainerFleetBillingType;
|
|
513
|
+
Description?: string;
|
|
514
|
+
CreationTime?: Date;
|
|
515
|
+
MetricGroups?: string[];
|
|
516
|
+
NewGameSessionProtectionPolicy?: ProtectionPolicy;
|
|
517
|
+
GameSessionCreationLimitPolicy?: GameSessionCreationLimitPolicy;
|
|
518
|
+
Status?: ContainerFleetStatus;
|
|
519
|
+
DeploymentDetails?: DeploymentDetails;
|
|
520
|
+
LogConfiguration?: LogConfiguration;
|
|
521
|
+
LocationAttributes?: ContainerFleetLocationAttributes[];
|
|
522
|
+
}
|
|
523
|
+
export declare const ContainerFleetRemoveAttribute: {
|
|
524
|
+
readonly PER_INSTANCE_CONTAINER_GROUP_DEFINITION: "PER_INSTANCE_CONTAINER_GROUP_DEFINITION";
|
|
525
|
+
};
|
|
526
|
+
export type ContainerFleetRemoveAttribute =
|
|
527
|
+
(typeof ContainerFleetRemoveAttribute)[keyof typeof ContainerFleetRemoveAttribute];
|
|
528
|
+
export declare const ContainerGroupType: {
|
|
529
|
+
readonly GAME_SERVER: "GAME_SERVER";
|
|
530
|
+
readonly PER_INSTANCE: "PER_INSTANCE";
|
|
531
|
+
};
|
|
532
|
+
export type ContainerGroupType =
|
|
533
|
+
(typeof ContainerGroupType)[keyof typeof ContainerGroupType];
|
|
534
|
+
export declare const ContainerMountPointAccessLevel: {
|
|
535
|
+
readonly READ_AND_WRITE: "READ_AND_WRITE";
|
|
536
|
+
readonly READ_ONLY: "READ_ONLY";
|
|
537
|
+
};
|
|
538
|
+
export type ContainerMountPointAccessLevel =
|
|
539
|
+
(typeof ContainerMountPointAccessLevel)[keyof typeof ContainerMountPointAccessLevel];
|
|
540
|
+
export interface ContainerMountPoint {
|
|
541
|
+
InstancePath: string | undefined;
|
|
542
|
+
ContainerPath?: string;
|
|
543
|
+
AccessLevel?: ContainerMountPointAccessLevel;
|
|
449
544
|
}
|
|
450
545
|
export interface ContainerPortRange {
|
|
451
546
|
FromPort: number | undefined;
|
|
@@ -455,46 +550,21 @@ export interface ContainerPortRange {
|
|
|
455
550
|
export interface ContainerPortConfiguration {
|
|
456
551
|
ContainerPortRanges: ContainerPortRange[] | undefined;
|
|
457
552
|
}
|
|
458
|
-
export interface
|
|
459
|
-
ContainerName
|
|
460
|
-
ImageUri: string | undefined;
|
|
461
|
-
ResolvedImageDigest?: string;
|
|
462
|
-
MemoryLimits?: ContainerMemoryLimits;
|
|
463
|
-
PortConfiguration?: ContainerPortConfiguration;
|
|
464
|
-
Cpu?: number;
|
|
465
|
-
HealthCheck?: ContainerHealthCheck;
|
|
466
|
-
Command?: string[];
|
|
467
|
-
Essential?: boolean;
|
|
468
|
-
EntryPoint?: string[];
|
|
469
|
-
WorkingDirectory?: string;
|
|
470
|
-
Environment?: ContainerEnvironment[];
|
|
553
|
+
export interface GameServerContainerDefinition {
|
|
554
|
+
ContainerName?: string;
|
|
471
555
|
DependsOn?: ContainerDependency[];
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
ImageUri: string | undefined;
|
|
476
|
-
MemoryLimits?: ContainerMemoryLimits;
|
|
556
|
+
MountPoints?: ContainerMountPoint[];
|
|
557
|
+
EnvironmentOverride?: ContainerEnvironment[];
|
|
558
|
+
ImageUri?: string;
|
|
477
559
|
PortConfiguration?: ContainerPortConfiguration;
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
Command?: string[];
|
|
481
|
-
Essential?: boolean;
|
|
482
|
-
EntryPoint?: string[];
|
|
483
|
-
WorkingDirectory?: string;
|
|
484
|
-
Environment?: ContainerEnvironment[];
|
|
485
|
-
DependsOn?: ContainerDependency[];
|
|
560
|
+
ResolvedImageDigest?: string;
|
|
561
|
+
ServerSdkVersion?: string;
|
|
486
562
|
}
|
|
487
563
|
export declare const ContainerOperatingSystem: {
|
|
488
564
|
readonly AMAZON_LINUX_2023: "AMAZON_LINUX_2023";
|
|
489
565
|
};
|
|
490
566
|
export type ContainerOperatingSystem =
|
|
491
567
|
(typeof ContainerOperatingSystem)[keyof typeof ContainerOperatingSystem];
|
|
492
|
-
export declare const ContainerSchedulingStrategy: {
|
|
493
|
-
readonly DAEMON: "DAEMON";
|
|
494
|
-
readonly REPLICA: "REPLICA";
|
|
495
|
-
};
|
|
496
|
-
export type ContainerSchedulingStrategy =
|
|
497
|
-
(typeof ContainerSchedulingStrategy)[keyof typeof ContainerSchedulingStrategy];
|
|
498
568
|
export declare const ContainerGroupDefinitionStatus: {
|
|
499
569
|
readonly COPYING: "COPYING";
|
|
500
570
|
readonly FAILED: "FAILED";
|
|
@@ -502,35 +572,44 @@ export declare const ContainerGroupDefinitionStatus: {
|
|
|
502
572
|
};
|
|
503
573
|
export type ContainerGroupDefinitionStatus =
|
|
504
574
|
(typeof ContainerGroupDefinitionStatus)[keyof typeof ContainerGroupDefinitionStatus];
|
|
575
|
+
export interface ContainerHealthCheck {
|
|
576
|
+
Command: string[] | undefined;
|
|
577
|
+
Interval?: number;
|
|
578
|
+
Retries?: number;
|
|
579
|
+
StartPeriod?: number;
|
|
580
|
+
Timeout?: number;
|
|
581
|
+
}
|
|
582
|
+
export interface SupportContainerDefinition {
|
|
583
|
+
ContainerName?: string;
|
|
584
|
+
DependsOn?: ContainerDependency[];
|
|
585
|
+
MountPoints?: ContainerMountPoint[];
|
|
586
|
+
EnvironmentOverride?: ContainerEnvironment[];
|
|
587
|
+
Essential?: boolean;
|
|
588
|
+
HealthCheck?: ContainerHealthCheck;
|
|
589
|
+
ImageUri?: string;
|
|
590
|
+
MemoryHardLimitMebibytes?: number;
|
|
591
|
+
PortConfiguration?: ContainerPortConfiguration;
|
|
592
|
+
ResolvedImageDigest?: string;
|
|
593
|
+
Vcpu?: number;
|
|
594
|
+
}
|
|
505
595
|
export interface ContainerGroupDefinition {
|
|
506
596
|
ContainerGroupDefinitionArn?: string;
|
|
507
597
|
CreationTime?: Date;
|
|
508
598
|
OperatingSystem?: ContainerOperatingSystem;
|
|
509
|
-
Name
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
599
|
+
Name: string | undefined;
|
|
600
|
+
ContainerGroupType?: ContainerGroupType;
|
|
601
|
+
TotalMemoryLimitMebibytes?: number;
|
|
602
|
+
TotalVcpuLimit?: number;
|
|
603
|
+
GameServerContainerDefinition?: GameServerContainerDefinition;
|
|
604
|
+
SupportContainerDefinitions?: SupportContainerDefinition[];
|
|
605
|
+
VersionNumber?: number;
|
|
606
|
+
VersionDescription?: string;
|
|
514
607
|
Status?: ContainerGroupDefinitionStatus;
|
|
515
608
|
StatusReason?: string;
|
|
516
609
|
}
|
|
517
|
-
export interface
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
}
|
|
521
|
-
export interface ContainerGroupsPerInstance {
|
|
522
|
-
DesiredReplicaContainerGroupsPerInstance?: number;
|
|
523
|
-
MaxReplicaContainerGroupsPerInstance?: number;
|
|
524
|
-
}
|
|
525
|
-
export interface ContainerGroupsAttributes {
|
|
526
|
-
ContainerGroupDefinitionProperties?: ContainerGroupDefinitionProperty[];
|
|
527
|
-
ConnectionPortRange?: ConnectionPortRange;
|
|
528
|
-
ContainerGroupsPerInstance?: ContainerGroupsPerInstance;
|
|
529
|
-
}
|
|
530
|
-
export interface ContainerGroupsConfiguration {
|
|
531
|
-
ContainerGroupDefinitionNames: string[] | undefined;
|
|
532
|
-
ConnectionPortRange: ConnectionPortRange | undefined;
|
|
533
|
-
DesiredReplicaContainerGroupsPerInstance?: number;
|
|
610
|
+
export interface ContainerIdentifier {
|
|
611
|
+
ContainerName?: string;
|
|
612
|
+
ContainerRuntimeId?: string;
|
|
534
613
|
}
|
|
535
614
|
export interface Tag {
|
|
536
615
|
Key: string | undefined;
|
|
@@ -580,24 +659,64 @@ export interface CreateBuildOutput {
|
|
|
580
659
|
UploadCredentials?: AwsCredentials;
|
|
581
660
|
StorageLocation?: S3Location;
|
|
582
661
|
}
|
|
662
|
+
export interface LocationConfiguration {
|
|
663
|
+
Location: string | undefined;
|
|
664
|
+
}
|
|
665
|
+
export interface CreateContainerFleetInput {
|
|
666
|
+
FleetRoleArn: string | undefined;
|
|
667
|
+
Description?: string;
|
|
668
|
+
GameServerContainerGroupDefinitionName?: string;
|
|
669
|
+
PerInstanceContainerGroupDefinitionName?: string;
|
|
670
|
+
InstanceConnectionPortRange?: ConnectionPortRange;
|
|
671
|
+
InstanceInboundPermissions?: IpPermission[];
|
|
672
|
+
GameServerContainerGroupsPerInstance?: number;
|
|
673
|
+
InstanceType?: string;
|
|
674
|
+
BillingType?: ContainerFleetBillingType;
|
|
675
|
+
Locations?: LocationConfiguration[];
|
|
676
|
+
MetricGroups?: string[];
|
|
677
|
+
NewGameSessionProtectionPolicy?: ProtectionPolicy;
|
|
678
|
+
GameSessionCreationLimitPolicy?: GameSessionCreationLimitPolicy;
|
|
679
|
+
LogConfiguration?: LogConfiguration;
|
|
680
|
+
Tags?: Tag[];
|
|
681
|
+
}
|
|
682
|
+
export interface CreateContainerFleetOutput {
|
|
683
|
+
ContainerFleet?: ContainerFleet;
|
|
684
|
+
}
|
|
685
|
+
export interface GameServerContainerDefinitionInput {
|
|
686
|
+
ContainerName: string | undefined;
|
|
687
|
+
DependsOn?: ContainerDependency[];
|
|
688
|
+
MountPoints?: ContainerMountPoint[];
|
|
689
|
+
EnvironmentOverride?: ContainerEnvironment[];
|
|
690
|
+
ImageUri: string | undefined;
|
|
691
|
+
PortConfiguration: ContainerPortConfiguration | undefined;
|
|
692
|
+
ServerSdkVersion: string | undefined;
|
|
693
|
+
}
|
|
694
|
+
export interface SupportContainerDefinitionInput {
|
|
695
|
+
ContainerName: string | undefined;
|
|
696
|
+
DependsOn?: ContainerDependency[];
|
|
697
|
+
MountPoints?: ContainerMountPoint[];
|
|
698
|
+
EnvironmentOverride?: ContainerEnvironment[];
|
|
699
|
+
Essential?: boolean;
|
|
700
|
+
HealthCheck?: ContainerHealthCheck;
|
|
701
|
+
ImageUri: string | undefined;
|
|
702
|
+
MemoryHardLimitMebibytes?: number;
|
|
703
|
+
PortConfiguration?: ContainerPortConfiguration;
|
|
704
|
+
Vcpu?: number;
|
|
705
|
+
}
|
|
583
706
|
export interface CreateContainerGroupDefinitionInput {
|
|
584
707
|
Name: string | undefined;
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
708
|
+
ContainerGroupType?: ContainerGroupType;
|
|
709
|
+
TotalMemoryLimitMebibytes: number | undefined;
|
|
710
|
+
TotalVcpuLimit: number | undefined;
|
|
711
|
+
GameServerContainerDefinition?: GameServerContainerDefinitionInput;
|
|
712
|
+
SupportContainerDefinitions?: SupportContainerDefinitionInput[];
|
|
589
713
|
OperatingSystem: ContainerOperatingSystem | undefined;
|
|
714
|
+
VersionDescription?: string;
|
|
590
715
|
Tags?: Tag[];
|
|
591
716
|
}
|
|
592
717
|
export interface CreateContainerGroupDefinitionOutput {
|
|
593
718
|
ContainerGroupDefinition?: ContainerGroupDefinition;
|
|
594
719
|
}
|
|
595
|
-
export interface IpPermission {
|
|
596
|
-
FromPort: number | undefined;
|
|
597
|
-
ToPort: number | undefined;
|
|
598
|
-
IpRange: string | undefined;
|
|
599
|
-
Protocol: IpProtocol | undefined;
|
|
600
|
-
}
|
|
601
720
|
export declare const FleetType: {
|
|
602
721
|
readonly OnDemand: "ON_DEMAND";
|
|
603
722
|
readonly Spot: "SPOT";
|
|
@@ -608,15 +727,6 @@ export declare const InstanceRoleCredentialsProvider: {
|
|
|
608
727
|
};
|
|
609
728
|
export type InstanceRoleCredentialsProvider =
|
|
610
729
|
(typeof InstanceRoleCredentialsProvider)[keyof typeof InstanceRoleCredentialsProvider];
|
|
611
|
-
export interface LocationConfiguration {
|
|
612
|
-
Location: string | undefined;
|
|
613
|
-
}
|
|
614
|
-
export declare const ProtectionPolicy: {
|
|
615
|
-
readonly FullProtection: "FullProtection";
|
|
616
|
-
readonly NoProtection: "NoProtection";
|
|
617
|
-
};
|
|
618
|
-
export type ProtectionPolicy =
|
|
619
|
-
(typeof ProtectionPolicy)[keyof typeof ProtectionPolicy];
|
|
620
730
|
export interface ResourceCreationLimitPolicy {
|
|
621
731
|
NewGameSessionsPerCreator?: number;
|
|
622
732
|
PolicyPeriodInMinutes?: number;
|
|
@@ -655,7 +765,6 @@ export interface CreateFleetInput {
|
|
|
655
765
|
ComputeType?: ComputeType;
|
|
656
766
|
AnywhereConfiguration?: AnywhereConfiguration;
|
|
657
767
|
InstanceRoleCredentialsProvider?: InstanceRoleCredentialsProvider;
|
|
658
|
-
ContainerGroupsConfiguration?: ContainerGroupsConfiguration;
|
|
659
768
|
}
|
|
660
769
|
export declare const FleetStatus: {
|
|
661
770
|
readonly ACTIVATING: "ACTIVATING";
|
|
@@ -701,7 +810,6 @@ export interface FleetAttributes {
|
|
|
701
810
|
ComputeType?: ComputeType;
|
|
702
811
|
AnywhereConfiguration?: AnywhereConfiguration;
|
|
703
812
|
InstanceRoleCredentialsProvider?: InstanceRoleCredentialsProvider;
|
|
704
|
-
ContainerGroupsAttributes?: ContainerGroupsAttributes;
|
|
705
813
|
}
|
|
706
814
|
export interface LocationState {
|
|
707
815
|
Location?: string;
|
|
@@ -1201,9 +1309,16 @@ export interface DeleteAliasInput {
|
|
|
1201
1309
|
export interface DeleteBuildInput {
|
|
1202
1310
|
BuildId: string | undefined;
|
|
1203
1311
|
}
|
|
1312
|
+
export interface DeleteContainerFleetInput {
|
|
1313
|
+
FleetId: string | undefined;
|
|
1314
|
+
}
|
|
1315
|
+
export interface DeleteContainerFleetOutput {}
|
|
1204
1316
|
export interface DeleteContainerGroupDefinitionInput {
|
|
1205
1317
|
Name: string | undefined;
|
|
1318
|
+
VersionNumber?: number;
|
|
1319
|
+
VersionCountToRetain?: number;
|
|
1206
1320
|
}
|
|
1321
|
+
export interface DeleteContainerGroupDefinitionOutput {}
|
|
1207
1322
|
export interface DeleteFleetInput {
|
|
1208
1323
|
FleetId: string | undefined;
|
|
1209
1324
|
}
|
|
@@ -1263,6 +1378,34 @@ export interface DeleteVpcPeeringConnectionInput {
|
|
|
1263
1378
|
VpcPeeringConnectionId: string | undefined;
|
|
1264
1379
|
}
|
|
1265
1380
|
export interface DeleteVpcPeeringConnectionOutput {}
|
|
1381
|
+
export declare const DeploymentImpairmentStrategy: {
|
|
1382
|
+
readonly MAINTAIN: "MAINTAIN";
|
|
1383
|
+
readonly ROLLBACK: "ROLLBACK";
|
|
1384
|
+
};
|
|
1385
|
+
export type DeploymentImpairmentStrategy =
|
|
1386
|
+
(typeof DeploymentImpairmentStrategy)[keyof typeof DeploymentImpairmentStrategy];
|
|
1387
|
+
export declare const DeploymentProtectionStrategy: {
|
|
1388
|
+
readonly IGNORE_PROTECTION: "IGNORE_PROTECTION";
|
|
1389
|
+
readonly WITH_PROTECTION: "WITH_PROTECTION";
|
|
1390
|
+
};
|
|
1391
|
+
export type DeploymentProtectionStrategy =
|
|
1392
|
+
(typeof DeploymentProtectionStrategy)[keyof typeof DeploymentProtectionStrategy];
|
|
1393
|
+
export interface DeploymentConfiguration {
|
|
1394
|
+
ProtectionStrategy?: DeploymentProtectionStrategy;
|
|
1395
|
+
MinimumHealthyPercentage?: number;
|
|
1396
|
+
ImpairmentStrategy?: DeploymentImpairmentStrategy;
|
|
1397
|
+
}
|
|
1398
|
+
export declare const DeploymentStatus: {
|
|
1399
|
+
readonly CANCELLED: "CANCELLED";
|
|
1400
|
+
readonly COMPLETE: "COMPLETE";
|
|
1401
|
+
readonly IMPAIRED: "IMPAIRED";
|
|
1402
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1403
|
+
readonly PENDING: "PENDING";
|
|
1404
|
+
readonly ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE";
|
|
1405
|
+
readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
|
|
1406
|
+
};
|
|
1407
|
+
export type DeploymentStatus =
|
|
1408
|
+
(typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
1266
1409
|
export interface DeregisterComputeInput {
|
|
1267
1410
|
FleetId: string | undefined;
|
|
1268
1411
|
ComputeName: string | undefined;
|
|
@@ -1291,8 +1434,15 @@ export interface DescribeComputeInput {
|
|
|
1291
1434
|
export interface DescribeComputeOutput {
|
|
1292
1435
|
Compute?: Compute;
|
|
1293
1436
|
}
|
|
1437
|
+
export interface DescribeContainerFleetInput {
|
|
1438
|
+
FleetId: string | undefined;
|
|
1439
|
+
}
|
|
1440
|
+
export interface DescribeContainerFleetOutput {
|
|
1441
|
+
ContainerFleet?: ContainerFleet;
|
|
1442
|
+
}
|
|
1294
1443
|
export interface DescribeContainerGroupDefinitionInput {
|
|
1295
1444
|
Name: string | undefined;
|
|
1445
|
+
VersionNumber?: number;
|
|
1296
1446
|
}
|
|
1297
1447
|
export interface DescribeContainerGroupDefinitionOutput {
|
|
1298
1448
|
ContainerGroupDefinition?: ContainerGroupDefinition;
|
|
@@ -1324,16 +1474,16 @@ export interface DescribeFleetCapacityInput {
|
|
|
1324
1474
|
Limit?: number;
|
|
1325
1475
|
NextToken?: string;
|
|
1326
1476
|
}
|
|
1327
|
-
export interface
|
|
1328
|
-
DESIRED?: number;
|
|
1329
|
-
MINIMUM?: number;
|
|
1330
|
-
MAXIMUM?: number;
|
|
1477
|
+
export interface GameServerContainerGroupCounts {
|
|
1331
1478
|
PENDING?: number;
|
|
1332
1479
|
ACTIVE?: number;
|
|
1333
1480
|
IDLE?: number;
|
|
1334
1481
|
TERMINATING?: number;
|
|
1335
1482
|
}
|
|
1336
|
-
export interface
|
|
1483
|
+
export interface EC2InstanceCounts {
|
|
1484
|
+
DESIRED?: number;
|
|
1485
|
+
MINIMUM?: number;
|
|
1486
|
+
MAXIMUM?: number;
|
|
1337
1487
|
PENDING?: number;
|
|
1338
1488
|
ACTIVE?: number;
|
|
1339
1489
|
IDLE?: number;
|
|
@@ -1345,12 +1495,34 @@ export interface FleetCapacity {
|
|
|
1345
1495
|
InstanceType?: EC2InstanceType;
|
|
1346
1496
|
InstanceCounts?: EC2InstanceCounts;
|
|
1347
1497
|
Location?: string;
|
|
1348
|
-
|
|
1498
|
+
GameServerContainerGroupCounts?: GameServerContainerGroupCounts;
|
|
1349
1499
|
}
|
|
1350
1500
|
export interface DescribeFleetCapacityOutput {
|
|
1351
1501
|
FleetCapacity?: FleetCapacity[];
|
|
1352
1502
|
NextToken?: string;
|
|
1353
1503
|
}
|
|
1504
|
+
export interface DescribeFleetDeploymentInput {
|
|
1505
|
+
FleetId: string | undefined;
|
|
1506
|
+
DeploymentId?: string;
|
|
1507
|
+
}
|
|
1508
|
+
export interface FleetDeployment {
|
|
1509
|
+
DeploymentId?: string;
|
|
1510
|
+
FleetId?: string;
|
|
1511
|
+
GameServerBinaryArn?: string;
|
|
1512
|
+
RollbackGameServerBinaryArn?: string;
|
|
1513
|
+
PerInstanceBinaryArn?: string;
|
|
1514
|
+
RollbackPerInstanceBinaryArn?: string;
|
|
1515
|
+
DeploymentStatus?: DeploymentStatus;
|
|
1516
|
+
DeploymentConfiguration?: DeploymentConfiguration;
|
|
1517
|
+
CreationTime?: Date;
|
|
1518
|
+
}
|
|
1519
|
+
export interface LocationalDeployment {
|
|
1520
|
+
DeploymentStatus?: DeploymentStatus;
|
|
1521
|
+
}
|
|
1522
|
+
export interface DescribeFleetDeploymentOutput {
|
|
1523
|
+
FleetDeployment?: FleetDeployment;
|
|
1524
|
+
LocationalDeployments?: Record<string, LocationalDeployment>;
|
|
1525
|
+
}
|
|
1354
1526
|
export interface DescribeFleetEventsInput {
|
|
1355
1527
|
FleetId: string | undefined;
|
|
1356
1528
|
StartTime?: Date;
|
|
@@ -1359,6 +1531,7 @@ export interface DescribeFleetEventsInput {
|
|
|
1359
1531
|
NextToken?: string;
|
|
1360
1532
|
}
|
|
1361
1533
|
export declare const EventCode: {
|
|
1534
|
+
readonly COMPUTE_LOG_UPLOAD_FAILED: "COMPUTE_LOG_UPLOAD_FAILED";
|
|
1362
1535
|
readonly FLEET_ACTIVATION_FAILED: "FLEET_ACTIVATION_FAILED";
|
|
1363
1536
|
readonly FLEET_ACTIVATION_FAILED_NO_INSTANCES: "FLEET_ACTIVATION_FAILED_NO_INSTANCES";
|
|
1364
1537
|
readonly FLEET_BINARY_DOWNLOAD_FAILED: "FLEET_BINARY_DOWNLOAD_FAILED";
|
|
@@ -1375,8 +1548,12 @@ export declare const EventCode: {
|
|
|
1375
1548
|
readonly FLEET_STATE_ACTIVATING: "FLEET_STATE_ACTIVATING";
|
|
1376
1549
|
readonly FLEET_STATE_ACTIVE: "FLEET_STATE_ACTIVE";
|
|
1377
1550
|
readonly FLEET_STATE_BUILDING: "FLEET_STATE_BUILDING";
|
|
1551
|
+
readonly FLEET_STATE_CREATED: "FLEET_STATE_CREATED";
|
|
1552
|
+
readonly FLEET_STATE_CREATING: "FLEET_STATE_CREATING";
|
|
1378
1553
|
readonly FLEET_STATE_DOWNLOADING: "FLEET_STATE_DOWNLOADING";
|
|
1379
1554
|
readonly FLEET_STATE_ERROR: "FLEET_STATE_ERROR";
|
|
1555
|
+
readonly FLEET_STATE_PENDING: "FLEET_STATE_PENDING";
|
|
1556
|
+
readonly FLEET_STATE_UPDATING: "FLEET_STATE_UPDATING";
|
|
1380
1557
|
readonly FLEET_STATE_VALIDATING: "FLEET_STATE_VALIDATING";
|
|
1381
1558
|
readonly FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE: "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE";
|
|
1382
1559
|
readonly FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND: "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND";
|
|
@@ -1384,15 +1561,30 @@ export declare const EventCode: {
|
|
|
1384
1561
|
readonly FLEET_VPC_PEERING_DELETED: "FLEET_VPC_PEERING_DELETED";
|
|
1385
1562
|
readonly FLEET_VPC_PEERING_FAILED: "FLEET_VPC_PEERING_FAILED";
|
|
1386
1563
|
readonly FLEET_VPC_PEERING_SUCCEEDED: "FLEET_VPC_PEERING_SUCCEEDED";
|
|
1564
|
+
readonly GAME_SERVER_CONTAINER_GROUP_CRASHED: "GAME_SERVER_CONTAINER_GROUP_CRASHED";
|
|
1565
|
+
readonly GAME_SERVER_CONTAINER_GROUP_REPLACED_UNHEALTHY: "GAME_SERVER_CONTAINER_GROUP_REPLACED_UNHEALTHY";
|
|
1387
1566
|
readonly GAME_SESSION_ACTIVATION_TIMEOUT: "GAME_SESSION_ACTIVATION_TIMEOUT";
|
|
1388
1567
|
readonly GENERIC_EVENT: "GENERIC_EVENT";
|
|
1389
1568
|
readonly INSTANCE_INTERRUPTED: "INSTANCE_INTERRUPTED";
|
|
1390
1569
|
readonly INSTANCE_RECYCLED: "INSTANCE_RECYCLED";
|
|
1570
|
+
readonly INSTANCE_REPLACED_UNHEALTHY: "INSTANCE_REPLACED_UNHEALTHY";
|
|
1571
|
+
readonly LOCATION_STATE_ACTIVATING: "LOCATION_STATE_ACTIVATING";
|
|
1572
|
+
readonly LOCATION_STATE_ACTIVE: "LOCATION_STATE_ACTIVE";
|
|
1573
|
+
readonly LOCATION_STATE_CREATED: "LOCATION_STATE_CREATED";
|
|
1574
|
+
readonly LOCATION_STATE_CREATING: "LOCATION_STATE_CREATING";
|
|
1575
|
+
readonly LOCATION_STATE_DELETED: "LOCATION_STATE_DELETED";
|
|
1576
|
+
readonly LOCATION_STATE_DELETING: "LOCATION_STATE_DELETING";
|
|
1577
|
+
readonly LOCATION_STATE_ERROR: "LOCATION_STATE_ERROR";
|
|
1578
|
+
readonly LOCATION_STATE_PENDING: "LOCATION_STATE_PENDING";
|
|
1579
|
+
readonly LOCATION_STATE_UPDATING: "LOCATION_STATE_UPDATING";
|
|
1580
|
+
readonly PER_INSTANCE_CONTAINER_GROUP_CRASHED: "PER_INSTANCE_CONTAINER_GROUP_CRASHED";
|
|
1391
1581
|
readonly SERVER_PROCESS_CRASHED: "SERVER_PROCESS_CRASHED";
|
|
1392
1582
|
readonly SERVER_PROCESS_FORCE_TERMINATED: "SERVER_PROCESS_FORCE_TERMINATED";
|
|
1393
1583
|
readonly SERVER_PROCESS_INVALID_PATH: "SERVER_PROCESS_INVALID_PATH";
|
|
1584
|
+
readonly SERVER_PROCESS_MISCONFIGURED_CONTAINER_PORT: "SERVER_PROCESS_MISCONFIGURED_CONTAINER_PORT";
|
|
1394
1585
|
readonly SERVER_PROCESS_PROCESS_EXIT_TIMEOUT: "SERVER_PROCESS_PROCESS_EXIT_TIMEOUT";
|
|
1395
1586
|
readonly SERVER_PROCESS_PROCESS_READY_TIMEOUT: "SERVER_PROCESS_PROCESS_READY_TIMEOUT";
|
|
1587
|
+
readonly SERVER_PROCESS_SDK_INITIALIZATION_FAILED: "SERVER_PROCESS_SDK_INITIALIZATION_FAILED";
|
|
1396
1588
|
readonly SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT: "SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT";
|
|
1397
1589
|
readonly SERVER_PROCESS_TERMINATED_UNHEALTHY: "SERVER_PROCESS_TERMINATED_UNHEALTHY";
|
|
1398
1590
|
};
|
|
@@ -1821,6 +2013,7 @@ export interface GetComputeAccessOutput {
|
|
|
1821
2013
|
ComputeArn?: string;
|
|
1822
2014
|
Credentials?: AwsCredentials;
|
|
1823
2015
|
Target?: string;
|
|
2016
|
+
ContainerIdentifiers?: ContainerIdentifier[];
|
|
1824
2017
|
}
|
|
1825
2018
|
export interface GetComputeAuthTokenInput {
|
|
1826
2019
|
FleetId: string | undefined;
|
|
@@ -1877,9 +2070,17 @@ export interface ListBuildsOutput {
|
|
|
1877
2070
|
Builds?: Build[];
|
|
1878
2071
|
NextToken?: string;
|
|
1879
2072
|
}
|
|
2073
|
+
export declare const ListComputeInputStatus: {
|
|
2074
|
+
readonly ACTIVE: "ACTIVE";
|
|
2075
|
+
readonly IMPAIRED: "IMPAIRED";
|
|
2076
|
+
};
|
|
2077
|
+
export type ListComputeInputStatus =
|
|
2078
|
+
(typeof ListComputeInputStatus)[keyof typeof ListComputeInputStatus];
|
|
1880
2079
|
export interface ListComputeInput {
|
|
1881
2080
|
FleetId: string | undefined;
|
|
1882
2081
|
Location?: string;
|
|
2082
|
+
ContainerGroupDefinitionName?: string;
|
|
2083
|
+
ComputeStatus?: ListComputeInputStatus;
|
|
1883
2084
|
Limit?: number;
|
|
1884
2085
|
NextToken?: string;
|
|
1885
2086
|
}
|
|
@@ -1887,188 +2088,68 @@ export interface ListComputeOutput {
|
|
|
1887
2088
|
ComputeList?: Compute[];
|
|
1888
2089
|
NextToken?: string;
|
|
1889
2090
|
}
|
|
1890
|
-
export interface
|
|
1891
|
-
SchedulingStrategy?: ContainerSchedulingStrategy;
|
|
1892
|
-
Limit?: number;
|
|
1893
|
-
NextToken?: string;
|
|
1894
|
-
}
|
|
1895
|
-
export interface ListContainerGroupDefinitionsOutput {
|
|
1896
|
-
ContainerGroupDefinitions?: ContainerGroupDefinition[];
|
|
1897
|
-
NextToken?: string;
|
|
1898
|
-
}
|
|
1899
|
-
export interface ListFleetsInput {
|
|
1900
|
-
BuildId?: string;
|
|
1901
|
-
ScriptId?: string;
|
|
2091
|
+
export interface ListContainerFleetsInput {
|
|
1902
2092
|
ContainerGroupDefinitionName?: string;
|
|
1903
2093
|
Limit?: number;
|
|
1904
2094
|
NextToken?: string;
|
|
1905
2095
|
}
|
|
1906
|
-
export interface
|
|
1907
|
-
|
|
1908
|
-
NextToken?: string;
|
|
1909
|
-
}
|
|
1910
|
-
export interface ListGameServerGroupsInput {
|
|
1911
|
-
Limit?: number;
|
|
1912
|
-
NextToken?: string;
|
|
1913
|
-
}
|
|
1914
|
-
export interface ListGameServerGroupsOutput {
|
|
1915
|
-
GameServerGroups?: GameServerGroup[];
|
|
1916
|
-
NextToken?: string;
|
|
1917
|
-
}
|
|
1918
|
-
export declare const SortOrder: {
|
|
1919
|
-
readonly ASCENDING: "ASCENDING";
|
|
1920
|
-
readonly DESCENDING: "DESCENDING";
|
|
1921
|
-
};
|
|
1922
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1923
|
-
export interface ListGameServersInput {
|
|
1924
|
-
GameServerGroupName: string | undefined;
|
|
1925
|
-
SortOrder?: SortOrder;
|
|
1926
|
-
Limit?: number;
|
|
1927
|
-
NextToken?: string;
|
|
1928
|
-
}
|
|
1929
|
-
export interface ListGameServersOutput {
|
|
1930
|
-
GameServers?: GameServer[];
|
|
1931
|
-
NextToken?: string;
|
|
1932
|
-
}
|
|
1933
|
-
export declare const LocationFilter: {
|
|
1934
|
-
readonly AWS: "AWS";
|
|
1935
|
-
readonly CUSTOM: "CUSTOM";
|
|
1936
|
-
};
|
|
1937
|
-
export type LocationFilter =
|
|
1938
|
-
(typeof LocationFilter)[keyof typeof LocationFilter];
|
|
1939
|
-
export interface ListLocationsInput {
|
|
1940
|
-
Filters?: LocationFilter[];
|
|
1941
|
-
Limit?: number;
|
|
1942
|
-
NextToken?: string;
|
|
1943
|
-
}
|
|
1944
|
-
export interface ListLocationsOutput {
|
|
1945
|
-
Locations?: LocationModel[];
|
|
1946
|
-
NextToken?: string;
|
|
1947
|
-
}
|
|
1948
|
-
export interface ListScriptsInput {
|
|
1949
|
-
Limit?: number;
|
|
1950
|
-
NextToken?: string;
|
|
1951
|
-
}
|
|
1952
|
-
export interface ListScriptsOutput {
|
|
1953
|
-
Scripts?: Script[];
|
|
2096
|
+
export interface ListContainerFleetsOutput {
|
|
2097
|
+
ContainerFleets?: ContainerFleet[];
|
|
1954
2098
|
NextToken?: string;
|
|
1955
2099
|
}
|
|
1956
|
-
export interface ListTagsForResourceRequest {
|
|
1957
|
-
ResourceARN: string | undefined;
|
|
1958
|
-
}
|
|
1959
|
-
export interface ListTagsForResourceResponse {
|
|
1960
|
-
Tags?: Tag[];
|
|
1961
|
-
}
|
|
1962
|
-
export interface PutScalingPolicyInput {
|
|
1963
|
-
Name: string | undefined;
|
|
1964
|
-
FleetId: string | undefined;
|
|
1965
|
-
ScalingAdjustment?: number;
|
|
1966
|
-
ScalingAdjustmentType?: ScalingAdjustmentType;
|
|
1967
|
-
Threshold?: number;
|
|
1968
|
-
ComparisonOperator?: ComparisonOperatorType;
|
|
1969
|
-
EvaluationPeriods?: number;
|
|
1970
|
-
MetricName: MetricName | undefined;
|
|
1971
|
-
PolicyType?: PolicyType;
|
|
1972
|
-
TargetConfiguration?: TargetConfiguration;
|
|
1973
|
-
}
|
|
1974
|
-
export interface PutScalingPolicyOutput {
|
|
1975
|
-
Name?: string;
|
|
1976
|
-
}
|
|
1977
|
-
export interface RegisterComputeInput {
|
|
1978
|
-
FleetId: string | undefined;
|
|
1979
|
-
ComputeName: string | undefined;
|
|
1980
|
-
CertificatePath?: string;
|
|
1981
|
-
DnsName?: string;
|
|
1982
|
-
IpAddress?: string;
|
|
1983
|
-
Location?: string;
|
|
1984
|
-
}
|
|
1985
|
-
export interface RegisterComputeOutput {
|
|
1986
|
-
Compute?: Compute;
|
|
1987
|
-
}
|
|
1988
|
-
export interface RegisterGameServerInput {
|
|
1989
|
-
GameServerGroupName: string | undefined;
|
|
1990
|
-
GameServerId: string | undefined;
|
|
1991
|
-
InstanceId: string | undefined;
|
|
1992
|
-
ConnectionInfo?: string;
|
|
1993
|
-
GameServerData?: string;
|
|
1994
|
-
}
|
|
1995
|
-
export interface RegisterGameServerOutput {
|
|
1996
|
-
GameServer?: GameServer;
|
|
1997
|
-
}
|
|
1998
|
-
export interface RequestUploadCredentialsInput {
|
|
1999
|
-
BuildId: string | undefined;
|
|
2000
|
-
}
|
|
2001
|
-
export interface RequestUploadCredentialsOutput {
|
|
2002
|
-
UploadCredentials?: AwsCredentials;
|
|
2003
|
-
StorageLocation?: S3Location;
|
|
2004
|
-
}
|
|
2005
|
-
export interface ResolveAliasInput {
|
|
2006
|
-
AliasId: string | undefined;
|
|
2007
|
-
}
|
|
2008
|
-
export interface ResolveAliasOutput {
|
|
2009
|
-
FleetId?: string;
|
|
2010
|
-
FleetArn?: string;
|
|
2011
|
-
}
|
|
2012
|
-
export interface ResumeGameServerGroupInput {
|
|
2013
|
-
GameServerGroupName: string | undefined;
|
|
2014
|
-
ResumeActions: GameServerGroupAction[] | undefined;
|
|
2015
|
-
}
|
|
2016
2100
|
export declare const AcceptMatchInputFilterSensitiveLog: (
|
|
2017
2101
|
obj: AcceptMatchInput
|
|
2018
2102
|
) => any;
|
|
2019
2103
|
export declare const AwsCredentialsFilterSensitiveLog: (
|
|
2020
2104
|
obj: AwsCredentials
|
|
2021
2105
|
) => any;
|
|
2022
|
-
export declare const ContainerPortMappingFilterSensitiveLog: (
|
|
2023
|
-
obj: ContainerPortMapping
|
|
2024
|
-
) => any;
|
|
2025
|
-
export declare const ContainerAttributesFilterSensitiveLog: (
|
|
2026
|
-
obj: ContainerAttributes
|
|
2027
|
-
) => any;
|
|
2028
2106
|
export declare const ComputeFilterSensitiveLog: (obj: Compute) => any;
|
|
2029
2107
|
export declare const ConnectionPortRangeFilterSensitiveLog: (
|
|
2030
2108
|
obj: ConnectionPortRange
|
|
2031
2109
|
) => any;
|
|
2110
|
+
export declare const IpPermissionFilterSensitiveLog: (obj: IpPermission) => any;
|
|
2111
|
+
export declare const ContainerFleetFilterSensitiveLog: (
|
|
2112
|
+
obj: ContainerFleet
|
|
2113
|
+
) => any;
|
|
2032
2114
|
export declare const ContainerPortRangeFilterSensitiveLog: (
|
|
2033
2115
|
obj: ContainerPortRange
|
|
2034
2116
|
) => any;
|
|
2035
2117
|
export declare const ContainerPortConfigurationFilterSensitiveLog: (
|
|
2036
2118
|
obj: ContainerPortConfiguration
|
|
2037
2119
|
) => any;
|
|
2038
|
-
export declare const
|
|
2039
|
-
obj:
|
|
2120
|
+
export declare const GameServerContainerDefinitionFilterSensitiveLog: (
|
|
2121
|
+
obj: GameServerContainerDefinition
|
|
2040
2122
|
) => any;
|
|
2041
|
-
export declare const
|
|
2042
|
-
obj:
|
|
2123
|
+
export declare const SupportContainerDefinitionFilterSensitiveLog: (
|
|
2124
|
+
obj: SupportContainerDefinition
|
|
2043
2125
|
) => any;
|
|
2044
2126
|
export declare const ContainerGroupDefinitionFilterSensitiveLog: (
|
|
2045
2127
|
obj: ContainerGroupDefinition
|
|
2046
2128
|
) => any;
|
|
2047
|
-
export declare const ContainerGroupsAttributesFilterSensitiveLog: (
|
|
2048
|
-
obj: ContainerGroupsAttributes
|
|
2049
|
-
) => any;
|
|
2050
|
-
export declare const ContainerGroupsConfigurationFilterSensitiveLog: (
|
|
2051
|
-
obj: ContainerGroupsConfiguration
|
|
2052
|
-
) => any;
|
|
2053
2129
|
export declare const CreateBuildOutputFilterSensitiveLog: (
|
|
2054
2130
|
obj: CreateBuildOutput
|
|
2055
2131
|
) => any;
|
|
2132
|
+
export declare const CreateContainerFleetInputFilterSensitiveLog: (
|
|
2133
|
+
obj: CreateContainerFleetInput
|
|
2134
|
+
) => any;
|
|
2135
|
+
export declare const CreateContainerFleetOutputFilterSensitiveLog: (
|
|
2136
|
+
obj: CreateContainerFleetOutput
|
|
2137
|
+
) => any;
|
|
2138
|
+
export declare const GameServerContainerDefinitionInputFilterSensitiveLog: (
|
|
2139
|
+
obj: GameServerContainerDefinitionInput
|
|
2140
|
+
) => any;
|
|
2141
|
+
export declare const SupportContainerDefinitionInputFilterSensitiveLog: (
|
|
2142
|
+
obj: SupportContainerDefinitionInput
|
|
2143
|
+
) => any;
|
|
2056
2144
|
export declare const CreateContainerGroupDefinitionInputFilterSensitiveLog: (
|
|
2057
2145
|
obj: CreateContainerGroupDefinitionInput
|
|
2058
2146
|
) => any;
|
|
2059
2147
|
export declare const CreateContainerGroupDefinitionOutputFilterSensitiveLog: (
|
|
2060
2148
|
obj: CreateContainerGroupDefinitionOutput
|
|
2061
2149
|
) => any;
|
|
2062
|
-
export declare const IpPermissionFilterSensitiveLog: (obj: IpPermission) => any;
|
|
2063
2150
|
export declare const CreateFleetInputFilterSensitiveLog: (
|
|
2064
2151
|
obj: CreateFleetInput
|
|
2065
2152
|
) => any;
|
|
2066
|
-
export declare const FleetAttributesFilterSensitiveLog: (
|
|
2067
|
-
obj: FleetAttributes
|
|
2068
|
-
) => any;
|
|
2069
|
-
export declare const CreateFleetOutputFilterSensitiveLog: (
|
|
2070
|
-
obj: CreateFleetOutput
|
|
2071
|
-
) => any;
|
|
2072
2153
|
export declare const GameSessionFilterSensitiveLog: (obj: GameSession) => any;
|
|
2073
2154
|
export declare const CreateGameSessionOutputFilterSensitiveLog: (
|
|
2074
2155
|
obj: CreateGameSessionOutput
|
|
@@ -2091,12 +2172,12 @@ export declare const CreatePlayerSessionsOutputFilterSensitiveLog: (
|
|
|
2091
2172
|
export declare const DescribeComputeOutputFilterSensitiveLog: (
|
|
2092
2173
|
obj: DescribeComputeOutput
|
|
2093
2174
|
) => any;
|
|
2175
|
+
export declare const DescribeContainerFleetOutputFilterSensitiveLog: (
|
|
2176
|
+
obj: DescribeContainerFleetOutput
|
|
2177
|
+
) => any;
|
|
2094
2178
|
export declare const DescribeContainerGroupDefinitionOutputFilterSensitiveLog: (
|
|
2095
2179
|
obj: DescribeContainerGroupDefinitionOutput
|
|
2096
2180
|
) => any;
|
|
2097
|
-
export declare const DescribeFleetAttributesOutputFilterSensitiveLog: (
|
|
2098
|
-
obj: DescribeFleetAttributesOutput
|
|
2099
|
-
) => any;
|
|
2100
2181
|
export declare const DescribeFleetPortSettingsOutputFilterSensitiveLog: (
|
|
2101
2182
|
obj: DescribeFleetPortSettingsOutput
|
|
2102
2183
|
) => any;
|
|
@@ -2162,15 +2243,6 @@ export declare const GetInstanceAccessOutputFilterSensitiveLog: (
|
|
|
2162
2243
|
export declare const ListComputeOutputFilterSensitiveLog: (
|
|
2163
2244
|
obj: ListComputeOutput
|
|
2164
2245
|
) => any;
|
|
2165
|
-
export declare const
|
|
2166
|
-
obj:
|
|
2167
|
-
) => any;
|
|
2168
|
-
export declare const RegisterComputeInputFilterSensitiveLog: (
|
|
2169
|
-
obj: RegisterComputeInput
|
|
2170
|
-
) => any;
|
|
2171
|
-
export declare const RegisterComputeOutputFilterSensitiveLog: (
|
|
2172
|
-
obj: RegisterComputeOutput
|
|
2173
|
-
) => any;
|
|
2174
|
-
export declare const RequestUploadCredentialsOutputFilterSensitiveLog: (
|
|
2175
|
-
obj: RequestUploadCredentialsOutput
|
|
2246
|
+
export declare const ListContainerFleetsOutputFilterSensitiveLog: (
|
|
2247
|
+
obj: ListContainerFleetsOutput
|
|
2176
2248
|
) => any;
|