@northflank/js-client 0.5.0 → 0.5.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.
@@ -157,8 +157,6 @@ declare abstract class DeleteApiEndpoint<T, R> extends ApiEndpoint<T, R> {
157
157
  abstract withAuth: boolean;
158
158
  }
159
159
 
160
- /** WARNING: Autogenerated Code - do not modify! */
161
-
162
160
  declare type ListServicesResult = {
163
161
  /** An array of services. */
164
162
  'services': {
@@ -221,8 +219,6 @@ declare class ListServicesEndpoint extends GetApiEndpoint<ListServicesRequest, L
221
219
  body: () => undefined;
222
220
  }
223
221
 
224
- /** WARNING: Autogenerated Code - do not modify! */
225
-
226
222
  declare type ListAddonsResult = {
227
223
  /** An array of addons. */
228
224
  'addons': {
@@ -348,8 +344,6 @@ declare class NorthflankPortForwarder extends EventEmitter {
348
344
  private assertStartedWithNodejs;
349
345
  }
350
346
 
351
- /** WARNING: Autogenerated Code - do not modify! */
352
-
353
347
  declare type ListProjectsResult = {
354
348
  /** An array of projects. */
355
349
  'projects': {
@@ -381,8 +375,6 @@ declare class ListProjectsEndpoint extends GetApiEndpoint<ListProjectsRequest, L
381
375
  body: () => undefined;
382
376
  }
383
377
 
384
- /** WARNING: Autogenerated Code - do not modify! */
385
-
386
378
  declare type CreateProjectResult = {
387
379
  /** Boolean flag that the operation was successful. Example: true */
388
380
  'success': boolean;
@@ -411,8 +403,6 @@ declare class CreateProjectEndpoint extends PostApiEndpoint<CreateProjectRequest
411
403
  body: (payload: CreateProjectRequest) => string;
412
404
  }
413
405
 
414
- /** WARNING: Autogenerated Code - do not modify! */
415
-
416
406
  declare type GetProjectResult = {
417
407
  /** Identifier for the project. Example: "default-project" */
418
408
  'id': string;
@@ -484,8 +474,6 @@ declare class GetProjectEndpoint extends GetApiEndpoint<GetProjectRequest, GetPr
484
474
  body: () => undefined;
485
475
  }
486
476
 
487
- /** WARNING: Autogenerated Code - do not modify! */
488
-
489
477
  declare type DeleteProjectResult = any | any;
490
478
  declare type DeleteProjectCall = (opts: DeleteProjectRequest) => Promise<ApiCallResponse<DeleteProjectResult>>;
491
479
  declare type DeleteProjectRequest = {
@@ -502,8 +490,6 @@ declare class DeleteProjectEndpoint extends DeleteApiEndpoint<DeleteProjectReque
502
490
  body: () => undefined;
503
491
  }
504
492
 
505
- /** WARNING: Autogenerated Code - do not modify! */
506
-
507
493
  declare type CreateAddonResult = {
508
494
  /** Identifier for the addon. Example: "example-addon" */
509
495
  'id': string;
@@ -597,8 +583,6 @@ declare class CreateAddonEndpoint extends PostApiEndpoint<CreateAddonRequest, Cr
597
583
  body: (payload: CreateAddonRequest) => string;
598
584
  }
599
585
 
600
- /** WARNING: Autogenerated Code - do not modify! */
601
-
602
586
  declare type GetAddonResult = {
603
587
  /** Identifier for the addon. Example: "example-addon" */
604
588
  'id': string;
@@ -669,8 +653,6 @@ declare class GetAddonEndpoint extends GetApiEndpoint<GetAddonRequest, GetAddonR
669
653
  body: () => undefined;
670
654
  }
671
655
 
672
- /** WARNING: Autogenerated Code - do not modify! */
673
-
674
656
  declare type DeleteAddonResult = any;
675
657
  declare type DeleteAddonCall = (opts: DeleteAddonRequest) => Promise<ApiCallResponse<DeleteAddonResult>>;
676
658
  declare type DeleteAddonRequest = {
@@ -689,8 +671,6 @@ declare class DeleteAddonEndpoint extends DeleteApiEndpoint<DeleteAddonRequest,
689
671
  body: () => undefined;
690
672
  }
691
673
 
692
- /** WARNING: Autogenerated Code - do not modify! */
693
-
694
674
  declare type GetAddonCredentialsResult = {
695
675
  /** An object containing secrets for connecting to the addon. Secrets are dependent on the addon type. Example: {"username":"1720747439245d49","password":"f1ba286ee2465e80b0fd4af31276f3e33a"} */
696
676
  'secrets': any;
@@ -714,8 +694,6 @@ declare class GetAddonCredentialsEndpoint extends GetApiEndpoint<GetAddonCredent
714
694
  body: () => undefined;
715
695
  }
716
696
 
717
- /** WARNING: Autogenerated Code - do not modify! */
718
-
719
697
  declare type GetAddonTypesResult = {
720
698
  /** A list of available addon types. */
721
699
  'addonTypes': {
@@ -763,8 +741,6 @@ declare class GetAddonTypesEndpoint extends GetApiEndpoint<GetAddonTypesRequest,
763
741
  body: () => undefined;
764
742
  }
765
743
 
766
- /** WARNING: Autogenerated Code - do not modify! */
767
-
768
744
  declare type ScaleAddonResult = any;
769
745
  declare type ScaleAddonCall = (opts: ScaleAddonRequest) => Promise<ApiCallResponse<ScaleAddonResult>>;
770
746
  declare type ScaleAddonRequest = {
@@ -792,8 +768,6 @@ declare class ScaleAddonEndpoint extends PostApiEndpoint<ScaleAddonRequest, Scal
792
768
  body: (payload: ScaleAddonRequest) => string;
793
769
  }
794
770
 
795
- /** WARNING: Autogenerated Code - do not modify! */
796
-
797
771
  declare type GetAddonVersionResult = {
798
772
  /** The version of the addon running. Example: "4.2.14" */
799
773
  'version': string;
@@ -846,8 +820,6 @@ declare class GetAddonVersionEndpoint extends GetApiEndpoint<GetAddonVersionRequ
846
820
  body: () => undefined;
847
821
  }
848
822
 
849
- /** WARNING: Autogenerated Code - do not modify! */
850
-
851
823
  declare type UpdateAddonVersionResult = any;
852
824
  declare type UpdateAddonVersionCall = (opts: UpdateAddonVersionRequest) => Promise<ApiCallResponse<UpdateAddonVersionResult>>;
853
825
  declare type UpdateAddonVersionRequest = {
@@ -871,8 +843,6 @@ declare class UpdateAddonVersionEndpoint extends PostApiEndpoint<UpdateAddonVers
871
843
  body: (payload: UpdateAddonVersionRequest) => string;
872
844
  }
873
845
 
874
- /** WARNING: Autogenerated Code - do not modify! */
875
-
876
846
  declare type UpdateAddonNetworksettingsResult = any;
877
847
  declare type UpdateAddonNetworksettingsCall = (opts: UpdateAddonNetworksettingsRequest) => Promise<ApiCallResponse<UpdateAddonNetworksettingsResult>>;
878
848
  declare type UpdateAddonNetworksettingsRequest = {
@@ -898,8 +868,6 @@ declare class UpdateAddonNetworksettingsEndpoint extends PostApiEndpoint<UpdateA
898
868
  body: (payload: UpdateAddonNetworksettingsRequest) => string;
899
869
  }
900
870
 
901
- /** WARNING: Autogenerated Code - do not modify! */
902
-
903
871
  declare type UpdateAddonSecurityResult = any;
904
872
  declare type UpdateAddonSecurityCall = (opts: UpdateAddonSecurityRequest) => Promise<ApiCallResponse<UpdateAddonSecurityResult>>;
905
873
  declare type UpdateAddonSecurityRequest = {
@@ -928,8 +896,6 @@ declare class UpdateAddonSecurityEndpoint extends PostApiEndpoint<UpdateAddonSec
928
896
  body: (payload: UpdateAddonSecurityRequest) => string;
929
897
  }
930
898
 
931
- /** WARNING: Autogenerated Code - do not modify! */
932
-
933
899
  declare type GetAddonBackupsResult = {
934
900
  /** A list of backups for the given addon. */
935
901
  'backups': {
@@ -983,8 +949,6 @@ declare class GetAddonBackupsEndpoint extends GetApiEndpoint<GetAddonBackupsRequ
983
949
  body: () => undefined;
984
950
  }
985
951
 
986
- /** WARNING: Autogenerated Code - do not modify! */
987
-
988
952
  declare type BackupAddonResult = {
989
953
  /** The identifier for the backup. Example: "example-backup" */
990
954
  'id': string;
@@ -1035,8 +999,6 @@ declare class BackupAddonEndpoint extends PostApiEndpoint<BackupAddonRequest, Ba
1035
999
  body: (payload: BackupAddonRequest) => string;
1036
1000
  }
1037
1001
 
1038
- /** WARNING: Autogenerated Code - do not modify! */
1039
-
1040
1002
  declare type GetAddonBackupResult = {
1041
1003
  /** The identifier for the backup. Example: "example-backup" */
1042
1004
  'id': string;
@@ -1082,8 +1044,6 @@ declare class GetAddonBackupEndpoint extends GetApiEndpoint<GetAddonBackupReques
1082
1044
  body: () => undefined;
1083
1045
  }
1084
1046
 
1085
- /** WARNING: Autogenerated Code - do not modify! */
1086
-
1087
1047
  declare type DeleteBackupResult = any;
1088
1048
  declare type DeleteBackupCall = (opts: DeleteBackupRequest) => Promise<ApiCallResponse<DeleteBackupResult>>;
1089
1049
  declare type DeleteBackupRequest = {
@@ -1104,8 +1064,6 @@ declare class DeleteBackupEndpoint extends DeleteApiEndpoint<DeleteBackupRequest
1104
1064
  body: () => undefined;
1105
1065
  }
1106
1066
 
1107
- /** WARNING: Autogenerated Code - do not modify! */
1108
-
1109
1067
  declare type RestoreAddonBackupResult = any;
1110
1068
  declare type RestoreAddonBackupCall = (opts: RestoreAddonBackupRequest) => Promise<ApiCallResponse<RestoreAddonBackupResult>>;
1111
1069
  declare type RestoreAddonBackupRequest = {
@@ -1126,8 +1084,6 @@ declare class RestoreAddonBackupEndpoint extends PostApiEndpoint<RestoreAddonBac
1126
1084
  body: () => undefined;
1127
1085
  }
1128
1086
 
1129
- /** WARNING: Autogenerated Code - do not modify! */
1130
-
1131
1087
  declare type ImportAddonBackupResult = any;
1132
1088
  declare type ImportAddonBackupCall = (opts: ImportAddonBackupRequest) => Promise<ApiCallResponse<ImportAddonBackupResult>>;
1133
1089
  declare type ImportAddonBackupRequest = {
@@ -1158,8 +1114,6 @@ declare class ImportAddonBackupEndpoint extends PostApiEndpoint<ImportAddonBacku
1158
1114
  body: (payload: ImportAddonBackupRequest) => string;
1159
1115
  }
1160
1116
 
1161
- /** WARNING: Autogenerated Code - do not modify! */
1162
-
1163
1117
  declare type GetAddonContainersResult = {
1164
1118
  /** An array of containers. */
1165
1119
  'pods': {
@@ -1199,8 +1153,6 @@ declare class GetAddonContainersEndpoint extends GetApiEndpoint<GetAddonContaine
1199
1153
  body: () => undefined;
1200
1154
  }
1201
1155
 
1202
- /** WARNING: Autogenerated Code - do not modify! */
1203
-
1204
1156
  declare type PauseAddonResult = any;
1205
1157
  declare type PauseAddonCall = (opts: PauseAddonRequest) => Promise<ApiCallResponse<PauseAddonResult>>;
1206
1158
  declare type PauseAddonRequest = {
@@ -1219,8 +1171,6 @@ declare class PauseAddonEndpoint extends PostApiEndpoint<PauseAddonRequest, Paus
1219
1171
  body: () => undefined;
1220
1172
  }
1221
1173
 
1222
- /** WARNING: Autogenerated Code - do not modify! */
1223
-
1224
1174
  declare type ResumeAddonResult = any;
1225
1175
  declare type ResumeAddonCall = (opts: ResumeAddonRequest) => Promise<ApiCallResponse<ResumeAddonResult>>;
1226
1176
  declare type ResumeAddonRequest = {
@@ -1239,8 +1189,6 @@ declare class ResumeAddonEndpoint extends PostApiEndpoint<ResumeAddonRequest, Re
1239
1189
  body: () => undefined;
1240
1190
  }
1241
1191
 
1242
- /** WARNING: Autogenerated Code - do not modify! */
1243
-
1244
1192
  declare type RestartAddonResult = any;
1245
1193
  declare type RestartAddonCall = (opts: RestartAddonRequest) => Promise<ApiCallResponse<RestartAddonResult>>;
1246
1194
  declare type RestartAddonRequest = {
@@ -1259,8 +1207,6 @@ declare class RestartAddonEndpoint extends PostApiEndpoint<RestartAddonRequest,
1259
1207
  body: () => undefined;
1260
1208
  }
1261
1209
 
1262
- /** WARNING: Autogenerated Code - do not modify! */
1263
-
1264
1210
  declare type AbortAddonBackupResult = any;
1265
1211
  declare type AbortAddonBackupCall = (opts: AbortAddonBackupRequest) => Promise<ApiCallResponse<AbortAddonBackupResult>>;
1266
1212
  declare type AbortAddonBackupRequest = {
@@ -1281,8 +1227,6 @@ declare class AbortAddonBackupEndpoint extends PostApiEndpoint<AbortAddonBackupR
1281
1227
  body: () => undefined;
1282
1228
  }
1283
1229
 
1284
- /** WARNING: Autogenerated Code - do not modify! */
1285
-
1286
1230
  declare type GetAddonBackupDownloadResult = {
1287
1231
  /** The url to download the backup from. Example: "https://storage.googleapis.com/..." */
1288
1232
  'downloadLink': string;
@@ -1306,8 +1250,6 @@ declare class GetAddonBackupDownloadEndpoint extends GetApiEndpoint<GetAddonBack
1306
1250
  body: () => undefined;
1307
1251
  }
1308
1252
 
1309
- /** WARNING: Autogenerated Code - do not modify! */
1310
-
1311
1253
  declare type AbortAddonRestoreResult = any;
1312
1254
  declare type AbortAddonRestoreCall = (opts: AbortAddonRestoreRequest) => Promise<ApiCallResponse<AbortAddonRestoreResult>>;
1313
1255
  declare type AbortAddonRestoreRequest = {
@@ -1333,8 +1275,6 @@ declare class AbortAddonRestoreEndpoint extends PostApiEndpoint<AbortAddonRestor
1333
1275
  body: (payload: AbortAddonRestoreRequest) => string;
1334
1276
  }
1335
1277
 
1336
- /** WARNING: Autogenerated Code - do not modify! */
1337
-
1338
1278
  declare type ListJobsResult = {
1339
1279
  /** An array of job objects. */
1340
1280
  'jobs': {
@@ -1378,8 +1318,6 @@ declare class ListJobsEndpoint extends GetApiEndpoint<ListJobsRequest, ListJobsR
1378
1318
  body: () => undefined;
1379
1319
  }
1380
1320
 
1381
- /** WARNING: Autogenerated Code - do not modify! */
1382
-
1383
1321
  declare type GetJobResult = {
1384
1322
  /** Identifier for the job Example: "example-job" */
1385
1323
  'id': string;
@@ -1420,7 +1358,7 @@ declare type GetJobResult = {
1420
1358
  'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
1421
1359
  'buildpack'?: {
1422
1360
  /** The Buildpack stack used. Example: "HEROKU_20" */
1423
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
1361
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1424
1362
  /** Array of custom Buildpacks used. */
1425
1363
  'buildpackLocators'?: string[];
1426
1364
  };
@@ -1469,8 +1407,6 @@ declare class GetJobEndpoint extends GetApiEndpoint<GetJobRequest, GetJobResult>
1469
1407
  body: () => undefined;
1470
1408
  }
1471
1409
 
1472
- /** WARNING: Autogenerated Code - do not modify! */
1473
-
1474
1410
  declare type DeleteJobResult = any;
1475
1411
  declare type DeleteJobCall = (opts: DeleteJobRequest) => Promise<ApiCallResponse<DeleteJobResult>>;
1476
1412
  declare type DeleteJobRequest = {
@@ -1489,8 +1425,6 @@ declare class DeleteJobEndpoint extends DeleteApiEndpoint<DeleteJobRequest, Dele
1489
1425
  body: () => undefined;
1490
1426
  }
1491
1427
 
1492
- /** WARNING: Autogenerated Code - do not modify! */
1493
-
1494
1428
  declare type CreateJobManualResult = {
1495
1429
  /** Identifier for the job Example: "example-job" */
1496
1430
  'id': string;
@@ -1529,7 +1463,7 @@ declare type CreateJobManualResult = {
1529
1463
  'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
1530
1464
  'buildpack'?: {
1531
1465
  /** The Buildpack stack used. Example: "HEROKU_20" */
1532
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
1466
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1533
1467
  /** Array of custom Buildpacks used. */
1534
1468
  'buildpackLocators'?: string[];
1535
1469
  };
@@ -1627,16 +1561,16 @@ declare type CreateJobManualData = {
1627
1561
  } | {
1628
1562
  'buildpack': {
1629
1563
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_20`. Example: "HEROKU_20" */
1630
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
1564
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1631
1565
  /** Array of custom Buildpacks to use. */
1632
1566
  'buildpackLocators'?: string[];
1633
1567
  /** The working directory to build in. Example: "/" */
1634
1568
  'buildContext'?: string;
1635
1569
  };
1636
1570
  };
1637
- /** An object containing the environment variables to set for the job. Example: {"variable1":"abcdef","variable2":"12345"} */
1571
+ /** An object containing the environment variables to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
1638
1572
  'environment'?: any;
1639
- /** An object containing the build arguments to set for the job. Example: {"variable1":"abcdef","variable2":"12345"} */
1573
+ /** An object containing the build arguments to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
1640
1574
  'buildArguments'?: any;
1641
1575
  };
1642
1576
  /** Creates a new manual job that only runs when initiated via the UI, CLI, API or JS client. */
@@ -1647,8 +1581,6 @@ declare class CreateJobManualEndpoint extends PostApiEndpoint<CreateJobManualReq
1647
1581
  body: (payload: CreateJobManualRequest) => string;
1648
1582
  }
1649
1583
 
1650
- /** WARNING: Autogenerated Code - do not modify! */
1651
-
1652
1584
  declare type CreateJobCronResult = {
1653
1585
  /** Identifier for the job Example: "example-job" */
1654
1586
  'id': string;
@@ -1687,7 +1619,7 @@ declare type CreateJobCronResult = {
1687
1619
  'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
1688
1620
  'buildpack'?: {
1689
1621
  /** The Buildpack stack used. Example: "HEROKU_20" */
1690
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
1622
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1691
1623
  /** Array of custom Buildpacks used. */
1692
1624
  'buildpackLocators'?: string[];
1693
1625
  };
@@ -1791,16 +1723,16 @@ declare type CreateJobCronData = {
1791
1723
  } | {
1792
1724
  'buildpack': {
1793
1725
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_20`. Example: "HEROKU_20" */
1794
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
1726
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1795
1727
  /** Array of custom Buildpacks to use. */
1796
1728
  'buildpackLocators'?: string[];
1797
1729
  /** The working directory to build in. Example: "/" */
1798
1730
  'buildContext'?: string;
1799
1731
  };
1800
1732
  };
1801
- /** An object containing the environment variables to set for the job. Example: {"variable1":"abcdef","variable2":"12345"} */
1733
+ /** An object containing the environment variables to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
1802
1734
  'environment'?: any;
1803
- /** An object containing the build arguments to set for the job. Example: {"variable1":"abcdef","variable2":"12345"} */
1735
+ /** An object containing the build arguments to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
1804
1736
  'buildArguments'?: any;
1805
1737
  /** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
1806
1738
  'schedule': string;
@@ -1815,8 +1747,6 @@ declare class CreateJobCronEndpoint extends PostApiEndpoint<CreateJobCronRequest
1815
1747
  body: (payload: CreateJobCronRequest) => string;
1816
1748
  }
1817
1749
 
1818
- /** WARNING: Autogenerated Code - do not modify! */
1819
-
1820
1750
  declare type GetJobRunsResult = {
1821
1751
  /** An array of job run objects. */
1822
1752
  'runs': {
@@ -1868,8 +1798,6 @@ declare class GetJobRunsEndpoint extends GetApiEndpoint<GetJobRunsRequest, GetJo
1868
1798
  body: () => undefined;
1869
1799
  }
1870
1800
 
1871
- /** WARNING: Autogenerated Code - do not modify! */
1872
-
1873
1801
  declare type StartJobRunResult = {
1874
1802
  /** The ID of the job run Example: "d34582a4-35bd-4c71-8e7c-e36999b88723" */
1875
1803
  'id': string;
@@ -1887,7 +1815,7 @@ declare type StartJobRunParameters = {
1887
1815
  'jobId': string;
1888
1816
  };
1889
1817
  declare type StartJobRunData = {
1890
- /** An object containing the environment variables overrides to use when running the job. Example: {"variable1":"abcdef","variable2":"12345"} */
1818
+ /** An object containing the environment variables overrides to use when running the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
1891
1819
  'runtimeEnvironment'?: any;
1892
1820
  /** Details about the addon's deployment. */
1893
1821
  'deployment'?: {
@@ -1906,8 +1834,6 @@ declare class StartJobRunEndpoint extends PostApiEndpoint<StartJobRunRequest, St
1906
1834
  body: (payload: StartJobRunRequest) => string;
1907
1835
  }
1908
1836
 
1909
- /** WARNING: Autogenerated Code - do not modify! */
1910
-
1911
1837
  declare type GetJobRunResult = {
1912
1838
  /** The ID of the job run Example: "d34582a4-35bd-4c71-8e7c-e36999b88723" */
1913
1839
  'id': string;
@@ -1949,8 +1875,6 @@ declare class GetJobRunEndpoint extends GetApiEndpoint<GetJobRunRequest, GetJobR
1949
1875
  body: () => undefined;
1950
1876
  }
1951
1877
 
1952
- /** WARNING: Autogenerated Code - do not modify! */
1953
-
1954
1878
  declare type AbortJobRunResult = any;
1955
1879
  declare type AbortJobRunCall = (opts: AbortJobRunRequest) => Promise<ApiCallResponse<AbortJobRunResult>>;
1956
1880
  declare type AbortJobRunRequest = {
@@ -1971,8 +1895,6 @@ declare class AbortJobRunEndpoint extends DeleteApiEndpoint<AbortJobRunRequest,
1971
1895
  body: () => undefined;
1972
1896
  }
1973
1897
 
1974
- /** WARNING: Autogenerated Code - do not modify! */
1975
-
1976
1898
  declare type UpdateJobSettingsResult = any;
1977
1899
  declare type UpdateJobSettingsCall = (opts: UpdateJobSettingsRequest) => Promise<ApiCallResponse<UpdateJobSettingsResult>>;
1978
1900
  declare type UpdateJobSettingsRequest = {
@@ -2002,8 +1924,6 @@ declare class UpdateJobSettingsEndpoint extends PostApiEndpoint<UpdateJobSetting
2002
1924
  body: (payload: UpdateJobSettingsRequest) => string;
2003
1925
  }
2004
1926
 
2005
- /** WARNING: Autogenerated Code - do not modify! */
2006
-
2007
1927
  declare type GetJobHealthchecksResult = {
2008
1928
  /** An array of health checks. */
2009
1929
  'healthChecks': {
@@ -2047,8 +1967,6 @@ declare class GetJobHealthchecksEndpoint extends GetApiEndpoint<GetJobHealthchec
2047
1967
  body: () => undefined;
2048
1968
  }
2049
1969
 
2050
- /** WARNING: Autogenerated Code - do not modify! */
2051
-
2052
1970
  declare type UpdateJobHealthchecksResult = any;
2053
1971
  declare type UpdateJobHealthchecksCall = (opts: UpdateJobHealthchecksRequest) => Promise<ApiCallResponse<UpdateJobHealthchecksResult>>;
2054
1972
  declare type UpdateJobHealthchecksRequest = {
@@ -2093,8 +2011,6 @@ declare class UpdateJobHealthchecksEndpoint extends PostApiEndpoint<UpdateJobHea
2093
2011
  body: (payload: UpdateJobHealthchecksRequest) => string;
2094
2012
  }
2095
2013
 
2096
- /** WARNING: Autogenerated Code - do not modify! */
2097
-
2098
2014
  declare type GetJobBuildsResult = {
2099
2015
  /** An array of builds. */
2100
2016
  'builds': {
@@ -2146,8 +2062,6 @@ declare class GetJobBuildsEndpoint extends GetApiEndpoint<GetJobBuildsRequest, G
2146
2062
  body: () => undefined;
2147
2063
  }
2148
2064
 
2149
- /** WARNING: Autogenerated Code - do not modify! */
2150
-
2151
2065
  declare type StartJobBuildResult = {
2152
2066
  /** ID of the build. Example: "joyous-view-6290" */
2153
2067
  'id'?: string;
@@ -2186,8 +2100,6 @@ declare class StartJobBuildEndpoint extends PostApiEndpoint<StartJobBuildRequest
2186
2100
  body: (payload: StartJobBuildRequest) => string;
2187
2101
  }
2188
2102
 
2189
- /** WARNING: Autogenerated Code - do not modify! */
2190
-
2191
2103
  declare type AbortJobBuildResult = any;
2192
2104
  declare type AbortJobBuildCall = (opts: AbortJobBuildRequest) => Promise<ApiCallResponse<AbortJobBuildResult>>;
2193
2105
  declare type AbortJobBuildRequest = {
@@ -2208,8 +2120,6 @@ declare class AbortJobBuildEndpoint extends DeleteApiEndpoint<AbortJobBuildReque
2208
2120
  body: () => undefined;
2209
2121
  }
2210
2122
 
2211
- /** WARNING: Autogenerated Code - do not modify! */
2212
-
2213
2123
  declare type UpdateJobBuildoptionsResult = any;
2214
2124
  declare type UpdateJobBuildoptionsCall = (opts: UpdateJobBuildoptionsRequest) => Promise<ApiCallResponse<UpdateJobBuildoptionsResult>>;
2215
2125
  declare type UpdateJobBuildoptionsRequest = {
@@ -2235,7 +2145,7 @@ declare type UpdateJobBuildoptionsData = {
2235
2145
  } | {
2236
2146
  'buildpack': {
2237
2147
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_20`. Example: "HEROKU_20" */
2238
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
2148
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
2239
2149
  /** Array of custom buildpacks to use. */
2240
2150
  'buildpackLocators'?: string[];
2241
2151
  /** The working directory to build in. Example: "/" */
@@ -2255,7 +2165,36 @@ declare class UpdateJobBuildoptionsEndpoint extends PostApiEndpoint<UpdateJobBui
2255
2165
  body: (payload: UpdateJobBuildoptionsRequest) => string;
2256
2166
  }
2257
2167
 
2258
- /** WARNING: Autogenerated Code - do not modify! */
2168
+ declare type UpdateJobBuildsourceResult = any;
2169
+ declare type UpdateJobBuildsourceCall = (opts: UpdateJobBuildsourceRequest) => Promise<ApiCallResponse<UpdateJobBuildsourceResult>>;
2170
+ declare type UpdateJobBuildsourceRequest = {
2171
+ parameters: UpdateJobBuildsourceParameters;
2172
+ data: UpdateJobBuildsourceData;
2173
+ };
2174
+ declare type UpdateJobBuildsourceParameters = {
2175
+ /** ID of the project */ 'projectId': string;
2176
+ /** ID of the job */
2177
+ 'jobId': string;
2178
+ };
2179
+ declare type UpdateJobBuildsourceData = {
2180
+ /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
2181
+ 'projectUrl'?: string;
2182
+ /** The VCS provider to use. Example: "github" */
2183
+ 'projectType'?: 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
2184
+ /** The name of the branch to use. Example: "master" */
2185
+ 'projectBranch'?: string;
2186
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
2187
+ 'selfHostedVcsId'?: string;
2188
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
2189
+ 'accountLogin'?: string;
2190
+ };
2191
+ /** Updates the version control source for a given job. */
2192
+ declare class UpdateJobBuildsourceEndpoint extends PostApiEndpoint<UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult> {
2193
+ description: string;
2194
+ withAuth: boolean;
2195
+ endpointUrl: (opts: UpdateJobBuildsourceRequest) => string;
2196
+ body: (payload: UpdateJobBuildsourceRequest) => string;
2197
+ }
2259
2198
 
2260
2199
  declare type UpdateJobCmdoverrideResult = any;
2261
2200
  declare type UpdateJobCmdoverrideCall = (opts: UpdateJobCmdoverrideRequest) => Promise<ApiCallResponse<UpdateJobCmdoverrideResult>>;
@@ -2280,8 +2219,6 @@ declare class UpdateJobCmdoverrideEndpoint extends PostApiEndpoint<UpdateJobCmdo
2280
2219
  body: (payload: UpdateJobCmdoverrideRequest) => string;
2281
2220
  }
2282
2221
 
2283
- /** WARNING: Autogenerated Code - do not modify! */
2284
-
2285
2222
  declare type GetJobBuildargumentsResult = any;
2286
2223
  declare type GetJobBuildargumentsCall = (opts: GetJobBuildargumentsRequest) => Promise<ApiCallResponse<GetJobBuildargumentsResult>>;
2287
2224
  declare type GetJobBuildargumentsRequest = {
@@ -2305,8 +2242,6 @@ declare class GetJobBuildargumentsEndpoint extends GetApiEndpoint<GetJobBuildarg
2305
2242
  body: () => undefined;
2306
2243
  }
2307
2244
 
2308
- /** WARNING: Autogenerated Code - do not modify! */
2309
-
2310
2245
  declare type UpdateJobBuildargumentsResult = any;
2311
2246
  declare type UpdateJobBuildargumentsCall = (opts: UpdateJobBuildargumentsRequest) => Promise<ApiCallResponse<UpdateJobBuildargumentsResult>>;
2312
2247
  declare type UpdateJobBuildargumentsRequest = {
@@ -2330,8 +2265,6 @@ declare class UpdateJobBuildargumentsEndpoint extends PostApiEndpoint<UpdateJobB
2330
2265
  body: (payload: UpdateJobBuildargumentsRequest) => string;
2331
2266
  }
2332
2267
 
2333
- /** WARNING: Autogenerated Code - do not modify! */
2334
-
2335
2268
  declare type GetJobBuildargumentdetailsResult = {
2336
2269
  /** A stored secret and details about it and its value. This can have the name of any saved secret. */
2337
2270
  'MY_VARIABLE_NAME'?: {
@@ -2373,8 +2306,6 @@ declare class GetJobBuildargumentdetailsEndpoint extends GetApiEndpoint<GetJobBu
2373
2306
  body: () => undefined;
2374
2307
  }
2375
2308
 
2376
- /** WARNING: Autogenerated Code - do not modify! */
2377
-
2378
2309
  declare type GetJobEnvironmentResult = any;
2379
2310
  declare type GetJobEnvironmentCall = (opts: GetJobEnvironmentRequest) => Promise<ApiCallResponse<GetJobEnvironmentResult>>;
2380
2311
  declare type GetJobEnvironmentRequest = {
@@ -2398,8 +2329,6 @@ declare class GetJobEnvironmentEndpoint extends GetApiEndpoint<GetJobEnvironment
2398
2329
  body: () => undefined;
2399
2330
  }
2400
2331
 
2401
- /** WARNING: Autogenerated Code - do not modify! */
2402
-
2403
2332
  declare type UpdateJobEnvironmentResult = any;
2404
2333
  declare type UpdateJobEnvironmentCall = (opts: UpdateJobEnvironmentRequest) => Promise<ApiCallResponse<UpdateJobEnvironmentResult>>;
2405
2334
  declare type UpdateJobEnvironmentRequest = {
@@ -2412,7 +2341,7 @@ declare type UpdateJobEnvironmentParameters = {
2412
2341
  'jobId': string;
2413
2342
  };
2414
2343
  declare type UpdateJobEnvironmentData = {
2415
- /** An object containing the all of the environment variables to set for the service Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
2344
+ /** An object containing the all of the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
2416
2345
  'runtimeEnvironment': any;
2417
2346
  };
2418
2347
  /** Sets the environment variables for the given job. */
@@ -2423,8 +2352,6 @@ declare class UpdateJobEnvironmentEndpoint extends PostApiEndpoint<UpdateJobEnvi
2423
2352
  body: (payload: UpdateJobEnvironmentRequest) => string;
2424
2353
  }
2425
2354
 
2426
- /** WARNING: Autogenerated Code - do not modify! */
2427
-
2428
2355
  declare type GetJobEnvironmentdetailsResult = {
2429
2356
  /** A stored secret and details about it and its value. This can have the name of any saved secret. */
2430
2357
  'MY_VARIABLE_NAME'?: {
@@ -2466,8 +2393,6 @@ declare class GetJobEnvironmentdetailsEndpoint extends GetApiEndpoint<GetJobEnvi
2466
2393
  body: () => undefined;
2467
2394
  }
2468
2395
 
2469
- /** WARNING: Autogenerated Code - do not modify! */
2470
-
2471
2396
  declare type GetJobDeploymentResult = {
2472
2397
  /** Region where this service is deployed and/or built Example: "europe-west" */
2473
2398
  'region'?: string;
@@ -2518,8 +2443,6 @@ declare class GetJobDeploymentEndpoint extends GetApiEndpoint<GetJobDeploymentRe
2518
2443
  body: () => undefined;
2519
2444
  }
2520
2445
 
2521
- /** WARNING: Autogenerated Code - do not modify! */
2522
-
2523
2446
  declare type UpdateJobDeploymentResult = any;
2524
2447
  declare type UpdateJobDeploymentCall = (opts: UpdateJobDeploymentRequest) => Promise<ApiCallResponse<UpdateJobDeploymentResult>>;
2525
2448
  declare type UpdateJobDeploymentRequest = {
@@ -2556,8 +2479,6 @@ declare class UpdateJobDeploymentEndpoint extends PostApiEndpoint<UpdateJobDeplo
2556
2479
  body: (payload: UpdateJobDeploymentRequest) => string;
2557
2480
  }
2558
2481
 
2559
- /** WARNING: Autogenerated Code - do not modify! */
2560
-
2561
2482
  declare type GetJobContainersResult = {
2562
2483
  /** An array of containers. */
2563
2484
  'pods': {
@@ -2597,7 +2518,101 @@ declare class GetJobContainersEndpoint extends GetApiEndpoint<GetJobContainersRe
2597
2518
  body: () => undefined;
2598
2519
  }
2599
2520
 
2600
- /** WARNING: Autogenerated Code - do not modify! */
2521
+ declare type GetJobBranchesResult = {
2522
+ /** A list of branches for this repository. */
2523
+ 'branches'?: {
2524
+ /** Name of the branch. Example: "main" */
2525
+ 'name': string;
2526
+ 'id': string;
2527
+ /** Details about the most recent commit on the branch. */
2528
+ 'commit': {
2529
+ /** SHA identifier of the commit. Example: "f8aca180e989be62cba71db629d2ede05f2d10c4" */
2530
+ 'sha': string;
2531
+ /** Details about the commit author. */
2532
+ 'author': {
2533
+ /** The login of the commit author. Example: "northflank" */
2534
+ 'login': string;
2535
+ };
2536
+ /** Commit message of the commit. Example: "Initial commit" */
2537
+ 'message'?: string;
2538
+ /** Timestamp of the commit. Example: "2021-09-17T14:04:39.000Z" */
2539
+ 'date'?: string;
2540
+ };
2541
+ }[];
2542
+ };
2543
+ declare type GetJobBranchesCall = (opts: GetJobBranchesRequest) => Promise<ApiCallResponse<GetJobBranchesResult>>;
2544
+ declare type GetJobBranchesRequest = {
2545
+ parameters: GetJobBranchesParameters;
2546
+ options?: GetJobBranchesOptions;
2547
+ };
2548
+ declare type GetJobBranchesParameters = {
2549
+ /** ID of the project */ 'projectId': string;
2550
+ /** ID of the job */
2551
+ 'jobId': string;
2552
+ };
2553
+ declare type GetJobBranchesOptions = {
2554
+ /** The number of results to display per request. Maximum of 100 results per page. */
2555
+ 'per_page'?: number;
2556
+ /** The page number to access. */
2557
+ 'page'?: number;
2558
+ /** The cursor returned from the previous page of results, used to request the next page. */
2559
+ 'cursor'?: string;
2560
+ };
2561
+ /** Gets information about the branches of the given job. */
2562
+ declare class GetJobBranchesEndpoint extends GetApiEndpoint<GetJobBranchesRequest, GetJobBranchesResult> {
2563
+ description: string;
2564
+ withAuth: boolean;
2565
+ endpointUrl: (opts: GetJobBranchesRequest) => string;
2566
+ body: () => undefined;
2567
+ }
2568
+
2569
+ declare type GetJobPullrequestsResult = {
2570
+ /** A list of pull requests for this repository. */
2571
+ 'pullRequests'?: {
2572
+ /** ID number of the pull request. Example: "1" */
2573
+ 'id': string;
2574
+ /** Status of the pull request. Example: "OPEN" */
2575
+ 'state': string;
2576
+ /** Title of the pull request. Example: "Add new feature handling" */
2577
+ 'title': string;
2578
+ /** Name of the branch the pull request is merging from. Example: "feature/new-feature" */
2579
+ 'source': string;
2580
+ /** Name of the branch the pull request is being merged into. Example: "main" */
2581
+ 'destination': string;
2582
+ /** SHA of the most recent commit of the pull request. Example: "4f101d8821aeb3e4f81f95f3e886a2759ba7b9db" */
2583
+ 'sha': string;
2584
+ /** The timestamp the pull request was opened. Example: "2021-03-22T11:05:52.000Z" */
2585
+ 'created_at': string;
2586
+ /** The timestamp the pull request was last updated at. Example: "2021-05-11T16:05:43.000Z" */
2587
+ 'updated_at': string;
2588
+ 'html_url': string;
2589
+ }[];
2590
+ };
2591
+ declare type GetJobPullrequestsCall = (opts: GetJobPullrequestsRequest) => Promise<ApiCallResponse<GetJobPullrequestsResult>>;
2592
+ declare type GetJobPullrequestsRequest = {
2593
+ parameters: GetJobPullrequestsParameters;
2594
+ options?: GetJobPullrequestsOptions;
2595
+ };
2596
+ declare type GetJobPullrequestsParameters = {
2597
+ /** ID of the project */ 'projectId': string;
2598
+ /** ID of the job */
2599
+ 'jobId': string;
2600
+ };
2601
+ declare type GetJobPullrequestsOptions = {
2602
+ /** The number of results to display per request. Maximum of 100 results per page. */
2603
+ 'per_page'?: number;
2604
+ /** The page number to access. */
2605
+ 'page'?: number;
2606
+ /** The cursor returned from the previous page of results, used to request the next page. */
2607
+ 'cursor'?: string;
2608
+ };
2609
+ /** Gets information about the pull-requests of the given job. */
2610
+ declare class GetJobPullrequestsEndpoint extends GetApiEndpoint<GetJobPullrequestsRequest, GetJobPullrequestsResult> {
2611
+ description: string;
2612
+ withAuth: boolean;
2613
+ endpointUrl: (opts: GetJobPullrequestsRequest) => string;
2614
+ body: () => undefined;
2615
+ }
2601
2616
 
2602
2617
  declare type ListRegistrycredentialsResult = {
2603
2618
  /** An array of credentials saved to this account. */
@@ -2639,8 +2654,6 @@ declare class ListRegistrycredentialsEndpoint extends GetApiEndpoint<ListRegistr
2639
2654
  body: () => undefined;
2640
2655
  }
2641
2656
 
2642
- /** WARNING: Autogenerated Code - do not modify! */
2643
-
2644
2657
  declare type AddRegistrycredentialsResult = {
2645
2658
  /** Identifier for the credentials. Example: "example-credentials" */
2646
2659
  'id': string;
@@ -2687,8 +2700,6 @@ declare class AddRegistrycredentialsEndpoint extends PostApiEndpoint<AddRegistry
2687
2700
  body: (payload: AddRegistrycredentialsRequest) => string;
2688
2701
  }
2689
2702
 
2690
- /** WARNING: Autogenerated Code - do not modify! */
2691
-
2692
2703
  declare type GetRegistrycredentialsResult = {
2693
2704
  /** Identifier for the credentials. Example: "example-credentials" */
2694
2705
  'id': string;
@@ -2722,8 +2733,6 @@ declare class GetRegistrycredentialsEndpoint extends GetApiEndpoint<GetRegistryc
2722
2733
  body: () => undefined;
2723
2734
  }
2724
2735
 
2725
- /** WARNING: Autogenerated Code - do not modify! */
2726
-
2727
2736
  declare type DeleteRegistrycredentialsResult = any;
2728
2737
  declare type DeleteRegistrycredentialsCall = (opts: DeleteRegistrycredentialsRequest) => Promise<ApiCallResponse<DeleteRegistrycredentialsResult>>;
2729
2738
  declare type DeleteRegistrycredentialsRequest = {
@@ -2740,8 +2749,6 @@ declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<Delete
2740
2749
  body: () => undefined;
2741
2750
  }
2742
2751
 
2743
- /** WARNING: Autogenerated Code - do not modify! */
2744
-
2745
2752
  declare type UpdateRegistrycredentialsResult = any;
2746
2753
  declare type UpdateRegistrycredentialsCall = (opts: UpdateRegistrycredentialsRequest) => Promise<ApiCallResponse<UpdateRegistrycredentialsResult>>;
2747
2754
  declare type UpdateRegistrycredentialsRequest = {
@@ -2772,8 +2779,6 @@ declare class UpdateRegistrycredentialsEndpoint extends PostApiEndpoint<UpdateRe
2772
2779
  body: (payload: UpdateRegistrycredentialsRequest) => string;
2773
2780
  }
2774
2781
 
2775
- /** WARNING: Autogenerated Code - do not modify! */
2776
-
2777
2782
  declare type ListDomainsResult = {
2778
2783
  /** A list of domains registered to this account. */
2779
2784
  'domains': {
@@ -2807,8 +2812,6 @@ declare class ListDomainsEndpoint extends GetApiEndpoint<ListDomainsRequest, Lis
2807
2812
  body: () => undefined;
2808
2813
  }
2809
2814
 
2810
- /** WARNING: Autogenerated Code - do not modify! */
2811
-
2812
2815
  declare type CreateDomainResult = {
2813
2816
  /** The domain name. Example: "example.com" */
2814
2817
  'name': string;
@@ -2835,8 +2838,6 @@ declare class CreateDomainEndpoint extends PostApiEndpoint<CreateDomainRequest,
2835
2838
  body: (payload: CreateDomainRequest) => string;
2836
2839
  }
2837
2840
 
2838
- /** WARNING: Autogenerated Code - do not modify! */
2839
-
2840
2841
  declare type GetDomainResult = {
2841
2842
  /** The domain name. Example: "example.com" */
2842
2843
  'name': string;
@@ -2869,8 +2870,6 @@ declare class GetDomainEndpoint extends GetApiEndpoint<GetDomainRequest, GetDoma
2869
2870
  body: () => undefined;
2870
2871
  }
2871
2872
 
2872
- /** WARNING: Autogenerated Code - do not modify! */
2873
-
2874
2873
  declare type DeleteDomainResult = any;
2875
2874
  declare type DeleteDomainCall = (opts: DeleteDomainRequest) => Promise<ApiCallResponse<DeleteDomainResult>>;
2876
2875
  declare type DeleteDomainRequest = {
@@ -2887,8 +2886,6 @@ declare class DeleteDomainEndpoint extends DeleteApiEndpoint<DeleteDomainRequest
2887
2886
  body: () => undefined;
2888
2887
  }
2889
2888
 
2890
- /** WARNING: Autogenerated Code - do not modify! */
2891
-
2892
2889
  declare type VerifyDomainResult = any | any;
2893
2890
  declare type VerifyDomainCall = (opts: VerifyDomainRequest) => Promise<ApiCallResponse<VerifyDomainResult>>;
2894
2891
  declare type VerifyDomainRequest = {
@@ -2905,8 +2902,6 @@ declare class VerifyDomainEndpoint extends PostApiEndpoint<VerifyDomainRequest,
2905
2902
  body: () => undefined;
2906
2903
  }
2907
2904
 
2908
- /** WARNING: Autogenerated Code - do not modify! */
2909
-
2910
2905
  declare type AddDomainSubdomainResult = {
2911
2906
  /** The record type to use for the DNS record to verify the subdomain - always CNAME for subdomains. Example: "CNAME" */
2912
2907
  'recordType': string;
@@ -2939,8 +2934,6 @@ declare class AddDomainSubdomainEndpoint extends PostApiEndpoint<AddDomainSubdom
2939
2934
  body: (payload: AddDomainSubdomainRequest) => string;
2940
2935
  }
2941
2936
 
2942
- /** WARNING: Autogenerated Code - do not modify! */
2943
-
2944
2937
  declare type GetSubdomainResult = {
2945
2938
  /** The record type to use for the DNS record to verify the subdomain - always CNAME for subdomains. Example: "CNAME" */
2946
2939
  'recordType': string;
@@ -2970,8 +2963,6 @@ declare class GetSubdomainEndpoint extends GetApiEndpoint<GetSubdomainRequest, G
2970
2963
  body: () => undefined;
2971
2964
  }
2972
2965
 
2973
- /** WARNING: Autogenerated Code - do not modify! */
2974
-
2975
2966
  declare type DeleteSubdomainResult = any | any;
2976
2967
  declare type DeleteSubdomainCall = (opts: DeleteSubdomainRequest) => Promise<ApiCallResponse<DeleteSubdomainResult>>;
2977
2968
  declare type DeleteSubdomainRequest = {
@@ -2990,8 +2981,6 @@ declare class DeleteSubdomainEndpoint extends DeleteApiEndpoint<DeleteSubdomainR
2990
2981
  body: () => undefined;
2991
2982
  }
2992
2983
 
2993
- /** WARNING: Autogenerated Code - do not modify! */
2994
-
2995
2984
  declare type VerifySubdomainResult = any | any;
2996
2985
  declare type VerifySubdomainCall = (opts: VerifySubdomainRequest) => Promise<ApiCallResponse<VerifySubdomainResult>>;
2997
2986
  declare type VerifySubdomainRequest = {
@@ -3010,8 +2999,6 @@ declare class VerifySubdomainEndpoint extends PostApiEndpoint<VerifySubdomainReq
3010
2999
  body: () => undefined;
3011
3000
  }
3012
3001
 
3013
- /** WARNING: Autogenerated Code - do not modify! */
3014
-
3015
3002
  declare type AssignSubdomainServiceResult = any;
3016
3003
  declare type AssignSubdomainServiceCall = (opts: AssignSubdomainServiceRequest) => Promise<ApiCallResponse<AssignSubdomainServiceResult>>;
3017
3004
  declare type AssignSubdomainServiceRequest = {
@@ -3039,8 +3026,6 @@ declare class AssignSubdomainServiceEndpoint extends PostApiEndpoint<AssignSubdo
3039
3026
  body: (payload: AssignSubdomainServiceRequest) => string;
3040
3027
  }
3041
3028
 
3042
- /** WARNING: Autogenerated Code - do not modify! */
3043
-
3044
3029
  declare type UnassignSubdomainResult = any;
3045
3030
  declare type UnassignSubdomainCall = (opts: UnassignSubdomainRequest) => Promise<ApiCallResponse<UnassignSubdomainResult>>;
3046
3031
  declare type UnassignSubdomainRequest = {
@@ -3059,8 +3044,6 @@ declare class UnassignSubdomainEndpoint extends DeleteApiEndpoint<UnassignSubdom
3059
3044
  body: () => undefined;
3060
3045
  }
3061
3046
 
3062
- /** WARNING: Autogenerated Code - do not modify! */
3063
-
3064
3047
  declare type ListPlansResult = {
3065
3048
  /** An array of available plans */
3066
3049
  'plans': {
@@ -3090,8 +3073,6 @@ declare class ListPlansEndpoint extends GetApiEndpoint<ListPlansRequest, ListPla
3090
3073
  body: () => undefined;
3091
3074
  }
3092
3075
 
3093
- /** WARNING: Autogenerated Code - do not modify! */
3094
-
3095
3076
  declare type ListRegionsResult = {
3096
3077
  /** An array of regions */
3097
3078
  'regions': {
@@ -3109,8 +3090,6 @@ declare class ListRegionsEndpoint extends GetApiEndpoint<ListRegionsRequest, Lis
3109
3090
  body: () => undefined;
3110
3091
  }
3111
3092
 
3112
- /** WARNING: Autogenerated Code - do not modify! */
3113
-
3114
3093
  declare type GetDnsidResult = {
3115
3094
  /** The partially random string associated with the authenticated account, used for generating DNS entries. Example: "exam-1234" */
3116
3095
  'dns': string;
@@ -3125,8 +3104,6 @@ declare class GetDnsidEndpoint extends GetApiEndpoint<GetDnsidRequest, GetDnsidR
3125
3104
  body: () => undefined;
3126
3105
  }
3127
3106
 
3128
- /** WARNING: Autogenerated Code - do not modify! */
3129
-
3130
3107
  declare type ListVcsResult = {
3131
3108
  /** The version control accounts linked to this Northflank account. */
3132
3109
  'vcsAccountLinks': {
@@ -3158,8 +3135,6 @@ declare class ListVcsEndpoint extends GetApiEndpoint<ListVcsRequest, ListVcsResu
3158
3135
  body: () => undefined;
3159
3136
  }
3160
3137
 
3161
- /** WARNING: Autogenerated Code - do not modify! */
3162
-
3163
3138
  declare type ListSecretsResult = {
3164
3139
  /** An array of secret groups */
3165
3140
  'secrets': {
@@ -3211,8 +3186,6 @@ declare class ListSecretsEndpoint extends GetApiEndpoint<ListSecretsRequest, Lis
3211
3186
  body: () => undefined;
3212
3187
  }
3213
3188
 
3214
- /** WARNING: Autogenerated Code - do not modify! */
3215
-
3216
3189
  declare type CreateSecretResult = {
3217
3190
  /** Identifier for the secret group Example: "example-secret-group" */
3218
3191
  'id': string;
@@ -3280,7 +3253,7 @@ declare type CreateSecretData = {
3280
3253
  'aliases'?: string[];
3281
3254
  }[];
3282
3255
  }[];
3283
- /** Secret contents as JSON object, encrypted at rest Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
3256
+ /** Secret contents as JSON object, encrypted at rest. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
3284
3257
  'data'?: any;
3285
3258
  };
3286
3259
  /** Creates a secret with the specified payload */
@@ -3291,8 +3264,6 @@ declare class CreateSecretEndpoint extends PostApiEndpoint<CreateSecretRequest,
3291
3264
  body: (payload: CreateSecretRequest) => string;
3292
3265
  }
3293
3266
 
3294
- /** WARNING: Autogenerated Code - do not modify! */
3295
-
3296
3267
  declare type GetSecretResult = {
3297
3268
  /** Identifier for the secret group Example: "example-secret-group" */
3298
3269
  'id': string;
@@ -3347,8 +3318,6 @@ declare class GetSecretEndpoint extends GetApiEndpoint<GetSecretRequest, GetSecr
3347
3318
  body: () => undefined;
3348
3319
  }
3349
3320
 
3350
- /** WARNING: Autogenerated Code - do not modify! */
3351
-
3352
3321
  declare type DeleteSecretResult = any;
3353
3322
  declare type DeleteSecretCall = (opts: DeleteSecretRequest) => Promise<ApiCallResponse<DeleteSecretResult>>;
3354
3323
  declare type DeleteSecretRequest = {
@@ -3367,8 +3336,6 @@ declare class DeleteSecretEndpoint extends DeleteApiEndpoint<DeleteSecretRequest
3367
3336
  body: () => undefined;
3368
3337
  }
3369
3338
 
3370
- /** WARNING: Autogenerated Code - do not modify! */
3371
-
3372
3339
  declare type UpdateSecretResult = any;
3373
3340
  declare type UpdateSecretCall = (opts: UpdateSecretRequest) => Promise<ApiCallResponse<UpdateSecretResult>>;
3374
3341
  declare type UpdateSecretRequest = {
@@ -3411,7 +3378,7 @@ declare type UpdateSecretData = {
3411
3378
  }[];
3412
3379
  /** The type of the created secret Example: "environment" */
3413
3380
  'secretType'?: 'environment' | 'arguments';
3414
- /** Secret contents as JSON object, encrypted at rest Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
3381
+ /** Secret contents as JSON object, encrypted at rest. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
3415
3382
  'data'?: any;
3416
3383
  };
3417
3384
  /** Update a secret */
@@ -3422,8 +3389,6 @@ declare class UpdateSecretEndpoint extends PostApiEndpoint<UpdateSecretRequest,
3422
3389
  body: (payload: UpdateSecretRequest) => string;
3423
3390
  }
3424
3391
 
3425
- /** WARNING: Autogenerated Code - do not modify! */
3426
-
3427
3392
  declare type GetSecretdetailsResult = {
3428
3393
  /** Identifier for the secret group Example: "example-secret-group" */
3429
3394
  'id': string;
@@ -3486,8 +3451,6 @@ declare class GetSecretdetailsEndpoint extends GetApiEndpoint<GetSecretdetailsRe
3486
3451
  body: () => undefined;
3487
3452
  }
3488
3453
 
3489
- /** WARNING: Autogenerated Code - do not modify! */
3490
-
3491
3454
  declare type UpdateSecretlinkResult = {
3492
3455
  /** An array of objects containing details about the keys linked to this secret group. */
3493
3456
  'keys': {
@@ -3527,8 +3490,6 @@ declare class UpdateSecretlinkEndpoint extends PostApiEndpoint<UpdateSecretlinkR
3527
3490
  body: (payload: UpdateSecretlinkRequest) => string;
3528
3491
  }
3529
3492
 
3530
- /** WARNING: Autogenerated Code - do not modify! */
3531
-
3532
3493
  declare type GetSecretlinkResult = {
3533
3494
  /** The name of the secret group Example: "Example secret group" */
3534
3495
  'secretName': string;
@@ -3572,8 +3533,6 @@ declare class GetSecretlinkEndpoint extends GetApiEndpoint<GetSecretlinkRequest,
3572
3533
  body: () => undefined;
3573
3534
  }
3574
3535
 
3575
- /** WARNING: Autogenerated Code - do not modify! */
3576
-
3577
3536
  declare type DeleteSecretlinkResult = any;
3578
3537
  declare type DeleteSecretlinkCall = (opts: DeleteSecretlinkRequest) => Promise<ApiCallResponse<DeleteSecretlinkResult>>;
3579
3538
  declare type DeleteSecretlinkRequest = {
@@ -3594,8 +3553,6 @@ declare class DeleteSecretlinkEndpoint extends DeleteApiEndpoint<DeleteSecretlin
3594
3553
  body: () => undefined;
3595
3554
  }
3596
3555
 
3597
- /** WARNING: Autogenerated Code - do not modify! */
3598
-
3599
3556
  declare type CreateServiceCombinedResult = {
3600
3557
  /** Identifier for the service Example: "example-service" */
3601
3558
  'id': string;
@@ -3685,7 +3642,7 @@ declare type CreateServiceCombinedResult = {
3685
3642
  'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
3686
3643
  'buildpack'?: {
3687
3644
  /** The Buildpack stack used. Example: "HEROKU_20" */
3688
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
3645
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
3689
3646
  /** Array of custom Buildpacks used. */
3690
3647
  'buildpackLocators'?: string[];
3691
3648
  };
@@ -3766,7 +3723,7 @@ declare type CreateServiceCombinedData = {
3766
3723
  } | {
3767
3724
  'buildpack': {
3768
3725
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_20`. Example: "HEROKU_20" */
3769
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
3726
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
3770
3727
  /** Array of custom Buildpacks to use. */
3771
3728
  'buildpackLocators'?: string[];
3772
3729
  /** The working directory to build in. Example: "/" */
@@ -3777,9 +3734,9 @@ declare type CreateServiceCombinedData = {
3777
3734
  /** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
3778
3735
  'pathIgnoreRules'?: string[];
3779
3736
  };
3780
- /** An object containing the environment variables to set for the service Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
3737
+ /** An object containing the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
3781
3738
  'environment'?: any;
3782
- /** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
3739
+ /** An object containing the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
3783
3740
  'buildArguments'?: any;
3784
3741
  };
3785
3742
  /** Creates a new combined service. */
@@ -3790,8 +3747,6 @@ declare class CreateServiceCombinedEndpoint extends PostApiEndpoint<CreateServic
3790
3747
  body: (payload: CreateServiceCombinedRequest) => string;
3791
3748
  }
3792
3749
 
3793
- /** WARNING: Autogenerated Code - do not modify! */
3794
-
3795
3750
  declare type CreateServiceDeploymentResult = {
3796
3751
  /** Identifier for the service Example: "example-service" */
3797
3752
  'id': string;
@@ -3947,8 +3902,6 @@ declare class CreateServiceDeploymentEndpoint extends PostApiEndpoint<CreateServ
3947
3902
  body: (payload: CreateServiceDeploymentRequest) => string;
3948
3903
  }
3949
3904
 
3950
- /** WARNING: Autogenerated Code - do not modify! */
3951
-
3952
3905
  declare type CreateServiceBuildResult = {
3953
3906
  /** Identifier for the service Example: "example-service" */
3954
3907
  'id': string;
@@ -4017,7 +3970,7 @@ declare type CreateServiceBuildResult = {
4017
3970
  'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
4018
3971
  'buildpack'?: {
4019
3972
  /** The Buildpack stack used. Example: "HEROKU_20" */
4020
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
3973
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
4021
3974
  /** Array of custom Buildpacks used. */
4022
3975
  'buildpackLocators'?: string[];
4023
3976
  };
@@ -4062,7 +4015,7 @@ declare type CreateServiceBuildData = {
4062
4015
  } | {
4063
4016
  'buildpack': {
4064
4017
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_20`. Example: "HEROKU_20" */
4065
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
4018
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
4066
4019
  /** Array of custom Buildpacks to use. */
4067
4020
  'buildpackLocators'?: string[];
4068
4021
  /** The working directory to build in. Example: "/" */
@@ -4088,8 +4041,6 @@ declare class CreateServiceBuildEndpoint extends PostApiEndpoint<CreateServiceBu
4088
4041
  body: (payload: CreateServiceBuildRequest) => string;
4089
4042
  }
4090
4043
 
4091
- /** WARNING: Autogenerated Code - do not modify! */
4092
-
4093
4044
  declare type GetServiceResult = {
4094
4045
  /** Identifier for the service Example: "example-service" */
4095
4046
  'id': string;
@@ -4189,7 +4140,7 @@ declare type GetServiceResult = {
4189
4140
  'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
4190
4141
  'buildpack'?: {
4191
4142
  /** The Buildpack stack used. Example: "HEROKU_20" */
4192
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
4143
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
4193
4144
  /** Array of custom Buildpacks used. */
4194
4145
  'buildpackLocators'?: string[];
4195
4146
  };
@@ -4212,8 +4163,6 @@ declare class GetServiceEndpoint extends GetApiEndpoint<GetServiceRequest, GetSe
4212
4163
  body: () => undefined;
4213
4164
  }
4214
4165
 
4215
- /** WARNING: Autogenerated Code - do not modify! */
4216
-
4217
4166
  declare type DeleteServiceResult = any;
4218
4167
  declare type DeleteServiceCall = (opts: DeleteServiceRequest) => Promise<ApiCallResponse<DeleteServiceResult>>;
4219
4168
  declare type DeleteServiceRequest = {
@@ -4232,8 +4181,6 @@ declare class DeleteServiceEndpoint extends DeleteApiEndpoint<DeleteServiceReque
4232
4181
  body: () => undefined;
4233
4182
  }
4234
4183
 
4235
- /** WARNING: Autogenerated Code - do not modify! */
4236
-
4237
4184
  declare type ScaleServiceResult = any;
4238
4185
  declare type ScaleServiceCall = (opts: ScaleServiceRequest) => Promise<ApiCallResponse<ScaleServiceResult>>;
4239
4186
  declare type ScaleServiceRequest = {
@@ -4259,8 +4206,6 @@ declare class ScaleServiceEndpoint extends PostApiEndpoint<ScaleServiceRequest,
4259
4206
  body: (payload: ScaleServiceRequest) => string;
4260
4207
  }
4261
4208
 
4262
- /** WARNING: Autogenerated Code - do not modify! */
4263
-
4264
4209
  declare type GetServiceDeploymentResult = {
4265
4210
  /** Region where this service is deployed and/or built Example: "europe-west" */
4266
4211
  'region'?: string;
@@ -4311,8 +4256,6 @@ declare class GetServiceDeploymentEndpoint extends GetApiEndpoint<GetServiceDepl
4311
4256
  body: () => undefined;
4312
4257
  }
4313
4258
 
4314
- /** WARNING: Autogenerated Code - do not modify! */
4315
-
4316
4259
  declare type UpdateServiceDeploymentResult = any;
4317
4260
  declare type UpdateServiceDeploymentCall = (opts: UpdateServiceDeploymentRequest) => Promise<ApiCallResponse<UpdateServiceDeploymentResult>>;
4318
4261
  declare type UpdateServiceDeploymentRequest = {
@@ -4349,8 +4292,6 @@ declare class UpdateServiceDeploymentEndpoint extends PostApiEndpoint<UpdateServ
4349
4292
  body: (payload: UpdateServiceDeploymentRequest) => string;
4350
4293
  }
4351
4294
 
4352
- /** WARNING: Autogenerated Code - do not modify! */
4353
-
4354
4295
  declare type RestartServiceResult = any;
4355
4296
  declare type RestartServiceCall = (opts: RestartServiceRequest) => Promise<ApiCallResponse<RestartServiceResult>>;
4356
4297
  declare type RestartServiceRequest = {
@@ -4369,8 +4310,6 @@ declare class RestartServiceEndpoint extends PostApiEndpoint<RestartServiceReque
4369
4310
  body: () => undefined;
4370
4311
  }
4371
4312
 
4372
- /** WARNING: Autogenerated Code - do not modify! */
4373
-
4374
4313
  declare type PauseServiceResult = any;
4375
4314
  declare type PauseServiceCall = (opts: PauseServiceRequest) => Promise<ApiCallResponse<PauseServiceResult>>;
4376
4315
  declare type PauseServiceRequest = {
@@ -4389,8 +4328,6 @@ declare class PauseServiceEndpoint extends PostApiEndpoint<PauseServiceRequest,
4389
4328
  body: () => undefined;
4390
4329
  }
4391
4330
 
4392
- /** WARNING: Autogenerated Code - do not modify! */
4393
-
4394
4331
  declare type ResumeServiceResult = any | any;
4395
4332
  declare type ResumeServiceCall = (opts: ResumeServiceRequest) => Promise<ApiCallResponse<ResumeServiceResult>>;
4396
4333
  declare type ResumeServiceRequest = {
@@ -4414,8 +4351,6 @@ declare class ResumeServiceEndpoint extends PostApiEndpoint<ResumeServiceRequest
4414
4351
  body: (payload: ResumeServiceRequest) => string;
4415
4352
  }
4416
4353
 
4417
- /** WARNING: Autogenerated Code - do not modify! */
4418
-
4419
4354
  declare type GetServicePortsResult = {
4420
4355
  'ports': {
4421
4356
  /** The id used to identify the port across requests. Example: "eonyui" */
@@ -4450,8 +4385,6 @@ declare class GetServicePortsEndpoint extends GetApiEndpoint<GetServicePortsRequ
4450
4385
  body: () => undefined;
4451
4386
  }
4452
4387
 
4453
- /** WARNING: Autogenerated Code - do not modify! */
4454
-
4455
4388
  declare type UpdateServicePortsResult = any | any;
4456
4389
  declare type UpdateServicePortsCall = (opts: UpdateServicePortsRequest) => Promise<ApiCallResponse<UpdateServicePortsResult>>;
4457
4390
  declare type UpdateServicePortsRequest = {
@@ -4506,8 +4439,6 @@ declare class UpdateServicePortsEndpoint extends PostApiEndpoint<UpdateServicePo
4506
4439
  body: (payload: UpdateServicePortsRequest) => string;
4507
4440
  }
4508
4441
 
4509
- /** WARNING: Autogenerated Code - do not modify! */
4510
-
4511
4442
  declare type UpdateServiceBuildoptionsResult = any;
4512
4443
  declare type UpdateServiceBuildoptionsCall = (opts: UpdateServiceBuildoptionsRequest) => Promise<ApiCallResponse<UpdateServiceBuildoptionsResult>>;
4513
4444
  declare type UpdateServiceBuildoptionsRequest = {
@@ -4537,7 +4468,7 @@ declare type UpdateServiceBuildoptionsData = {
4537
4468
  } | {
4538
4469
  'buildpack': {
4539
4470
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_20`. Example: "HEROKU_20" */
4540
- 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_FULL';
4471
+ 'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
4541
4472
  /** Array of custom buildpacks to use. */
4542
4473
  'buildpackLocators'?: string[];
4543
4474
  /** The working directory to build in. Example: "/" */
@@ -4565,7 +4496,36 @@ declare class UpdateServiceBuildoptionsEndpoint extends PostApiEndpoint<UpdateSe
4565
4496
  body: (payload: UpdateServiceBuildoptionsRequest) => string;
4566
4497
  }
4567
4498
 
4568
- /** WARNING: Autogenerated Code - do not modify! */
4499
+ declare type UpdateServiceBuildsourceResult = any;
4500
+ declare type UpdateServiceBuildsourceCall = (opts: UpdateServiceBuildsourceRequest) => Promise<ApiCallResponse<UpdateServiceBuildsourceResult>>;
4501
+ declare type UpdateServiceBuildsourceRequest = {
4502
+ parameters: UpdateServiceBuildsourceParameters;
4503
+ data: UpdateServiceBuildsourceData;
4504
+ };
4505
+ declare type UpdateServiceBuildsourceParameters = {
4506
+ /** ID of the project */ 'projectId': string;
4507
+ /** ID of the service */
4508
+ 'serviceId': string;
4509
+ };
4510
+ declare type UpdateServiceBuildsourceData = {
4511
+ /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
4512
+ 'projectUrl'?: string;
4513
+ /** The VCS provider to use. Example: "github" */
4514
+ 'projectType'?: 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
4515
+ /** The name of the branch to use. Example: "master" */
4516
+ 'projectBranch'?: string;
4517
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
4518
+ 'selfHostedVcsId'?: string;
4519
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
4520
+ 'accountLogin'?: string;
4521
+ };
4522
+ /** Updates the version control source for a given build or combined service. */
4523
+ declare class UpdateServiceBuildsourceEndpoint extends PostApiEndpoint<UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult> {
4524
+ description: string;
4525
+ withAuth: boolean;
4526
+ endpointUrl: (opts: UpdateServiceBuildsourceRequest) => string;
4527
+ body: (payload: UpdateServiceBuildsourceRequest) => string;
4528
+ }
4569
4529
 
4570
4530
  declare type UpdateServiceCmdoverrideResult = any;
4571
4531
  declare type UpdateServiceCmdoverrideCall = (opts: UpdateServiceCmdoverrideRequest) => Promise<ApiCallResponse<UpdateServiceCmdoverrideResult>>;
@@ -4590,8 +4550,6 @@ declare class UpdateServiceCmdoverrideEndpoint extends PostApiEndpoint<UpdateSer
4590
4550
  body: (payload: UpdateServiceCmdoverrideRequest) => string;
4591
4551
  }
4592
4552
 
4593
- /** WARNING: Autogenerated Code - do not modify! */
4594
-
4595
4553
  declare type GetServiceHealthchecksResult = {
4596
4554
  /** An array of health checks. */
4597
4555
  'healthChecks': {
@@ -4635,8 +4593,6 @@ declare class GetServiceHealthchecksEndpoint extends GetApiEndpoint<GetServiceHe
4635
4593
  body: () => undefined;
4636
4594
  }
4637
4595
 
4638
- /** WARNING: Autogenerated Code - do not modify! */
4639
-
4640
4596
  declare type UpdateServiceHealthchecksResult = any;
4641
4597
  declare type UpdateServiceHealthchecksCall = (opts: UpdateServiceHealthchecksRequest) => Promise<ApiCallResponse<UpdateServiceHealthchecksResult>>;
4642
4598
  declare type UpdateServiceHealthchecksRequest = {
@@ -4681,8 +4637,6 @@ declare class UpdateServiceHealthchecksEndpoint extends PostApiEndpoint<UpdateSe
4681
4637
  body: (payload: UpdateServiceHealthchecksRequest) => string;
4682
4638
  }
4683
4639
 
4684
- /** WARNING: Autogenerated Code - do not modify! */
4685
-
4686
4640
  declare type GetServiceBuildsResult = {
4687
4641
  /** An array of builds. */
4688
4642
  'builds': {
@@ -4734,8 +4688,6 @@ declare class GetServiceBuildsEndpoint extends GetApiEndpoint<GetServiceBuildsRe
4734
4688
  body: () => undefined;
4735
4689
  }
4736
4690
 
4737
- /** WARNING: Autogenerated Code - do not modify! */
4738
-
4739
4691
  declare type StartServiceBuildResult = {
4740
4692
  /** ID of the build. Example: "joyous-view-6290" */
4741
4693
  'id'?: string;
@@ -4778,8 +4730,6 @@ declare class StartServiceBuildEndpoint extends PostApiEndpoint<StartServiceBuil
4778
4730
  body: (payload: StartServiceBuildRequest) => string;
4779
4731
  }
4780
4732
 
4781
- /** WARNING: Autogenerated Code - do not modify! */
4782
-
4783
4733
  declare type AbortServiceBuildResult = any;
4784
4734
  declare type AbortServiceBuildCall = (opts: AbortServiceBuildRequest) => Promise<ApiCallResponse<AbortServiceBuildResult>>;
4785
4735
  declare type AbortServiceBuildRequest = {
@@ -4800,8 +4750,6 @@ declare class AbortServiceBuildEndpoint extends DeleteApiEndpoint<AbortServiceBu
4800
4750
  body: () => undefined;
4801
4751
  }
4802
4752
 
4803
- /** WARNING: Autogenerated Code - do not modify! */
4804
-
4805
4753
  declare type GetServiceContainersResult = {
4806
4754
  /** An array of containers. */
4807
4755
  'pods': {
@@ -4841,7 +4789,201 @@ declare class GetServiceContainersEndpoint extends GetApiEndpoint<GetServiceCont
4841
4789
  body: () => undefined;
4842
4790
  }
4843
4791
 
4844
- /** WARNING: Autogenerated Code - do not modify! */
4792
+ declare type GetServiceBranchesResult = {
4793
+ /** A list of branches for this repository. */
4794
+ 'branches'?: {
4795
+ /** Name of the branch. Example: "main" */
4796
+ 'name': string;
4797
+ 'id': string;
4798
+ /** Details about the most recent commit on the branch. */
4799
+ 'commit': {
4800
+ /** SHA identifier of the commit. Example: "f8aca180e989be62cba71db629d2ede05f2d10c4" */
4801
+ 'sha': string;
4802
+ /** Details about the commit author. */
4803
+ 'author': {
4804
+ /** The login of the commit author. Example: "northflank" */
4805
+ 'login': string;
4806
+ };
4807
+ /** Commit message of the commit. Example: "Initial commit" */
4808
+ 'message'?: string;
4809
+ /** Timestamp of the commit. Example: "2021-09-17T14:04:39.000Z" */
4810
+ 'date'?: string;
4811
+ };
4812
+ }[];
4813
+ };
4814
+ declare type GetServiceBranchesCall = (opts: GetServiceBranchesRequest) => Promise<ApiCallResponse<GetServiceBranchesResult>>;
4815
+ declare type GetServiceBranchesRequest = {
4816
+ parameters: GetServiceBranchesParameters;
4817
+ options?: GetServiceBranchesOptions;
4818
+ };
4819
+ declare type GetServiceBranchesParameters = {
4820
+ /** ID of the project */ 'projectId': string;
4821
+ /** ID of the service */
4822
+ 'serviceId': string;
4823
+ };
4824
+ declare type GetServiceBranchesOptions = {
4825
+ /** The number of results to display per request. Maximum of 100 results per page. */
4826
+ 'per_page'?: number;
4827
+ /** The page number to access. */
4828
+ 'page'?: number;
4829
+ /** The cursor returned from the previous page of results, used to request the next page. */
4830
+ 'cursor'?: string;
4831
+ };
4832
+ /** Gets information about the branches of the given service. */
4833
+ declare class GetServiceBranchesEndpoint extends GetApiEndpoint<GetServiceBranchesRequest, GetServiceBranchesResult> {
4834
+ description: string;
4835
+ withAuth: boolean;
4836
+ endpointUrl: (opts: GetServiceBranchesRequest) => string;
4837
+ body: () => undefined;
4838
+ }
4839
+
4840
+ declare type GetServicePullrequestsResult = {
4841
+ /** A list of pull requests for this repository. */
4842
+ 'pullRequests'?: {
4843
+ /** ID number of the pull request. Example: "1" */
4844
+ 'id': string;
4845
+ /** Status of the pull request. Example: "OPEN" */
4846
+ 'state': string;
4847
+ /** Title of the pull request. Example: "Add new feature handling" */
4848
+ 'title': string;
4849
+ /** Name of the branch the pull request is merging from. Example: "feature/new-feature" */
4850
+ 'source': string;
4851
+ /** Name of the branch the pull request is being merged into. Example: "main" */
4852
+ 'destination': string;
4853
+ /** SHA of the most recent commit of the pull request. Example: "4f101d8821aeb3e4f81f95f3e886a2759ba7b9db" */
4854
+ 'sha': string;
4855
+ /** The timestamp the pull request was opened. Example: "2021-03-22T11:05:52.000Z" */
4856
+ 'created_at': string;
4857
+ /** The timestamp the pull request was last updated at. Example: "2021-05-11T16:05:43.000Z" */
4858
+ 'updated_at': string;
4859
+ 'html_url': string;
4860
+ }[];
4861
+ };
4862
+ declare type GetServicePullrequestsCall = (opts: GetServicePullrequestsRequest) => Promise<ApiCallResponse<GetServicePullrequestsResult>>;
4863
+ declare type GetServicePullrequestsRequest = {
4864
+ parameters: GetServicePullrequestsParameters;
4865
+ options?: GetServicePullrequestsOptions;
4866
+ };
4867
+ declare type GetServicePullrequestsParameters = {
4868
+ /** ID of the project */ 'projectId': string;
4869
+ /** ID of the service */
4870
+ 'serviceId': string;
4871
+ };
4872
+ declare type GetServicePullrequestsOptions = {
4873
+ /** The number of results to display per request. Maximum of 100 results per page. */
4874
+ 'per_page'?: number;
4875
+ /** The page number to access. */
4876
+ 'page'?: number;
4877
+ /** The cursor returned from the previous page of results, used to request the next page. */
4878
+ 'cursor'?: string;
4879
+ };
4880
+ /** Gets information about the pull-requests of the given service. */
4881
+ declare class GetServicePullrequestsEndpoint extends GetApiEndpoint<GetServicePullrequestsRequest, GetServicePullrequestsResult> {
4882
+ description: string;
4883
+ withAuth: boolean;
4884
+ endpointUrl: (opts: GetServicePullrequestsRequest) => string;
4885
+ body: () => undefined;
4886
+ }
4887
+
4888
+ declare type ListReposResult = {
4889
+ /** A list of accessible repositories. */
4890
+ 'repos'?: {
4891
+ /** Version control provider of the repository. Example: "github" */
4892
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
4893
+ /** If `vcsService` is `self-hosted`, the ID of the self-hosted provider. */
4894
+ 'selfHostedVcsId'?: string;
4895
+ /** The ID of the repository, according to the version control provider. Example: 123456789 */
4896
+ 'id': any;
4897
+ /** The name of the repository. Example: "gatsby-with-northflank" */
4898
+ 'name': string;
4899
+ /** The full name of the repository. Example: "northflank/gatsby-with-northflank" */
4900
+ 'full_name': string;
4901
+ /** The url of the repository. Example: "https://github.com/northflank/gatsby-with-northflank" */
4902
+ 'url': string;
4903
+ /** Details about the repository owner. */
4904
+ 'owner': {
4905
+ /** The login of the repository owner. Example: "northflank" */
4906
+ 'login': string;
4907
+ };
4908
+ /** The login of the linked version control account that can access this repository. Example: "example-user" */
4909
+ 'accountLogin': string;
4910
+ }[];
4911
+ };
4912
+ declare type ListReposCall = (opts: ListReposRequest) => Promise<ApiCallResponse<ListReposResult>>;
4913
+ declare type ListReposRequest = {
4914
+ options?: ListReposOptions;
4915
+ };
4916
+ declare type ListReposOptions = {
4917
+ /** The number of results to display per request. Maximum of 100 results per page. */
4918
+ 'per_page'?: number;
4919
+ /** The page number to access. */
4920
+ 'page'?: number;
4921
+ /** The cursor returned from the previous page of results, used to request the next page. */
4922
+ 'cursor'?: string;
4923
+ /** If provided, only returns repositories belonging to this version control provider. */
4924
+ 'vcs_service'?: string;
4925
+ /** If provided, only returns repositories belonging to this self-hosted version control provider. */
4926
+ 'self_hosted_vcs_id'?: string;
4927
+ /** If provided, only returns repositories that can be accessed by the linked version control account with this name. */
4928
+ 'account_login'?: string;
4929
+ };
4930
+ /** Gets a list of repositories accessible to this account */
4931
+ declare class ListReposEndpoint extends GetApiEndpoint<ListReposRequest, ListReposResult> {
4932
+ description: string;
4933
+ withAuth: boolean;
4934
+ endpointUrl: (opts: ListReposRequest) => string;
4935
+ body: () => undefined;
4936
+ }
4937
+
4938
+ declare type ListBranchesResult = {
4939
+ /** A list of branches for this repository. */
4940
+ 'branches'?: {
4941
+ /** Name of the branch. Example: "main" */
4942
+ 'name': string;
4943
+ 'id': string;
4944
+ /** Details about the most recent commit on the branch. */
4945
+ 'commit': {
4946
+ /** SHA identifier of the commit. Example: "f8aca180e989be62cba71db629d2ede05f2d10c4" */
4947
+ 'sha': string;
4948
+ /** Details about the commit author. */
4949
+ 'author': {
4950
+ /** The login of the commit author. Example: "northflank" */
4951
+ 'login': string;
4952
+ };
4953
+ /** Commit message of the commit. Example: "Initial commit" */
4954
+ 'message'?: string;
4955
+ /** Timestamp of the commit. Example: "2021-09-17T14:04:39.000Z" */
4956
+ 'date'?: string;
4957
+ };
4958
+ }[];
4959
+ };
4960
+ declare type ListBranchesCall = (opts: ListBranchesRequest) => Promise<ApiCallResponse<ListBranchesResult>>;
4961
+ declare type ListBranchesRequest = {
4962
+ parameters: ListBranchesParameters;
4963
+ options?: ListBranchesOptions;
4964
+ };
4965
+ declare type ListBranchesParameters = {
4966
+ /** Version control provider of the repository */ 'vcsService': string;
4967
+ /** Name of the owner of the repository */
4968
+ 'repositoryOwner': string;
4969
+ /** Name of the repository */
4970
+ 'repositoryName': string;
4971
+ };
4972
+ declare type ListBranchesOptions = {
4973
+ /** The number of results to display per request. Maximum of 100 results per page. */
4974
+ 'per_page'?: number;
4975
+ /** The page number to access. */
4976
+ 'page'?: number;
4977
+ /** The cursor returned from the previous page of results, used to request the next page. */
4978
+ 'cursor'?: string;
4979
+ };
4980
+ /** Gets a list of branches for the repo */
4981
+ declare class ListBranchesEndpoint extends GetApiEndpoint<ListBranchesRequest, ListBranchesResult> {
4982
+ description: string;
4983
+ withAuth: boolean;
4984
+ endpointUrl: (opts: ListBranchesRequest) => string;
4985
+ body: () => undefined;
4986
+ }
4845
4987
 
4846
4988
  declare type ListVolumesResult = {
4847
4989
  /** Identifier for the volume Example: "example-volume" */
@@ -4850,9 +4992,8 @@ declare type ListVolumesResult = {
4850
4992
  'name': string;
4851
4993
  /** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account, */
4852
4994
  'spec': {
4853
- /** The size of the storage, in megabytes. Configurable sizes depend on the storage class. Example: 4096 */
4854
- 'storageSize': number;
4855
4995
  'storageClassName'?: 'ssd' | 'hdd';
4996
+ 'storageSize': number;
4856
4997
  };
4857
4998
  /** The object to attach this volume to. */
4858
4999
  'owningObject'?: {
@@ -4883,8 +5024,6 @@ declare class ListVolumesEndpoint extends GetApiEndpoint<ListVolumesRequest, Lis
4883
5024
  body: () => undefined;
4884
5025
  }
4885
5026
 
4886
- /** WARNING: Autogenerated Code - do not modify! */
4887
-
4888
5027
  declare type CreateVolumeResult = {
4889
5028
  /** Identifier for the volume Example: "example-volume" */
4890
5029
  'id': string;
@@ -4892,9 +5031,8 @@ declare type CreateVolumeResult = {
4892
5031
  'name': string;
4893
5032
  /** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account, */
4894
5033
  'spec': {
4895
- /** The size of the storage, in megabytes. Configurable sizes depend on the storage class. Example: 4096 */
4896
- 'storageSize': number;
4897
5034
  'storageClassName'?: 'ssd' | 'hdd';
5035
+ 'storageSize': number;
4898
5036
  };
4899
5037
  /** The object to attach this volume to. */
4900
5038
  'owningObject'?: {
@@ -4930,9 +5068,8 @@ declare type CreateVolumeData = {
4930
5068
  }[];
4931
5069
  /** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account, */
4932
5070
  'spec': {
4933
- /** The size of the storage, in megabytes. Configurable sizes depend on the storage class. Example: 4096 */
4934
- 'storageSize': number;
4935
5071
  'storageClassName'?: 'ssd' | 'hdd';
5072
+ 'storageSize': number;
4936
5073
  };
4937
5074
  /** The object to attach this volume to. */
4938
5075
  'owningObject'?: {
@@ -4950,8 +5087,6 @@ declare class CreateVolumeEndpoint extends PostApiEndpoint<CreateVolumeRequest,
4950
5087
  body: (payload: CreateVolumeRequest) => string;
4951
5088
  }
4952
5089
 
4953
- /** WARNING: Autogenerated Code - do not modify! */
4954
-
4955
5090
  declare type GetVolumeResult = {
4956
5091
  /** Identifier for the volume Example: "example-volume" */
4957
5092
  'id': string;
@@ -4959,9 +5094,8 @@ declare type GetVolumeResult = {
4959
5094
  'name': string;
4960
5095
  /** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account, */
4961
5096
  'spec': {
4962
- /** The size of the storage, in megabytes. Configurable sizes depend on the storage class. Example: 4096 */
4963
- 'storageSize': number;
4964
5097
  'storageClassName'?: 'ssd' | 'hdd';
5098
+ 'storageSize': number;
4965
5099
  };
4966
5100
  /** The object to attach this volume to. */
4967
5101
  'owningObject'?: {
@@ -4994,8 +5128,6 @@ declare class GetVolumeEndpoint extends GetApiEndpoint<GetVolumeRequest, GetVolu
4994
5128
  body: () => undefined;
4995
5129
  }
4996
5130
 
4997
- /** WARNING: Autogenerated Code - do not modify! */
4998
-
4999
5131
  declare type UpdateVolumeResult = any;
5000
5132
  declare type UpdateVolumeCall = (opts: UpdateVolumeRequest) => Promise<ApiCallResponse<UpdateVolumeResult>>;
5001
5133
  declare type UpdateVolumeRequest = {
@@ -5009,7 +5141,7 @@ declare type UpdateVolumeParameters = {
5009
5141
  };
5010
5142
  declare type UpdateVolumeData = {
5011
5143
  /** Array of mounts, containerMountPaths must be unique */
5012
- 'mounts': {
5144
+ 'mounts'?: {
5013
5145
  /** Optionally specify the path inside this volume that should be mounted */
5014
5146
  'volumeMountPath'?: string;
5015
5147
  /** Specify the path into which the volume should be mounted Example: "/container" */
@@ -5017,7 +5149,7 @@ declare type UpdateVolumeData = {
5017
5149
  }[];
5018
5150
  'spec'?: {
5019
5151
  /** The size of the storage, in megabytes. Configurable sizes depend on the storage class. Example: 4096 */
5020
- 'storageSize': number;
5152
+ 'storageSize'?: number;
5021
5153
  };
5022
5154
  };
5023
5155
  /** Update volume mounts and storage size */
@@ -5028,8 +5160,6 @@ declare class UpdateVolumeEndpoint extends PostApiEndpoint<UpdateVolumeRequest,
5028
5160
  body: (payload: UpdateVolumeRequest) => string;
5029
5161
  }
5030
5162
 
5031
- /** WARNING: Autogenerated Code - do not modify! */
5032
-
5033
5163
  declare type DeleteVolumeResult = any;
5034
5164
  declare type DeleteVolumeCall = (opts: DeleteVolumeRequest) => Promise<ApiCallResponse<DeleteVolumeResult>>;
5035
5165
  declare type DeleteVolumeRequest = {
@@ -5048,8 +5178,6 @@ declare class DeleteVolumeEndpoint extends DeleteApiEndpoint<DeleteVolumeRequest
5048
5178
  body: () => undefined;
5049
5179
  }
5050
5180
 
5051
- /** WARNING: Autogenerated Code - do not modify! */
5052
-
5053
5181
  declare type AttachVolumeResult = any;
5054
5182
  declare type AttachVolumeCall = (opts: AttachVolumeRequest) => Promise<ApiCallResponse<AttachVolumeResult>>;
5055
5183
  declare type AttachVolumeRequest = {
@@ -5078,8 +5206,6 @@ declare class AttachVolumeEndpoint extends PostApiEndpoint<AttachVolumeRequest,
5078
5206
  body: (payload: AttachVolumeRequest) => string;
5079
5207
  }
5080
5208
 
5081
- /** WARNING: Autogenerated Code - do not modify! */
5082
-
5083
5209
  declare type DetachVolumeResult = any;
5084
5210
  declare type DetachVolumeCall = (opts: DetachVolumeRequest) => Promise<ApiCallResponse<DetachVolumeResult>>;
5085
5211
  declare type DetachVolumeRequest = {
@@ -5091,15 +5217,7 @@ declare type DetachVolumeParameters = {
5091
5217
  /** ID of the volume */
5092
5218
  'volumeId': string;
5093
5219
  };
5094
- declare type DetachVolumeData = {
5095
- /** The object to attach this volume to. */
5096
- 'owningObject': {
5097
- /** The internal id of object to attach this volume to. Example: "example-service" */
5098
- 'id': string;
5099
- /** The type of the object to attach this volume to. Example: "service" */
5100
- 'type': 'service';
5101
- };
5102
- };
5220
+ declare type DetachVolumeData = any;
5103
5221
  /** Detach a volume */
5104
5222
  declare class DetachVolumeEndpoint extends PostApiEndpoint<DetachVolumeRequest, DetachVolumeResult> {
5105
5223
  description: string;
@@ -5108,8 +5226,6 @@ declare class DetachVolumeEndpoint extends PostApiEndpoint<DetachVolumeRequest,
5108
5226
  body: (payload: DetachVolumeRequest) => string;
5109
5227
  }
5110
5228
 
5111
- /** WARNING: Autogenerated Code - do not modify! */
5112
-
5113
5229
  declare type GetServiceBuildargumentsResult = any;
5114
5230
  declare type GetServiceBuildargumentsCall = (opts: GetServiceBuildargumentsRequest) => Promise<ApiCallResponse<GetServiceBuildargumentsResult>>;
5115
5231
  declare type GetServiceBuildargumentsRequest = {
@@ -5133,8 +5249,6 @@ declare class GetServiceBuildargumentsEndpoint extends GetApiEndpoint<GetService
5133
5249
  body: () => undefined;
5134
5250
  }
5135
5251
 
5136
- /** WARNING: Autogenerated Code - do not modify! */
5137
-
5138
5252
  declare type UpdateServiceBuildargumentsResult = any;
5139
5253
  declare type UpdateServiceBuildargumentsCall = (opts: UpdateServiceBuildargumentsRequest) => Promise<ApiCallResponse<UpdateServiceBuildargumentsResult>>;
5140
5254
  declare type UpdateServiceBuildargumentsRequest = {
@@ -5147,7 +5261,7 @@ declare type UpdateServiceBuildargumentsParameters = {
5147
5261
  'serviceId': string;
5148
5262
  };
5149
5263
  declare type UpdateServiceBuildargumentsData = {
5150
- /** An object containing the all of the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
5264
+ /** An object containing the all of the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
5151
5265
  'buildParameters': any;
5152
5266
  };
5153
5267
  /** Sets the build arguments for the given service. */
@@ -5158,8 +5272,6 @@ declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<Update
5158
5272
  body: (payload: UpdateServiceBuildargumentsRequest) => string;
5159
5273
  }
5160
5274
 
5161
- /** WARNING: Autogenerated Code - do not modify! */
5162
-
5163
5275
  declare type GetServiceBuildargumentdetailsResult = {
5164
5276
  /** A stored secret and details about it and its value. This can have the name of any saved secret. */
5165
5277
  'MY_VARIABLE_NAME'?: {
@@ -5201,8 +5313,6 @@ declare class GetServiceBuildargumentdetailsEndpoint extends GetApiEndpoint<GetS
5201
5313
  body: () => undefined;
5202
5314
  }
5203
5315
 
5204
- /** WARNING: Autogenerated Code - do not modify! */
5205
-
5206
5316
  declare type GetServiceEnvironmentvariablesResult = any;
5207
5317
  declare type GetServiceEnvironmentvariablesCall = (opts: GetServiceEnvironmentvariablesRequest) => Promise<ApiCallResponse<GetServiceEnvironmentvariablesResult>>;
5208
5318
  declare type GetServiceEnvironmentvariablesRequest = {
@@ -5226,8 +5336,6 @@ declare class GetServiceEnvironmentvariablesEndpoint extends GetApiEndpoint<GetS
5226
5336
  body: () => undefined;
5227
5337
  }
5228
5338
 
5229
- /** WARNING: Autogenerated Code - do not modify! */
5230
-
5231
5339
  declare type UpdateServiceEnvironmentvariablesResult = {
5232
5340
  /** True if the operation was successful. Example: true */
5233
5341
  'success': boolean;
@@ -5245,7 +5353,7 @@ declare type UpdateServiceEnvironmentvariablesParameters = {
5245
5353
  'serviceId': string;
5246
5354
  };
5247
5355
  declare type UpdateServiceEnvironmentvariablesData = {
5248
- /** An object containing the all of the environment variables to set for the service Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
5356
+ /** An object containing the all of the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
5249
5357
  'runtimeEnvironment': any;
5250
5358
  };
5251
5359
  /** Sets the environment variables for the given service. */
@@ -5256,8 +5364,6 @@ declare class UpdateServiceEnvironmentvariablesEndpoint extends PostApiEndpoint<
5256
5364
  body: (payload: UpdateServiceEnvironmentvariablesRequest) => string;
5257
5365
  }
5258
5366
 
5259
- /** WARNING: Autogenerated Code - do not modify! */
5260
-
5261
5367
  declare type GetServiceEnvironmentvariabledetailsResult = {
5262
5368
  /** A stored secret and details about it and its value. This can have the name of any saved secret. */
5263
5369
  'MY_VARIABLE_NAME'?: {
@@ -5315,6 +5421,8 @@ declare class ApiClient {
5315
5421
  vcs: ListVcsCall;
5316
5422
  secrets: ListSecretsCall;
5317
5423
  services: ListServicesCall;
5424
+ repos: ListReposCall;
5425
+ branches: ListBranchesCall;
5318
5426
  volumes: ListVolumesCall;
5319
5427
  };
5320
5428
  create: {
@@ -5356,6 +5464,8 @@ declare class ApiClient {
5356
5464
  environmentDetails: GetJobEnvironmentdetailsCall;
5357
5465
  deployment: GetJobDeploymentCall;
5358
5466
  containers: GetJobContainersCall;
5467
+ branches: GetJobBranchesCall;
5468
+ pullRequests: GetJobPullrequestsCall;
5359
5469
  };
5360
5470
  registryCredentials: GetRegistrycredentialsCall;
5361
5471
  domain: GetDomainCall;
@@ -5370,6 +5480,8 @@ declare class ApiClient {
5370
5480
  healthChecks: GetServiceHealthchecksCall;
5371
5481
  builds: GetServiceBuildsCall;
5372
5482
  containers: GetServiceContainersCall;
5483
+ branches: GetServiceBranchesCall;
5484
+ pullRequests: GetServicePullrequestsCall;
5373
5485
  buildArguments: GetServiceBuildargumentsCall;
5374
5486
  buildArgumentDetails: GetServiceBuildargumentdetailsCall;
5375
5487
  environmentVariables: GetServiceEnvironmentvariablesCall;
@@ -5404,6 +5516,7 @@ declare class ApiClient {
5404
5516
  settings: UpdateJobSettingsCall;
5405
5517
  healthChecks: UpdateJobHealthchecksCall;
5406
5518
  buildOptions: UpdateJobBuildoptionsCall;
5519
+ buildSource: UpdateJobBuildsourceCall;
5407
5520
  cmdOverride: UpdateJobCmdoverrideCall;
5408
5521
  buildArguments: UpdateJobBuildargumentsCall;
5409
5522
  environment: UpdateJobEnvironmentCall;
@@ -5416,6 +5529,7 @@ declare class ApiClient {
5416
5529
  deployment: UpdateServiceDeploymentCall;
5417
5530
  ports: UpdateServicePortsCall;
5418
5531
  buildOptions: UpdateServiceBuildoptionsCall;
5532
+ buildSource: UpdateServiceBuildsourceCall;
5419
5533
  cmdOverride: UpdateServiceCmdoverrideCall;
5420
5534
  healthChecks: UpdateServiceHealthchecksCall;
5421
5535
  buildArguments: UpdateServiceBuildargumentsCall;
@@ -5506,6 +5620,8 @@ declare class ApiClient {
5506
5620
  vcs: ListVcsEndpoint;
5507
5621
  secrets: ListSecretsEndpoint;
5508
5622
  services: ListServicesEndpoint;
5623
+ repos: ListReposEndpoint;
5624
+ branches: ListBranchesEndpoint;
5509
5625
  volumes: ListVolumesEndpoint;
5510
5626
  };
5511
5627
  create: {
@@ -5547,6 +5663,8 @@ declare class ApiClient {
5547
5663
  environmentDetails: GetJobEnvironmentdetailsEndpoint;
5548
5664
  deployment: GetJobDeploymentEndpoint;
5549
5665
  containers: GetJobContainersEndpoint;
5666
+ branches: GetJobBranchesEndpoint;
5667
+ pullRequests: GetJobPullrequestsEndpoint;
5550
5668
  };
5551
5669
  registryCredentials: GetRegistrycredentialsEndpoint;
5552
5670
  domain: GetDomainEndpoint;
@@ -5561,6 +5679,8 @@ declare class ApiClient {
5561
5679
  healthChecks: GetServiceHealthchecksEndpoint;
5562
5680
  builds: GetServiceBuildsEndpoint;
5563
5681
  containers: GetServiceContainersEndpoint;
5682
+ branches: GetServiceBranchesEndpoint;
5683
+ pullRequests: GetServicePullrequestsEndpoint;
5564
5684
  buildArguments: GetServiceBuildargumentsEndpoint;
5565
5685
  buildArgumentDetails: GetServiceBuildargumentdetailsEndpoint;
5566
5686
  environmentVariables: GetServiceEnvironmentvariablesEndpoint;
@@ -5595,6 +5715,7 @@ declare class ApiClient {
5595
5715
  settings: UpdateJobSettingsEndpoint;
5596
5716
  healthChecks: UpdateJobHealthchecksEndpoint;
5597
5717
  buildOptions: UpdateJobBuildoptionsEndpoint;
5718
+ buildSource: UpdateJobBuildsourceEndpoint;
5598
5719
  cmdOverride: UpdateJobCmdoverrideEndpoint;
5599
5720
  buildArguments: UpdateJobBuildargumentsEndpoint;
5600
5721
  environment: UpdateJobEnvironmentEndpoint;
@@ -5607,6 +5728,7 @@ declare class ApiClient {
5607
5728
  deployment: UpdateServiceDeploymentEndpoint;
5608
5729
  ports: UpdateServicePortsEndpoint;
5609
5730
  buildOptions: UpdateServiceBuildoptionsEndpoint;
5731
+ buildSource: UpdateServiceBuildsourceEndpoint;
5610
5732
  cmdOverride: UpdateServiceCmdoverrideEndpoint;
5611
5733
  healthChecks: UpdateServiceHealthchecksEndpoint;
5612
5734
  buildArguments: UpdateServiceBuildargumentsEndpoint;
@@ -5694,4 +5816,4 @@ declare type ApiClientOpts = {
5694
5816
  customUserAgent?: string;
5695
5817
  };
5696
5818
 
5697
- export { AbortAddonBackupEndpoint, AbortAddonRestoreEndpoint, AbortJobBuildEndpoint, AbortJobRunEndpoint, AbortServiceBuildEndpoint, AddDomainSubdomainEndpoint, AddRegistrycredentialsEndpoint, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceEndpoint, AttachVolumeEndpoint, BackupAddonEndpoint, CreateAddonEndpoint, CreateDomainEndpoint, CreateJobCronEndpoint, CreateJobManualEndpoint, CreateProjectEndpoint, CreateSecretEndpoint, CreateServiceBuildEndpoint, CreateServiceCombinedEndpoint, CreateServiceDeploymentEndpoint, CreateVolumeEndpoint, DeleteAddonEndpoint, DeleteApiEndpoint, DeleteBackupEndpoint, DeleteDomainEndpoint, DeleteJobEndpoint, DeleteProjectEndpoint, DeleteRegistrycredentialsEndpoint, DeleteSecretEndpoint, DeleteSecretlinkEndpoint, DeleteServiceEndpoint, DeleteSubdomainEndpoint, DeleteVolumeEndpoint, DetachVolumeEndpoint, GetAddonBackupDownloadEndpoint, GetAddonBackupEndpoint, GetAddonBackupsEndpoint, GetAddonContainersEndpoint, GetAddonCredentialsEndpoint, GetAddonEndpoint, GetAddonTypesEndpoint, GetAddonVersionEndpoint, GetApiEndpoint, GetDnsidEndpoint, GetDomainEndpoint, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentsEndpoint, GetJobBuildsEndpoint, GetJobContainersEndpoint, GetJobDeploymentEndpoint, GetJobEndpoint, GetJobEnvironmentEndpoint, GetJobEnvironmentdetailsEndpoint, GetJobHealthchecksEndpoint, GetJobRunEndpoint, GetJobRunsEndpoint, GetProjectEndpoint, GetRegistrycredentialsEndpoint, GetSecretEndpoint, GetSecretdetailsEndpoint, GetSecretlinkEndpoint, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentsEndpoint, GetServiceBuildsEndpoint, GetServiceContainersEndpoint, GetServiceDeploymentEndpoint, GetServiceEndpoint, GetServiceEnvironmentvariabledetailsEndpoint, GetServiceEnvironmentvariablesEndpoint, GetServiceHealthchecksEndpoint, GetServicePortsEndpoint, GetSubdomainEndpoint, GetVolumeEndpoint, ImportAddonBackupEndpoint, ListAddonsEndpoint, ListDomainsEndpoint, ListJobsEndpoint, ListPlansEndpoint, ListProjectsEndpoint, ListRegionsEndpoint, ListRegistrycredentialsEndpoint, ListSecretsEndpoint, ListServicesEndpoint, ListVcsEndpoint, ListVolumesEndpoint, NorthflankPortForwarder, PauseAddonEndpoint, PauseServiceEndpoint, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, RestartAddonEndpoint, RestartServiceEndpoint, RestoreAddonBackupEndpoint, ResumeAddonEndpoint, ResumeServiceEndpoint, ScaleAddonEndpoint, ScaleServiceEndpoint, StartJobBuildEndpoint, StartJobRunEndpoint, StartServiceBuildEndpoint, UnassignSubdomainEndpoint, UpdateAddonNetworksettingsEndpoint, UpdateAddonSecurityEndpoint, UpdateAddonVersionEndpoint, UpdateJobBuildargumentsEndpoint, UpdateJobBuildoptionsEndpoint, UpdateJobCmdoverrideEndpoint, UpdateJobDeploymentEndpoint, UpdateJobEnvironmentEndpoint, UpdateJobHealthchecksEndpoint, UpdateJobSettingsEndpoint, UpdateRegistrycredentialsEndpoint, UpdateSecretEndpoint, UpdateSecretlinkEndpoint, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildoptionsEndpoint, UpdateServiceCmdoverrideEndpoint, UpdateServiceDeploymentEndpoint, UpdateServiceEnvironmentvariablesEndpoint, UpdateServiceHealthchecksEndpoint, UpdateServicePortsEndpoint, UpdateVolumeEndpoint, VerifyDomainEndpoint, VerifySubdomainEndpoint };
5819
+ export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonParameters, GetAddonRequest, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobEnvironmentCall, GetJobEnvironmentEndpoint, GetJobEnvironmentOptions, GetJobEnvironmentParameters, GetJobEnvironmentRequest, GetJobEnvironmentResult, GetJobEnvironmentdetailsCall, GetJobEnvironmentdetailsEndpoint, GetJobEnvironmentdetailsParameters, GetJobEnvironmentdetailsRequest, GetJobEnvironmentdetailsResult, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceEnvironmentvariabledetailsCall, GetServiceEnvironmentvariabledetailsEndpoint, GetServiceEnvironmentvariabledetailsParameters, GetServiceEnvironmentvariabledetailsRequest, GetServiceEnvironmentvariabledetailsResult, GetServiceEnvironmentvariablesCall, GetServiceEnvironmentvariablesEndpoint, GetServiceEnvironmentvariablesOptions, GetServiceEnvironmentvariablesParameters, GetServiceEnvironmentvariablesRequest, GetServiceEnvironmentvariablesResult, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, NorthflankPortForwarder, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobCmdoverrideCall, UpdateJobCmdoverrideData, UpdateJobCmdoverrideEndpoint, UpdateJobCmdoverrideParameters, UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobEnvironmentCall, UpdateJobEnvironmentData, UpdateJobEnvironmentEndpoint, UpdateJobEnvironmentParameters, UpdateJobEnvironmentRequest, UpdateJobEnvironmentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceCmdoverrideCall, UpdateServiceCmdoverrideData, UpdateServiceCmdoverrideEndpoint, UpdateServiceCmdoverrideParameters, UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceEnvironmentvariablesCall, UpdateServiceEnvironmentvariablesData, UpdateServiceEnvironmentvariablesEndpoint, UpdateServiceEnvironmentvariablesParameters, UpdateServiceEnvironmentvariablesRequest, UpdateServiceEnvironmentvariablesResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };