@accelbyte/sdk-ams 5.2.1 → 5.3.1

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.
@@ -67,7 +67,7 @@ var AccountAdmin$ = class {
67
67
  );
68
68
  }
69
69
  /**
70
- * This route will attempt to register the account to namespace linkage in AMS and requires a valid account link token. This route fails if an account is already linked AdminAccountLink Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:ACCOUNT [CREATE]
70
+ * This route will attempt to register the account to namespace linkage in AMS and requires a valid account link token. This route fails if an account is already linked Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:ACCOUNT [CREATE]
71
71
  */
72
72
  createAccountLink(data) {
73
73
  const params = {};
@@ -140,7 +140,7 @@ function AccountAdminApi(sdk, args) {
140
140
  */
141
141
  getAccountLink,
142
142
  /**
143
- * This route will attempt to register the account to namespace linkage in AMS and requires a valid account link token. This route fails if an account is already linked AdminAccountLink Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:ACCOUNT [CREATE]
143
+ * This route will attempt to register the account to namespace linkage in AMS and requires a valid account link token. This route fails if an account is already linked Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:ACCOUNT [CREATE]
144
144
  */
145
145
  createAccountLink
146
146
  };
@@ -150,20 +150,28 @@ function AccountAdminApi(sdk, args) {
150
150
  import { z as z6 } from "zod";
151
151
  var AmsRegionsResponse = z6.object({ regions: z6.array(z6.string()).nullish() });
152
152
 
153
- // src/generated-definitions/InstanceTypeDescriptionResponse.ts
153
+ // src/generated-definitions/Capacity.ts
154
154
  import { z as z7 } from "zod";
155
- var InstanceTypeDescriptionResponse = z7.object({
156
- description: z7.string(),
157
- id: z7.string(),
158
- memoryGiB: z7.number(),
159
- minSpeed: z7.string(),
160
- name: z7.string(),
161
- virtualCpu: z7.number().int()
162
- });
155
+ var Capacity = z7.object({ region: z7.string(), vmCount: z7.number().int() });
163
156
 
164
- // src/generated-definitions/AvailableInstanceTypesResponse.ts
157
+ // src/generated-definitions/InstanceType.ts
165
158
  import { z as z8 } from "zod";
166
- var AvailableInstanceTypesResponse = z8.object({ availableInstanceTypes: z8.array(InstanceTypeDescriptionResponse) });
159
+ var InstanceType = z8.object({
160
+ capacity: z8.array(Capacity),
161
+ description: z8.string(),
162
+ id: z8.string(),
163
+ isBaremetal: z8.boolean(),
164
+ memoryGiB: z8.number(),
165
+ minSpeed: z8.string(),
166
+ name: z8.string(),
167
+ ownerAccountId: z8.string(),
168
+ provider: z8.string(),
169
+ virtualCpu: z8.number().int()
170
+ });
171
+
172
+ // src/generated-definitions/InstanceTypesResponse.ts
173
+ import { z as z9 } from "zod";
174
+ var InstanceTypesResponse = z9.object({ availableInstanceTypes: z9.array(InstanceType) });
167
175
 
168
176
  // src/generated-admin/endpoints/AmsInfoAdmin$.ts
169
177
  import { Validate as Validate2 } from "@accelbyte/sdk";
@@ -191,12 +199,7 @@ var AmsInfoAdmin$ = class {
191
199
  const params = {};
192
200
  const url = "/ams/v1/admin/namespaces/{namespace}/supported-instances".replace("{namespace}", this.namespace);
193
201
  const resultPromise = this.axiosInstance.get(url, { params });
194
- return Validate2.validateOrReturnResponse(
195
- this.useSchemaValidation,
196
- () => resultPromise,
197
- AvailableInstanceTypesResponse,
198
- "AvailableInstanceTypesResponse"
199
- );
202
+ return Validate2.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, InstanceTypesResponse, "InstanceTypesResponse");
200
203
  }
201
204
  };
202
205
 
@@ -250,27 +253,27 @@ function AmsInfoAdminApi(sdk, args) {
250
253
  }
251
254
 
252
255
  // src/generated-definitions/Time.ts
253
- import { z as z9 } from "zod";
254
- var Time = z9.any();
256
+ import { z as z10 } from "zod";
257
+ var Time = z10.any();
255
258
 
256
259
  // src/generated-definitions/QoSServer.ts
257
- import { z as z10 } from "zod";
258
- var QoSServer = z10.object({
259
- alias: z10.string(),
260
- ip: z10.string(),
260
+ import { z as z11 } from "zod";
261
+ var QoSServer = z11.object({
262
+ alias: z11.string(),
263
+ ip: z11.string(),
261
264
  last_update: Time,
262
- port: z10.number().int(),
263
- region: z10.string(),
264
- status: z10.string()
265
+ port: z11.number().int(),
266
+ region: z11.string(),
267
+ status: z11.string()
265
268
  });
266
269
 
267
270
  // src/generated-definitions/QoSEndpointResponse.ts
268
- import { z as z11 } from "zod";
269
- var QoSEndpointResponse = z11.object({ servers: z11.array(QoSServer) });
271
+ import { z as z12 } from "zod";
272
+ var QoSEndpointResponse = z12.object({ servers: z12.array(QoSServer) });
270
273
 
271
274
  // src/generated-admin/endpoints/AmsQoSAdmin$.ts
272
275
  import { Validate as Validate3 } from "@accelbyte/sdk";
273
- import { z as z12 } from "zod";
276
+ import { z as z13 } from "zod";
274
277
  var AmsQoSAdmin$ = class {
275
278
  // @ts-ignore
276
279
  // prettier-ignore
@@ -295,7 +298,7 @@ var AmsQoSAdmin$ = class {
295
298
  const params = {};
296
299
  const url = "/ams/v1/admin/namespaces/{namespace}/qos/{region}".replace("{namespace}", this.namespace).replace("{region}", region);
297
300
  const resultPromise = this.axiosInstance.patch(url, data, { params });
298
- return Validate3.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z12.unknown(), "z.unknown()");
301
+ return Validate3.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z13.unknown(), "z.unknown()");
299
302
  }
300
303
  };
301
304
 
@@ -349,53 +352,62 @@ function AmsQoSAdminApi(sdk, args) {
349
352
  }
350
353
 
351
354
  // src/generated-definitions/ArtifactResponse.ts
352
- import { z as z13 } from "zod";
353
- var ArtifactResponse = z13.object({
354
- artifactType: z13.string(),
355
+ import { z as z14 } from "zod";
356
+ var ArtifactResponse = z14.object({
357
+ artifactType: z14.string(),
355
358
  createdOn: Time,
356
- dsId: z13.string(),
359
+ dsId: z14.string(),
357
360
  expiresOn: Time,
358
- filename: z13.string(),
359
- fleetId: z13.string(),
360
- id: z13.string(),
361
- imageId: z13.string(),
362
- namespace: z13.string(),
363
- region: z13.string(),
364
- sizeBytes: z13.number().int(),
365
- status: z13.string()
361
+ filename: z14.string(),
362
+ fleetId: z14.string(),
363
+ id: z14.string(),
364
+ imageId: z14.string(),
365
+ namespace: z14.string(),
366
+ reason: z14.string().nullish(),
367
+ region: z14.string(),
368
+ sizeBytes: z14.number().int(),
369
+ status: z14.string()
366
370
  });
367
371
 
368
372
  // src/generated-definitions/ArtifactListResponse.ts
369
- import { z as z14 } from "zod";
370
- var ArtifactListResponse = z14.object({ data: z14.array(ArtifactResponse), totalData: z14.number().int() });
373
+ import { z as z15 } from "zod";
374
+ var ArtifactListResponse = z15.object({ data: z15.array(ArtifactResponse), totalData: z15.number().int() });
371
375
 
372
376
  // src/generated-definitions/ArtifactUrlResponse.ts
373
- import { z as z15 } from "zod";
374
- var ArtifactUrlResponse = z15.object({ url: z15.string() });
377
+ import { z as z16 } from "zod";
378
+ var ArtifactUrlResponse = z16.object({ url: z16.string() });
375
379
 
376
380
  // src/generated-definitions/ArtifactUsageResponse.ts
377
- import { z as z16 } from "zod";
378
- var ArtifactUsageResponse = z16.object({
379
- quotaBytes: z16.number().int(),
380
- remainingBytes: z16.number().int(),
381
- usedBytes: z16.number().int()
381
+ import { z as z17 } from "zod";
382
+ var ArtifactUsageResponse = z17.object({
383
+ quotaBytes: z17.number().int(),
384
+ remainingBytes: z17.number().int(),
385
+ usedBytes: z17.number().int()
382
386
  });
383
387
 
384
388
  // src/generated-definitions/ArtifactSamplingRule.ts
385
- import { z as z17 } from "zod";
386
- var ArtifactSamplingRule = z17.object({ collect: z17.boolean(), percentage: z17.number().int() });
389
+ import { z as z18 } from "zod";
390
+ var ArtifactSamplingRule = z18.object({ collect: z18.boolean(), percentage: z18.number().int() });
387
391
 
388
392
  // src/generated-definitions/ArtifactTypeSamplingRules.ts
389
- import { z as z18 } from "zod";
390
- var ArtifactTypeSamplingRules = z18.object({ crashed: ArtifactSamplingRule, success: ArtifactSamplingRule });
393
+ import { z as z19 } from "zod";
394
+ var ArtifactTypeSamplingRules = z19.object({
395
+ crashed: ArtifactSamplingRule,
396
+ success: ArtifactSamplingRule,
397
+ unclaimed: ArtifactSamplingRule.nullish()
398
+ });
399
+
400
+ // src/generated-definitions/CoredumpSamplingRules.ts
401
+ import { z as z20 } from "zod";
402
+ var CoredumpSamplingRules = z20.object({ crashed: ArtifactSamplingRule });
391
403
 
392
404
  // src/generated-definitions/FleetArtifactsSampleRules.ts
393
- import { z as z19 } from "zod";
394
- var FleetArtifactsSampleRules = z19.object({ coredumps: ArtifactTypeSamplingRules, logs: ArtifactTypeSamplingRules });
405
+ import { z as z21 } from "zod";
406
+ var FleetArtifactsSampleRules = z21.object({ coredumps: CoredumpSamplingRules, logs: ArtifactTypeSamplingRules });
395
407
 
396
408
  // src/generated-admin/endpoints/ArtifactsAdmin$.ts
397
409
  import { Validate as Validate4 } from "@accelbyte/sdk";
398
- import { z as z20 } from "zod";
410
+ import { z as z22 } from "zod";
399
411
  var ArtifactsAdmin$ = class {
400
412
  // @ts-ignore
401
413
  // prettier-ignore
@@ -411,13 +423,13 @@ var ArtifactsAdmin$ = class {
411
423
  const params = { ...queryParams };
412
424
  const url = "/ams/v1/admin/namespaces/{namespace}/artifacts".replace("{namespace}", this.namespace);
413
425
  const resultPromise = this.axiosInstance.delete(url, { params });
414
- return Validate4.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z20.unknown(), "z.unknown()");
426
+ return Validate4.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z22.unknown(), "z.unknown()");
415
427
  }
416
428
  /**
417
429
  * Get all artifacts matching the provided search criteria. When criteria is not specified the data returned won't have been filtered on those parameters Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:ARTIFACT [READ]
418
430
  */
419
431
  getArtifacts(queryParams) {
420
- const params = { count: 100, ...queryParams };
432
+ const params = { count: 100, sortBy: "created_on", sortDirection: "desc", ...queryParams };
421
433
  const url = "/ams/v1/admin/namespaces/{namespace}/artifacts".replace("{namespace}", this.namespace);
422
434
  const resultPromise = this.axiosInstance.get(url, { params });
423
435
  return Validate4.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, ArtifactListResponse, "ArtifactListResponse");
@@ -438,7 +450,7 @@ var ArtifactsAdmin$ = class {
438
450
  const params = {};
439
451
  const url = "/ams/v1/admin/namespaces/{namespace}/artifacts/{artifactID}".replace("{namespace}", this.namespace).replace("{artifactID}", artifactID);
440
452
  const resultPromise = this.axiosInstance.delete(url, { params });
441
- return Validate4.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z20.unknown(), "z.unknown()");
453
+ return Validate4.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z22.unknown(), "z.unknown()");
442
454
  }
443
455
  /**
444
456
  * Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:ARTIFACT [READ]
@@ -579,27 +591,29 @@ function ArtifactsAdminApi(sdk, args) {
579
591
  }
580
592
 
581
593
  // src/generated-definitions/DevelopmentServerConfigurationCreateResponse.ts
582
- import { z as z21 } from "zod";
583
- var DevelopmentServerConfigurationCreateResponse = z21.object({ name: z21.string() });
594
+ import { z as z23 } from "zod";
595
+ var DevelopmentServerConfigurationCreateResponse = z23.object({ name: z23.string() });
584
596
 
585
597
  // src/generated-definitions/DevelopmentServerConfigurationGetResponse.ts
586
- import { z as z22 } from "zod";
587
- var DevelopmentServerConfigurationGetResponse = z22.object({
588
- commandLineArguments: z22.string(),
589
- imageId: z22.string(),
590
- name: z22.string()
598
+ import { z as z24 } from "zod";
599
+ var DevelopmentServerConfigurationGetResponse = z24.object({
600
+ commandLineArguments: z24.string(),
601
+ createdAt: Time.nullish(),
602
+ expiresAt: Time.nullish(),
603
+ imageId: z24.string(),
604
+ name: z24.string()
591
605
  });
592
606
 
593
607
  // src/generated-definitions/DevelopmentServerConfigurationListResponse.ts
594
- import { z as z23 } from "zod";
595
- var DevelopmentServerConfigurationListResponse = z23.object({
596
- data: z23.array(DevelopmentServerConfigurationGetResponse),
597
- totalData: z23.number().int()
608
+ import { z as z25 } from "zod";
609
+ var DevelopmentServerConfigurationListResponse = z25.object({
610
+ data: z25.array(DevelopmentServerConfigurationGetResponse),
611
+ totalData: z25.number().int()
598
612
  });
599
613
 
600
614
  // src/generated-admin/endpoints/DevelopmentAdmin$.ts
601
615
  import { Validate as Validate5 } from "@accelbyte/sdk";
602
- import { z as z24 } from "zod";
616
+ import { z as z26 } from "zod";
603
617
  var DevelopmentAdmin$ = class {
604
618
  // @ts-ignore
605
619
  // prettier-ignore
@@ -643,7 +657,7 @@ var DevelopmentAdmin$ = class {
643
657
  const params = {};
644
658
  const url = "/ams/v1/admin/namespaces/{namespace}/development/server-configurations/{developmentServerConfigID}".replace("{namespace}", this.namespace).replace("{developmentServerConfigID}", developmentServerConfigID);
645
659
  const resultPromise = this.axiosInstance.delete(url, { params });
646
- return Validate5.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z24.unknown(), "z.unknown()");
660
+ return Validate5.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z26.unknown(), "z.unknown()");
647
661
  }
648
662
  /**
649
663
  * Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [READ]
@@ -659,6 +673,15 @@ var DevelopmentAdmin$ = class {
659
673
  "DevelopmentServerConfigurationGetResponse"
660
674
  );
661
675
  }
676
+ /**
677
+ * Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [UPDATE]
678
+ */
679
+ patchDevelopmentServerConfiguration_ByDevelopmentServerConfigId(developmentServerConfigID, data) {
680
+ const params = {};
681
+ const url = "/ams/v1/admin/namespaces/{namespace}/development/server-configurations/{developmentServerConfigID}".replace("{namespace}", this.namespace).replace("{developmentServerConfigID}", developmentServerConfigID);
682
+ const resultPromise = this.axiosInstance.patch(url, data, { params });
683
+ return Validate5.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z26.unknown(), "z.unknown()");
684
+ }
662
685
  };
663
686
 
664
687
  // src/generated-admin/DevelopmentAdminApi.ts
@@ -710,6 +733,12 @@ function DevelopmentAdminApi(sdk, args) {
710
733
  if (resp.error) throw resp.error;
711
734
  return resp.response;
712
735
  }
736
+ async function patchDevelopmentServerConfiguration_ByDevelopmentServerConfigId(developmentServerConfigID, data) {
737
+ const $ = new DevelopmentAdmin$(axiosInstance, namespace, useSchemaValidation);
738
+ const resp = await $.patchDevelopmentServerConfiguration_ByDevelopmentServerConfigId(developmentServerConfigID, data);
739
+ if (resp.error) throw resp.error;
740
+ return resp.response;
741
+ }
713
742
  return {
714
743
  /**
715
744
  * Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [READ]
@@ -726,136 +755,161 @@ function DevelopmentAdminApi(sdk, args) {
726
755
  /**
727
756
  * Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [READ]
728
757
  */
729
- getDevelopmentServerConfiguration_ByDevelopmentServerConfigId
758
+ getDevelopmentServerConfiguration_ByDevelopmentServerConfigId,
759
+ /**
760
+ * Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [UPDATE]
761
+ */
762
+ patchDevelopmentServerConfiguration_ByDevelopmentServerConfigId
730
763
  };
731
764
  }
732
765
 
733
766
  // src/generated-definitions/FleetCreateResponse.ts
734
- import { z as z25 } from "zod";
735
- var FleetCreateResponse = z25.object({ id: z25.string() });
736
-
737
- // src/generated-definitions/DsHostConfiguration.ts
738
- import { z as z26 } from "zod";
739
- var DsHostConfiguration = z26.object({ instanceId: z26.string(), instanceType: z26.string(), serversPerVm: z26.number().int() });
740
-
741
- // src/generated-definitions/PortConfiguration.ts
742
767
  import { z as z27 } from "zod";
743
- var PortConfiguration = z27.object({ name: z27.string(), protocol: z27.string() });
768
+ var FleetCreateResponse = z27.object({ id: z27.string() });
744
769
 
745
- // src/generated-definitions/Timeout.ts
770
+ // src/generated-definitions/DsHostConfiguration.ts
746
771
  import { z as z28 } from "zod";
747
- var Timeout = z28.object({
748
- creation: z28.number().int(),
749
- drain: z28.number().int(),
750
- session: z28.number().int(),
751
- unresponsive: z28.number().int()
772
+ var DsHostConfiguration = z28.object({
773
+ instanceId: z28.string(),
774
+ instanceProvider: z28.string(),
775
+ instanceType: z28.string(),
776
+ serversPerVm: z28.number().int()
752
777
  });
753
778
 
754
- // src/generated-definitions/ImageDeploymentProfile.ts
779
+ // src/generated-definitions/PortConfiguration.ts
755
780
  import { z as z29 } from "zod";
756
- var ImageDeploymentProfile = z29.object({
757
- commandLine: z29.string(),
758
- imageId: z29.string(),
759
- portConfigurations: z29.array(PortConfiguration),
760
- timeout: Timeout
761
- });
781
+ var PortConfiguration = z29.object({ name: z29.string(), protocol: z29.string() });
762
782
 
763
- // src/generated-definitions/RegionConfig.ts
783
+ // src/generated-definitions/Timeout.ts
764
784
  import { z as z30 } from "zod";
765
- var RegionConfig = z30.object({
766
- bufferSize: z30.number().int(),
767
- dynamicBuffer: z30.boolean(),
768
- maxServerCount: z30.number().int(),
769
- minServerCount: z30.number().int(),
770
- region: z30.string()
785
+ var Timeout = z30.object({
786
+ claim: z30.number().int().nullish(),
787
+ creation: z30.number().int().nullish(),
788
+ drain: z30.number().int().nullish(),
789
+ session: z30.number().int().nullish(),
790
+ unresponsive: z30.number().int().nullish()
771
791
  });
772
792
 
773
- // src/generated-definitions/FleetGetResponse.ts
793
+ // src/generated-definitions/ImageDeploymentProfile.ts
774
794
  import { z as z31 } from "zod";
775
- var FleetGetResponse = z31.object({
776
- active: z31.boolean(),
777
- claimKeys: z31.array(z31.string()),
778
- dsHostConfiguration: DsHostConfiguration,
779
- id: z31.string(),
780
- imageDeploymentProfile: ImageDeploymentProfile,
781
- isLocal: z31.boolean(),
782
- name: z31.string(),
783
- onDemand: z31.boolean(),
784
- regions: z31.array(RegionConfig),
785
- samplingRules: FleetArtifactsSampleRules
795
+ var ImageDeploymentProfile = z31.object({
796
+ commandLine: z31.string(),
797
+ imageId: z31.string(),
798
+ portConfigurations: z31.array(PortConfiguration),
799
+ timeout: Timeout.nullish()
786
800
  });
787
801
 
788
- // src/generated-definitions/FleetRegionalServerCounts.ts
802
+ // src/generated-definitions/RegionConfig.ts
789
803
  import { z as z32 } from "zod";
790
- var FleetRegionalServerCounts = z32.object({
791
- claimedServerCount: z32.number().int(),
792
- readyServerCount: z32.number().int(),
793
- region: z32.string(),
794
- runningVmCount: z32.number().int(),
795
- targetDsCount: z32.number().int(),
796
- targetVmCount: z32.number().int()
804
+ var RegionConfig = z32.object({
805
+ bufferSize: z32.number().int(),
806
+ dynamicBuffer: z32.boolean(),
807
+ maxServerCount: z32.number().int(),
808
+ minServerCount: z32.number().int(),
809
+ region: z32.string()
797
810
  });
798
811
 
799
- // src/generated-definitions/FleetListItemResponse.ts
812
+ // src/generated-definitions/FleetGetResponse.ts
800
813
  import { z as z33 } from "zod";
801
- var FleetListItemResponse = z33.object({
814
+ var FleetGetResponse = z33.object({
802
815
  active: z33.boolean(),
803
- counts: z33.array(FleetRegionalServerCounts),
816
+ claimKeys: z33.array(z33.string()),
817
+ dsHostConfiguration: DsHostConfiguration,
818
+ fallbackFleet: z33.string(),
804
819
  id: z33.string(),
805
- image: z33.string(),
820
+ imageDeploymentProfile: ImageDeploymentProfile,
806
821
  isLocal: z33.boolean(),
807
822
  name: z33.string(),
808
823
  onDemand: z33.boolean(),
809
- regions: z33.array(z33.string())
824
+ primaryFleet: z33.string(),
825
+ regions: z33.array(RegionConfig),
826
+ samplingRules: FleetArtifactsSampleRules
810
827
  });
811
828
 
812
- // src/generated-definitions/FleetListResponse.ts
829
+ // src/generated-definitions/FleetRegionalServerCounts.ts
813
830
  import { z as z34 } from "zod";
814
- var FleetListResponse = z34.object({ fleets: z34.array(FleetListItemResponse) });
831
+ var FleetRegionalServerCounts = z34.object({
832
+ claimedServerCount: z34.number().int(),
833
+ readyServerCount: z34.number().int(),
834
+ region: z34.string(),
835
+ runningVmCount: z34.number().int(),
836
+ targetDsCount: z34.number().int(),
837
+ targetVmCount: z34.number().int()
838
+ });
815
839
 
816
- // src/generated-definitions/FleetServerInfoResponse.ts
840
+ // src/generated-definitions/FleetListItemResponse.ts
817
841
  import { z as z35 } from "zod";
818
- var FleetServerInfoResponse = z35.object({
819
- createdAt: z35.string(),
820
- fleetId: z35.string(),
821
- fleetName: z35.string(),
822
- imageCmd: z35.string(),
823
- imageId: z35.string(),
824
- instanceType: z35.string(),
825
- ipAddress: z35.string(),
826
- portConfiguration: z35.array(PortConfiguration),
827
- ports: z35.record(z35.number().int()),
828
- region: z35.string(),
829
- serverConfiguration: z35.string(),
830
- serverId: z35.string(),
831
- sessionId: z35.string(),
832
- status: z35.string()
842
+ var FleetListItemResponse = z35.object({
843
+ active: z35.boolean(),
844
+ counts: z35.array(FleetRegionalServerCounts),
845
+ fallbackFleet: z35.string(),
846
+ id: z35.string(),
847
+ image: z35.string(),
848
+ instanceProvider: z35.string(),
849
+ isLocal: z35.boolean(),
850
+ name: z35.string(),
851
+ onDemand: z35.boolean(),
852
+ primaryFleet: z35.string(),
853
+ regions: z35.array(z35.string())
833
854
  });
834
855
 
835
- // src/generated-definitions/PagingInfo.ts
856
+ // src/generated-definitions/PaginationInfo.ts
836
857
  import { z as z36 } from "zod";
837
- var PagingInfo = z36.object({
838
- currentPage: z36.number().int(),
839
- hasNext: z36.boolean(),
840
- hasPages: z36.boolean(),
841
- hasPrev: z36.boolean(),
858
+ var PaginationInfo = z36.object({
859
+ first: z36.string(),
860
+ last: z36.string(),
842
861
  next: z36.string(),
843
- pageNums: z36.array(z36.number().int()),
844
862
  previous: z36.string(),
845
863
  total: z36.number().int()
846
864
  });
847
865
 
848
- // src/generated-definitions/FleetServersResponse.ts
866
+ // src/generated-definitions/FleetListResponse.ts
849
867
  import { z as z37 } from "zod";
850
- var FleetServersResponse = z37.object({
868
+ var FleetListResponse = z37.object({ fleets: z37.array(FleetListItemResponse), paging: PaginationInfo });
869
+
870
+ // src/generated-definitions/FleetServerInfoResponse.ts
871
+ import { z as z38 } from "zod";
872
+ var FleetServerInfoResponse = z38.object({
873
+ createdAt: Time,
874
+ fleetId: z38.string(),
875
+ fleetName: z38.string(),
876
+ imageCmd: z38.string(),
877
+ imageId: z38.string(),
878
+ instanceType: z38.string(),
879
+ ipAddress: z38.string(),
880
+ portConfiguration: z38.array(PortConfiguration),
881
+ ports: z38.record(z38.number().int()),
882
+ region: z38.string(),
883
+ serverConfiguration: z38.string(),
884
+ serverId: z38.string(),
885
+ sessionId: z38.string(),
886
+ status: z38.string()
887
+ });
888
+
889
+ // src/generated-definitions/PagingInfo.ts
890
+ import { z as z39 } from "zod";
891
+ var PagingInfo = z39.object({
892
+ currentPage: z39.number().int(),
893
+ hasNext: z39.boolean(),
894
+ hasPages: z39.boolean(),
895
+ hasPrev: z39.boolean(),
896
+ next: z39.string(),
897
+ pageNums: z39.array(z39.number().int()),
898
+ previous: z39.string(),
899
+ total: z39.number().int()
900
+ });
901
+
902
+ // src/generated-definitions/FleetServersResponse.ts
903
+ import { z as z40 } from "zod";
904
+ var FleetServersResponse = z40.object({
851
905
  paging: PagingInfo,
852
- regions: z37.array(FleetRegionalServerCounts),
853
- servers: z37.array(FleetServerInfoResponse)
906
+ regions: z40.array(FleetRegionalServerCounts),
907
+ servers: z40.array(FleetServerInfoResponse)
854
908
  });
855
909
 
856
910
  // src/generated-admin/endpoints/FleetsAdmin$.ts
857
911
  import { Validate as Validate6 } from "@accelbyte/sdk";
858
- import { z as z38 } from "zod";
912
+ import { z as z41 } from "zod";
859
913
  var FleetsAdmin$ = class {
860
914
  // @ts-ignore
861
915
  // prettier-ignore
@@ -867,8 +921,8 @@ var FleetsAdmin$ = class {
867
921
  /**
868
922
  * Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [READ]
869
923
  */
870
- getFleets() {
871
- const params = {};
924
+ getFleets(queryParams) {
925
+ const params = { count: 100, ...queryParams };
872
926
  const url = "/ams/v1/admin/namespaces/{namespace}/fleets".replace("{namespace}", this.namespace);
873
927
  const resultPromise = this.axiosInstance.get(url, { params });
874
928
  return Validate6.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, FleetListResponse, "FleetListResponse");
@@ -889,7 +943,7 @@ var FleetsAdmin$ = class {
889
943
  const params = {};
890
944
  const url = "/ams/v1/admin/namespaces/{namespace}/fleets/{fleetID}".replace("{namespace}", this.namespace).replace("{fleetID}", fleetID);
891
945
  const resultPromise = this.axiosInstance.delete(url, { params });
892
- return Validate6.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z38.unknown(), "z.unknown()");
946
+ return Validate6.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z41.unknown(), "z.unknown()");
893
947
  }
894
948
  /**
895
949
  * Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [READ]
@@ -907,7 +961,7 @@ var FleetsAdmin$ = class {
907
961
  const params = {};
908
962
  const url = "/ams/v1/admin/namespaces/{namespace}/fleets/{fleetID}".replace("{namespace}", this.namespace).replace("{fleetID}", fleetID);
909
963
  const resultPromise = this.axiosInstance.put(url, data, { params });
910
- return Validate6.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z38.unknown(), "z.unknown()");
964
+ return Validate6.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z41.unknown(), "z.unknown()");
911
965
  }
912
966
  /**
913
967
  * Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [READ]
@@ -945,9 +999,9 @@ function FleetsAdminApi(sdk, args) {
945
999
  }
946
1000
  }
947
1001
  }
948
- async function getFleets() {
1002
+ async function getFleets(queryParams) {
949
1003
  const $ = new FleetsAdmin$(axiosInstance, namespace, useSchemaValidation);
950
- const resp = await $.getFleets();
1004
+ const resp = await $.getFleets(queryParams);
951
1005
  if (resp.error) throw resp.error;
952
1006
  return resp.response;
953
1007
  }
@@ -1010,58 +1064,59 @@ function FleetsAdminApi(sdk, args) {
1010
1064
  }
1011
1065
 
1012
1066
  // src/generated-definitions/ReferencingFleet.ts
1013
- import { z as z39 } from "zod";
1014
- var ReferencingFleet = z39.object({ environment: z39.string(), fleetId: z39.string(), namespace: z39.string() });
1067
+ import { z as z42 } from "zod";
1068
+ var ReferencingFleet = z42.object({ environment: z42.string(), fleetId: z42.string(), namespace: z42.string() });
1015
1069
 
1016
1070
  // src/generated-definitions/ImageDetails.ts
1017
- import { z as z40 } from "zod";
1018
- var ImageDetails = z40.object({
1071
+ import { z as z43 } from "zod";
1072
+ var ImageDetails = z43.object({
1019
1073
  createdAt: Time,
1020
- deleteAt: Time,
1021
- executable: z40.string(),
1022
- id: z40.string(),
1023
- isProtected: z40.boolean(),
1024
- name: z40.string(),
1025
- referencingFleets: z40.array(ReferencingFleet),
1026
- sizeInByte: z40.number().int(),
1027
- status: z40.string(),
1028
- tags: z40.array(z40.string()),
1074
+ deleteAt: Time.nullish(),
1075
+ executable: z43.string(),
1076
+ id: z43.string(),
1077
+ isProtected: z43.boolean(),
1078
+ name: z43.string(),
1079
+ referencingFleets: z43.array(ReferencingFleet),
1080
+ sizeInByte: z43.number().int(),
1081
+ status: z43.string(),
1082
+ tags: z43.array(z43.string()),
1029
1083
  uploadedAt: Time,
1030
- uploadedBy: z40.string()
1084
+ uploadedBy: z43.string()
1031
1085
  });
1032
1086
 
1033
1087
  // src/generated-definitions/ImageListItem.ts
1034
- import { z as z41 } from "zod";
1035
- var ImageListItem = z41.object({
1088
+ import { z as z44 } from "zod";
1089
+ var ImageListItem = z44.object({
1036
1090
  createdAt: Time,
1037
- deleteAt: Time,
1038
- executable: z41.string(),
1039
- id: z41.string(),
1040
- isProtected: z41.boolean(),
1041
- name: z41.string(),
1042
- referencingFleets: z41.number().int(),
1043
- sizeInByte: z41.number().int(),
1044
- status: z41.string(),
1045
- tags: z41.array(z41.string()),
1091
+ deleteAt: Time.nullish(),
1092
+ executable: z44.string(),
1093
+ id: z44.string(),
1094
+ isProtected: z44.boolean(),
1095
+ name: z44.string(),
1096
+ referencingConfigs: z44.number().int(),
1097
+ referencingFleets: z44.number().int(),
1098
+ sizeInByte: z44.number().int(),
1099
+ status: z44.string(),
1100
+ tags: z44.array(z44.string()),
1046
1101
  uploadedAt: Time,
1047
- uploadedBy: z41.string()
1102
+ uploadedBy: z44.string()
1048
1103
  });
1049
1104
 
1050
1105
  // src/generated-definitions/ImageList.ts
1051
- import { z as z42 } from "zod";
1052
- var ImageList = z42.object({ images: z42.array(ImageListItem) });
1106
+ import { z as z45 } from "zod";
1107
+ var ImageList = z45.object({ images: z45.array(ImageListItem), paging: PagingInfo });
1053
1108
 
1054
1109
  // src/generated-definitions/ImageStorage.ts
1055
- import { z as z43 } from "zod";
1056
- var ImageStorage = z43.object({
1057
- currentMarkedForDeletionBytes: z43.number().int(),
1058
- currentUsageBytes: z43.number().int(),
1059
- quotaBytes: z43.number().int()
1110
+ import { z as z46 } from "zod";
1111
+ var ImageStorage = z46.object({
1112
+ currentMarkedForDeletionBytes: z46.number().int(),
1113
+ currentUsageBytes: z46.number().int(),
1114
+ quotaBytes: z46.number().int()
1060
1115
  });
1061
1116
 
1062
1117
  // src/generated-admin/endpoints/ImagesAdmin$.ts
1063
1118
  import { Validate as Validate7 } from "@accelbyte/sdk";
1064
- import { z as z44 } from "zod";
1119
+ import { z as z47 } from "zod";
1065
1120
  var ImagesAdmin$ = class {
1066
1121
  // @ts-ignore
1067
1122
  // prettier-ignore
@@ -1073,8 +1128,8 @@ var ImagesAdmin$ = class {
1073
1128
  /**
1074
1129
  * Returns images which exist (uploaded, uploading, or building) in the linked account. This route fails if no account is linked Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [READ]
1075
1130
  */
1076
- getImages() {
1077
- const params = {};
1131
+ getImages(queryParams) {
1132
+ const params = { count: 100, sortBy: "uploadedAt", sortDirection: "desc", ...queryParams };
1078
1133
  const url = "/ams/v1/admin/namespaces/{namespace}/images".replace("{namespace}", this.namespace);
1079
1134
  const resultPromise = this.axiosInstance.get(url, { params });
1080
1135
  return Validate7.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, ImageList, "ImageList");
@@ -1095,7 +1150,7 @@ var ImagesAdmin$ = class {
1095
1150
  const params = {};
1096
1151
  const url = "/ams/v1/admin/namespaces/{namespace}/images/{imageID}".replace("{namespace}", this.namespace).replace("{imageID}", imageID);
1097
1152
  const resultPromise = this.axiosInstance.delete(url, { params });
1098
- return Validate7.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z44.unknown(), "z.unknown()");
1153
+ return Validate7.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z47.unknown(), "z.unknown()");
1099
1154
  }
1100
1155
  /**
1101
1156
  * Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [READ]
@@ -1122,7 +1177,7 @@ var ImagesAdmin$ = class {
1122
1177
  const params = {};
1123
1178
  const url = "/ams/v1/admin/namespaces/{namespace}/images/{imageID}/restore".replace("{namespace}", this.namespace).replace("{imageID}", imageID);
1124
1179
  const resultPromise = this.axiosInstance.post(url, null, { params });
1125
- return Validate7.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z44.unknown(), "z.unknown()");
1180
+ return Validate7.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z47.unknown(), "z.unknown()");
1126
1181
  }
1127
1182
  };
1128
1183
 
@@ -1151,9 +1206,9 @@ function ImagesAdminApi(sdk, args) {
1151
1206
  }
1152
1207
  }
1153
1208
  }
1154
- async function getImages() {
1209
+ async function getImages(queryParams) {
1155
1210
  const $ = new ImagesAdmin$(axiosInstance, namespace, useSchemaValidation);
1156
- const resp = await $.getImages();
1211
+ const resp = await $.getImages(queryParams);
1157
1212
  if (resp.error) throw resp.error;
1158
1213
  return resp.response;
1159
1214
  }
@@ -1216,46 +1271,46 @@ function ImagesAdminApi(sdk, args) {
1216
1271
  }
1217
1272
 
1218
1273
  // src/generated-definitions/DsHistoryEvent.ts
1219
- import { z as z45 } from "zod";
1220
- var DsHistoryEvent = z45.object({
1274
+ import { z as z48 } from "zod";
1275
+ var DsHistoryEvent = z48.object({
1221
1276
  createdAt: Time,
1222
- exitCode: z45.number().int(),
1223
- ipAddress: z45.string(),
1224
- reason: z45.string(),
1225
- region: z45.string(),
1226
- serverId: z45.string(),
1227
- sessionId: z45.string(),
1228
- status: z45.string()
1277
+ exitCode: z48.number().int(),
1278
+ ipAddress: z48.string(),
1279
+ reason: z48.string(),
1280
+ region: z48.string(),
1281
+ serverId: z48.string(),
1282
+ sessionId: z48.string(),
1283
+ status: z48.string()
1229
1284
  });
1230
1285
 
1231
1286
  // src/generated-definitions/DsHistoryList.ts
1232
- import { z as z46 } from "zod";
1233
- var DsHistoryList = z46.object({ events: z46.array(DsHistoryEvent), paging: PagingInfo });
1287
+ import { z as z49 } from "zod";
1288
+ var DsHistoryList = z49.object({ events: z49.array(DsHistoryEvent), paging: PagingInfo });
1234
1289
 
1235
1290
  // src/generated-definitions/FleetServerConnectionInfoResponse.ts
1236
- import { z as z47 } from "zod";
1237
- var FleetServerConnectionInfoResponse = z47.object({
1291
+ import { z as z50 } from "zod";
1292
+ var FleetServerConnectionInfoResponse = z50.object({
1238
1293
  expiresAt: Time,
1239
- host: z47.string(),
1240
- logstreamPort: z47.number().int(),
1241
- secret: z47.string()
1294
+ host: z50.string(),
1295
+ logstreamPort: z50.number().int(),
1296
+ secret: z50.string()
1242
1297
  });
1243
1298
 
1244
1299
  // src/generated-definitions/FleetServerHistoryEventResponse.ts
1245
- import { z as z48 } from "zod";
1246
- var FleetServerHistoryEventResponse = z48.object({
1300
+ import { z as z51 } from "zod";
1301
+ var FleetServerHistoryEventResponse = z51.object({
1247
1302
  createdAt: Time,
1248
- exitCode: z48.number().int(),
1249
- fleetId: z48.string(),
1250
- newState: z48.string(),
1251
- oldState: z48.string(),
1252
- reason: z48.string(),
1253
- serverId: z48.string()
1303
+ exitCode: z51.number().int(),
1304
+ fleetId: z51.string(),
1305
+ newState: z51.string(),
1306
+ oldState: z51.string(),
1307
+ reason: z51.string(),
1308
+ serverId: z51.string()
1254
1309
  });
1255
1310
 
1256
1311
  // src/generated-definitions/FleetServerHistoryResponse.ts
1257
- import { z as z49 } from "zod";
1258
- var FleetServerHistoryResponse = z49.object({ events: z49.array(FleetServerHistoryEventResponse) });
1312
+ import { z as z52 } from "zod";
1313
+ var FleetServerHistoryResponse = z52.object({ events: z52.array(FleetServerHistoryEventResponse) });
1259
1314
 
1260
1315
  // src/generated-admin/endpoints/ServersAdmin$.ts
1261
1316
  import { Validate as Validate8 } from "@accelbyte/sdk";
@@ -1451,7 +1506,7 @@ function AccountApi(sdk, args) {
1451
1506
 
1452
1507
  // src/generated-public/endpoints/AmsInfo$.ts
1453
1508
  import { Validate as Validate10 } from "@accelbyte/sdk";
1454
- import { z as z50 } from "zod";
1509
+ import { z as z53 } from "zod";
1455
1510
  var AmsInfo$ = class {
1456
1511
  // @ts-ignore
1457
1512
  // prettier-ignore
@@ -1464,7 +1519,7 @@ var AmsInfo$ = class {
1464
1519
  const params = {};
1465
1520
  const url = "/ams/v1/upload-url";
1466
1521
  const resultPromise = this.axiosInstance.get(url, { params });
1467
- return Validate10.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z50.unknown(), "z.unknown()");
1522
+ return Validate10.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z53.unknown(), "z.unknown()");
1468
1523
  }
1469
1524
  };
1470
1525
 
@@ -1506,7 +1561,7 @@ function AmsInfoApi(sdk, args) {
1506
1561
 
1507
1562
  // src/generated-public/endpoints/Auth$.ts
1508
1563
  import { Validate as Validate11 } from "@accelbyte/sdk";
1509
- import { z as z51 } from "zod";
1564
+ import { z as z54 } from "zod";
1510
1565
  var Auth$ = class {
1511
1566
  // @ts-ignore
1512
1567
  // prettier-ignore
@@ -1522,7 +1577,7 @@ var Auth$ = class {
1522
1577
  const params = {};
1523
1578
  const url = "/ams/auth";
1524
1579
  const resultPromise = this.axiosInstance.get(url, { params });
1525
- return Validate11.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z51.unknown(), "z.unknown()");
1580
+ return Validate11.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z54.unknown(), "z.unknown()");
1526
1581
  }
1527
1582
  };
1528
1583
 
@@ -1567,7 +1622,7 @@ function AuthApi(sdk, args) {
1567
1622
 
1568
1623
  // src/generated-public/endpoints/FleetCommander$.ts
1569
1624
  import { Validate as Validate12 } from "@accelbyte/sdk";
1570
- import { z as z52 } from "zod";
1625
+ import { z as z55 } from "zod";
1571
1626
  var FleetCommander$ = class {
1572
1627
  // @ts-ignore
1573
1628
  // prettier-ignore
@@ -1580,7 +1635,7 @@ var FleetCommander$ = class {
1580
1635
  const params = {};
1581
1636
  const url = "/ams/version";
1582
1637
  const resultPromise = this.axiosInstance.get(url, { params });
1583
- return Validate12.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z52.unknown(), "z.unknown()");
1638
+ return Validate12.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z55.unknown(), "z.unknown()");
1584
1639
  }
1585
1640
  };
1586
1641
 
@@ -1621,8 +1676,14 @@ function FleetCommanderApi(sdk, args) {
1621
1676
  }
1622
1677
 
1623
1678
  // src/generated-definitions/FleetClaimResponse.ts
1624
- import { z as z53 } from "zod";
1625
- var FleetClaimResponse = z53.object({ ip: z53.string(), ports: z53.record(z53.number().int()), region: z53.string(), serverId: z53.string() });
1679
+ import { z as z56 } from "zod";
1680
+ var FleetClaimResponse = z56.object({
1681
+ fleetId: z56.string(),
1682
+ ip: z56.string(),
1683
+ ports: z56.record(z56.number().int()),
1684
+ region: z56.string(),
1685
+ serverId: z56.string()
1686
+ });
1626
1687
 
1627
1688
  // src/generated-public/endpoints/Fleets$.ts
1628
1689
  import { Validate as Validate13 } from "@accelbyte/sdk";
@@ -1705,7 +1766,7 @@ function FleetsApi(sdk, args) {
1705
1766
 
1706
1767
  // src/generated-public/endpoints/Watchdogs$.ts
1707
1768
  import { Validate as Validate14 } from "@accelbyte/sdk";
1708
- import { z as z54 } from "zod";
1769
+ import { z as z57 } from "zod";
1709
1770
  var Watchdogs$ = class {
1710
1771
  // @ts-ignore
1711
1772
  // prettier-ignore
@@ -1721,7 +1782,7 @@ var Watchdogs$ = class {
1721
1782
  const params = {};
1722
1783
  const url = "/ams/v1/namespaces/{namespace}/local/{watchdogID}/connect".replace("{namespace}", this.namespace).replace("{watchdogID}", watchdogID);
1723
1784
  const resultPromise = this.axiosInstance.get(url, { params });
1724
- return Validate14.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z54.unknown(), "z.unknown()");
1785
+ return Validate14.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z57.unknown(), "z.unknown()");
1725
1786
  }
1726
1787
  /**
1727
1788
  * Required Permission: NAMESPACE:{namespace}:ARMADA:WATCHDOG [CREATE]
@@ -1730,7 +1791,7 @@ var Watchdogs$ = class {
1730
1791
  const params = {};
1731
1792
  const url = "/ams/v1/namespaces/{namespace}/watchdogs/{watchdogID}/connect".replace("{namespace}", this.namespace).replace("{watchdogID}", watchdogID);
1732
1793
  const resultPromise = this.axiosInstance.get(url, { params });
1733
- return Validate14.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z54.unknown(), "z.unknown()");
1794
+ return Validate14.validateOrReturnResponse(this.useSchemaValidation, () => resultPromise, z57.unknown(), "z.unknown()");
1734
1795
  }
1735
1796
  };
1736
1797
 
@@ -1792,8 +1853,9 @@ export {
1792
1853
  AccountAdmin$,
1793
1854
  AccountAdminApi,
1794
1855
  AmsRegionsResponse,
1795
- InstanceTypeDescriptionResponse,
1796
- AvailableInstanceTypesResponse,
1856
+ Capacity,
1857
+ InstanceType,
1858
+ InstanceTypesResponse,
1797
1859
  AmsInfoAdmin$,
1798
1860
  AmsInfoAdminApi,
1799
1861
  Time,
@@ -1807,6 +1869,7 @@ export {
1807
1869
  ArtifactUsageResponse,
1808
1870
  ArtifactSamplingRule,
1809
1871
  ArtifactTypeSamplingRules,
1872
+ CoredumpSamplingRules,
1810
1873
  FleetArtifactsSampleRules,
1811
1874
  ArtifactsAdmin$,
1812
1875
  ArtifactsAdminApi,
@@ -1824,6 +1887,7 @@ export {
1824
1887
  FleetGetResponse,
1825
1888
  FleetRegionalServerCounts,
1826
1889
  FleetListItemResponse,
1890
+ PaginationInfo,
1827
1891
  FleetListResponse,
1828
1892
  FleetServerInfoResponse,
1829
1893
  PagingInfo,