@accelbyte/sdk-ams 0.0.0-dev-20241106153220 → 0.0.0-dev-20250113092628
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/dist/{FleetClaimResponse-D9jxThLx.d.cts → FleetClaimResponse-B31iJh_b.d.cts} +372 -212
- package/dist/{FleetClaimResponse-D9jxThLx.d.ts → FleetClaimResponse-B31iJh_b.d.ts} +372 -212
- package/dist/all-query-imports.cjs +281 -240
- package/dist/all-query-imports.d.cts +29 -5
- package/dist/all-query-imports.d.ts +29 -5
- package/dist/all-query-imports.js +7 -3
- package/dist/{chunk-LBIKEJ3H.js → chunk-YDYBKQVZ.js} +277 -239
- package/dist/global/index.global.js +1 -1
- package/dist/index.cjs +336 -286
- package/dist/index.d.cts +229 -57
- package/dist/index.d.ts +229 -57
- package/dist/index.js +52 -40
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AccelByteSDK, SdkSetConfigParam, Response } from '@accelbyte/sdk';
|
|
2
2
|
import { AxiosResponse, AxiosInstance } from 'axios';
|
|
3
|
-
import { A as AccountResponse, a as AccountCreateRequest, b as AccountCreateResponse, c as AccountLinkTokenResponse, d as AccountLinkRequest, e as AccountLinkResponse, f as AmsRegionsResponse,
|
|
3
|
+
import { A as AccountResponse, a as AccountCreateRequest, b as AccountCreateResponse, c as AccountLinkTokenResponse, d as AccountLinkRequest, e as AccountLinkResponse, f as AmsRegionsResponse, I as InstanceTypesForNamespaceResponse, Q as QoSEndpointResponse, U as UpdateServerRequest, g as ArtifactListResponse, h as ArtifactUsageResponse, i as ArtifactUrlResponse, F as FleetArtifactsSampleRules, D as DevelopmentServerConfigurationListResponse, j as DevelopmentServerConfigurationCreateRequest, k as DevelopmentServerConfigurationCreateResponse, l as DevelopmentServerConfigurationGetResponse, m as FleetListResponse, n as FleetParameters, o as FleetCreateResponse, p as FleetGetResponse, q as FleetServersResponse, r as ImageList, s as ImageStorage, t as ImageDetails, u as ImageUpdate, v as FleetServerInfoResponse, w as FleetServerHistoryResponse, x as DsHistoryList, y as FleetServerConnectionInfoResponse, z as FleetClaimByKeysReq, B as FleetClaimResponse, C as FleetClaimReq } from './FleetClaimResponse-B31iJh_b.cjs';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -21,7 +21,7 @@ declare function AccountAdminApi(sdk: AccelByteSDK, args?: SdkSetConfigParam): {
|
|
|
21
21
|
*/
|
|
22
22
|
getAccountLink: () => Promise<AxiosResponse<AccountLinkTokenResponse>>;
|
|
23
23
|
/**
|
|
24
|
-
* 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
|
|
24
|
+
* 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]
|
|
25
25
|
*/
|
|
26
26
|
createAccountLink: (data: AccountLinkRequest) => Promise<AxiosResponse<AccountLinkResponse>>;
|
|
27
27
|
};
|
|
@@ -38,7 +38,7 @@ declare function AmsInfoAdminApi(sdk: AccelByteSDK, args?: SdkSetConfigParam): {
|
|
|
38
38
|
/**
|
|
39
39
|
* Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA [READ]
|
|
40
40
|
*/
|
|
41
|
-
getSupportedInstances: () => Promise<AxiosResponse<
|
|
41
|
+
getSupportedInstances: () => Promise<AxiosResponse<InstanceTypesForNamespaceResponse>>;
|
|
42
42
|
};
|
|
43
43
|
|
|
44
44
|
/**
|
|
@@ -85,6 +85,8 @@ declare function ArtifactsAdminApi(sdk: AccelByteSDK, args?: SdkSetConfigParam):
|
|
|
85
85
|
offset?: number;
|
|
86
86
|
region?: string | null;
|
|
87
87
|
serverId?: string | null;
|
|
88
|
+
sortBy?: string | null;
|
|
89
|
+
sortDirection?: "asc" | "desc";
|
|
88
90
|
startDate?: string | null;
|
|
89
91
|
status?: string | null;
|
|
90
92
|
}) => Promise<AxiosResponse<ArtifactListResponse>>;
|
|
@@ -144,7 +146,15 @@ declare function FleetsAdminApi(sdk: AccelByteSDK, args?: SdkSetConfigParam): {
|
|
|
144
146
|
/**
|
|
145
147
|
* Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [READ]
|
|
146
148
|
*/
|
|
147
|
-
getFleets: (
|
|
149
|
+
getFleets: (queryParams?: {
|
|
150
|
+
active?: boolean | null;
|
|
151
|
+
count?: number;
|
|
152
|
+
desc?: "asc" | "desc";
|
|
153
|
+
name?: string | null;
|
|
154
|
+
offset?: number;
|
|
155
|
+
region?: string | null;
|
|
156
|
+
sortBy?: "active" | "name";
|
|
157
|
+
}) => Promise<AxiosResponse<FleetListResponse>>;
|
|
148
158
|
/**
|
|
149
159
|
* Optionally, sampling rules for the fleet can also be specified Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [CREATE]
|
|
150
160
|
*/
|
|
@@ -183,7 +193,17 @@ declare function ImagesAdminApi(sdk: AccelByteSDK, args?: SdkSetConfigParam): {
|
|
|
183
193
|
/**
|
|
184
194
|
* 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]
|
|
185
195
|
*/
|
|
186
|
-
getImages: (
|
|
196
|
+
getImages: (queryParams?: {
|
|
197
|
+
count?: number;
|
|
198
|
+
inUse?: string | null;
|
|
199
|
+
isProtected?: boolean | null;
|
|
200
|
+
name?: string | null;
|
|
201
|
+
offset?: number;
|
|
202
|
+
sortBy?: string | null;
|
|
203
|
+
sortDirection?: string | null;
|
|
204
|
+
status?: string | null;
|
|
205
|
+
tag?: string | null;
|
|
206
|
+
}) => Promise<AxiosResponse<ImageList>>;
|
|
187
207
|
/**
|
|
188
208
|
* Returns information regarding the account's usage for images storage including the free tier quota Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [READ]
|
|
189
209
|
*/
|
|
@@ -349,7 +369,7 @@ declare class AccountAdmin$ {
|
|
|
349
369
|
*/
|
|
350
370
|
getAccountLink(): Promise<Response<AccountLinkTokenResponse>>;
|
|
351
371
|
/**
|
|
352
|
-
* 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
|
|
372
|
+
* 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]
|
|
353
373
|
*/
|
|
354
374
|
createAccountLink(data: AccountLinkRequest): Promise<Response<AccountLinkResponse>>;
|
|
355
375
|
}
|
|
@@ -370,7 +390,7 @@ declare class AmsInfoAdmin$ {
|
|
|
370
390
|
/**
|
|
371
391
|
* Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA [READ]
|
|
372
392
|
*/
|
|
373
|
-
getSupportedInstances(): Promise<Response<
|
|
393
|
+
getSupportedInstances(): Promise<Response<InstanceTypesForNamespaceResponse>>;
|
|
374
394
|
}
|
|
375
395
|
|
|
376
396
|
/**
|
|
@@ -425,6 +445,8 @@ declare class ArtifactsAdmin$ {
|
|
|
425
445
|
offset?: number;
|
|
426
446
|
region?: string | null;
|
|
427
447
|
serverId?: string | null;
|
|
448
|
+
sortBy?: string | null;
|
|
449
|
+
sortDirection?: 'asc' | 'desc';
|
|
428
450
|
startDate?: string | null;
|
|
429
451
|
status?: string | null;
|
|
430
452
|
}): Promise<Response<ArtifactListResponse>>;
|
|
@@ -492,7 +514,15 @@ declare class FleetsAdmin$ {
|
|
|
492
514
|
/**
|
|
493
515
|
* Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [READ]
|
|
494
516
|
*/
|
|
495
|
-
getFleets(
|
|
517
|
+
getFleets(queryParams?: {
|
|
518
|
+
active?: boolean | null;
|
|
519
|
+
count?: number;
|
|
520
|
+
desc?: 'asc' | 'desc';
|
|
521
|
+
name?: string | null;
|
|
522
|
+
offset?: number;
|
|
523
|
+
region?: string | null;
|
|
524
|
+
sortBy?: 'active' | 'name';
|
|
525
|
+
}): Promise<Response<FleetListResponse>>;
|
|
496
526
|
/**
|
|
497
527
|
* Optionally, sampling rules for the fleet can also be specified Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [CREATE]
|
|
498
528
|
*/
|
|
@@ -535,7 +565,17 @@ declare class ImagesAdmin$ {
|
|
|
535
565
|
/**
|
|
536
566
|
* 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]
|
|
537
567
|
*/
|
|
538
|
-
getImages(
|
|
568
|
+
getImages(queryParams?: {
|
|
569
|
+
count?: number;
|
|
570
|
+
inUse?: string | null;
|
|
571
|
+
isProtected?: boolean | null;
|
|
572
|
+
name?: string | null;
|
|
573
|
+
offset?: number;
|
|
574
|
+
sortBy?: string | null;
|
|
575
|
+
sortDirection?: string | null;
|
|
576
|
+
status?: string | null;
|
|
577
|
+
tag?: string | null;
|
|
578
|
+
}): Promise<Response<ImageList>>;
|
|
539
579
|
/**
|
|
540
580
|
* Returns information regarding the account's usage for images storage including the free tier quota Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [READ]
|
|
541
581
|
*/
|
|
@@ -692,6 +732,16 @@ declare const ArtifactTypeSamplingRules: z.ZodObject<{
|
|
|
692
732
|
collect: boolean;
|
|
693
733
|
percentage: number;
|
|
694
734
|
}>;
|
|
735
|
+
unclaimed: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
736
|
+
collect: z.ZodBoolean;
|
|
737
|
+
percentage: z.ZodNumber;
|
|
738
|
+
}, "strip", z.ZodTypeAny, {
|
|
739
|
+
collect: boolean;
|
|
740
|
+
percentage: number;
|
|
741
|
+
}, {
|
|
742
|
+
collect: boolean;
|
|
743
|
+
percentage: number;
|
|
744
|
+
}>>>;
|
|
695
745
|
}, "strip", z.ZodTypeAny, {
|
|
696
746
|
crashed: {
|
|
697
747
|
collect: boolean;
|
|
@@ -701,6 +751,10 @@ declare const ArtifactTypeSamplingRules: z.ZodObject<{
|
|
|
701
751
|
collect: boolean;
|
|
702
752
|
percentage: number;
|
|
703
753
|
};
|
|
754
|
+
unclaimed?: {
|
|
755
|
+
collect: boolean;
|
|
756
|
+
percentage: number;
|
|
757
|
+
} | null | undefined;
|
|
704
758
|
}, {
|
|
705
759
|
crashed: {
|
|
706
760
|
collect: boolean;
|
|
@@ -710,10 +764,52 @@ declare const ArtifactTypeSamplingRules: z.ZodObject<{
|
|
|
710
764
|
collect: boolean;
|
|
711
765
|
percentage: number;
|
|
712
766
|
};
|
|
767
|
+
unclaimed?: {
|
|
768
|
+
collect: boolean;
|
|
769
|
+
percentage: number;
|
|
770
|
+
} | null | undefined;
|
|
713
771
|
}>;
|
|
714
772
|
interface ArtifactTypeSamplingRules extends z.TypeOf<typeof ArtifactTypeSamplingRules> {
|
|
715
773
|
}
|
|
716
774
|
|
|
775
|
+
declare const Capacity: z.ZodObject<{
|
|
776
|
+
region: z.ZodString;
|
|
777
|
+
vmCount: z.ZodNumber;
|
|
778
|
+
}, "strip", z.ZodTypeAny, {
|
|
779
|
+
region: string;
|
|
780
|
+
vmCount: number;
|
|
781
|
+
}, {
|
|
782
|
+
region: string;
|
|
783
|
+
vmCount: number;
|
|
784
|
+
}>;
|
|
785
|
+
interface Capacity extends z.TypeOf<typeof Capacity> {
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
declare const CoredumpSamplingRules: z.ZodObject<{
|
|
789
|
+
crashed: z.ZodObject<{
|
|
790
|
+
collect: z.ZodBoolean;
|
|
791
|
+
percentage: z.ZodNumber;
|
|
792
|
+
}, "strip", z.ZodTypeAny, {
|
|
793
|
+
collect: boolean;
|
|
794
|
+
percentage: number;
|
|
795
|
+
}, {
|
|
796
|
+
collect: boolean;
|
|
797
|
+
percentage: number;
|
|
798
|
+
}>;
|
|
799
|
+
}, "strip", z.ZodTypeAny, {
|
|
800
|
+
crashed: {
|
|
801
|
+
collect: boolean;
|
|
802
|
+
percentage: number;
|
|
803
|
+
};
|
|
804
|
+
}, {
|
|
805
|
+
crashed: {
|
|
806
|
+
collect: boolean;
|
|
807
|
+
percentage: number;
|
|
808
|
+
};
|
|
809
|
+
}>;
|
|
810
|
+
interface CoredumpSamplingRules extends z.TypeOf<typeof CoredumpSamplingRules> {
|
|
811
|
+
}
|
|
812
|
+
|
|
717
813
|
declare const DsHistoryEvent: z.ZodObject<{
|
|
718
814
|
createdAt: z.ZodAny;
|
|
719
815
|
exitCode: z.ZodNumber;
|
|
@@ -747,20 +843,36 @@ interface DsHistoryEvent extends z.TypeOf<typeof DsHistoryEvent> {
|
|
|
747
843
|
|
|
748
844
|
declare const DsHostConfiguration: z.ZodObject<{
|
|
749
845
|
instanceId: z.ZodString;
|
|
846
|
+
instanceProvider: z.ZodString;
|
|
750
847
|
instanceType: z.ZodString;
|
|
751
848
|
serversPerVm: z.ZodNumber;
|
|
752
849
|
}, "strip", z.ZodTypeAny, {
|
|
753
850
|
instanceId: string;
|
|
851
|
+
instanceProvider: string;
|
|
754
852
|
instanceType: string;
|
|
755
853
|
serversPerVm: number;
|
|
756
854
|
}, {
|
|
757
855
|
instanceId: string;
|
|
856
|
+
instanceProvider: string;
|
|
758
857
|
instanceType: string;
|
|
759
858
|
serversPerVm: number;
|
|
760
859
|
}>;
|
|
761
860
|
interface DsHostConfiguration extends z.TypeOf<typeof DsHostConfiguration> {
|
|
762
861
|
}
|
|
763
862
|
|
|
863
|
+
declare const DsHostConfigurationParameters: z.ZodObject<{
|
|
864
|
+
instanceId: z.ZodString;
|
|
865
|
+
serversPerVm: z.ZodNumber;
|
|
866
|
+
}, "strip", z.ZodTypeAny, {
|
|
867
|
+
instanceId: string;
|
|
868
|
+
serversPerVm: number;
|
|
869
|
+
}, {
|
|
870
|
+
instanceId: string;
|
|
871
|
+
serversPerVm: number;
|
|
872
|
+
}>;
|
|
873
|
+
interface DsHostConfigurationParameters extends z.TypeOf<typeof DsHostConfigurationParameters> {
|
|
874
|
+
}
|
|
875
|
+
|
|
764
876
|
declare const ErrorResponse: z.ZodObject<{
|
|
765
877
|
errorMessage: z.ZodString;
|
|
766
878
|
errorType: z.ZodString;
|
|
@@ -803,6 +915,7 @@ declare const FleetListItemResponse: z.ZodObject<{
|
|
|
803
915
|
}>, "many">;
|
|
804
916
|
id: z.ZodString;
|
|
805
917
|
image: z.ZodString;
|
|
918
|
+
instanceProvider: z.ZodString;
|
|
806
919
|
isLocal: z.ZodBoolean;
|
|
807
920
|
name: z.ZodString;
|
|
808
921
|
onDemand: z.ZodBoolean;
|
|
@@ -811,6 +924,7 @@ declare const FleetListItemResponse: z.ZodObject<{
|
|
|
811
924
|
name: string;
|
|
812
925
|
id: string;
|
|
813
926
|
regions: string[];
|
|
927
|
+
instanceProvider: string;
|
|
814
928
|
active: boolean;
|
|
815
929
|
isLocal: boolean;
|
|
816
930
|
onDemand: boolean;
|
|
@@ -827,6 +941,7 @@ declare const FleetListItemResponse: z.ZodObject<{
|
|
|
827
941
|
name: string;
|
|
828
942
|
id: string;
|
|
829
943
|
regions: string[];
|
|
944
|
+
instanceProvider: string;
|
|
830
945
|
active: boolean;
|
|
831
946
|
isLocal: boolean;
|
|
832
947
|
onDemand: boolean;
|
|
@@ -909,48 +1024,53 @@ declare const ImageDeploymentProfile: z.ZodObject<{
|
|
|
909
1024
|
name: string;
|
|
910
1025
|
protocol: string;
|
|
911
1026
|
}>, "many">;
|
|
912
|
-
timeout: z.ZodObject<{
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
1027
|
+
timeout: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1028
|
+
claim: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1029
|
+
creation: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1030
|
+
drain: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1031
|
+
session: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1032
|
+
unresponsive: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
917
1033
|
}, "strip", z.ZodTypeAny, {
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
1034
|
+
claim?: number | null | undefined;
|
|
1035
|
+
creation?: number | null | undefined;
|
|
1036
|
+
drain?: number | null | undefined;
|
|
1037
|
+
session?: number | null | undefined;
|
|
1038
|
+
unresponsive?: number | null | undefined;
|
|
922
1039
|
}, {
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
1040
|
+
claim?: number | null | undefined;
|
|
1041
|
+
creation?: number | null | undefined;
|
|
1042
|
+
drain?: number | null | undefined;
|
|
1043
|
+
session?: number | null | undefined;
|
|
1044
|
+
unresponsive?: number | null | undefined;
|
|
1045
|
+
}>>>;
|
|
928
1046
|
}, "strip", z.ZodTypeAny, {
|
|
929
|
-
timeout: {
|
|
930
|
-
creation: number;
|
|
931
|
-
drain: number;
|
|
932
|
-
session: number;
|
|
933
|
-
unresponsive: number;
|
|
934
|
-
};
|
|
935
1047
|
imageId: string;
|
|
936
1048
|
commandLine: string;
|
|
937
1049
|
portConfigurations: {
|
|
938
1050
|
name: string;
|
|
939
1051
|
protocol: string;
|
|
940
1052
|
}[];
|
|
1053
|
+
timeout?: {
|
|
1054
|
+
claim?: number | null | undefined;
|
|
1055
|
+
creation?: number | null | undefined;
|
|
1056
|
+
drain?: number | null | undefined;
|
|
1057
|
+
session?: number | null | undefined;
|
|
1058
|
+
unresponsive?: number | null | undefined;
|
|
1059
|
+
} | null | undefined;
|
|
941
1060
|
}, {
|
|
942
|
-
timeout: {
|
|
943
|
-
creation: number;
|
|
944
|
-
drain: number;
|
|
945
|
-
session: number;
|
|
946
|
-
unresponsive: number;
|
|
947
|
-
};
|
|
948
1061
|
imageId: string;
|
|
949
1062
|
commandLine: string;
|
|
950
1063
|
portConfigurations: {
|
|
951
1064
|
name: string;
|
|
952
1065
|
protocol: string;
|
|
953
1066
|
}[];
|
|
1067
|
+
timeout?: {
|
|
1068
|
+
claim?: number | null | undefined;
|
|
1069
|
+
creation?: number | null | undefined;
|
|
1070
|
+
drain?: number | null | undefined;
|
|
1071
|
+
session?: number | null | undefined;
|
|
1072
|
+
unresponsive?: number | null | undefined;
|
|
1073
|
+
} | null | undefined;
|
|
954
1074
|
}>;
|
|
955
1075
|
interface ImageDeploymentProfile extends z.TypeOf<typeof ImageDeploymentProfile> {
|
|
956
1076
|
}
|
|
@@ -962,6 +1082,7 @@ declare const ImageListItem: z.ZodObject<{
|
|
|
962
1082
|
id: z.ZodString;
|
|
963
1083
|
isProtected: z.ZodBoolean;
|
|
964
1084
|
name: z.ZodString;
|
|
1085
|
+
referencingConfigs: z.ZodNumber;
|
|
965
1086
|
referencingFleets: z.ZodNumber;
|
|
966
1087
|
sizeInByte: z.ZodNumber;
|
|
967
1088
|
status: z.ZodString;
|
|
@@ -978,6 +1099,7 @@ declare const ImageListItem: z.ZodObject<{
|
|
|
978
1099
|
sizeInByte: number;
|
|
979
1100
|
tags: string[];
|
|
980
1101
|
uploadedBy: string;
|
|
1102
|
+
referencingConfigs: number;
|
|
981
1103
|
createdAt?: any;
|
|
982
1104
|
deleteAt?: any;
|
|
983
1105
|
uploadedAt?: any;
|
|
@@ -991,6 +1113,7 @@ declare const ImageListItem: z.ZodObject<{
|
|
|
991
1113
|
sizeInByte: number;
|
|
992
1114
|
tags: string[];
|
|
993
1115
|
uploadedBy: string;
|
|
1116
|
+
referencingConfigs: number;
|
|
994
1117
|
createdAt?: any;
|
|
995
1118
|
deleteAt?: any;
|
|
996
1119
|
uploadedAt?: any;
|
|
@@ -998,29 +1121,53 @@ declare const ImageListItem: z.ZodObject<{
|
|
|
998
1121
|
interface ImageListItem extends z.TypeOf<typeof ImageListItem> {
|
|
999
1122
|
}
|
|
1000
1123
|
|
|
1001
|
-
declare const
|
|
1124
|
+
declare const InstanceTypeForNamespaceResponse: z.ZodObject<{
|
|
1125
|
+
capacity: z.ZodArray<z.ZodObject<{
|
|
1126
|
+
region: z.ZodString;
|
|
1127
|
+
vmCount: z.ZodNumber;
|
|
1128
|
+
}, "strip", z.ZodTypeAny, {
|
|
1129
|
+
region: string;
|
|
1130
|
+
vmCount: number;
|
|
1131
|
+
}, {
|
|
1132
|
+
region: string;
|
|
1133
|
+
vmCount: number;
|
|
1134
|
+
}>, "many">;
|
|
1002
1135
|
description: z.ZodString;
|
|
1003
1136
|
id: z.ZodString;
|
|
1004
1137
|
memoryGiB: z.ZodNumber;
|
|
1005
1138
|
minSpeed: z.ZodString;
|
|
1006
1139
|
name: z.ZodString;
|
|
1140
|
+
ownerAccountId: z.ZodString;
|
|
1141
|
+
provider: z.ZodString;
|
|
1007
1142
|
virtualCpu: z.ZodNumber;
|
|
1008
1143
|
}, "strip", z.ZodTypeAny, {
|
|
1009
1144
|
name: string;
|
|
1010
1145
|
id: string;
|
|
1146
|
+
capacity: {
|
|
1147
|
+
region: string;
|
|
1148
|
+
vmCount: number;
|
|
1149
|
+
}[];
|
|
1011
1150
|
description: string;
|
|
1012
1151
|
memoryGiB: number;
|
|
1013
1152
|
minSpeed: string;
|
|
1153
|
+
ownerAccountId: string;
|
|
1154
|
+
provider: string;
|
|
1014
1155
|
virtualCpu: number;
|
|
1015
1156
|
}, {
|
|
1016
1157
|
name: string;
|
|
1017
1158
|
id: string;
|
|
1159
|
+
capacity: {
|
|
1160
|
+
region: string;
|
|
1161
|
+
vmCount: number;
|
|
1162
|
+
}[];
|
|
1018
1163
|
description: string;
|
|
1019
1164
|
memoryGiB: number;
|
|
1020
1165
|
minSpeed: string;
|
|
1166
|
+
ownerAccountId: string;
|
|
1167
|
+
provider: string;
|
|
1021
1168
|
virtualCpu: number;
|
|
1022
1169
|
}>;
|
|
1023
|
-
interface
|
|
1170
|
+
interface InstanceTypeForNamespaceResponse extends z.TypeOf<typeof InstanceTypeForNamespaceResponse> {
|
|
1024
1171
|
}
|
|
1025
1172
|
|
|
1026
1173
|
declare const Location: z.ZodObject<{
|
|
@@ -1116,6 +1263,28 @@ declare const Location: z.ZodObject<{
|
|
|
1116
1263
|
interface Location extends z.TypeOf<typeof Location> {
|
|
1117
1264
|
}
|
|
1118
1265
|
|
|
1266
|
+
declare const PaginationInfo: z.ZodObject<{
|
|
1267
|
+
first: z.ZodString;
|
|
1268
|
+
last: z.ZodString;
|
|
1269
|
+
next: z.ZodString;
|
|
1270
|
+
previous: z.ZodString;
|
|
1271
|
+
total: z.ZodNumber;
|
|
1272
|
+
}, "strip", z.ZodTypeAny, {
|
|
1273
|
+
first: string;
|
|
1274
|
+
last: string;
|
|
1275
|
+
next: string;
|
|
1276
|
+
previous: string;
|
|
1277
|
+
total: number;
|
|
1278
|
+
}, {
|
|
1279
|
+
first: string;
|
|
1280
|
+
last: string;
|
|
1281
|
+
next: string;
|
|
1282
|
+
previous: string;
|
|
1283
|
+
total: number;
|
|
1284
|
+
}>;
|
|
1285
|
+
interface PaginationInfo extends z.TypeOf<typeof PaginationInfo> {
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1119
1288
|
declare const PagingInfo: z.ZodObject<{
|
|
1120
1289
|
currentPage: z.ZodNumber;
|
|
1121
1290
|
hasNext: z.ZodBoolean;
|
|
@@ -1126,23 +1295,23 @@ declare const PagingInfo: z.ZodObject<{
|
|
|
1126
1295
|
previous: z.ZodString;
|
|
1127
1296
|
total: z.ZodNumber;
|
|
1128
1297
|
}, "strip", z.ZodTypeAny, {
|
|
1298
|
+
next: string;
|
|
1299
|
+
previous: string;
|
|
1300
|
+
total: number;
|
|
1129
1301
|
currentPage: number;
|
|
1130
1302
|
hasNext: boolean;
|
|
1131
1303
|
hasPages: boolean;
|
|
1132
1304
|
hasPrev: boolean;
|
|
1133
|
-
next: string;
|
|
1134
1305
|
pageNums: number[];
|
|
1306
|
+
}, {
|
|
1307
|
+
next: string;
|
|
1135
1308
|
previous: string;
|
|
1136
1309
|
total: number;
|
|
1137
|
-
}, {
|
|
1138
1310
|
currentPage: number;
|
|
1139
1311
|
hasNext: boolean;
|
|
1140
1312
|
hasPages: boolean;
|
|
1141
1313
|
hasPrev: boolean;
|
|
1142
|
-
next: string;
|
|
1143
1314
|
pageNums: number[];
|
|
1144
|
-
previous: string;
|
|
1145
|
-
total: number;
|
|
1146
1315
|
}>;
|
|
1147
1316
|
interface PagingInfo extends z.TypeOf<typeof PagingInfo> {
|
|
1148
1317
|
}
|
|
@@ -1169,17 +1338,17 @@ declare const QoSServer: z.ZodObject<{
|
|
|
1169
1338
|
status: z.ZodString;
|
|
1170
1339
|
}, "strip", z.ZodTypeAny, {
|
|
1171
1340
|
status: string;
|
|
1341
|
+
region: string;
|
|
1172
1342
|
alias: string;
|
|
1173
1343
|
ip: string;
|
|
1174
1344
|
port: number;
|
|
1175
|
-
region: string;
|
|
1176
1345
|
last_update?: any;
|
|
1177
1346
|
}, {
|
|
1178
1347
|
status: string;
|
|
1348
|
+
region: string;
|
|
1179
1349
|
alias: string;
|
|
1180
1350
|
ip: string;
|
|
1181
1351
|
port: number;
|
|
1182
|
-
region: string;
|
|
1183
1352
|
last_update?: any;
|
|
1184
1353
|
}>;
|
|
1185
1354
|
interface QoSServer extends z.TypeOf<typeof QoSServer> {
|
|
@@ -1228,20 +1397,23 @@ interface Time extends z.TypeOf<typeof Time> {
|
|
|
1228
1397
|
}
|
|
1229
1398
|
|
|
1230
1399
|
declare const Timeout: z.ZodObject<{
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1400
|
+
claim: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1401
|
+
creation: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1402
|
+
drain: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1403
|
+
session: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1404
|
+
unresponsive: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1235
1405
|
}, "strip", z.ZodTypeAny, {
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1406
|
+
claim?: number | null | undefined;
|
|
1407
|
+
creation?: number | null | undefined;
|
|
1408
|
+
drain?: number | null | undefined;
|
|
1409
|
+
session?: number | null | undefined;
|
|
1410
|
+
unresponsive?: number | null | undefined;
|
|
1240
1411
|
}, {
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1412
|
+
claim?: number | null | undefined;
|
|
1413
|
+
creation?: number | null | undefined;
|
|
1414
|
+
drain?: number | null | undefined;
|
|
1415
|
+
session?: number | null | undefined;
|
|
1416
|
+
unresponsive?: number | null | undefined;
|
|
1245
1417
|
}>;
|
|
1246
1418
|
interface Timeout extends z.TypeOf<typeof Timeout> {
|
|
1247
1419
|
}
|
|
@@ -1373,4 +1545,4 @@ declare class Watchdogs$ {
|
|
|
1373
1545
|
getConnect_ByWatchdogId_ByNS(watchdogID: string): Promise<Response<unknown>>;
|
|
1374
1546
|
}
|
|
1375
1547
|
|
|
1376
|
-
export { Account$, AccountAdmin$, AccountAdminApi, AccountApi, AccountCreateRequest, AccountCreateResponse, AccountLimits, AccountLinkRequest, AccountLinkResponse, AccountLinkTokenResponse, AccountResponse, Ams, AmsInfo$, AmsInfoAdmin$, AmsInfoAdminApi, AmsInfoApi, AmsQoSAdmin$, AmsQoSAdminApi, AmsRegionsResponse, ArtifactListResponse, ArtifactResponse, ArtifactSamplingRule, ArtifactTypeSamplingRules, ArtifactUrlResponse, ArtifactUsageResponse, ArtifactsAdmin$, ArtifactsAdminApi, Auth$, AuthApi,
|
|
1548
|
+
export { Account$, AccountAdmin$, AccountAdminApi, AccountApi, AccountCreateRequest, AccountCreateResponse, AccountLimits, AccountLinkRequest, AccountLinkResponse, AccountLinkTokenResponse, AccountResponse, Ams, AmsInfo$, AmsInfoAdmin$, AmsInfoAdminApi, AmsInfoApi, AmsQoSAdmin$, AmsQoSAdminApi, AmsRegionsResponse, ArtifactListResponse, ArtifactResponse, ArtifactSamplingRule, ArtifactTypeSamplingRules, ArtifactUrlResponse, ArtifactUsageResponse, ArtifactsAdmin$, ArtifactsAdminApi, Auth$, AuthApi, Capacity, CoredumpSamplingRules, DevelopmentAdmin$, DevelopmentAdminApi, DevelopmentServerConfigurationCreateRequest, DevelopmentServerConfigurationCreateResponse, DevelopmentServerConfigurationGetResponse, DevelopmentServerConfigurationListResponse, DsHistoryEvent, DsHistoryList, DsHostConfiguration, DsHostConfigurationParameters, ErrorResponse, FleetArtifactsSampleRules, FleetClaimByKeysReq, FleetClaimReq, FleetClaimResponse, FleetCommander$, FleetCommanderApi, FleetCreateResponse, FleetGetResponse, FleetListItemResponse, FleetListResponse, FleetParameters, FleetRegionalServerCounts, FleetServerConnectionInfoResponse, FleetServerHistoryEventResponse, FleetServerHistoryResponse, FleetServerInfoResponse, FleetServersResponse, Fleets$, FleetsAdmin$, FleetsAdminApi, FleetsApi, ImageDeploymentProfile, ImageDetails, ImageList, ImageListItem, ImageStorage, ImageUpdate, ImagesAdmin$, ImagesAdminApi, InstanceTypeForNamespaceResponse, InstanceTypesForNamespaceResponse, Location, PaginationInfo, PagingInfo, PortConfiguration, QoSEndpointResponse, QoSServer, ReferencingFleet, RegionConfig, ServersAdmin$, ServersAdminApi, Time, Timeout, UpdateServerRequest, Watchdogs$, WatchdogsApi, Zone, ZoneTrans };
|