@northflank/js-client 0.7.11 → 0.7.12

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.
@@ -192,6 +192,8 @@ type ListServicesResult = {
192
192
  'projectId': string;
193
193
  /** Service name Example: "Example Service" */
194
194
  'name': string;
195
+ /** An array of previously defined tags to help identify and group the resource. */
196
+ 'tags': string[];
195
197
  /** A short description of the service Example: "This is the service description" */
196
198
  'description'?: string;
197
199
  /** Type of the service (combined, build or deployment) Example: "combined" */
@@ -255,6 +257,8 @@ type ListAddonsResult = {
255
257
  'name': string;
256
258
  /** Full identifier for the addon. Example: "/example-user/default-project/example-job" */
257
259
  'appId': string;
260
+ /** An array of previously defined tags to help identify and group the resource. */
261
+ 'tags': string[];
258
262
  /** A short description of the addon. Example: "This is the addon description" */
259
263
  'description'?: string;
260
264
  /** Details about the addon's specifications. */
@@ -500,6 +504,30 @@ type JobLogsRangeRequestData = LogsRequestCommon & {
500
504
  containerName?: string | 'all';
501
505
  runId?: undefined | string;
502
506
  buildId?: never;
507
+ backupId?: never;
508
+ restoreId?: never;
509
+ isBuild?: false;
510
+ };
511
+ type AddonBackupLogsRangeRequestData = LogsRequestCommon & {
512
+ direction?: never;
513
+ endTime?: never;
514
+ duration?: never;
515
+ containerName?: never;
516
+ runId?: never;
517
+ buildId?: never;
518
+ backupId?: string;
519
+ restoreId?: never;
520
+ isBuild?: false;
521
+ };
522
+ type AddonRestoresLogsRangeRequestData = LogsRequestCommon & {
523
+ direction?: never;
524
+ endTime?: never;
525
+ duration?: never;
526
+ containerName?: never;
527
+ runId?: never;
528
+ buildId?: never;
529
+ backupId?: string;
530
+ restoreId?: string;
503
531
  isBuild?: false;
504
532
  };
505
533
  type LogsRangeRequestData = JobLogsRangeRequestData & {
@@ -512,6 +540,8 @@ type BuildLogsRangeRequestData = LogsRequestCommon & {
512
540
  containerName?: never;
513
541
  runId?: never;
514
542
  buildId?: string;
543
+ backupId?: never;
544
+ restoreId?: never;
515
545
  isBuild?: true;
516
546
  };
517
547
  type JobLogsTailRequestData = LogsRequestCommon & {
@@ -521,6 +551,30 @@ type JobLogsTailRequestData = LogsRequestCommon & {
521
551
  containerName?: string | 'all';
522
552
  runId?: undefined | string;
523
553
  buildId?: never;
554
+ backupId?: never;
555
+ restoreId?: never;
556
+ isBuild?: false;
557
+ };
558
+ type AddonBackupLogsTailRequestData = LogsRequestCommon & {
559
+ direction?: never;
560
+ endTime?: never;
561
+ duration?: never;
562
+ containerName?: never;
563
+ runId?: never;
564
+ buildId?: never;
565
+ backupId?: string;
566
+ restoreId?: never;
567
+ isBuild?: false;
568
+ };
569
+ type AddonRestoresLogsTailRequestData = LogsRequestCommon & {
570
+ direction?: never;
571
+ endTime?: never;
572
+ duration?: never;
573
+ containerName?: never;
574
+ runId?: never;
575
+ buildId?: never;
576
+ backupId?: string;
577
+ restoreId?: string;
524
578
  isBuild?: false;
525
579
  };
526
580
  type LogsTailRequestData = JobLogsTailRequestData & {
@@ -533,6 +587,8 @@ type BuildLogsTailRequestData = LogsRequestCommon & {
533
587
  containerName?: never;
534
588
  runId?: never;
535
589
  buildId?: string;
590
+ backupId?: never;
591
+ restoreId?: never;
536
592
  isBuild?: true;
537
593
  };
538
594
  type LogsRequestDataTextIncl = {
@@ -562,15 +618,15 @@ type LogsRequestDataRegexExcl = {
562
618
  type LogRequestTextFilters = LogsRequestDataTextIncl | LogsRequestDataTextExcl | LogsRequestDataRegexIncl | LogsRequestDataRegexExcl;
563
619
  type LogsConfigCommon = {
564
620
  projectId: string;
565
- entityType: 'service' | 'job' | 'addon' | 'build';
621
+ entityType: 'service' | 'job' | 'addon' | 'build' | 'addonBackup' | 'addonRestore';
566
622
  entityId: string;
567
623
  };
568
624
  type LogsRangeConfig = LogsConfigCommon & {
569
625
  queryType: 'range';
570
- } & (LogsRangeRequestData | BuildLogsRangeRequestData | JobLogsRangeRequestData);
626
+ } & (LogsRangeRequestData | BuildLogsRangeRequestData | JobLogsRangeRequestData | AddonBackupLogsRangeRequestData | AddonRestoresLogsRangeRequestData);
571
627
  type LogsTailConfig = LogsConfigCommon & {
572
628
  queryType: 'tail';
573
- } & (LogsTailRequestData | BuildLogsTailRequestData | JobLogsTailRequestData);
629
+ } & (LogsTailRequestData | BuildLogsTailRequestData | JobLogsTailRequestData | AddonBackupLogsTailRequestData | AddonRestoresLogsTailRequestData);
574
630
  type LogLine = {
575
631
  containerId: string;
576
632
  log: any;
@@ -668,6 +724,40 @@ type TailAddonLogsCall = (opts: {
668
724
  };
669
725
  options?: LogsTailRequestData;
670
726
  }) => Promise<LogsClient>;
727
+ type GetAddonBackupLogsCall = (opts: {
728
+ parameters: {
729
+ projectId: string;
730
+ addonId: string;
731
+ backupId: string;
732
+ };
733
+ options?: LogsRangeRequestData;
734
+ }) => Promise<ApiCallLogRangeResponse>;
735
+ type TailAddonBackupLogsCall = (opts: {
736
+ parameters: {
737
+ projectId: string;
738
+ addonId: string;
739
+ backupId: string;
740
+ };
741
+ options?: LogsTailRequestData;
742
+ }) => Promise<LogsClient>;
743
+ type GetAddonRestoresLogsCall = (opts: {
744
+ parameters: {
745
+ projectId: string;
746
+ addonId: string;
747
+ backupId: string;
748
+ restoreId: string;
749
+ };
750
+ options?: LogsRangeRequestData;
751
+ }) => Promise<ApiCallLogRangeResponse>;
752
+ type TailAddonRestoresLogsCall = (opts: {
753
+ parameters: {
754
+ projectId: string;
755
+ addonId: string;
756
+ backupId: string;
757
+ restoreId: string;
758
+ };
759
+ options?: LogsTailRequestData;
760
+ }) => Promise<LogsClient>;
671
761
  declare class NorthflankLogFetch {
672
762
  private readonly contextProvider;
673
763
  constructor(contextProvider: ApiClientContextProvider);
@@ -711,10 +801,29 @@ declare class NorthflankLogFetch {
711
801
  };
712
802
  options?: LogsRangeRequestData | undefined;
713
803
  }) => Promise<ApiCallLogRangeResponse>;
804
+ /** Fetches addon backup logs */
805
+ getAddonBackupLogs: (opts: {
806
+ parameters: {
807
+ projectId: string;
808
+ addonId: string;
809
+ backupId: string;
810
+ };
811
+ options?: Omit<AddonBackupLogsRangeRequestData, "backupId"> | undefined;
812
+ }) => Promise<ApiCallLogRangeResponse>;
813
+ /** Fetches addon restore logs */
814
+ getAddonRestoresLogs: (opts: {
815
+ parameters: {
816
+ projectId: string;
817
+ addonId: string;
818
+ backupId: string;
819
+ restoreId: string;
820
+ };
821
+ options?: Omit<AddonRestoresLogsRangeRequestData, "backupId" | "restoreId"> | undefined;
822
+ }) => Promise<ApiCallLogRangeResponse>;
714
823
  logRange: (parameters: {
715
824
  projectId: string;
716
825
  entityId: string;
717
- }, data: LogsRangeRequestData | BuildLogsRangeRequestData | JobLogsRangeRequestData, entityType: 'service' | 'job' | 'addon') => Promise<ApiCallLogRangeResponse>;
826
+ }, data: LogsRangeRequestData | BuildLogsRangeRequestData | JobLogsRangeRequestData | AddonBackupLogsRangeRequestData | AddonRestoresLogsRangeRequestData, entityType: LogsConfigCommon['entityType']) => Promise<ApiCallLogRangeResponse>;
718
827
  tailServiceLogs: (opts: {
719
828
  parameters: {
720
829
  projectId: string;
@@ -754,11 +863,30 @@ declare class NorthflankLogFetch {
754
863
  };
755
864
  options?: LogsTailRequestData | undefined;
756
865
  }) => Promise<LogsClient>;
866
+ /** Starts a log tail on an addon backup. */
867
+ tailAddonBackupLogs: (opts: {
868
+ parameters: {
869
+ projectId: string;
870
+ addonId: string;
871
+ backupId: string;
872
+ };
873
+ options?: Omit<AddonBackupLogsTailRequestData, "backupId"> | undefined;
874
+ }) => Promise<LogsClient>;
875
+ /** Starts a log tail on an addon restore. */
876
+ tailAddonRestoresLogs: (opts: {
877
+ parameters: {
878
+ projectId: string;
879
+ addonId: string;
880
+ backupId: string;
881
+ restoreId: string;
882
+ };
883
+ options?: Omit<AddonRestoresLogsTailRequestData, "backupId" | "restoreId"> | undefined;
884
+ }) => Promise<LogsClient>;
757
885
  /** Starts a log tail. */
758
886
  logTail: (parameters: {
759
887
  projectId: string;
760
888
  entityId: string;
761
- }, data: LogsTailRequestData | BuildLogsTailRequestData | JobLogsTailRequestData, entityType: 'service' | 'job' | 'addon') => Promise<LogsClient>;
889
+ }, data: LogsTailRequestData | BuildLogsTailRequestData | JobLogsTailRequestData | AddonBackupLogsTailRequestData | AddonRestoresLogsTailRequestData, entityType: LogsConfigCommon['entityType']) => Promise<LogsClient>;
762
890
  private assertStartedWithNodejs;
763
891
  }
764
892
 
@@ -1243,7 +1371,7 @@ declare class GetInvoiceDetailsEndpoint extends GetApiEndpoint<GetInvoiceDetails
1243
1371
  body: () => undefined;
1244
1372
  }
1245
1373
 
1246
- type ListProvidersResult = {
1374
+ type ListCloudProvidersResult = {
1247
1375
  /** An array of supported cloud providers */
1248
1376
  'providers': {
1249
1377
  /** The ID of the provider. Example: "aws" */
@@ -1252,12 +1380,8 @@ type ListProvidersResult = {
1252
1380
  'name': string;
1253
1381
  /** The kubernetes engine used. Example: "Elastic Kubernetes Service (EKS)" */
1254
1382
  'engine': string;
1255
- /** An array of available regions */
1256
- 'regions': string[];
1257
1383
  /** An array of available kubernetes versions */
1258
1384
  'kubernetesVersions': string[];
1259
- /** An array of supported node types */
1260
- 'nodeTypes': string[];
1261
1385
  /** An array of supported node disk sizes */
1262
1386
  'diskSizes': number[];
1263
1387
  /** An object with feature flags to indicate (un)supported features */
@@ -1269,18 +1393,18 @@ type ListProvidersResult = {
1269
1393
  };
1270
1394
  }[];
1271
1395
  };
1272
- type ListProvidersCall = (opts: ListProvidersRequest) => Promise<ApiCallResponse<ListProvidersResult>>;
1273
- type ListProvidersRequest = {};
1396
+ type ListCloudProvidersCall = (opts: ListCloudProvidersRequest) => Promise<ApiCallResponse<ListCloudProvidersResult>>;
1397
+ type ListCloudProvidersRequest = {};
1274
1398
  /** Lists supported cloud providers */
1275
- declare class ListProvidersEndpoint extends GetApiEndpoint<ListProvidersRequest, ListProvidersResult> {
1399
+ declare class ListCloudProvidersEndpoint extends GetApiEndpoint<ListCloudProvidersRequest, ListCloudProvidersResult> {
1276
1400
  description: string;
1277
1401
  withAuth: boolean;
1278
1402
  requiredPermissions: string;
1279
- endpointUrl: (opts: ListProvidersRequest) => string;
1403
+ endpointUrl: (opts: ListCloudProvidersRequest) => string;
1280
1404
  body: () => undefined;
1281
1405
  }
1282
1406
 
1283
- type ListClustersResult = {
1407
+ type ListCloudClustersResult = {
1284
1408
  /** An array of clusters. */
1285
1409
  'clusters': {
1286
1410
  /** Identifier for the cluster. Example: "gcp-cluster-1" */
@@ -1332,11 +1456,11 @@ type ListClustersResult = {
1332
1456
  'deletionRequested': boolean;
1333
1457
  }[];
1334
1458
  };
1335
- type ListClustersCall = (opts: ListClustersRequest) => Promise<ApiCallResponse<ListClustersResult>>;
1336
- type ListClustersRequest = {
1337
- options?: ListClustersOptions;
1459
+ type ListCloudClustersCall = (opts: ListCloudClustersRequest) => Promise<ApiCallResponse<ListCloudClustersResult>>;
1460
+ type ListCloudClustersRequest = {
1461
+ options?: ListCloudClustersOptions;
1338
1462
  };
1339
- type ListClustersOptions = {
1463
+ type ListCloudClustersOptions = {
1340
1464
  /** The number of results to display per request. Maximum of 100 results per page. */
1341
1465
  'per_page'?: number;
1342
1466
  /** The page number to access. */
@@ -1345,15 +1469,15 @@ type ListClustersOptions = {
1345
1469
  'cursor'?: string;
1346
1470
  };
1347
1471
  /** Lists clusters for the authenticated user or team. */
1348
- declare class ListClustersEndpoint extends GetApiEndpoint<ListClustersRequest, ListClustersResult> {
1472
+ declare class ListCloudClustersEndpoint extends GetApiEndpoint<ListCloudClustersRequest, ListCloudClustersResult> {
1349
1473
  description: string;
1350
1474
  withAuth: boolean;
1351
1475
  requiredPermissions: string;
1352
- endpointUrl: (opts: ListClustersRequest) => string;
1476
+ endpointUrl: (opts: ListCloudClustersRequest) => string;
1353
1477
  body: () => undefined;
1354
1478
  }
1355
1479
 
1356
- type CreateClusterResult = {
1480
+ type CreateCloudClusterResult = {
1357
1481
  /** Identifier for the cluster. Example: "gcp-cluster-1" */
1358
1482
  'id': string;
1359
1483
  /** The name of the cluster. Example: "GCP Cluster 1" */
@@ -1402,11 +1526,11 @@ type CreateClusterResult = {
1402
1526
  /** Indicates if provider resource deletion has been requested by the user. */
1403
1527
  'deletionRequested': boolean;
1404
1528
  };
1405
- type CreateClusterCall = (opts: CreateClusterRequest) => Promise<ApiCallResponse<CreateClusterResult>>;
1406
- type CreateClusterRequest = {
1407
- data: CreateClusterData;
1529
+ type CreateCloudClusterCall = (opts: CreateCloudClusterRequest) => Promise<ApiCallResponse<CreateCloudClusterResult>>;
1530
+ type CreateCloudClusterRequest = {
1531
+ data: CreateCloudClusterData;
1408
1532
  };
1409
- type CreateClusterData = {
1533
+ type CreateCloudClusterData = {
1410
1534
  /** The name of the cluster. Example: "GCP Cluster 1" */
1411
1535
  'name': string;
1412
1536
  /** The description of the cluster. Example: "This is a new cluster." */
@@ -1460,7 +1584,7 @@ type CreateClusterData = {
1460
1584
  'mode'?: 'paas' | 'internal' | 'build-cluster';
1461
1585
  /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
1462
1586
  'plan'?: string;
1463
- /** Cluster to use for scheduling builds Example: "build-cluster" */
1587
+ /** Cluster to use for scheduling builds */
1464
1588
  'clusterId'?: string;
1465
1589
  };
1466
1590
  'registry'?: {
@@ -1470,12 +1594,13 @@ type CreateClusterData = {
1470
1594
  };
1471
1595
  'logging'?: {
1472
1596
  'mode'?: 'paas' | 'loki';
1597
+ /** Required data for loki setting. */
1473
1598
  'loki'?: {
1474
1599
  's3BucketName': string;
1475
1600
  's3AccessKey': string;
1476
1601
  's3SecretKey': string;
1477
1602
  's3Region': string;
1478
- } | any;
1603
+ };
1479
1604
  };
1480
1605
  };
1481
1606
  /** GCP specific data. Required when `provider` is `gcp`. */
@@ -1485,15 +1610,15 @@ type CreateClusterData = {
1485
1610
  };
1486
1611
  };
1487
1612
  /** Creates a new cluster. */
1488
- declare class CreateClusterEndpoint extends PostApiEndpoint<CreateClusterRequest, CreateClusterResult> {
1613
+ declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClusterRequest, CreateCloudClusterResult> {
1489
1614
  description: string;
1490
1615
  withAuth: boolean;
1491
1616
  requiredPermissions: string;
1492
- endpointUrl: (opts: CreateClusterRequest) => string;
1493
- body: (payload: CreateClusterRequest) => string;
1617
+ endpointUrl: (opts: CreateCloudClusterRequest) => string;
1618
+ body: (payload: CreateCloudClusterRequest) => string;
1494
1619
  }
1495
1620
 
1496
- type GetClusterResult = {
1621
+ type GetCloudClusterResult = {
1497
1622
  /** Identifier for the cluster. Example: "gcp-cluster-1" */
1498
1623
  'id': string;
1499
1624
  /** The name of the cluster. Example: "GCP Cluster 1" */
@@ -1542,23 +1667,23 @@ type GetClusterResult = {
1542
1667
  /** Indicates if provider resource deletion has been requested by the user. */
1543
1668
  'deletionRequested': boolean;
1544
1669
  };
1545
- type GetClusterCall = (opts: GetClusterRequest) => Promise<ApiCallResponse<GetClusterResult>>;
1546
- type GetClusterRequest = {
1547
- parameters: GetClusterParameters;
1670
+ type GetCloudClusterCall = (opts: GetCloudClusterRequest) => Promise<ApiCallResponse<GetCloudClusterResult>>;
1671
+ type GetCloudClusterRequest = {
1672
+ parameters: GetCloudClusterParameters;
1548
1673
  };
1549
- type GetClusterParameters = {
1674
+ type GetCloudClusterParameters = {
1550
1675
  /** ID of the cluster */ 'clusterId': string;
1551
1676
  };
1552
1677
  /** Get information about the given cluster */
1553
- declare class GetClusterEndpoint extends GetApiEndpoint<GetClusterRequest, GetClusterResult> {
1678
+ declare class GetCloudClusterEndpoint extends GetApiEndpoint<GetCloudClusterRequest, GetCloudClusterResult> {
1554
1679
  description: string;
1555
1680
  withAuth: boolean;
1556
1681
  requiredPermissions: string;
1557
- endpointUrl: (opts: GetClusterRequest) => string;
1682
+ endpointUrl: (opts: GetCloudClusterRequest) => string;
1558
1683
  body: () => undefined;
1559
1684
  }
1560
1685
 
1561
- type UpdateClusterResult = {
1686
+ type UpdateCloudClusterResult = {
1562
1687
  /** Identifier for the cluster. Example: "gcp-cluster-1" */
1563
1688
  'id': string;
1564
1689
  /** The name of the cluster. Example: "GCP Cluster 1" */
@@ -1607,15 +1732,15 @@ type UpdateClusterResult = {
1607
1732
  /** Indicates if provider resource deletion has been requested by the user. */
1608
1733
  'deletionRequested': boolean;
1609
1734
  };
1610
- type UpdateClusterCall = (opts: UpdateClusterRequest) => Promise<ApiCallResponse<UpdateClusterResult>>;
1611
- type UpdateClusterRequest = {
1612
- parameters: UpdateClusterParameters;
1613
- data: UpdateClusterData;
1735
+ type UpdateCloudClusterCall = (opts: UpdateCloudClusterRequest) => Promise<ApiCallResponse<UpdateCloudClusterResult>>;
1736
+ type UpdateCloudClusterRequest = {
1737
+ parameters: UpdateCloudClusterParameters;
1738
+ data: UpdateCloudClusterData;
1614
1739
  };
1615
- type UpdateClusterParameters = {
1740
+ type UpdateCloudClusterParameters = {
1616
1741
  /** ID of the cluster */ 'clusterId': string;
1617
1742
  };
1618
- type UpdateClusterData = {
1743
+ type UpdateCloudClusterData = {
1619
1744
  /** The description of the cluster. Example: "This is an updated description." */
1620
1745
  'description'?: string;
1621
1746
  'nodePools'?: {
@@ -1649,7 +1774,7 @@ type UpdateClusterData = {
1649
1774
  'mode'?: 'paas' | 'internal' | 'build-cluster';
1650
1775
  /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
1651
1776
  'plan'?: string;
1652
- /** Cluster to use for scheduling builds Example: "build-cluster" */
1777
+ /** Cluster to use for scheduling builds */
1653
1778
  'clusterId'?: string;
1654
1779
  };
1655
1780
  'registry'?: {
@@ -1659,42 +1784,168 @@ type UpdateClusterData = {
1659
1784
  };
1660
1785
  'logging'?: {
1661
1786
  'mode'?: 'paas' | 'loki';
1787
+ /** Required data for loki setting. */
1662
1788
  'loki'?: {
1663
1789
  's3BucketName': string;
1664
1790
  's3AccessKey': string;
1665
1791
  's3SecretKey': string;
1666
1792
  's3Region': string;
1667
- } | any;
1793
+ };
1668
1794
  };
1669
1795
  };
1670
1796
  };
1671
1797
  /** Update an existing cluster. */
1672
- declare class UpdateClusterEndpoint extends PostApiEndpoint<UpdateClusterRequest, UpdateClusterResult> {
1798
+ declare class UpdateCloudClusterEndpoint extends PostApiEndpoint<UpdateCloudClusterRequest, UpdateCloudClusterResult> {
1673
1799
  description: string;
1674
1800
  withAuth: boolean;
1675
1801
  requiredPermissions: string;
1676
- endpointUrl: (opts: UpdateClusterRequest) => string;
1677
- body: (payload: UpdateClusterRequest) => string;
1802
+ endpointUrl: (opts: UpdateCloudClusterRequest) => string;
1803
+ body: (payload: UpdateCloudClusterRequest) => string;
1678
1804
  }
1679
1805
 
1680
- type DeleteClusterResult = any | any;
1681
- type DeleteClusterCall = (opts: DeleteClusterRequest) => Promise<ApiCallResponse<DeleteClusterResult>>;
1682
- type DeleteClusterRequest = {
1683
- parameters: DeleteClusterParameters;
1806
+ type DeleteCloudClusterResult = any | any;
1807
+ type DeleteCloudClusterCall = (opts: DeleteCloudClusterRequest) => Promise<ApiCallResponse<DeleteCloudClusterResult>>;
1808
+ type DeleteCloudClusterRequest = {
1809
+ parameters: DeleteCloudClusterParameters;
1684
1810
  };
1685
- type DeleteClusterParameters = {
1811
+ type DeleteCloudClusterParameters = {
1686
1812
  /** ID of the cluster */ 'clusterId': string;
1687
1813
  };
1688
1814
  /** Delete the given cluster. Fails if the cluster has associated projects. */
1689
- declare class DeleteClusterEndpoint extends DeleteApiEndpoint<DeleteClusterRequest, DeleteClusterResult> {
1815
+ declare class DeleteCloudClusterEndpoint extends DeleteApiEndpoint<DeleteCloudClusterRequest, DeleteCloudClusterResult> {
1690
1816
  description: string;
1691
1817
  withAuth: boolean;
1692
1818
  requiredPermissions: string;
1693
- endpointUrl: (opts: DeleteClusterRequest) => string;
1819
+ endpointUrl: (opts: DeleteCloudClusterRequest) => string;
1694
1820
  body: () => undefined;
1695
1821
  }
1696
1822
 
1697
- type ListIntegrationsResult = {
1823
+ type ListCloudDockerregistryResult = {
1824
+ /** An array of integrations. */
1825
+ 'registries': {
1826
+ /** Identifier for the docker registry. Example: "gcp-integration" */
1827
+ 'id': string;
1828
+ /** The name of the docker registry. Example: "GCP integration" */
1829
+ 'name': string;
1830
+ /** A short description of the docker registry. Example: "The docker registry description" */
1831
+ 'description'?: string;
1832
+ /** The cloud provider to which this docker registry belongs to. Example: "aws" */
1833
+ 'provider'?: string;
1834
+ /** The region in which this registry was created. Example: "eu-west-1" */
1835
+ 'region'?: string;
1836
+ /** The time the docker registry was created. Example: "2021-01-20T11:19:53.175Z" */
1837
+ 'createdAt': string;
1838
+ }[];
1839
+ };
1840
+ type ListCloudDockerregistryCall = (opts: ListCloudDockerregistryRequest) => Promise<ApiCallResponse<ListCloudDockerregistryResult>>;
1841
+ type ListCloudDockerregistryRequest = {
1842
+ options?: ListCloudDockerregistryOptions;
1843
+ };
1844
+ type ListCloudDockerregistryOptions = {
1845
+ /** The number of results to display per request. Maximum of 100 results per page. */
1846
+ 'per_page'?: number;
1847
+ /** The page number to access. */
1848
+ 'page'?: number;
1849
+ /** The cursor returned from the previous page of results, used to request the next page. */
1850
+ 'cursor'?: string;
1851
+ };
1852
+ /** Lists docker registries for the authenticated user or team. */
1853
+ declare class ListCloudDockerregistryEndpoint extends GetApiEndpoint<ListCloudDockerregistryRequest, ListCloudDockerregistryResult> {
1854
+ description: string;
1855
+ withAuth: boolean;
1856
+ requiredPermissions: string;
1857
+ endpointUrl: (opts: ListCloudDockerregistryRequest) => string;
1858
+ body: () => undefined;
1859
+ }
1860
+
1861
+ type CreateCloudDockerregistryResult = {
1862
+ /** Identifier for the docker registry. Example: "gcp-integration" */
1863
+ 'id': string;
1864
+ /** The name of the docker registry. Example: "GCP integration" */
1865
+ 'name': string;
1866
+ /** A short description of the docker registry. Example: "The registry description" */
1867
+ 'description'?: string;
1868
+ /** The cloud provider to which this docker registry belongs to. Example: "aws" */
1869
+ 'provider'?: string;
1870
+ /** The region in which this registry was created. Example: "eu-west-1" */
1871
+ 'region'?: string;
1872
+ /** The time the registry was created. Example: "2021-01-20T11:19:53.175Z" */
1873
+ 'createdAt': string;
1874
+ };
1875
+ type CreateCloudDockerregistryCall = (opts: CreateCloudDockerregistryRequest) => Promise<ApiCallResponse<CreateCloudDockerregistryResult>>;
1876
+ type CreateCloudDockerregistryRequest = {
1877
+ data: CreateCloudDockerregistryData;
1878
+ };
1879
+ type CreateCloudDockerregistryData = {
1880
+ /** The name of the cloud provider integration. Example: "New Integration" */
1881
+ 'name': string;
1882
+ /** The description of the integration. Example: "This is a new cloud provider integration." */
1883
+ 'description'?: string;
1884
+ /** Cloud provider to be used for the selected resource */
1885
+ 'provider': 'gcp' | 'aws' | 'azure' | 'do';
1886
+ 'region': string;
1887
+ /** Existing integration to use for this registry. Example: "gcp-integration" */
1888
+ 'integrationId'?: string;
1889
+ /** The type of provider integration. Example: "cluster" */
1890
+ 'type'?: 'cluster' | 'domain' | 'registry' | 'cdn';
1891
+ };
1892
+ /** Creates a new docker registry. */
1893
+ declare class CreateCloudDockerregistryEndpoint extends PostApiEndpoint<CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult> {
1894
+ description: string;
1895
+ withAuth: boolean;
1896
+ requiredPermissions: string;
1897
+ endpointUrl: (opts: CreateCloudDockerregistryRequest) => string;
1898
+ body: (payload: CreateCloudDockerregistryRequest) => string;
1899
+ }
1900
+
1901
+ type GetCloudDockerregistryResult = {
1902
+ /** Identifier for the docker registry. Example: "gcp-integration" */
1903
+ 'id': string;
1904
+ /** The name of the docker registry. Example: "GCP integration" */
1905
+ 'name': string;
1906
+ /** A short description of the docker registry. Example: "The registry description" */
1907
+ 'description'?: string;
1908
+ /** The cloud provider to which this docker registry belongs to. Example: "aws" */
1909
+ 'provider'?: string;
1910
+ /** The region in which this registry was created. Example: "eu-west-1" */
1911
+ 'region'?: string;
1912
+ /** The time the registry was created. Example: "2021-01-20T11:19:53.175Z" */
1913
+ 'createdAt': string;
1914
+ };
1915
+ type GetCloudDockerregistryCall = (opts: GetCloudDockerregistryRequest) => Promise<ApiCallResponse<GetCloudDockerregistryResult>>;
1916
+ type GetCloudDockerregistryRequest = {
1917
+ parameters: GetCloudDockerregistryParameters;
1918
+ };
1919
+ type GetCloudDockerregistryParameters = {
1920
+ /** ID of the docker registry */ 'registryId': string;
1921
+ };
1922
+ /** Get information about the given docker registry */
1923
+ declare class GetCloudDockerregistryEndpoint extends GetApiEndpoint<GetCloudDockerregistryRequest, GetCloudDockerregistryResult> {
1924
+ description: string;
1925
+ withAuth: boolean;
1926
+ requiredPermissions: string;
1927
+ endpointUrl: (opts: GetCloudDockerregistryRequest) => string;
1928
+ body: () => undefined;
1929
+ }
1930
+
1931
+ type DeleteCloudDockerregistryResult = any | any;
1932
+ type DeleteCloudDockerregistryCall = (opts: DeleteCloudDockerregistryRequest) => Promise<ApiCallResponse<DeleteCloudDockerregistryResult>>;
1933
+ type DeleteCloudDockerregistryRequest = {
1934
+ parameters: DeleteCloudDockerregistryParameters;
1935
+ };
1936
+ type DeleteCloudDockerregistryParameters = {
1937
+ /** ID of the docker registry */ 'registryId': string;
1938
+ };
1939
+ /** Delete the given docker registry. Fails if the docker registry is associated with existing clusters. */
1940
+ declare class DeleteCloudDockerregistryEndpoint extends DeleteApiEndpoint<DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult> {
1941
+ description: string;
1942
+ withAuth: boolean;
1943
+ requiredPermissions: string;
1944
+ endpointUrl: (opts: DeleteCloudDockerregistryRequest) => string;
1945
+ body: () => undefined;
1946
+ }
1947
+
1948
+ type ListCloudIntegrationsResult = {
1698
1949
  /** An array of integrations. */
1699
1950
  'integrations': {
1700
1951
  /** Identifier for the integration. Example: "gcp-integration" */
@@ -1709,11 +1960,11 @@ type ListIntegrationsResult = {
1709
1960
  'createdAt': string;
1710
1961
  }[];
1711
1962
  };
1712
- type ListIntegrationsCall = (opts: ListIntegrationsRequest) => Promise<ApiCallResponse<ListIntegrationsResult>>;
1713
- type ListIntegrationsRequest = {
1714
- options?: ListIntegrationsOptions;
1963
+ type ListCloudIntegrationsCall = (opts: ListCloudIntegrationsRequest) => Promise<ApiCallResponse<ListCloudIntegrationsResult>>;
1964
+ type ListCloudIntegrationsRequest = {
1965
+ options?: ListCloudIntegrationsOptions;
1715
1966
  };
1716
- type ListIntegrationsOptions = {
1967
+ type ListCloudIntegrationsOptions = {
1717
1968
  /** The number of results to display per request. Maximum of 100 results per page. */
1718
1969
  'per_page'?: number;
1719
1970
  /** The page number to access. */
@@ -1722,15 +1973,15 @@ type ListIntegrationsOptions = {
1722
1973
  'cursor'?: string;
1723
1974
  };
1724
1975
  /** Lists integrations for the authenticated user or team. */
1725
- declare class ListIntegrationsEndpoint extends GetApiEndpoint<ListIntegrationsRequest, ListIntegrationsResult> {
1976
+ declare class ListCloudIntegrationsEndpoint extends GetApiEndpoint<ListCloudIntegrationsRequest, ListCloudIntegrationsResult> {
1726
1977
  description: string;
1727
1978
  withAuth: boolean;
1728
1979
  requiredPermissions: string;
1729
- endpointUrl: (opts: ListIntegrationsRequest) => string;
1980
+ endpointUrl: (opts: ListCloudIntegrationsRequest) => string;
1730
1981
  body: () => undefined;
1731
1982
  }
1732
1983
 
1733
- type CreateIntegrationResult = {
1984
+ type CreateCloudIntegrationResult = {
1734
1985
  /** Identifier for the integration. Example: "gcp-integration" */
1735
1986
  'id': string;
1736
1987
  /** The name of the integration. Example: "GCP integration" */
@@ -1751,17 +2002,19 @@ type CreateIntegrationResult = {
1751
2002
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
1752
2003
  'createdAt': string;
1753
2004
  };
1754
- type CreateIntegrationCall = (opts: CreateIntegrationRequest) => Promise<ApiCallResponse<CreateIntegrationResult>>;
1755
- type CreateIntegrationRequest = {
1756
- data: CreateIntegrationData;
2005
+ type CreateCloudIntegrationCall = (opts: CreateCloudIntegrationRequest) => Promise<ApiCallResponse<CreateCloudIntegrationResult>>;
2006
+ type CreateCloudIntegrationRequest = {
2007
+ data: CreateCloudIntegrationData;
1757
2008
  };
1758
- type CreateIntegrationData = {
2009
+ type CreateCloudIntegrationData = {
1759
2010
  /** The name of the cloud provider integration. Example: "New Integration" */
1760
2011
  'name': string;
1761
2012
  /** The description of the integration. Example: "This is a new cloud provider integration." */
1762
2013
  'description'?: string;
1763
2014
  /** Cloud provider to be used for the selected resource Example: "gcp" */
1764
2015
  'provider': 'gcp' | 'aws' | 'azure' | 'do';
2016
+ /** The type of provider integration. Example: "cluster" */
2017
+ 'type'?: 'cluster' | 'domain' | 'registry' | 'cdn';
1765
2018
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
1766
2019
  'credentials': {
1767
2020
  /** Contents of a GCP key file. */
@@ -1780,15 +2033,15 @@ type CreateIntegrationData = {
1780
2033
  };
1781
2034
  };
1782
2035
  /** Creates a new integration. */
1783
- declare class CreateIntegrationEndpoint extends PostApiEndpoint<CreateIntegrationRequest, CreateIntegrationResult> {
2036
+ declare class CreateCloudIntegrationEndpoint extends PostApiEndpoint<CreateCloudIntegrationRequest, CreateCloudIntegrationResult> {
1784
2037
  description: string;
1785
2038
  withAuth: boolean;
1786
2039
  requiredPermissions: string;
1787
- endpointUrl: (opts: CreateIntegrationRequest) => string;
1788
- body: (payload: CreateIntegrationRequest) => string;
2040
+ endpointUrl: (opts: CreateCloudIntegrationRequest) => string;
2041
+ body: (payload: CreateCloudIntegrationRequest) => string;
1789
2042
  }
1790
2043
 
1791
- type GetIntegrationResult = {
2044
+ type GetCloudIntegrationResult = {
1792
2045
  /** Identifier for the integration. Example: "gcp-integration" */
1793
2046
  'id': string;
1794
2047
  /** The name of the integration. Example: "GCP integration" */
@@ -1809,23 +2062,23 @@ type GetIntegrationResult = {
1809
2062
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
1810
2063
  'createdAt': string;
1811
2064
  };
1812
- type GetIntegrationCall = (opts: GetIntegrationRequest) => Promise<ApiCallResponse<GetIntegrationResult>>;
1813
- type GetIntegrationRequest = {
1814
- parameters: GetIntegrationParameters;
2065
+ type GetCloudIntegrationCall = (opts: GetCloudIntegrationRequest) => Promise<ApiCallResponse<GetCloudIntegrationResult>>;
2066
+ type GetCloudIntegrationRequest = {
2067
+ parameters: GetCloudIntegrationParameters;
1815
2068
  };
1816
- type GetIntegrationParameters = {
2069
+ type GetCloudIntegrationParameters = {
1817
2070
  /** ID of the provider integration */ 'integrationId': string;
1818
2071
  };
1819
2072
  /** Get information about the given integration */
1820
- declare class GetIntegrationEndpoint extends GetApiEndpoint<GetIntegrationRequest, GetIntegrationResult> {
2073
+ declare class GetCloudIntegrationEndpoint extends GetApiEndpoint<GetCloudIntegrationRequest, GetCloudIntegrationResult> {
1821
2074
  description: string;
1822
2075
  withAuth: boolean;
1823
2076
  requiredPermissions: string;
1824
- endpointUrl: (opts: GetIntegrationRequest) => string;
2077
+ endpointUrl: (opts: GetCloudIntegrationRequest) => string;
1825
2078
  body: () => undefined;
1826
2079
  }
1827
2080
 
1828
- type UpdateIntegrationResult = {
2081
+ type UpdateCloudIntegrationResult = {
1829
2082
  /** Identifier for the integration. Example: "gcp-integration" */
1830
2083
  'id': string;
1831
2084
  /** The name of the integration. Example: "GCP integration" */
@@ -1846,15 +2099,15 @@ type UpdateIntegrationResult = {
1846
2099
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
1847
2100
  'createdAt': string;
1848
2101
  };
1849
- type UpdateIntegrationCall = (opts: UpdateIntegrationRequest) => Promise<ApiCallResponse<UpdateIntegrationResult>>;
1850
- type UpdateIntegrationRequest = {
1851
- parameters: UpdateIntegrationParameters;
1852
- data: UpdateIntegrationData;
2102
+ type UpdateCloudIntegrationCall = (opts: UpdateCloudIntegrationRequest) => Promise<ApiCallResponse<UpdateCloudIntegrationResult>>;
2103
+ type UpdateCloudIntegrationRequest = {
2104
+ parameters: UpdateCloudIntegrationParameters;
2105
+ data: UpdateCloudIntegrationData;
1853
2106
  };
1854
- type UpdateIntegrationParameters = {
2107
+ type UpdateCloudIntegrationParameters = {
1855
2108
  /** ID of the provider integration */ 'integrationId': string;
1856
2109
  };
1857
- type UpdateIntegrationData = {
2110
+ type UpdateCloudIntegrationData = {
1858
2111
  /** The description of the integration. Example: "This is a new description." */
1859
2112
  'description'?: string;
1860
2113
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
@@ -1870,28 +2123,112 @@ type UpdateIntegrationData = {
1870
2123
  };
1871
2124
  };
1872
2125
  /** Update information about the given integration */
1873
- declare class UpdateIntegrationEndpoint extends PostApiEndpoint<UpdateIntegrationRequest, UpdateIntegrationResult> {
2126
+ declare class UpdateCloudIntegrationEndpoint extends PostApiEndpoint<UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult> {
1874
2127
  description: string;
1875
2128
  withAuth: boolean;
1876
2129
  requiredPermissions: string;
1877
- endpointUrl: (opts: UpdateIntegrationRequest) => string;
1878
- body: (payload: UpdateIntegrationRequest) => string;
2130
+ endpointUrl: (opts: UpdateCloudIntegrationRequest) => string;
2131
+ body: (payload: UpdateCloudIntegrationRequest) => string;
1879
2132
  }
1880
2133
 
1881
- type DeleteIntegrationResult = any | any;
1882
- type DeleteIntegrationCall = (opts: DeleteIntegrationRequest) => Promise<ApiCallResponse<DeleteIntegrationResult>>;
1883
- type DeleteIntegrationRequest = {
1884
- parameters: DeleteIntegrationParameters;
2134
+ type DeleteCloudIntegrationResult = any | any;
2135
+ type DeleteCloudIntegrationCall = (opts: DeleteCloudIntegrationRequest) => Promise<ApiCallResponse<DeleteCloudIntegrationResult>>;
2136
+ type DeleteCloudIntegrationRequest = {
2137
+ parameters: DeleteCloudIntegrationParameters;
1885
2138
  };
1886
- type DeleteIntegrationParameters = {
2139
+ type DeleteCloudIntegrationParameters = {
1887
2140
  /** ID of the provider integration */ 'integrationId': string;
1888
2141
  };
1889
2142
  /** Delete the given integration. Fails if the integration is associated with existing clusters. */
1890
- declare class DeleteIntegrationEndpoint extends DeleteApiEndpoint<DeleteIntegrationRequest, DeleteIntegrationResult> {
2143
+ declare class DeleteCloudIntegrationEndpoint extends DeleteApiEndpoint<DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult> {
2144
+ description: string;
2145
+ withAuth: boolean;
2146
+ requiredPermissions: string;
2147
+ endpointUrl: (opts: DeleteCloudIntegrationRequest) => string;
2148
+ body: () => undefined;
2149
+ }
2150
+
2151
+ type ListCloudNodetypesResult = {
2152
+ /** An array of supported cloud provider node types */
2153
+ 'providers': {
2154
+ /** The ID of the node type Example: "n2-standard-8" */
2155
+ 'id': string;
2156
+ /** The name of the node type Example: "n2-standard-8" */
2157
+ 'name': string;
2158
+ /** An listing the resources of this node type */
2159
+ 'resources': {
2160
+ /** Number of vCPU of this node type Example: 8 */
2161
+ 'vcpu'?: number;
2162
+ /** Amount of memory capacity in GB of this node type Example: 32 */
2163
+ 'memory'?: number;
2164
+ };
2165
+ /** Processor family of the node type Example: "intel" */
2166
+ 'processorFamily': string;
2167
+ /** Workload this node type is optimized for Example: "general-purpose" */
2168
+ 'workloadType': string;
2169
+ }[];
2170
+ };
2171
+ type ListCloudNodetypesCall = (opts: ListCloudNodetypesRequest) => Promise<ApiCallResponse<ListCloudNodetypesResult>>;
2172
+ type ListCloudNodetypesRequest = {
2173
+ options?: ListCloudNodetypesOptions;
2174
+ };
2175
+ type ListCloudNodetypesOptions = {
2176
+ /** The number of results to display per request. Maximum of 100 results per page. */
2177
+ 'per_page'?: number;
2178
+ /** The page number to access. */
2179
+ 'page'?: number;
2180
+ /** The cursor returned from the previous page of results, used to request the next page. */
2181
+ 'cursor'?: string;
2182
+ /** If provided, only returns items belonging to this cloud provider. */
2183
+ 'provider'?: string;
2184
+ /** If provided, only returns items available in this region. */
2185
+ 'region'?: string;
2186
+ };
2187
+ /** Lists supported cloud provider node types */
2188
+ declare class ListCloudNodetypesEndpoint extends GetApiEndpoint<ListCloudNodetypesRequest, ListCloudNodetypesResult> {
2189
+ description: string;
2190
+ withAuth: boolean;
2191
+ requiredPermissions: string;
2192
+ endpointUrl: (opts: ListCloudNodetypesRequest) => string;
2193
+ body: () => undefined;
2194
+ }
2195
+
2196
+ type ListCloudRegionsResult = {
2197
+ /** An array of supported cloud provider regions */
2198
+ 'providers': {
2199
+ /** The ID of the region Example: "europe-west1" */
2200
+ 'id': string;
2201
+ /** The name of the region Example: "europe-west1" */
2202
+ 'name': string;
2203
+ /** The availability zones belonging to this region */
2204
+ 'availabilityZones': {
2205
+ /** The id of the availability zone Example: "europe-west1-b" */
2206
+ 'id': string;
2207
+ /** The name of the availability zone Example: "europe-west1-b" */
2208
+ 'name': string;
2209
+ }[];
2210
+ }[];
2211
+ };
2212
+ type ListCloudRegionsCall = (opts: ListCloudRegionsRequest) => Promise<ApiCallResponse<ListCloudRegionsResult>>;
2213
+ type ListCloudRegionsRequest = {
2214
+ options?: ListCloudRegionsOptions;
2215
+ };
2216
+ type ListCloudRegionsOptions = {
2217
+ /** The number of results to display per request. Maximum of 100 results per page. */
2218
+ 'per_page'?: number;
2219
+ /** The page number to access. */
2220
+ 'page'?: number;
2221
+ /** The cursor returned from the previous page of results, used to request the next page. */
2222
+ 'cursor'?: string;
2223
+ /** If provided, only returns items belonging to this cloud provider. */
2224
+ 'provider'?: string;
2225
+ };
2226
+ /** Lists supported cloud provider regions */
2227
+ declare class ListCloudRegionsEndpoint extends GetApiEndpoint<ListCloudRegionsRequest, ListCloudRegionsResult> {
1891
2228
  description: string;
1892
2229
  withAuth: boolean;
1893
2230
  requiredPermissions: string;
1894
- endpointUrl: (opts: DeleteIntegrationRequest) => string;
2231
+ endpointUrl: (opts: ListCloudRegionsRequest) => string;
1895
2232
  body: () => undefined;
1896
2233
  }
1897
2234
 
@@ -1950,9 +2287,29 @@ type CreateDomainResult = {
1950
2287
  /** The status of the domain verification. Example: "pending" */
1951
2288
  'status': 'pending' | 'verified';
1952
2289
  /** The hostname to add to your domain's DNS records as a TXT record to verify the domain. Example: "nfverify1608026055" */
1953
- 'hostname': string;
2290
+ 'hostname'?: string;
1954
2291
  /** The token to add as the content of the TXT record to verify the domain. Example: "e596987b52855a4a773ef580ce2985d7746b37ce8b2a443d20fa27b913d8f57" */
1955
- 'token': string;
2292
+ 'token'?: string;
2293
+ /** Configuration regarding the domain redirect set up. */
2294
+ 'redirect'?: {
2295
+ /** Domain redirect mode. Example: "default" */
2296
+ 'mode': string;
2297
+ 'target'?: {
2298
+ /** Expected CNAME target of the wildcard redirect. */
2299
+ 'record'?: string;
2300
+ };
2301
+ };
2302
+ /** Configuration regarding the domain certificate set up. */
2303
+ 'certificates'?: {
2304
+ /** Domain certificate mode. Example: "default" */
2305
+ 'mode': string;
2306
+ /** DCV CNAME record used to provision wildcard certificates. */
2307
+ 'dcvRecord'?: string;
2308
+ 'dcvTarget'?: {
2309
+ /** Expected CNAME target of the dcvRecord. */
2310
+ 'record'?: string;
2311
+ };
2312
+ };
1956
2313
  } | any;
1957
2314
  type CreateDomainCall = (opts: CreateDomainRequest) => Promise<ApiCallResponse<CreateDomainResult>>;
1958
2315
  type CreateDomainRequest = {
@@ -1961,6 +2318,30 @@ type CreateDomainRequest = {
1961
2318
  type CreateDomainData = {
1962
2319
  /** The domain name to register. Example: "example.com" */
1963
2320
  'domain': string;
2321
+ /** Optional configuration regarding the domain redirect set up. */
2322
+ 'redirect'?: {
2323
+ /** Domain redirect mode to be used. Example: "default" */
2324
+ 'mode'?: 'wildcard' | 'default';
2325
+ /** Northflank PaaS region the wildcard redirect should be pointed at. */
2326
+ 'region'?: string;
2327
+ /** BYOC cluster the wildcard redirect should be pointed at. */
2328
+ 'cluster'?: string;
2329
+ };
2330
+ /** Optional configuration regarding the domain certificate set up. */
2331
+ 'certificates'?: {
2332
+ /** Certificate provisioning mode to be used. Example: "default" */
2333
+ 'mode'?: 'wildcard' | 'wildcard-import' | 'default';
2334
+ 'certificateInput'?: {
2335
+ /** Certificate data - required when `mode` is set to `wildcard-import` */
2336
+ 'certificateInput'?: {
2337
+ 'is'?: any;
2338
+ 'then': {
2339
+ 'privateKey': string;
2340
+ 'certificateChain': string;
2341
+ };
2342
+ };
2343
+ };
2344
+ };
1964
2345
  };
1965
2346
  /** Registers a new domain */
1966
2347
  declare class CreateDomainEndpoint extends PostApiEndpoint<CreateDomainRequest, CreateDomainResult> {
@@ -1974,12 +2355,32 @@ declare class CreateDomainEndpoint extends PostApiEndpoint<CreateDomainRequest,
1974
2355
  type GetDomainResult = {
1975
2356
  /** The domain name. Example: "example.com" */
1976
2357
  'name': string;
1977
- /** The status of the domain verification. Example: "verified" */
2358
+ /** The status of the domain verification. Example: "pending" */
1978
2359
  'status': 'pending' | 'verified';
1979
2360
  /** The hostname to add to your domain's DNS records as a TXT record to verify the domain. Example: "nfverify1608026055" */
1980
- 'hostname': string;
2361
+ 'hostname'?: string;
1981
2362
  /** The token to add as the content of the TXT record to verify the domain. Example: "e596987b52855a4a773ef580ce2985d7746b37ce8b2a443d20fa27b913d8f57" */
1982
- 'token': string;
2363
+ 'token'?: string;
2364
+ /** Configuration regarding the domain redirect set up. */
2365
+ 'redirect'?: {
2366
+ /** Domain redirect mode. Example: "default" */
2367
+ 'mode': string;
2368
+ 'target'?: {
2369
+ /** Expected CNAME target of the wildcard redirect. */
2370
+ 'record'?: string;
2371
+ };
2372
+ };
2373
+ /** Configuration regarding the domain certificate set up. */
2374
+ 'certificates'?: {
2375
+ /** Domain certificate mode. Example: "default" */
2376
+ 'mode': string;
2377
+ /** DCV CNAME record used to provision wildcard certificates. */
2378
+ 'dcvRecord'?: string;
2379
+ 'dcvTarget'?: {
2380
+ /** Expected CNAME target of the dcvRecord. */
2381
+ 'record'?: string;
2382
+ };
2383
+ };
1983
2384
  /** A list of subdomains added to this domain. */
1984
2385
  'subdomains': {
1985
2386
  /** The subdomain added, or -default for the empty subdomain. Example: "app" */
@@ -2256,7 +2657,7 @@ type ListLogsinksResult = {
2256
2657
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2257
2658
  'projects': string[];
2258
2659
  /** The type of the log sink. Example: "loki" */
2259
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio';
2660
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
2260
2661
  /** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
2261
2662
  'createdAt': string;
2262
2663
  /** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
@@ -2301,6 +2702,8 @@ type CreateLogsinkData = {
2301
2702
  'restricted'?: boolean;
2302
2703
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2303
2704
  'useCustomLabels'?: boolean;
2705
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2706
+ 'forwardAccessLogs'?: boolean;
2304
2707
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2305
2708
  'projects'?: string[];
2306
2709
  /** The type of the log sink. Example: "loki" */
@@ -2333,6 +2736,8 @@ type CreateLogsinkData = {
2333
2736
  'restricted'?: boolean;
2334
2737
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2335
2738
  'useCustomLabels'?: boolean;
2739
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2740
+ 'forwardAccessLogs'?: boolean;
2336
2741
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2337
2742
  'projects'?: string[];
2338
2743
  /** The type of the log sink. Example: "datadog_logs" */
@@ -2353,6 +2758,8 @@ type CreateLogsinkData = {
2353
2758
  'restricted'?: boolean;
2354
2759
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2355
2760
  'useCustomLabels'?: boolean;
2761
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2762
+ 'forwardAccessLogs'?: boolean;
2356
2763
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2357
2764
  'projects'?: string[];
2358
2765
  /** The type of the log sink. Example: "papertrail" */
@@ -2382,6 +2789,8 @@ type CreateLogsinkData = {
2382
2789
  'restricted'?: boolean;
2383
2790
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2384
2791
  'useCustomLabels'?: boolean;
2792
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2793
+ 'forwardAccessLogs'?: boolean;
2385
2794
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2386
2795
  'projects'?: string[];
2387
2796
  /** The type of the log sink. Example: "aws_s3" */
@@ -2413,6 +2822,8 @@ type CreateLogsinkData = {
2413
2822
  'restricted'?: boolean;
2414
2823
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2415
2824
  'useCustomLabels'?: boolean;
2825
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2826
+ 'forwardAccessLogs'?: boolean;
2416
2827
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2417
2828
  'projects'?: string[];
2418
2829
  /** The type of the log sink. Example: "http" */
@@ -2452,6 +2863,8 @@ type CreateLogsinkData = {
2452
2863
  'restricted'?: boolean;
2453
2864
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2454
2865
  'useCustomLabels'?: boolean;
2866
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2867
+ 'forwardAccessLogs'?: boolean;
2455
2868
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2456
2869
  'projects'?: string[];
2457
2870
  /** The type of the log sink. Example: "logdna" */
@@ -2470,6 +2883,8 @@ type CreateLogsinkData = {
2470
2883
  'restricted'?: boolean;
2471
2884
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2472
2885
  'useCustomLabels'?: boolean;
2886
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2887
+ 'forwardAccessLogs'?: boolean;
2473
2888
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2474
2889
  'projects'?: string[];
2475
2890
  /** The type of the log sink. Example: "logtail" */
@@ -2488,6 +2903,8 @@ type CreateLogsinkData = {
2488
2903
  'restricted'?: boolean;
2489
2904
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2490
2905
  'useCustomLabels'?: boolean;
2906
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2907
+ 'forwardAccessLogs'?: boolean;
2491
2908
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2492
2909
  'projects'?: string[];
2493
2910
  /** The type of the log sink. Example: "honeycomb" */
@@ -2508,6 +2925,8 @@ type CreateLogsinkData = {
2508
2925
  'restricted'?: boolean;
2509
2926
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2510
2927
  'useCustomLabels'?: boolean;
2928
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2929
+ 'forwardAccessLogs'?: boolean;
2511
2930
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2512
2931
  'projects'?: string[];
2513
2932
  /** The type of the log sink. Example: "logzio" */
@@ -2519,6 +2938,56 @@ type CreateLogsinkData = {
2519
2938
  /** The Log Shipping Token of the account you want to ship to Example: "sNFijNFgNFoNFrMsNFbNFObNFcgNFqoa" */
2520
2939
  'token': string;
2521
2940
  };
2941
+ } | {
2942
+ /** Name of the log sink. Example: "example-log-sink" */
2943
+ 'name': string;
2944
+ /** Description of the log sink. Example: "This is an example log sink." */
2945
+ 'description'?: string;
2946
+ /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2947
+ 'restricted'?: boolean;
2948
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2949
+ 'useCustomLabels'?: boolean;
2950
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2951
+ 'forwardAccessLogs'?: boolean;
2952
+ /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2953
+ 'projects'?: string[];
2954
+ /** The type of the log sink. Example: "axiom" */
2955
+ 'sinkType': 'axiom';
2956
+ /** Details about the Axiom log sink. */
2957
+ 'sinkData': {
2958
+ /** Name of the data Example: "staging" */
2959
+ 'dataset': string;
2960
+ /** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
2961
+ 'token': string;
2962
+ /** Using a personal token */
2963
+ 'tokenType': 'personal' | 'api';
2964
+ /** The ID of the organisation, required if using a personal token */
2965
+ 'orgId'?: string;
2966
+ /** The Axiom url to use. Only change if self hosting axiom. */
2967
+ 'url': string;
2968
+ };
2969
+ } | {
2970
+ /** Name of the log sink. Example: "example-log-sink" */
2971
+ 'name': string;
2972
+ /** Description of the log sink. Example: "This is an example log sink." */
2973
+ 'description'?: string;
2974
+ /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2975
+ 'restricted'?: boolean;
2976
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2977
+ 'useCustomLabels'?: boolean;
2978
+ /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2979
+ 'forwardAccessLogs'?: boolean;
2980
+ /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2981
+ 'projects'?: string[];
2982
+ /** The type of the log sink. Example: "newRelic" */
2983
+ 'sinkType': 'newRelic';
2984
+ /** Details about the undefined log sink. */
2985
+ 'sinkData': {
2986
+ /** New Relic Account ID Example: "b1dd3feb585asd1a3e9" */
2987
+ 'accountId': string;
2988
+ /** New Relic License Key Example: "b1dd3feb585asd1a3e9" */
2989
+ 'licenseKey': string;
2990
+ };
2522
2991
  };
2523
2992
  /** Creates a new log sink. */
2524
2993
  declare class CreateLogsinkEndpoint extends PostApiEndpoint<CreateLogsinkRequest, CreateLogsinkResult> {
@@ -2543,7 +3012,7 @@ type GetLogsinkResult = {
2543
3012
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2544
3013
  'projects': string[];
2545
3014
  /** The type of the log sink. Example: "loki" */
2546
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio';
3015
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
2547
3016
  /** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
2548
3017
  'createdAt': string;
2549
3018
  /** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
@@ -2622,6 +3091,17 @@ type GetLogsinkResult = {
2622
3091
  'api_key': string;
2623
3092
  /** Name of the dataset Example: "staging-logs" */
2624
3093
  'dataset': string;
3094
+ } | {
3095
+ /** Name of the data Example: "staging" */
3096
+ 'dataset': string;
3097
+ /** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
3098
+ 'token': string;
3099
+ /** Using a personal token */
3100
+ 'tokenType': 'personal' | 'api';
3101
+ /** The ID of the organisation, required if using a personal token */
3102
+ 'orgId'?: string;
3103
+ /** The Axiom url to use. Only change if self hosting axiom. */
3104
+ 'url': string;
2625
3105
  };
2626
3106
  };
2627
3107
  type GetLogsinkCall = (opts: GetLogsinkRequest) => Promise<ApiCallResponse<GetLogsinkResult>>;
@@ -2776,6 +3256,17 @@ type UpdateLogsinkData = {
2776
3256
  'api_key': string;
2777
3257
  /** Name of the dataset Example: "staging-logs" */
2778
3258
  'dataset': string;
3259
+ } | {
3260
+ /** Name of the data Example: "staging" */
3261
+ 'dataset': string;
3262
+ /** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
3263
+ 'token': string;
3264
+ /** Using a personal token */
3265
+ 'tokenType': 'personal' | 'api';
3266
+ /** The ID of the organisation, required if using a personal token */
3267
+ 'orgId'?: string;
3268
+ /** The Axiom url to use. Only change if self hosting axiom. */
3269
+ 'url': string;
2779
3270
  };
2780
3271
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
2781
3272
  'resumeLogSink'?: boolean;
@@ -2789,7 +3280,450 @@ declare class UpdateLogsinkEndpoint extends PostApiEndpoint<UpdateLogsinkRequest
2789
3280
  body: (payload: UpdateLogsinkRequest) => string;
2790
3281
  }
2791
3282
 
2792
- type ListRegistriesResult = {
3283
+ type ListNotificationsResult = {
3284
+ /** An array of notification integrations on the account. */
3285
+ 'notificationIntegrations': {
3286
+ /** The name of the notification integration. Example: "Example Notification" */
3287
+ 'name': string;
3288
+ /** The ID of the notification integration. Example: "example-notification" */
3289
+ 'id': string;
3290
+ /** The provider to send webhooks to. `RAW_WEBHOOK` allows you to send webhooks to a url of your choice, or you can choose a specific provider. Example: "RAW_WEBHOOK" */
3291
+ 'type': 'RAW_WEBHOOK' | 'SLACK' | 'DISCORD' | 'TEAMS';
3292
+ /** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
3293
+ 'webhook': string;
3294
+ /** Information on the current webhook status. */
3295
+ 'status'?: {
3296
+ /** Is the webhook currently disabled? */
3297
+ 'disabled'?: boolean;
3298
+ /** Why the webhook was disabled. */
3299
+ 'reason'?: boolean;
3300
+ };
3301
+ /** Creation date Example: "2023-09-12T16:39:44.166Z\"" */
3302
+ 'createdAt': string;
3303
+ /** Last update date Example: "2023-09-12T16:39:44.166Z\"" */
3304
+ 'updatedAt': string;
3305
+ }[];
3306
+ };
3307
+ type ListNotificationsCall = (opts: ListNotificationsRequest) => Promise<ApiCallResponse<ListNotificationsResult>>;
3308
+ type ListNotificationsRequest = {
3309
+ options?: ListNotificationsOptions;
3310
+ };
3311
+ type ListNotificationsOptions = {
3312
+ /** The number of results to display per request. Maximum of 100 results per page. */
3313
+ 'per_page'?: number;
3314
+ /** The page number to access. */
3315
+ 'page'?: number;
3316
+ /** The cursor returned from the previous page of results, used to request the next page. */
3317
+ 'cursor'?: string;
3318
+ };
3319
+ /** Lists notification integrations for the authenticated user or team. */
3320
+ declare class ListNotificationsEndpoint extends GetApiEndpoint<ListNotificationsRequest, ListNotificationsResult> {
3321
+ description: string;
3322
+ withAuth: boolean;
3323
+ requiredPermissions: string;
3324
+ endpointUrl: (opts: ListNotificationsRequest) => string;
3325
+ body: () => undefined;
3326
+ }
3327
+
3328
+ type CreateNotificationResult = {
3329
+ /** The name of the notification integration. Example: "Example Notification" */
3330
+ 'name': string;
3331
+ /** The ID of the notification integration. Example: "example-notification" */
3332
+ 'id': string;
3333
+ /** The provider to send webhooks to. `RAW_WEBHOOK` allows you to send webhooks to a url of your choice, or you can choose a specific provider. Example: "RAW_WEBHOOK" */
3334
+ 'type': 'RAW_WEBHOOK' | 'SLACK' | 'DISCORD' | 'TEAMS';
3335
+ /** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
3336
+ 'webhook': string;
3337
+ /** Creation date Example: "2023-09-12T16:39:44.166Z\"" */
3338
+ 'createdAt': string;
3339
+ /** Last update date Example: "2023-09-12T16:39:44.166Z\"" */
3340
+ 'updatedAt': string;
3341
+ 'status'?: {
3342
+ /** Is the webhook currently disabled? */
3343
+ 'disabled'?: boolean;
3344
+ /** Why the webhook was disabled. */
3345
+ 'reason'?: boolean;
3346
+ /** The timestamp of the first failed webhook request. */
3347
+ 'timeOfFirstFailedRequest'?: string;
3348
+ /** The number of failed webhook requests. */
3349
+ 'numberOfFailedRequests'?: number;
3350
+ };
3351
+ /** Should notifications be sent only for specific projects? Example: true */
3352
+ 'restricted': boolean;
3353
+ /** An array of projects that notifications will be sent for. */
3354
+ 'projects': string[];
3355
+ /** Which events should notifications be sent for? */
3356
+ 'events': {
3357
+ 'trigger:service:autoscaling:event'?: boolean;
3358
+ 'trigger:service:deployment:status-update'?: boolean;
3359
+ 'trigger:addon-backup:start'?: boolean;
3360
+ 'trigger:addon-backup:success'?: boolean;
3361
+ 'trigger:addon-backup:failure'?: boolean;
3362
+ 'trigger:addon-backup:abort'?: boolean;
3363
+ 'trigger:build:start'?: boolean;
3364
+ 'trigger:build:success'?: boolean;
3365
+ 'trigger:build:failure'?: boolean;
3366
+ 'trigger:build:abort'?: boolean;
3367
+ 'trigger:job-run:start'?: boolean;
3368
+ 'trigger:job-run:success'?: boolean;
3369
+ 'trigger:job-run:failure'?: boolean;
3370
+ 'trigger:job-run:abort'?: boolean;
3371
+ 'trigger:job-run:terminate'?: boolean;
3372
+ 'trigger:release-flow-template-run:start'?: boolean;
3373
+ 'trigger:release-flow-template-run:update'?: boolean;
3374
+ 'trigger:release-flow-template-run:success'?: boolean;
3375
+ 'trigger:release-flow-template-run:failure'?: boolean;
3376
+ 'trigger:release-flow-template-run:aborted'?: boolean;
3377
+ 'trigger:template-run:queued'?: boolean;
3378
+ 'trigger:template-run:start'?: boolean;
3379
+ 'trigger:template-run:update'?: boolean;
3380
+ 'trigger:template-run:success'?: boolean;
3381
+ 'trigger:template-run:failure'?: boolean;
3382
+ 'trigger:resource:certificate-success'?: boolean;
3383
+ 'trigger:resource:certificate-final-failure'?: boolean;
3384
+ 'trigger:cdn:action-success'?: boolean;
3385
+ 'trigger:cdn:action-failure'?: boolean;
3386
+ 'trigger:cdn:action-delay'?: boolean;
3387
+ 'trigger:log-sink:paused'?: boolean;
3388
+ 'trigger:billing:billing-alert-exceeded'?: boolean;
3389
+ 'trigger:billing:invoice-payment-action-required'?: boolean;
3390
+ 'trigger:billing:invoice-payment-failed'?: boolean;
3391
+ 'trigger:billing:invoice-paid'?: boolean;
3392
+ 'trigger:billing:invoice-carried-over'?: boolean;
3393
+ 'trigger:infrastructure:service:container-crash'?: boolean;
3394
+ 'trigger:infrastructure:service:container-eviction'?: boolean;
3395
+ 'trigger:infrastructure:addon:container-crash'?: boolean;
3396
+ 'trigger:infrastructure:addon:container-eviction'?: boolean;
3397
+ 'trigger:infrastructure:job:container-crash'?: boolean;
3398
+ 'trigger:infrastructure:job:container-eviction'?: boolean;
3399
+ 'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
3400
+ 'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
3401
+ 'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
3402
+ 'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
3403
+ 'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
3404
+ 'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
3405
+ 'trigger:infrastructure:service:container-memorySpike90'?: boolean;
3406
+ 'trigger:infrastructure:service:container-memorySustained90'?: boolean;
3407
+ 'trigger:infrastructure:job:container-memorySpike90'?: boolean;
3408
+ 'trigger:infrastructure:job:container-memorySustained90'?: boolean;
3409
+ 'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
3410
+ 'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
3411
+ 'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
3412
+ 'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3413
+ 'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3414
+ 'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3415
+ 'trigger:infrastructure:cluster:scheduling'?: boolean;
3416
+ };
3417
+ };
3418
+ type CreateNotificationCall = (opts: CreateNotificationRequest) => Promise<ApiCallResponse<CreateNotificationResult>>;
3419
+ type CreateNotificationRequest = {
3420
+ parameters: CreateNotificationParameters;
3421
+ data: CreateNotificationData;
3422
+ };
3423
+ type CreateNotificationParameters = {
3424
+ /** ID of the notification integration */ 'notificationId': string;
3425
+ };
3426
+ type CreateNotificationData = {
3427
+ /** The name of the notification integration. Example: "Example Notification" */
3428
+ 'name': string;
3429
+ /** The provider to send webhooks to. `RAW_WEBHOOK` allows you to send webhooks to a url of your choice, or you can choose a specific provider. Example: "RAW_WEBHOOK" */
3430
+ 'type': 'RAW_WEBHOOK' | 'DISCORD' | 'TEAMS';
3431
+ /** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
3432
+ 'webhook': string;
3433
+ /** An optional secret that will be sent in the webhook header for verification. Supports `RAW_WEBHOOK` only. */
3434
+ 'secret'?: string;
3435
+ /** Should notifications be sent only for specific projects? Example: true */
3436
+ 'restricted'?: boolean;
3437
+ /** An array of projects that notifications will be sent for. */
3438
+ 'projects'?: string[];
3439
+ /** Which events should notifications be sent for? */
3440
+ 'events': {
3441
+ 'trigger:service:autoscaling:event'?: boolean;
3442
+ 'trigger:service:deployment:status-update'?: boolean;
3443
+ 'trigger:addon-backup:start'?: boolean;
3444
+ 'trigger:addon-backup:success'?: boolean;
3445
+ 'trigger:addon-backup:failure'?: boolean;
3446
+ 'trigger:addon-backup:abort'?: boolean;
3447
+ 'trigger:build:start'?: boolean;
3448
+ 'trigger:build:success'?: boolean;
3449
+ 'trigger:build:failure'?: boolean;
3450
+ 'trigger:build:abort'?: boolean;
3451
+ 'trigger:job-run:start'?: boolean;
3452
+ 'trigger:job-run:success'?: boolean;
3453
+ 'trigger:job-run:failure'?: boolean;
3454
+ 'trigger:job-run:abort'?: boolean;
3455
+ 'trigger:job-run:terminate'?: boolean;
3456
+ 'trigger:release-flow-template-run:start'?: boolean;
3457
+ 'trigger:release-flow-template-run:update'?: boolean;
3458
+ 'trigger:release-flow-template-run:success'?: boolean;
3459
+ 'trigger:release-flow-template-run:failure'?: boolean;
3460
+ 'trigger:release-flow-template-run:aborted'?: boolean;
3461
+ 'trigger:template-run:queued'?: boolean;
3462
+ 'trigger:template-run:start'?: boolean;
3463
+ 'trigger:template-run:update'?: boolean;
3464
+ 'trigger:template-run:success'?: boolean;
3465
+ 'trigger:template-run:failure'?: boolean;
3466
+ 'trigger:resource:certificate-success'?: boolean;
3467
+ 'trigger:resource:certificate-final-failure'?: boolean;
3468
+ 'trigger:cdn:action-success'?: boolean;
3469
+ 'trigger:cdn:action-failure'?: boolean;
3470
+ 'trigger:cdn:action-delay'?: boolean;
3471
+ 'trigger:log-sink:paused'?: boolean;
3472
+ 'trigger:billing:billing-alert-exceeded'?: boolean;
3473
+ 'trigger:billing:invoice-payment-action-required'?: boolean;
3474
+ 'trigger:billing:invoice-payment-failed'?: boolean;
3475
+ 'trigger:billing:invoice-paid'?: boolean;
3476
+ 'trigger:billing:invoice-carried-over'?: boolean;
3477
+ 'trigger:infrastructure:service:container-crash'?: boolean;
3478
+ 'trigger:infrastructure:service:container-eviction'?: boolean;
3479
+ 'trigger:infrastructure:addon:container-crash'?: boolean;
3480
+ 'trigger:infrastructure:addon:container-eviction'?: boolean;
3481
+ 'trigger:infrastructure:job:container-crash'?: boolean;
3482
+ 'trigger:infrastructure:job:container-eviction'?: boolean;
3483
+ 'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
3484
+ 'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
3485
+ 'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
3486
+ 'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
3487
+ 'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
3488
+ 'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
3489
+ 'trigger:infrastructure:service:container-memorySpike90'?: boolean;
3490
+ 'trigger:infrastructure:service:container-memorySustained90'?: boolean;
3491
+ 'trigger:infrastructure:job:container-memorySpike90'?: boolean;
3492
+ 'trigger:infrastructure:job:container-memorySustained90'?: boolean;
3493
+ 'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
3494
+ 'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
3495
+ 'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
3496
+ 'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3497
+ 'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3498
+ 'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3499
+ 'trigger:infrastructure:cluster:scheduling'?: boolean;
3500
+ };
3501
+ };
3502
+ /** Create a new notification integration. */
3503
+ declare class CreateNotificationEndpoint extends PostApiEndpoint<CreateNotificationRequest, CreateNotificationResult> {
3504
+ description: string;
3505
+ withAuth: boolean;
3506
+ requiredPermissions: string;
3507
+ endpointUrl: (opts: CreateNotificationRequest) => string;
3508
+ body: (payload: CreateNotificationRequest) => string;
3509
+ }
3510
+
3511
+ type GetNotificationResult = {
3512
+ /** The name of the notification integration. Example: "Example Notification" */
3513
+ 'name': string;
3514
+ /** The ID of the notification integration. Example: "example-notification" */
3515
+ 'id': string;
3516
+ /** The provider to send webhooks to. `RAW_WEBHOOK` allows you to send webhooks to a url of your choice, or you can choose a specific provider. Example: "RAW_WEBHOOK" */
3517
+ 'type': 'RAW_WEBHOOK' | 'SLACK' | 'DISCORD' | 'TEAMS';
3518
+ /** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
3519
+ 'webhook': string;
3520
+ /** Creation date Example: "2023-09-12T16:39:44.166Z\"" */
3521
+ 'createdAt': string;
3522
+ /** Last update date Example: "2023-09-12T16:39:44.166Z\"" */
3523
+ 'updatedAt': string;
3524
+ 'status'?: {
3525
+ /** Is the webhook currently disabled? */
3526
+ 'disabled'?: boolean;
3527
+ /** Why the webhook was disabled. */
3528
+ 'reason'?: boolean;
3529
+ /** The timestamp of the first failed webhook request. */
3530
+ 'timeOfFirstFailedRequest'?: string;
3531
+ /** The number of failed webhook requests. */
3532
+ 'numberOfFailedRequests'?: number;
3533
+ };
3534
+ /** Should notifications be sent only for specific projects? Example: true */
3535
+ 'restricted': boolean;
3536
+ /** An array of projects that notifications will be sent for. */
3537
+ 'projects': string[];
3538
+ /** Which events should notifications be sent for? */
3539
+ 'events': {
3540
+ 'trigger:service:autoscaling:event'?: boolean;
3541
+ 'trigger:service:deployment:status-update'?: boolean;
3542
+ 'trigger:addon-backup:start'?: boolean;
3543
+ 'trigger:addon-backup:success'?: boolean;
3544
+ 'trigger:addon-backup:failure'?: boolean;
3545
+ 'trigger:addon-backup:abort'?: boolean;
3546
+ 'trigger:build:start'?: boolean;
3547
+ 'trigger:build:success'?: boolean;
3548
+ 'trigger:build:failure'?: boolean;
3549
+ 'trigger:build:abort'?: boolean;
3550
+ 'trigger:job-run:start'?: boolean;
3551
+ 'trigger:job-run:success'?: boolean;
3552
+ 'trigger:job-run:failure'?: boolean;
3553
+ 'trigger:job-run:abort'?: boolean;
3554
+ 'trigger:job-run:terminate'?: boolean;
3555
+ 'trigger:release-flow-template-run:start'?: boolean;
3556
+ 'trigger:release-flow-template-run:update'?: boolean;
3557
+ 'trigger:release-flow-template-run:success'?: boolean;
3558
+ 'trigger:release-flow-template-run:failure'?: boolean;
3559
+ 'trigger:release-flow-template-run:aborted'?: boolean;
3560
+ 'trigger:template-run:queued'?: boolean;
3561
+ 'trigger:template-run:start'?: boolean;
3562
+ 'trigger:template-run:update'?: boolean;
3563
+ 'trigger:template-run:success'?: boolean;
3564
+ 'trigger:template-run:failure'?: boolean;
3565
+ 'trigger:resource:certificate-success'?: boolean;
3566
+ 'trigger:resource:certificate-final-failure'?: boolean;
3567
+ 'trigger:cdn:action-success'?: boolean;
3568
+ 'trigger:cdn:action-failure'?: boolean;
3569
+ 'trigger:cdn:action-delay'?: boolean;
3570
+ 'trigger:log-sink:paused'?: boolean;
3571
+ 'trigger:billing:billing-alert-exceeded'?: boolean;
3572
+ 'trigger:billing:invoice-payment-action-required'?: boolean;
3573
+ 'trigger:billing:invoice-payment-failed'?: boolean;
3574
+ 'trigger:billing:invoice-paid'?: boolean;
3575
+ 'trigger:billing:invoice-carried-over'?: boolean;
3576
+ 'trigger:infrastructure:service:container-crash'?: boolean;
3577
+ 'trigger:infrastructure:service:container-eviction'?: boolean;
3578
+ 'trigger:infrastructure:addon:container-crash'?: boolean;
3579
+ 'trigger:infrastructure:addon:container-eviction'?: boolean;
3580
+ 'trigger:infrastructure:job:container-crash'?: boolean;
3581
+ 'trigger:infrastructure:job:container-eviction'?: boolean;
3582
+ 'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
3583
+ 'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
3584
+ 'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
3585
+ 'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
3586
+ 'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
3587
+ 'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
3588
+ 'trigger:infrastructure:service:container-memorySpike90'?: boolean;
3589
+ 'trigger:infrastructure:service:container-memorySustained90'?: boolean;
3590
+ 'trigger:infrastructure:job:container-memorySpike90'?: boolean;
3591
+ 'trigger:infrastructure:job:container-memorySustained90'?: boolean;
3592
+ 'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
3593
+ 'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
3594
+ 'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
3595
+ 'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3596
+ 'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3597
+ 'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3598
+ 'trigger:infrastructure:cluster:scheduling'?: boolean;
3599
+ };
3600
+ };
3601
+ type GetNotificationCall = (opts: GetNotificationRequest) => Promise<ApiCallResponse<GetNotificationResult>>;
3602
+ type GetNotificationRequest = {
3603
+ parameters: GetNotificationParameters;
3604
+ };
3605
+ type GetNotificationParameters = {
3606
+ /** ID of the notification integration */ 'notificationId': string;
3607
+ };
3608
+ /** Get details about a notification integration. */
3609
+ declare class GetNotificationEndpoint extends GetApiEndpoint<GetNotificationRequest, GetNotificationResult> {
3610
+ description: string;
3611
+ withAuth: boolean;
3612
+ requiredPermissions: string;
3613
+ endpointUrl: (opts: GetNotificationRequest) => string;
3614
+ body: () => undefined;
3615
+ }
3616
+
3617
+ type UpdateNotificationResult = any;
3618
+ type UpdateNotificationCall = (opts: UpdateNotificationRequest) => Promise<ApiCallResponse<UpdateNotificationResult>>;
3619
+ type UpdateNotificationRequest = {
3620
+ parameters: UpdateNotificationParameters;
3621
+ data: UpdateNotificationData;
3622
+ };
3623
+ type UpdateNotificationParameters = {
3624
+ /** ID of the notification integration */ 'notificationId': string;
3625
+ };
3626
+ type UpdateNotificationData = {
3627
+ /** The name of the notification integration. Example: "Example Notification" */
3628
+ 'name'?: string;
3629
+ /** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
3630
+ 'webhook'?: string;
3631
+ /** An optional secret that will be sent in the webhook header for verification. Supports `RAW_WEBHOOK` only. */
3632
+ 'secret'?: string;
3633
+ /** Should notifications be sent only for specific projects? Example: true */
3634
+ 'restricted'?: boolean;
3635
+ /** An array of projects that notifications will be sent for. */
3636
+ 'projects'?: string[];
3637
+ /** Which events should notifications be sent for? */
3638
+ 'events'?: {
3639
+ 'trigger:service:autoscaling:event'?: boolean;
3640
+ 'trigger:service:deployment:status-update'?: boolean;
3641
+ 'trigger:addon-backup:start'?: boolean;
3642
+ 'trigger:addon-backup:success'?: boolean;
3643
+ 'trigger:addon-backup:failure'?: boolean;
3644
+ 'trigger:addon-backup:abort'?: boolean;
3645
+ 'trigger:build:start'?: boolean;
3646
+ 'trigger:build:success'?: boolean;
3647
+ 'trigger:build:failure'?: boolean;
3648
+ 'trigger:build:abort'?: boolean;
3649
+ 'trigger:job-run:start'?: boolean;
3650
+ 'trigger:job-run:success'?: boolean;
3651
+ 'trigger:job-run:failure'?: boolean;
3652
+ 'trigger:job-run:abort'?: boolean;
3653
+ 'trigger:job-run:terminate'?: boolean;
3654
+ 'trigger:release-flow-template-run:start'?: boolean;
3655
+ 'trigger:release-flow-template-run:update'?: boolean;
3656
+ 'trigger:release-flow-template-run:success'?: boolean;
3657
+ 'trigger:release-flow-template-run:failure'?: boolean;
3658
+ 'trigger:release-flow-template-run:aborted'?: boolean;
3659
+ 'trigger:template-run:queued'?: boolean;
3660
+ 'trigger:template-run:start'?: boolean;
3661
+ 'trigger:template-run:update'?: boolean;
3662
+ 'trigger:template-run:success'?: boolean;
3663
+ 'trigger:template-run:failure'?: boolean;
3664
+ 'trigger:resource:certificate-success'?: boolean;
3665
+ 'trigger:resource:certificate-final-failure'?: boolean;
3666
+ 'trigger:cdn:action-success'?: boolean;
3667
+ 'trigger:cdn:action-failure'?: boolean;
3668
+ 'trigger:cdn:action-delay'?: boolean;
3669
+ 'trigger:log-sink:paused'?: boolean;
3670
+ 'trigger:billing:billing-alert-exceeded'?: boolean;
3671
+ 'trigger:billing:invoice-payment-action-required'?: boolean;
3672
+ 'trigger:billing:invoice-payment-failed'?: boolean;
3673
+ 'trigger:billing:invoice-paid'?: boolean;
3674
+ 'trigger:billing:invoice-carried-over'?: boolean;
3675
+ 'trigger:infrastructure:service:container-crash'?: boolean;
3676
+ 'trigger:infrastructure:service:container-eviction'?: boolean;
3677
+ 'trigger:infrastructure:addon:container-crash'?: boolean;
3678
+ 'trigger:infrastructure:addon:container-eviction'?: boolean;
3679
+ 'trigger:infrastructure:job:container-crash'?: boolean;
3680
+ 'trigger:infrastructure:job:container-eviction'?: boolean;
3681
+ 'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
3682
+ 'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
3683
+ 'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
3684
+ 'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
3685
+ 'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
3686
+ 'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
3687
+ 'trigger:infrastructure:service:container-memorySpike90'?: boolean;
3688
+ 'trigger:infrastructure:service:container-memorySustained90'?: boolean;
3689
+ 'trigger:infrastructure:job:container-memorySpike90'?: boolean;
3690
+ 'trigger:infrastructure:job:container-memorySustained90'?: boolean;
3691
+ 'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
3692
+ 'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
3693
+ 'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
3694
+ 'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3695
+ 'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3696
+ 'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3697
+ 'trigger:infrastructure:cluster:scheduling'?: boolean;
3698
+ };
3699
+ };
3700
+ /** Updates a notification integration */
3701
+ declare class UpdateNotificationEndpoint extends PostApiEndpoint<UpdateNotificationRequest, UpdateNotificationResult> {
3702
+ description: string;
3703
+ withAuth: boolean;
3704
+ requiredPermissions: string;
3705
+ endpointUrl: (opts: UpdateNotificationRequest) => string;
3706
+ body: (payload: UpdateNotificationRequest) => string;
3707
+ }
3708
+
3709
+ type DeleteNotificationResult = any;
3710
+ type DeleteNotificationCall = (opts: DeleteNotificationRequest) => Promise<ApiCallResponse<DeleteNotificationResult>>;
3711
+ type DeleteNotificationRequest = {
3712
+ parameters: DeleteNotificationParameters;
3713
+ };
3714
+ type DeleteNotificationParameters = {
3715
+ /** ID of the notification integration */ 'notificationId': string;
3716
+ };
3717
+ /** Deletes a notification integration */
3718
+ declare class DeleteNotificationEndpoint extends DeleteApiEndpoint<DeleteNotificationRequest, DeleteNotificationResult> {
3719
+ description: string;
3720
+ withAuth: boolean;
3721
+ requiredPermissions: string;
3722
+ endpointUrl: (opts: DeleteNotificationRequest) => string;
3723
+ body: () => undefined;
3724
+ }
3725
+
3726
+ type ListRegistrycredentialsResult = {
2793
3727
  /** An array of credentials saved to this account. */
2794
3728
  'credentials': {
2795
3729
  /** Identifier for the credentials. Example: "example-credentials" */
@@ -2809,11 +3743,11 @@ type ListRegistriesResult = {
2809
3743
  'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2810
3744
  }[];
2811
3745
  };
2812
- type ListRegistriesCall = (opts: ListRegistriesRequest) => Promise<ApiCallResponse<ListRegistriesResult>>;
2813
- type ListRegistriesRequest = {
2814
- options?: ListRegistriesOptions;
3746
+ type ListRegistrycredentialsCall = (opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>;
3747
+ type ListRegistrycredentialsRequest = {
3748
+ options?: ListRegistrycredentialsOptions;
2815
3749
  };
2816
- type ListRegistriesOptions = {
3750
+ type ListRegistrycredentialsOptions = {
2817
3751
  /** The number of results to display per request. Maximum of 100 results per page. */
2818
3752
  'per_page'?: number;
2819
3753
  /** The page number to access. */
@@ -2822,15 +3756,15 @@ type ListRegistriesOptions = {
2822
3756
  'cursor'?: string;
2823
3757
  };
2824
3758
  /** Lists the container registry credentials saved to this account. Does not display secrets. */
2825
- declare class ListRegistriesEndpoint extends GetApiEndpoint<ListRegistriesRequest, ListRegistriesResult> {
3759
+ declare class ListRegistrycredentialsEndpoint extends GetApiEndpoint<ListRegistrycredentialsRequest, ListRegistrycredentialsResult> {
2826
3760
  description: string;
2827
3761
  withAuth: boolean;
2828
3762
  requiredPermissions: string;
2829
- endpointUrl: (opts: ListRegistriesRequest) => string;
3763
+ endpointUrl: (opts: ListRegistrycredentialsRequest) => string;
2830
3764
  body: () => undefined;
2831
3765
  }
2832
3766
 
2833
- type AddRegistryResult = {
3767
+ type AddRegistrycredentialsResult = {
2834
3768
  /** Identifier for the credentials. Example: "example-credentials" */
2835
3769
  'id': string;
2836
3770
  /** Name of the saved credentials. Example: "Example Credentials" */
@@ -2847,11 +3781,11 @@ type AddRegistryResult = {
2847
3781
  /** The registry provider associated with this set of credentials. Example: "dockerhub" */
2848
3782
  'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2849
3783
  };
2850
- type AddRegistryCall = (opts: AddRegistryRequest) => Promise<ApiCallResponse<AddRegistryResult>>;
2851
- type AddRegistryRequest = {
2852
- data: AddRegistryData;
3784
+ type AddRegistrycredentialsCall = (opts: AddRegistrycredentialsRequest) => Promise<ApiCallResponse<AddRegistrycredentialsResult>>;
3785
+ type AddRegistrycredentialsRequest = {
3786
+ data: AddRegistrycredentialsData;
2853
3787
  };
2854
- type AddRegistryData = {
3788
+ type AddRegistrycredentialsData = {
2855
3789
  /** Name of the credentials. Example: "Example Credentials" */
2856
3790
  'name': string;
2857
3791
  /** Description of the credentials. Example: "This is a set of saved credentials." */
@@ -2907,15 +3841,15 @@ type AddRegistryData = {
2907
3841
  'auths': any;
2908
3842
  };
2909
3843
  /** Adds a new set of container registry credentials to this account. */
2910
- declare class AddRegistryEndpoint extends PostApiEndpoint<AddRegistryRequest, AddRegistryResult> {
3844
+ declare class AddRegistrycredentialsEndpoint extends PostApiEndpoint<AddRegistrycredentialsRequest, AddRegistrycredentialsResult> {
2911
3845
  description: string;
2912
3846
  withAuth: boolean;
2913
3847
  requiredPermissions: string;
2914
- endpointUrl: (opts: AddRegistryRequest) => string;
2915
- body: (payload: AddRegistryRequest) => string;
3848
+ endpointUrl: (opts: AddRegistrycredentialsRequest) => string;
3849
+ body: (payload: AddRegistrycredentialsRequest) => string;
2916
3850
  }
2917
3851
 
2918
- type GetRegistryResult = {
3852
+ type GetRegistrycredentialsResult = {
2919
3853
  /** Identifier for the credentials. Example: "example-credentials" */
2920
3854
  'id': string;
2921
3855
  /** Name of the saved credentials. Example: "Example Credentials" */
@@ -2934,49 +3868,49 @@ type GetRegistryResult = {
2934
3868
  /** The `auths` data extracted from your Docker config file. Example: {"https://index.docker.io/v1/":{"auth":"[YOUR AUTH KEY]"}} */
2935
3869
  'auths'?: any;
2936
3870
  };
2937
- type GetRegistryCall = (opts: GetRegistryRequest) => Promise<ApiCallResponse<GetRegistryResult>>;
2938
- type GetRegistryRequest = {
2939
- parameters: GetRegistryParameters;
3871
+ type GetRegistrycredentialsCall = (opts: GetRegistrycredentialsRequest) => Promise<ApiCallResponse<GetRegistrycredentialsResult>>;
3872
+ type GetRegistrycredentialsRequest = {
3873
+ parameters: GetRegistrycredentialsParameters;
2940
3874
  };
2941
- type GetRegistryParameters = {
3875
+ type GetRegistrycredentialsParameters = {
2942
3876
  /** ID of the registry credential */ 'credentialId': string;
2943
3877
  };
2944
3878
  /** Views a set of registry credential data. */
2945
- declare class GetRegistryEndpoint extends GetApiEndpoint<GetRegistryRequest, GetRegistryResult> {
3879
+ declare class GetRegistrycredentialsEndpoint extends GetApiEndpoint<GetRegistrycredentialsRequest, GetRegistrycredentialsResult> {
2946
3880
  description: string;
2947
3881
  withAuth: boolean;
2948
3882
  requiredPermissions: string;
2949
- endpointUrl: (opts: GetRegistryRequest) => string;
3883
+ endpointUrl: (opts: GetRegistrycredentialsRequest) => string;
2950
3884
  body: () => undefined;
2951
3885
  }
2952
3886
 
2953
- type DeleteRegistryResult = any;
2954
- type DeleteRegistryCall = (opts: DeleteRegistryRequest) => Promise<ApiCallResponse<DeleteRegistryResult>>;
2955
- type DeleteRegistryRequest = {
2956
- parameters: DeleteRegistryParameters;
3887
+ type DeleteRegistrycredentialsResult = any;
3888
+ type DeleteRegistrycredentialsCall = (opts: DeleteRegistrycredentialsRequest) => Promise<ApiCallResponse<DeleteRegistrycredentialsResult>>;
3889
+ type DeleteRegistrycredentialsRequest = {
3890
+ parameters: DeleteRegistrycredentialsParameters;
2957
3891
  };
2958
- type DeleteRegistryParameters = {
3892
+ type DeleteRegistrycredentialsParameters = {
2959
3893
  /** ID of the registry credential */ 'credentialId': string;
2960
3894
  };
2961
3895
  /** Deletes a set of registry credential data. */
2962
- declare class DeleteRegistryEndpoint extends DeleteApiEndpoint<DeleteRegistryRequest, DeleteRegistryResult> {
3896
+ declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult> {
2963
3897
  description: string;
2964
3898
  withAuth: boolean;
2965
3899
  requiredPermissions: string;
2966
- endpointUrl: (opts: DeleteRegistryRequest) => string;
3900
+ endpointUrl: (opts: DeleteRegistrycredentialsRequest) => string;
2967
3901
  body: () => undefined;
2968
3902
  }
2969
3903
 
2970
- type UpdateRegistryResult = any;
2971
- type UpdateRegistryCall = (opts: UpdateRegistryRequest) => Promise<ApiCallResponse<UpdateRegistryResult>>;
2972
- type UpdateRegistryRequest = {
2973
- parameters: UpdateRegistryParameters;
2974
- data: UpdateRegistryData;
3904
+ type UpdateRegistrycredentialsResult = any;
3905
+ type UpdateRegistrycredentialsCall = (opts: UpdateRegistrycredentialsRequest) => Promise<ApiCallResponse<UpdateRegistrycredentialsResult>>;
3906
+ type UpdateRegistrycredentialsRequest = {
3907
+ parameters: UpdateRegistrycredentialsParameters;
3908
+ data: UpdateRegistrycredentialsData;
2975
3909
  };
2976
- type UpdateRegistryParameters = {
3910
+ type UpdateRegistrycredentialsParameters = {
2977
3911
  /** ID of the registry credential */ 'credentialId': string;
2978
3912
  };
2979
- type UpdateRegistryData = {
3913
+ type UpdateRegistrycredentialsData = {
2980
3914
  /** Description of the credentials. Example: "This is a set of saved credentials." */
2981
3915
  'description'?: string;
2982
3916
  /** Data about whether the credentials are restricted to certain projects. */
@@ -3030,12 +3964,12 @@ type UpdateRegistryData = {
3030
3964
  'auths': any;
3031
3965
  };
3032
3966
  /** Updates a set of registry credential data. */
3033
- declare class UpdateRegistryEndpoint extends PostApiEndpoint<UpdateRegistryRequest, UpdateRegistryResult> {
3967
+ declare class UpdateRegistrycredentialsEndpoint extends PostApiEndpoint<UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult> {
3034
3968
  description: string;
3035
3969
  withAuth: boolean;
3036
3970
  requiredPermissions: string;
3037
- endpointUrl: (opts: UpdateRegistryRequest) => string;
3038
- body: (payload: UpdateRegistryRequest) => string;
3971
+ endpointUrl: (opts: UpdateRegistrycredentialsRequest) => string;
3972
+ body: (payload: UpdateRegistrycredentialsRequest) => string;
3039
3973
  }
3040
3974
 
3041
3975
  type ListVcsResult = {
@@ -3083,12 +4017,16 @@ type CreateCustomvcsTokenResult = {
3083
4017
  type CreateCustomvcsTokenCall = (opts: CreateCustomvcsTokenRequest) => Promise<ApiCallResponse<CreateCustomvcsTokenResult>>;
3084
4018
  type CreateCustomvcsTokenRequest = {
3085
4019
  parameters: CreateCustomvcsTokenParameters;
4020
+ options?: CreateCustomvcsTokenOptions;
3086
4021
  };
3087
4022
  type CreateCustomvcsTokenParameters = {
3088
4023
  /** ID of the custom VCS */ 'customVCSId': string;
3089
4024
  /** ID of the version control link */
3090
4025
  'vcsLinkId': string;
3091
4026
  };
4027
+ type CreateCustomvcsTokenOptions = {
4028
+ 'force_refresh'?: boolean;
4029
+ };
3092
4030
  /** Generate a token for a specific VCS link. */
3093
4031
  declare class CreateCustomvcsTokenEndpoint extends PostApiEndpoint<CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult> {
3094
4032
  description: string;
@@ -3510,6 +4448,8 @@ type CreateAddonResult = {
3510
4448
  'storage': number;
3511
4449
  /** The number of addon replicas to run. Example: 1 */
3512
4450
  'replicas': number;
4451
+ /** Deploy addon with zonal redundancy */
4452
+ 'zonalRedundancy'?: boolean;
3513
4453
  };
3514
4454
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
3515
4455
  'source'?: {
@@ -3532,8 +4472,16 @@ type CreateAddonResult = {
3532
4472
  /** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
3533
4473
  'pitrEnabled'?: boolean;
3534
4474
  'typeSpecificSettings'?: {
3535
- /** Postgres only: enable high-availability mode. */
3536
- 'postgresHAEnabled'?: boolean;
4475
+ /** Redis only: Key eviction policy at memory pressure. */
4476
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
4477
+ /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4478
+ 'postgresqlConnectionPoolerEnabled'?: boolean;
4479
+ /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
4480
+ 'postgresqlConnectionPoolerReplicas'?: number;
4481
+ /** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
4482
+ 'postgresqlReadConnectionPoolerEnabled'?: boolean;
4483
+ /** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
4484
+ 'postgresqlReadConnectionPoolerReplicas'?: number;
3537
4485
  };
3538
4486
  'customCredentials'?: {
3539
4487
  /** Custom database name. Not supported for all addon types. */
@@ -3584,6 +4532,8 @@ type CreateAddonData = {
3584
4532
  'storage': number;
3585
4533
  /** The number of addon replicas to run. Example: 1 */
3586
4534
  'replicas': number;
4535
+ /** Deploy addon with zonal redundancy */
4536
+ 'zonalRedundancy'?: boolean;
3587
4537
  };
3588
4538
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
3589
4539
  'source'?: {
@@ -3606,8 +4556,16 @@ type CreateAddonData = {
3606
4556
  /** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
3607
4557
  'pitrEnabled'?: boolean;
3608
4558
  'typeSpecificSettings'?: {
3609
- /** Postgres only: enable high-availability mode. */
3610
- 'postgresHAEnabled'?: boolean;
4559
+ /** Redis only: Key eviction policy at memory pressure. */
4560
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
4561
+ /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4562
+ 'postgresqlConnectionPoolerEnabled'?: boolean;
4563
+ /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
4564
+ 'postgresqlConnectionPoolerReplicas'?: number;
4565
+ /** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
4566
+ 'postgresqlReadConnectionPoolerEnabled'?: boolean;
4567
+ /** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
4568
+ 'postgresqlReadConnectionPoolerReplicas'?: number;
3611
4569
  };
3612
4570
  'customCredentials'?: {
3613
4571
  /** Custom database name. Not supported for all addon types. */
@@ -3644,6 +4602,8 @@ type PutAddonResult = {
3644
4602
  'storage': number;
3645
4603
  /** The number of addon replicas to run. Example: 1 */
3646
4604
  'replicas': number;
4605
+ /** Deploy addon with zonal redundancy */
4606
+ 'zonalRedundancy'?: boolean;
3647
4607
  };
3648
4608
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
3649
4609
  'source'?: {
@@ -3666,8 +4626,16 @@ type PutAddonResult = {
3666
4626
  /** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
3667
4627
  'pitrEnabled'?: boolean;
3668
4628
  'typeSpecificSettings'?: {
3669
- /** Postgres only: enable high-availability mode. */
3670
- 'postgresHAEnabled'?: boolean;
4629
+ /** Redis only: Key eviction policy at memory pressure. */
4630
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
4631
+ /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4632
+ 'postgresqlConnectionPoolerEnabled'?: boolean;
4633
+ /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
4634
+ 'postgresqlConnectionPoolerReplicas'?: number;
4635
+ /** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
4636
+ 'postgresqlReadConnectionPoolerEnabled'?: boolean;
4637
+ /** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
4638
+ 'postgresqlReadConnectionPoolerReplicas'?: number;
3671
4639
  };
3672
4640
  'customCredentials'?: {
3673
4641
  /** Custom database name. Not supported for all addon types. */
@@ -3718,6 +4686,8 @@ type PutAddonData = {
3718
4686
  'storage': number;
3719
4687
  /** The number of addon replicas to run. Example: 1 */
3720
4688
  'replicas': number;
4689
+ /** Deploy addon with zonal redundancy */
4690
+ 'zonalRedundancy'?: boolean;
3721
4691
  };
3722
4692
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
3723
4693
  'source'?: {
@@ -3740,8 +4710,16 @@ type PutAddonData = {
3740
4710
  /** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
3741
4711
  'pitrEnabled'?: boolean;
3742
4712
  'typeSpecificSettings'?: {
3743
- /** Postgres only: enable high-availability mode. */
3744
- 'postgresHAEnabled'?: boolean;
4713
+ /** Redis only: Key eviction policy at memory pressure. */
4714
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
4715
+ /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4716
+ 'postgresqlConnectionPoolerEnabled'?: boolean;
4717
+ /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
4718
+ 'postgresqlConnectionPoolerReplicas'?: number;
4719
+ /** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
4720
+ 'postgresqlReadConnectionPoolerEnabled'?: boolean;
4721
+ /** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
4722
+ 'postgresqlReadConnectionPoolerReplicas'?: number;
3745
4723
  };
3746
4724
  'customCredentials'?: {
3747
4725
  /** Custom database name. Not supported for all addon types. */
@@ -3765,6 +4743,8 @@ type GetAddonResult = {
3765
4743
  'name': string;
3766
4744
  /** Full identifier for the addon. Example: "/example-user/default-project/example-addon" */
3767
4745
  'appId': string;
4746
+ /** An array of previously defined tags to help identify and group the resource. */
4747
+ 'tags': string[];
3768
4748
  /** A short description of the addon. Example: "This is the addon description" */
3769
4749
  'description'?: string;
3770
4750
  /** The time the addon was created. Example: "2021-01-20T11:19:53.175Z" */
@@ -3858,6 +4838,8 @@ type PatchAddonResult = {
3858
4838
  'storage': number;
3859
4839
  /** The number of addon replicas to run. Example: 1 */
3860
4840
  'replicas': number;
4841
+ /** Deploy addon with zonal redundancy */
4842
+ 'zonalRedundancy'?: boolean;
3861
4843
  };
3862
4844
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
3863
4845
  'source'?: {
@@ -3880,8 +4862,16 @@ type PatchAddonResult = {
3880
4862
  /** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
3881
4863
  'pitrEnabled'?: boolean;
3882
4864
  'typeSpecificSettings'?: {
3883
- /** Postgres only: enable high-availability mode. */
3884
- 'postgresHAEnabled'?: boolean;
4865
+ /** Redis only: Key eviction policy at memory pressure. */
4866
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
4867
+ /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4868
+ 'postgresqlConnectionPoolerEnabled'?: boolean;
4869
+ /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
4870
+ 'postgresqlConnectionPoolerReplicas'?: number;
4871
+ /** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
4872
+ 'postgresqlReadConnectionPoolerEnabled'?: boolean;
4873
+ /** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
4874
+ 'postgresqlReadConnectionPoolerReplicas'?: number;
3885
4875
  };
3886
4876
  'customCredentials'?: {
3887
4877
  /** Custom database name. Not supported for all addon types. */
@@ -3940,6 +4930,22 @@ type PatchAddonData = {
3940
4930
  /** The action for this rule. Example: "DENY" */
3941
4931
  'action': 'ALLOW' | 'DENY';
3942
4932
  }[];
4933
+ 'typeSpecificSettings'?: {
4934
+ /** Redis only: Key eviction policy at memory pressure. */
4935
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
4936
+ /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4937
+ 'postgresqlConnectionPoolerEnabled'?: boolean;
4938
+ /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
4939
+ 'postgresqlConnectionPoolerReplicas'?: number;
4940
+ /** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
4941
+ 'postgresqlReadConnectionPoolerEnabled'?: boolean;
4942
+ /** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
4943
+ 'postgresqlReadConnectionPoolerReplicas'?: number;
4944
+ };
4945
+ 'customCredentials'?: {
4946
+ /** Custom database name. Not supported for all addon types. */
4947
+ 'dbName'?: string;
4948
+ };
3943
4949
  'backupSchedules'?: any[];
3944
4950
  };
3945
4951
  /** Updates an addon */
@@ -4353,6 +5359,8 @@ declare class RestoreAddonBackupEndpoint extends PostApiEndpoint<RestoreAddonBac
4353
5359
  type GetAddonRestoresResult = {
4354
5360
  /** A list of backup restores. */
4355
5361
  'restores'?: {
5362
+ /** Id of the restore, unix millis. Example: 1693287033325 */
5363
+ 'id': number;
4356
5364
  /** The time the backup was initiated. Example: "2021-01-20T11:19:54.494Z" */
4357
5365
  'restoreTimestamp': string;
4358
5366
  /** The current status of the restore. Example: "completed" */
@@ -4834,6 +5842,8 @@ type ListJobsResult = {
4834
5842
  'appId': string;
4835
5843
  /** Job name Example: "Example Job" */
4836
5844
  'name': string;
5845
+ /** An array of previously defined tags to help identify and group the resource. */
5846
+ 'tags': string[];
4837
5847
  /** A short description of the job Example: "This is the job description" */
4838
5848
  'description'?: string;
4839
5849
  /** Type of the job (manual or cron) Example: "cron" */
@@ -4901,6 +5911,7 @@ type CreateJobCronResult = {
4901
5911
  'ciIgnoreFlags'?: string[];
4902
5912
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
4903
5913
  'dockerfileTarget'?: string;
5914
+ 'dockerCredentials'?: string[];
4904
5915
  /** Include .git folder inside the build context */
4905
5916
  'includeGitFolder'?: boolean;
4906
5917
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -5203,6 +6214,7 @@ type CreateJobCronData = {
5203
6214
  'ciIgnoreFlags'?: string[];
5204
6215
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
5205
6216
  'dockerfileTarget'?: string;
6217
+ 'dockerCredentials'?: string[];
5206
6218
  /** Include .git folder inside the build context */
5207
6219
  'includeGitFolder'?: boolean;
5208
6220
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -5308,6 +6320,7 @@ type PutJobCronResult = {
5308
6320
  'ciIgnoreFlags'?: string[];
5309
6321
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
5310
6322
  'dockerfileTarget'?: string;
6323
+ 'dockerCredentials'?: string[];
5311
6324
  /** Include .git folder inside the build context */
5312
6325
  'includeGitFolder'?: boolean;
5313
6326
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -5610,6 +6623,7 @@ type PutJobCronData = {
5610
6623
  'ciIgnoreFlags'?: string[];
5611
6624
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
5612
6625
  'dockerfileTarget'?: string;
6626
+ 'dockerCredentials'?: string[];
5613
6627
  /** Include .git folder inside the build context */
5614
6628
  'includeGitFolder'?: boolean;
5615
6629
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -5715,6 +6729,7 @@ type PatchJobCronResult = {
5715
6729
  'ciIgnoreFlags'?: string[];
5716
6730
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
5717
6731
  'dockerfileTarget'?: string;
6732
+ 'dockerCredentials'?: string[];
5718
6733
  /** Include .git folder inside the build context */
5719
6734
  'includeGitFolder'?: boolean;
5720
6735
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -5902,6 +6917,7 @@ type PatchJobCronData = {
5902
6917
  'ciIgnoreFlagsEnabled'?: boolean;
5903
6918
  /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
5904
6919
  'ciIgnoreFlags'?: string[];
6920
+ 'dockerCredentials'?: string[];
5905
6921
  };
5906
6922
  'buildSettings'?: {
5907
6923
  'dockerfile'?: {
@@ -6000,6 +7016,7 @@ type CreateJobManualResult = {
6000
7016
  'ciIgnoreFlags'?: string[];
6001
7017
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
6002
7018
  'dockerfileTarget'?: string;
7019
+ 'dockerCredentials'?: string[];
6003
7020
  /** Include .git folder inside the build context */
6004
7021
  'includeGitFolder'?: boolean;
6005
7022
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -6296,6 +7313,7 @@ type CreateJobManualData = {
6296
7313
  'ciIgnoreFlags'?: string[];
6297
7314
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
6298
7315
  'dockerfileTarget'?: string;
7316
+ 'dockerCredentials'?: string[];
6299
7317
  /** Include .git folder inside the build context */
6300
7318
  'includeGitFolder'?: boolean;
6301
7319
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -6395,6 +7413,7 @@ type PutJobManualResult = {
6395
7413
  'ciIgnoreFlags'?: string[];
6396
7414
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
6397
7415
  'dockerfileTarget'?: string;
7416
+ 'dockerCredentials'?: string[];
6398
7417
  /** Include .git folder inside the build context */
6399
7418
  'includeGitFolder'?: boolean;
6400
7419
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -6691,6 +7710,7 @@ type PutJobManualData = {
6691
7710
  'ciIgnoreFlags'?: string[];
6692
7711
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
6693
7712
  'dockerfileTarget'?: string;
7713
+ 'dockerCredentials'?: string[];
6694
7714
  /** Include .git folder inside the build context */
6695
7715
  'includeGitFolder'?: boolean;
6696
7716
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -6790,6 +7810,7 @@ type PatchJobManualResult = {
6790
7810
  'ciIgnoreFlags'?: string[];
6791
7811
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
6792
7812
  'dockerfileTarget'?: string;
7813
+ 'dockerCredentials'?: string[];
6793
7814
  /** Include .git folder inside the build context */
6794
7815
  'includeGitFolder'?: boolean;
6795
7816
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -6971,6 +7992,7 @@ type PatchJobManualData = {
6971
7992
  'ciIgnoreFlagsEnabled'?: boolean;
6972
7993
  /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
6973
7994
  'ciIgnoreFlags'?: string[];
7995
+ 'dockerCredentials'?: string[];
6974
7996
  };
6975
7997
  'buildSettings'?: {
6976
7998
  'dockerfile'?: {
@@ -7042,6 +8064,8 @@ type GetJobResult = {
7042
8064
  'appId': string;
7043
8065
  /** Job name Example: "Example Job" */
7044
8066
  'name': string;
8067
+ /** An array of previously defined tags to help identify and group the resource. */
8068
+ 'tags': string[];
7045
8069
  /** A short description of the job Example: "This is the job description" */
7046
8070
  'description'?: string;
7047
8071
  /** ID of the project that the job belongs to Example: "default-project" */
@@ -7077,6 +8101,7 @@ type GetJobResult = {
7077
8101
  'ciIgnoreFlags'?: string[];
7078
8102
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
7079
8103
  'dockerfileTarget'?: string;
8104
+ 'dockerCredentials'?: string[];
7080
8105
  /** Include .git folder inside the build context */
7081
8106
  'includeGitFolder'?: boolean;
7082
8107
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -7514,6 +8539,7 @@ type UpdateJobBuildoptionsData = {
7514
8539
  'ciIgnoreFlags'?: string[];
7515
8540
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
7516
8541
  'dockerfileTarget'?: string;
8542
+ 'dockerCredentials'?: string[];
7517
8543
  /** Include .git folder inside the build context */
7518
8544
  'includeGitFolder'?: boolean;
7519
8545
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -7548,6 +8574,7 @@ type UpdateJobBuildoptionsData = {
7548
8574
  'ciIgnoreFlags'?: string[];
7549
8575
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
7550
8576
  'dockerfileTarget'?: string;
8577
+ 'dockerCredentials'?: string[];
7551
8578
  /** Include .git folder inside the build context */
7552
8579
  'includeGitFolder'?: boolean;
7553
8580
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -9205,6 +10232,8 @@ type ListSecretsResult = {
9205
10232
  'projectId': string;
9206
10233
  /** Secret group name Example: "Example secret group" */
9207
10234
  'name': string;
10235
+ /** An array of previously defined tags to help identify and group the resource. */
10236
+ 'tags': string[];
9208
10237
  /** A short description of the secret group Example: "This is the secret group description" */
9209
10238
  'description'?: string;
9210
10239
  /** The type of the created secret group Example: "environment" */
@@ -9589,6 +10618,8 @@ type GetSecretResult = {
9589
10618
  'id': string;
9590
10619
  /** Secret group name Example: "Example secret group" */
9591
10620
  'name': string;
10621
+ /** An array of previously defined tags to help identify and group the resource. */
10622
+ 'tags': string[];
9592
10623
  /** A short description of the secret group Example: "This is the secret group description" */
9593
10624
  'description'?: string;
9594
10625
  /** The type of the created secret group Example: "environment" */
@@ -9830,6 +10861,8 @@ type GetSecretdetailsResult = {
9830
10861
  'id': string;
9831
10862
  /** Secret group name Example: "Example secret group" */
9832
10863
  'name': string;
10864
+ /** An array of previously defined tags to help identify and group the resource. */
10865
+ 'tags': string[];
9833
10866
  /** A short description of the secret group Example: "This is the secret group description" */
9834
10867
  'description'?: string;
9835
10868
  /** The type of the created secret group Example: "environment" */
@@ -9953,6 +10986,7 @@ type CreateServiceBuildResult = {
9953
10986
  'ciIgnoreFlags'?: string[];
9954
10987
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
9955
10988
  'dockerfileTarget'?: string;
10989
+ 'dockerCredentials'?: string[];
9956
10990
  /** Include .git folder inside the build context */
9957
10991
  'includeGitFolder'?: boolean;
9958
10992
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -10059,6 +11093,7 @@ type CreateServiceBuildData = {
10059
11093
  'ciIgnoreFlags'?: string[];
10060
11094
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
10061
11095
  'dockerfileTarget'?: string;
11096
+ 'dockerCredentials'?: string[];
10062
11097
  /** Include .git folder inside the build context */
10063
11098
  'includeGitFolder'?: boolean;
10064
11099
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -10141,6 +11176,7 @@ type PutServiceBuildResult = {
10141
11176
  'ciIgnoreFlags'?: string[];
10142
11177
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
10143
11178
  'dockerfileTarget'?: string;
11179
+ 'dockerCredentials'?: string[];
10144
11180
  /** Include .git folder inside the build context */
10145
11181
  'includeGitFolder'?: boolean;
10146
11182
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -10247,6 +11283,7 @@ type PutServiceBuildData = {
10247
11283
  'ciIgnoreFlags'?: string[];
10248
11284
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
10249
11285
  'dockerfileTarget'?: string;
11286
+ 'dockerCredentials'?: string[];
10250
11287
  /** Include .git folder inside the build context */
10251
11288
  'includeGitFolder'?: boolean;
10252
11289
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -10329,6 +11366,7 @@ type PatchServiceBuildResult = {
10329
11366
  'ciIgnoreFlags'?: string[];
10330
11367
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
10331
11368
  'dockerfileTarget'?: string;
11369
+ 'dockerCredentials'?: string[];
10332
11370
  /** Include .git folder inside the build context */
10333
11371
  'includeGitFolder'?: boolean;
10334
11372
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -10432,6 +11470,7 @@ type PatchServiceBuildData = {
10432
11470
  'ciIgnoreFlagsEnabled'?: boolean;
10433
11471
  /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
10434
11472
  'ciIgnoreFlags'?: string[];
11473
+ 'dockerCredentials'?: string[];
10435
11474
  };
10436
11475
  /** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
10437
11476
  'buildArguments'?: any;
@@ -10540,6 +11579,7 @@ type CreateServiceCombinedResult = {
10540
11579
  'ciIgnoreFlags'?: string[];
10541
11580
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
10542
11581
  'dockerfileTarget'?: string;
11582
+ 'dockerCredentials'?: string[];
10543
11583
  /** Include .git folder inside the build context */
10544
11584
  'includeGitFolder'?: boolean;
10545
11585
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -10598,6 +11638,12 @@ type CreateServiceCombinedResult = {
10598
11638
  /** Threshold memory usage percentage at which the workload will be scaled */
10599
11639
  'thresholdPercentage': number;
10600
11640
  };
11641
+ 'rps'?: {
11642
+ /** Whether autoscaling should take into requests-per-second */
11643
+ 'enabled': boolean;
11644
+ /** Threshold rps value on which the workload will be scaled */
11645
+ 'thresholdValue': number;
11646
+ };
10601
11647
  };
10602
11648
  };
10603
11649
  'deploymentSysctlSettings'?: {
@@ -10638,6 +11684,8 @@ type CreateServiceCombinedResult = {
10638
11684
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
10639
11685
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
10640
11686
  };
11687
+ /** Defines scheduling behaviour across different zones within the same region. */
11688
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
10641
11689
  /** Image registry url of the deployed image. */
10642
11690
  'imageUrl'?: string;
10643
11691
  };
@@ -10726,6 +11774,8 @@ type CreateServiceCombinedData = {
10726
11774
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
10727
11775
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
10728
11776
  };
11777
+ /** Defines scheduling behaviour across different zones within the same region. */
11778
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
10729
11779
  };
10730
11780
  'ports'?: {
10731
11781
  /** The name used to identify the port. Example: "port-1" */
@@ -10809,6 +11859,7 @@ type CreateServiceCombinedData = {
10809
11859
  'ciIgnoreFlags'?: string[];
10810
11860
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
10811
11861
  'dockerfileTarget'?: string;
11862
+ 'dockerCredentials'?: string[];
10812
11863
  /** Include .git folder inside the build context */
10813
11864
  'includeGitFolder'?: boolean;
10814
11865
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -10867,6 +11918,12 @@ type CreateServiceCombinedData = {
10867
11918
  /** Threshold memory usage percentage at which the workload will be scaled */
10868
11919
  'thresholdPercentage': number;
10869
11920
  };
11921
+ 'rps'?: {
11922
+ /** Whether autoscaling should take into requests-per-second */
11923
+ 'enabled': boolean;
11924
+ /** Threshold rps value on which the workload will be scaled */
11925
+ 'thresholdValue': number;
11926
+ };
10870
11927
  };
10871
11928
  };
10872
11929
  };
@@ -10972,6 +12029,7 @@ type PutServiceCombinedResult = {
10972
12029
  'ciIgnoreFlags'?: string[];
10973
12030
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
10974
12031
  'dockerfileTarget'?: string;
12032
+ 'dockerCredentials'?: string[];
10975
12033
  /** Include .git folder inside the build context */
10976
12034
  'includeGitFolder'?: boolean;
10977
12035
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -11030,6 +12088,12 @@ type PutServiceCombinedResult = {
11030
12088
  /** Threshold memory usage percentage at which the workload will be scaled */
11031
12089
  'thresholdPercentage': number;
11032
12090
  };
12091
+ 'rps'?: {
12092
+ /** Whether autoscaling should take into requests-per-second */
12093
+ 'enabled': boolean;
12094
+ /** Threshold rps value on which the workload will be scaled */
12095
+ 'thresholdValue': number;
12096
+ };
11033
12097
  };
11034
12098
  };
11035
12099
  'deploymentSysctlSettings'?: {
@@ -11070,6 +12134,8 @@ type PutServiceCombinedResult = {
11070
12134
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
11071
12135
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
11072
12136
  };
12137
+ /** Defines scheduling behaviour across different zones within the same region. */
12138
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
11073
12139
  /** Image registry url of the deployed image. */
11074
12140
  'imageUrl'?: string;
11075
12141
  };
@@ -11158,6 +12224,8 @@ type PutServiceCombinedData = {
11158
12224
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
11159
12225
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
11160
12226
  };
12227
+ /** Defines scheduling behaviour across different zones within the same region. */
12228
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
11161
12229
  };
11162
12230
  'ports'?: {
11163
12231
  /** The name used to identify the port. Example: "port-1" */
@@ -11241,6 +12309,7 @@ type PutServiceCombinedData = {
11241
12309
  'ciIgnoreFlags'?: string[];
11242
12310
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
11243
12311
  'dockerfileTarget'?: string;
12312
+ 'dockerCredentials'?: string[];
11244
12313
  /** Include .git folder inside the build context */
11245
12314
  'includeGitFolder'?: boolean;
11246
12315
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -11299,6 +12368,12 @@ type PutServiceCombinedData = {
11299
12368
  /** Threshold memory usage percentage at which the workload will be scaled */
11300
12369
  'thresholdPercentage': number;
11301
12370
  };
12371
+ 'rps'?: {
12372
+ /** Whether autoscaling should take into requests-per-second */
12373
+ 'enabled': boolean;
12374
+ /** Threshold rps value on which the workload will be scaled */
12375
+ 'thresholdValue': number;
12376
+ };
11302
12377
  };
11303
12378
  };
11304
12379
  };
@@ -11404,6 +12479,7 @@ type PatchServiceCombinedResult = {
11404
12479
  'ciIgnoreFlags'?: string[];
11405
12480
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
11406
12481
  'dockerfileTarget'?: string;
12482
+ 'dockerCredentials'?: string[];
11407
12483
  /** Include .git folder inside the build context */
11408
12484
  'includeGitFolder'?: boolean;
11409
12485
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -11462,6 +12538,12 @@ type PatchServiceCombinedResult = {
11462
12538
  /** Threshold memory usage percentage at which the workload will be scaled */
11463
12539
  'thresholdPercentage': number;
11464
12540
  };
12541
+ 'rps'?: {
12542
+ /** Whether autoscaling should take into requests-per-second */
12543
+ 'enabled': boolean;
12544
+ /** Threshold rps value on which the workload will be scaled */
12545
+ 'thresholdValue': number;
12546
+ };
11465
12547
  };
11466
12548
  };
11467
12549
  'deploymentSysctlSettings'?: {
@@ -11502,6 +12584,8 @@ type PatchServiceCombinedResult = {
11502
12584
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
11503
12585
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
11504
12586
  };
12587
+ /** Defines scheduling behaviour across different zones within the same region. */
12588
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
11505
12589
  /** Image registry url of the deployed image. */
11506
12590
  'imageUrl'?: string;
11507
12591
  };
@@ -11581,6 +12665,8 @@ type PatchServiceCombinedData = {
11581
12665
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
11582
12666
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
11583
12667
  };
12668
+ /** Defines scheduling behaviour across different zones within the same region. */
12669
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
11584
12670
  };
11585
12671
  'ports'?: {
11586
12672
  /** The name used to identify the port. Example: "port-1" */
@@ -11661,6 +12747,7 @@ type PatchServiceCombinedData = {
11661
12747
  'ciIgnoreFlagsEnabled'?: boolean;
11662
12748
  /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
11663
12749
  'ciIgnoreFlags'?: string[];
12750
+ 'dockerCredentials'?: string[];
11664
12751
  };
11665
12752
  /** An object containing the runtime environment to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
11666
12753
  'runtimeEnvironment'?: any;
@@ -11713,6 +12800,12 @@ type PatchServiceCombinedData = {
11713
12800
  /** Threshold memory usage percentage at which the workload will be scaled */
11714
12801
  'thresholdPercentage'?: number;
11715
12802
  };
12803
+ 'rps'?: {
12804
+ /** Whether autoscaling should take into requests-per-second */
12805
+ 'enabled'?: boolean;
12806
+ /** Threshold rps value on which the workload will be scaled */
12807
+ 'thresholdValue'?: number;
12808
+ };
11716
12809
  };
11717
12810
  };
11718
12811
  };
@@ -11817,6 +12910,12 @@ type CreateServiceDeploymentResult = {
11817
12910
  /** Threshold memory usage percentage at which the workload will be scaled */
11818
12911
  'thresholdPercentage': number;
11819
12912
  };
12913
+ 'rps'?: {
12914
+ /** Whether autoscaling should take into requests-per-second */
12915
+ 'enabled': boolean;
12916
+ /** Threshold rps value on which the workload will be scaled */
12917
+ 'thresholdValue': number;
12918
+ };
11820
12919
  };
11821
12920
  };
11822
12921
  'deploymentSysctlSettings'?: {
@@ -11857,6 +12956,8 @@ type CreateServiceDeploymentResult = {
11857
12956
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
11858
12957
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
11859
12958
  };
12959
+ /** Defines scheduling behaviour across different zones within the same region. */
12960
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
11860
12961
  'internal'?: {
11861
12962
  /** ID of the build service to deploy Example: "example-build-service" */
11862
12963
  'id'?: string;
@@ -11955,6 +13056,8 @@ type CreateServiceDeploymentData = {
11955
13056
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
11956
13057
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
11957
13058
  };
13059
+ /** Defines scheduling behaviour across different zones within the same region. */
13060
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
11958
13061
  'internal': {
11959
13062
  /** ID of the build service to deploy Example: "example-build-service" */
11960
13063
  'id'?: string;
@@ -11998,6 +13101,8 @@ type CreateServiceDeploymentData = {
11998
13101
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
11999
13102
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12000
13103
  };
13104
+ /** Defines scheduling behaviour across different zones within the same region. */
13105
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
12001
13106
  'external': {
12002
13107
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
12003
13108
  'imagePath': string;
@@ -12037,6 +13142,8 @@ type CreateServiceDeploymentData = {
12037
13142
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12038
13143
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12039
13144
  };
13145
+ /** Defines scheduling behaviour across different zones within the same region. */
13146
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
12040
13147
  };
12041
13148
  'ports'?: {
12042
13149
  /** The name used to identify the port. Example: "port-1" */
@@ -12119,6 +13226,12 @@ type CreateServiceDeploymentData = {
12119
13226
  /** Threshold memory usage percentage at which the workload will be scaled */
12120
13227
  'thresholdPercentage': number;
12121
13228
  };
13229
+ 'rps'?: {
13230
+ /** Whether autoscaling should take into requests-per-second */
13231
+ 'enabled': boolean;
13232
+ /** Threshold rps value on which the workload will be scaled */
13233
+ 'thresholdValue': number;
13234
+ };
12122
13235
  };
12123
13236
  };
12124
13237
  };
@@ -12223,6 +13336,12 @@ type PutServiceDeploymentResult = {
12223
13336
  /** Threshold memory usage percentage at which the workload will be scaled */
12224
13337
  'thresholdPercentage': number;
12225
13338
  };
13339
+ 'rps'?: {
13340
+ /** Whether autoscaling should take into requests-per-second */
13341
+ 'enabled': boolean;
13342
+ /** Threshold rps value on which the workload will be scaled */
13343
+ 'thresholdValue': number;
13344
+ };
12226
13345
  };
12227
13346
  };
12228
13347
  'deploymentSysctlSettings'?: {
@@ -12263,6 +13382,8 @@ type PutServiceDeploymentResult = {
12263
13382
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12264
13383
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12265
13384
  };
13385
+ /** Defines scheduling behaviour across different zones within the same region. */
13386
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
12266
13387
  'internal'?: {
12267
13388
  /** ID of the build service to deploy Example: "example-build-service" */
12268
13389
  'id'?: string;
@@ -12361,6 +13482,8 @@ type PutServiceDeploymentData = {
12361
13482
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12362
13483
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12363
13484
  };
13485
+ /** Defines scheduling behaviour across different zones within the same region. */
13486
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
12364
13487
  'internal': {
12365
13488
  /** ID of the build service to deploy Example: "example-build-service" */
12366
13489
  'id'?: string;
@@ -12404,6 +13527,8 @@ type PutServiceDeploymentData = {
12404
13527
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12405
13528
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12406
13529
  };
13530
+ /** Defines scheduling behaviour across different zones within the same region. */
13531
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
12407
13532
  'external': {
12408
13533
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
12409
13534
  'imagePath': string;
@@ -12443,6 +13568,8 @@ type PutServiceDeploymentData = {
12443
13568
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12444
13569
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12445
13570
  };
13571
+ /** Defines scheduling behaviour across different zones within the same region. */
13572
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
12446
13573
  };
12447
13574
  'ports'?: {
12448
13575
  /** The name used to identify the port. Example: "port-1" */
@@ -12525,6 +13652,12 @@ type PutServiceDeploymentData = {
12525
13652
  /** Threshold memory usage percentage at which the workload will be scaled */
12526
13653
  'thresholdPercentage': number;
12527
13654
  };
13655
+ 'rps'?: {
13656
+ /** Whether autoscaling should take into requests-per-second */
13657
+ 'enabled': boolean;
13658
+ /** Threshold rps value on which the workload will be scaled */
13659
+ 'thresholdValue': number;
13660
+ };
12528
13661
  };
12529
13662
  };
12530
13663
  };
@@ -12629,6 +13762,12 @@ type PatchServiceDeploymentResult = {
12629
13762
  /** Threshold memory usage percentage at which the workload will be scaled */
12630
13763
  'thresholdPercentage': number;
12631
13764
  };
13765
+ 'rps'?: {
13766
+ /** Whether autoscaling should take into requests-per-second */
13767
+ 'enabled': boolean;
13768
+ /** Threshold rps value on which the workload will be scaled */
13769
+ 'thresholdValue': number;
13770
+ };
12632
13771
  };
12633
13772
  };
12634
13773
  'deploymentSysctlSettings'?: {
@@ -12669,6 +13808,8 @@ type PatchServiceDeploymentResult = {
12669
13808
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12670
13809
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12671
13810
  };
13811
+ /** Defines scheduling behaviour across different zones within the same region. */
13812
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
12672
13813
  'internal'?: {
12673
13814
  /** ID of the build service to deploy Example: "example-build-service" */
12674
13815
  'id'?: string;
@@ -12767,6 +13908,8 @@ type PatchServiceDeploymentData = {
12767
13908
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12768
13909
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12769
13910
  };
13911
+ /** Defines scheduling behaviour across different zones within the same region. */
13912
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
12770
13913
  'internal': {
12771
13914
  /** ID of the build service to deploy Example: "example-build-service" */
12772
13915
  'id'?: string;
@@ -12810,6 +13953,8 @@ type PatchServiceDeploymentData = {
12810
13953
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12811
13954
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12812
13955
  };
13956
+ /** Defines scheduling behaviour across different zones within the same region. */
13957
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
12813
13958
  'external': {
12814
13959
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
12815
13960
  'imagePath': string;
@@ -12849,6 +13994,8 @@ type PatchServiceDeploymentData = {
12849
13994
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12850
13995
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12851
13996
  };
13997
+ /** Defines scheduling behaviour across different zones within the same region. */
13998
+ 'zonalRedundancy'?: 'preferred' | 'disabled';
12852
13999
  };
12853
14000
  'ports'?: {
12854
14001
  /** The name used to identify the port. Example: "port-1" */
@@ -12929,6 +14076,12 @@ type PatchServiceDeploymentData = {
12929
14076
  /** Threshold memory usage percentage at which the workload will be scaled */
12930
14077
  'thresholdPercentage'?: number;
12931
14078
  };
14079
+ 'rps'?: {
14080
+ /** Whether autoscaling should take into requests-per-second */
14081
+ 'enabled'?: boolean;
14082
+ /** Threshold rps value on which the workload will be scaled */
14083
+ 'thresholdValue'?: number;
14084
+ };
12932
14085
  };
12933
14086
  };
12934
14087
  };
@@ -12948,6 +14101,8 @@ type GetServiceResult = {
12948
14101
  'appId': string;
12949
14102
  /** Service name Example: "Example Service" */
12950
14103
  'name': string;
14104
+ /** An array of previously defined tags to help identify and group the resource. */
14105
+ 'tags': string[];
12951
14106
  /** A short description of the service Example: "This is the service description" */
12952
14107
  'description'?: string;
12953
14108
  /** ID of the project that the service belongs to Example: "default-project" */
@@ -13064,6 +14219,7 @@ type GetServiceResult = {
13064
14219
  'branchRestrictions'?: string[];
13065
14220
  'prRestrictions'?: string[];
13066
14221
  'pathIgnoreRules': string[];
14222
+ 'dockerCredentials'?: string[];
13067
14223
  };
13068
14224
  'buildEngineConfiguration'?: {
13069
14225
  /** The build engine used. Example: "buildpack" */
@@ -13508,6 +14664,7 @@ type UpdateServiceBuildoptionsData = {
13508
14664
  'ciIgnoreFlags'?: string[];
13509
14665
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
13510
14666
  'dockerfileTarget'?: string;
14667
+ 'dockerCredentials'?: string[];
13511
14668
  /** Include .git folder inside the build context */
13512
14669
  'includeGitFolder'?: boolean;
13513
14670
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -13546,6 +14703,7 @@ type UpdateServiceBuildoptionsData = {
13546
14703
  'ciIgnoreFlags'?: string[];
13547
14704
  /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
13548
14705
  'dockerfileTarget'?: string;
14706
+ 'dockerCredentials'?: string[];
13549
14707
  /** Include .git folder inside the build context */
13550
14708
  'includeGitFolder'?: boolean;
13551
14709
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
@@ -14394,25 +15552,31 @@ type ListVolumesResult = {
14394
15552
  'id': string;
14395
15553
  /** Volume name Example: "Example Volume" */
14396
15554
  'name': string;
15555
+ /** An array of previously defined tags to help identify and group the resource. */
15556
+ 'tags': string[];
14397
15557
  /** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
14398
15558
  'spec': {
15559
+ /** Access mode of the volume. Only `ReadWriteOnce` generally available. */
15560
+ 'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
14399
15561
  /** The type of the storage. Example: "ssd" */
14400
15562
  'storageClassName'?: 'ssd';
14401
15563
  /** Storage size of the SSD. Example: 4096 */
14402
15564
  'storageSize': number;
14403
15565
  } | {
15566
+ /** Access mode of the volume. Only `ReadWriteOnce` generally available. */
15567
+ 'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
14404
15568
  /** The type of the storage. Example: "hdd" */
14405
15569
  'storageClassName': 'hdd';
14406
15570
  /** Storage size of the HDD. Example: 40960 */
14407
15571
  'storageSize': number;
14408
15572
  };
14409
- /** The object to attach this volume to. */
14410
- 'owningObject'?: {
15573
+ /** List of objects this volume is attached to. */
15574
+ 'attachedObjects'?: {
14411
15575
  /** The id of object to attach this volume to. Example: "example-service" */
14412
15576
  'id': string;
14413
15577
  /** The type of the object to attach this volume to. Example: "service" */
14414
15578
  'type': 'service';
14415
- };
15579
+ }[];
14416
15580
  /** Status the volume is in on the cluster Example: "BOUND" */
14417
15581
  'status': string;
14418
15582
  /** The timestamp the volume was created at Example: "2021-01-01 12:00:00.000Z" */
@@ -14441,25 +15605,31 @@ type CreateVolumeResult = {
14441
15605
  'id': string;
14442
15606
  /** Volume name Example: "Example Volume" */
14443
15607
  'name': string;
15608
+ /** An array of previously defined tags to help identify and group the resource. */
15609
+ 'tags': string[];
14444
15610
  /** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
14445
15611
  'spec': {
15612
+ /** Access mode of the volume. Only `ReadWriteOnce` generally available. */
15613
+ 'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
14446
15614
  /** The type of the storage. Example: "ssd" */
14447
15615
  'storageClassName'?: 'ssd';
14448
15616
  /** Storage size of the SSD. Example: 4096 */
14449
15617
  'storageSize': number;
14450
15618
  } | {
15619
+ /** Access mode of the volume. Only `ReadWriteOnce` generally available. */
15620
+ 'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
14451
15621
  /** The type of the storage. Example: "hdd" */
14452
15622
  'storageClassName': 'hdd';
14453
15623
  /** Storage size of the HDD. Example: 40960 */
14454
15624
  'storageSize': number;
14455
15625
  };
14456
- /** The object to attach this volume to. */
14457
- 'owningObject'?: {
15626
+ /** List of objects this volume is attached to. */
15627
+ 'attachedObjects'?: {
14458
15628
  /** The id of object to attach this volume to. Example: "example-service" */
14459
15629
  'id': string;
14460
15630
  /** The type of the object to attach this volume to. Example: "service" */
14461
15631
  'type': 'service';
14462
- };
15632
+ }[];
14463
15633
  /** Status the volume is in on the cluster Example: "BOUND" */
14464
15634
  'status': string;
14465
15635
  /** The timestamp the volume was created at Example: "2021-01-01 12:00:00.000Z" */
@@ -14489,23 +15659,34 @@ type CreateVolumeData = {
14489
15659
  }[];
14490
15660
  /** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
14491
15661
  'spec': {
15662
+ /** Access mode of the volume. Only `ReadWriteOnce` generally available. */
15663
+ 'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
14492
15664
  /** The type of the storage. Example: "ssd" */
14493
15665
  'storageClassName'?: 'ssd';
14494
15666
  /** Storage size of the SSD. Example: 4096 */
14495
15667
  'storageSize': number;
14496
15668
  } | {
15669
+ /** Access mode of the volume. Only `ReadWriteOnce` generally available. */
15670
+ 'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
14497
15671
  /** The type of the storage. Example: "hdd" */
14498
15672
  'storageClassName': 'hdd';
14499
15673
  /** Storage size of the HDD. Example: 40960 */
14500
15674
  'storageSize': number;
14501
15675
  };
14502
- /** The object to attach this volume to. */
15676
+ /** DEPRECATED: The object to attach this volume to. */
14503
15677
  'owningObject'?: {
15678
+ /** The id of object to attach this volume to. */
15679
+ 'id': string;
15680
+ /** The type of the object to attach this volume to. */
15681
+ 'type': 'service';
15682
+ };
15683
+ /** Array of objects this volume is attached to. */
15684
+ 'attachedObjects'?: {
14504
15685
  /** The id of object to attach this volume to. Example: "example-service" */
14505
15686
  'id': string;
14506
15687
  /** The type of the object to attach this volume to. Example: "service" */
14507
15688
  'type': 'service';
14508
- };
15689
+ }[];
14509
15690
  };
14510
15691
  /** Creates a volume with the specified payload */
14511
15692
  declare class CreateVolumeEndpoint extends PostApiEndpoint<CreateVolumeRequest, CreateVolumeResult> {
@@ -14521,25 +15702,31 @@ type GetVolumeResult = {
14521
15702
  'id': string;
14522
15703
  /** Volume name Example: "Example Volume" */
14523
15704
  'name': string;
15705
+ /** An array of previously defined tags to help identify and group the resource. */
15706
+ 'tags': string[];
14524
15707
  /** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
14525
15708
  'spec': {
15709
+ /** Access mode of the volume. Only `ReadWriteOnce` generally available. */
15710
+ 'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
14526
15711
  /** The type of the storage. Example: "ssd" */
14527
15712
  'storageClassName'?: 'ssd';
14528
15713
  /** Storage size of the SSD. Example: 4096 */
14529
15714
  'storageSize': number;
14530
15715
  } | {
15716
+ /** Access mode of the volume. Only `ReadWriteOnce` generally available. */
15717
+ 'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
14531
15718
  /** The type of the storage. Example: "hdd" */
14532
15719
  'storageClassName': 'hdd';
14533
15720
  /** Storage size of the HDD. Example: 40960 */
14534
15721
  'storageSize': number;
14535
15722
  };
14536
- /** The object to attach this volume to. */
14537
- 'owningObject'?: {
15723
+ /** List of objects this volume is attached to. */
15724
+ 'attachedObjects'?: {
14538
15725
  /** The id of object to attach this volume to. Example: "example-service" */
14539
15726
  'id': string;
14540
15727
  /** The type of the object to attach this volume to. Example: "service" */
14541
15728
  'type': 'service';
14542
- };
15729
+ }[];
14543
15730
  /** Status the volume is in on the cluster Example: "BOUND" */
14544
15731
  'status': string;
14545
15732
  /** The timestamp the volume was created at Example: "2021-01-01 12:00:00.000Z" */
@@ -14629,8 +15816,15 @@ type AttachVolumeParameters = {
14629
15816
  'volumeId': string;
14630
15817
  };
14631
15818
  type AttachVolumeData = {
15819
+ /** DEPRECATED: The object to attach this volume to. */
15820
+ 'owningObject'?: {
15821
+ /** The id of object to attach this volume to. */
15822
+ 'id': string;
15823
+ /** The type of the object to attach this volume to. */
15824
+ 'type': 'service';
15825
+ };
14632
15826
  /** The object to attach this volume to. */
14633
- 'owningObject': {
15827
+ 'nfObject'?: {
14634
15828
  /** The id of object to attach this volume to. Example: "example-service" */
14635
15829
  'id': string;
14636
15830
  /** The type of the object to attach this volume to. Example: "service" */
@@ -14657,7 +15851,15 @@ type DetachVolumeParameters = {
14657
15851
  /** ID of the volume */
14658
15852
  'volumeId': string;
14659
15853
  };
14660
- type DetachVolumeData = any;
15854
+ type DetachVolumeData = {
15855
+ /** The object to detach this volume to. */
15856
+ 'nfObject': {
15857
+ /** The id of object to detach this volume to. Example: "example-service" */
15858
+ 'id': string;
15859
+ /** The type of the object to detach this volume to. Example: "service" */
15860
+ 'type': 'service';
15861
+ };
15862
+ };
14661
15863
  /** Detach a volume */
14662
15864
  declare class DetachVolumeEndpoint extends PostApiEndpoint<DetachVolumeRequest, DetachVolumeResult> {
14663
15865
  description: string;
@@ -15642,8 +16844,13 @@ declare class ApiClient {
15642
16844
  backups: GetAddonBackupsCall;
15643
16845
  backup: GetAddonBackupCall & {
15644
16846
  download: GetAddonBackupDownloadCall;
16847
+ logs: GetAddonBackupLogsCall;
16848
+ logTail: TailAddonBackupLogsCall;
16849
+ };
16850
+ restores: GetAddonRestoresCall & {
16851
+ logs: GetAddonRestoresLogsCall;
16852
+ logTail: TailAddonRestoresLogsCall;
15645
16853
  };
15646
- restores: GetAddonRestoresCall;
15647
16854
  containers: GetAddonContainersCall;
15648
16855
  credentials: GetAddonCredentialsCall;
15649
16856
  pitrWindow: GetAddonPitrwindowCall;
@@ -15656,13 +16863,17 @@ declare class ApiClient {
15656
16863
  invoice: {
15657
16864
  details: GetInvoiceDetailsCall;
15658
16865
  };
15659
- cluster: GetClusterCall;
15660
- integration: GetIntegrationCall;
16866
+ cloud: {
16867
+ cluster: GetCloudClusterCall;
16868
+ dockerRegistry: GetCloudDockerregistryCall;
16869
+ integration: GetCloudIntegrationCall;
16870
+ };
15661
16871
  dnsId: GetDnsidCall;
15662
16872
  domain: GetDomainCall;
15663
16873
  subdomain: GetSubdomainCall;
15664
16874
  logSink: GetLogsinkCall;
15665
- registry: GetRegistryCall;
16875
+ notification: GetNotificationCall;
16876
+ registryCredentials: GetRegistrycredentialsCall;
15666
16877
  project: GetProjectCall;
15667
16878
  job: GetJobCall & {
15668
16879
  branches: GetJobBranchesCall;
@@ -15723,12 +16934,18 @@ declare class ApiClient {
15723
16934
  };
15724
16935
  list: {
15725
16936
  invoices: ListInvoicesCall;
15726
- providers: ListProvidersCall;
15727
- clusters: ListClustersCall;
15728
- integrations: ListIntegrationsCall;
16937
+ cloud: {
16938
+ providers: ListCloudProvidersCall;
16939
+ clusters: ListCloudClustersCall;
16940
+ dockerRegistry: ListCloudDockerregistryCall;
16941
+ integrations: ListCloudIntegrationsCall;
16942
+ nodeTypes: ListCloudNodetypesCall;
16943
+ regions: ListCloudRegionsCall;
16944
+ };
15729
16945
  domains: ListDomainsCall;
15730
16946
  logSinks: ListLogsinksCall;
15731
- registries: ListRegistriesCall;
16947
+ notifications: ListNotificationsCall;
16948
+ registryCredentials: ListRegistrycredentialsCall;
15732
16949
  vcs: ListVcsCall;
15733
16950
  repos: ListReposCall;
15734
16951
  branches: ListBranchesCall;
@@ -15748,10 +16965,14 @@ declare class ApiClient {
15748
16965
  templateRuns: ListTemplaterunsCall;
15749
16966
  };
15750
16967
  create: {
15751
- cluster: CreateClusterCall;
15752
- integration: CreateIntegrationCall;
16968
+ cloud: {
16969
+ cluster: CreateCloudClusterCall;
16970
+ dockerRegistry: CreateCloudDockerregistryCall;
16971
+ integration: CreateCloudIntegrationCall;
16972
+ };
15753
16973
  domain: CreateDomainCall;
15754
16974
  logSink: CreateLogsinkCall;
16975
+ notification: CreateNotificationCall;
15755
16976
  customVcs: {
15756
16977
  token: CreateCustomvcsTokenCall;
15757
16978
  };
@@ -15773,10 +16994,13 @@ declare class ApiClient {
15773
16994
  template: CreateTemplateCall;
15774
16995
  };
15775
16996
  update: {
15776
- cluster: UpdateClusterCall;
15777
- integration: UpdateIntegrationCall;
16997
+ cloud: {
16998
+ cluster: UpdateCloudClusterCall;
16999
+ integration: UpdateCloudIntegrationCall;
17000
+ };
15778
17001
  logSink: UpdateLogsinkCall;
15779
- registry: UpdateRegistryCall;
17002
+ notification: UpdateNotificationCall;
17003
+ registryCredentials: UpdateRegistrycredentialsCall;
15780
17004
  addon: {
15781
17005
  networkSettings: UpdateAddonNetworksettingsCall;
15782
17006
  security: UpdateAddonSecurityCall;
@@ -15808,12 +17032,16 @@ declare class ApiClient {
15808
17032
  template: UpdateTemplateCall;
15809
17033
  };
15810
17034
  delete: {
15811
- cluster: DeleteClusterCall;
15812
- integration: DeleteIntegrationCall;
17035
+ cloud: {
17036
+ cluster: DeleteCloudClusterCall;
17037
+ dockerRegistry: DeleteCloudDockerregistryCall;
17038
+ integration: DeleteCloudIntegrationCall;
17039
+ };
15813
17040
  domain: DeleteDomainCall;
15814
17041
  subdomain: DeleteSubdomainCall;
15815
17042
  logSink: DeleteLogsinkCall;
15816
- registry: DeleteRegistryCall;
17043
+ notification: DeleteNotificationCall;
17044
+ registryCredentials: DeleteRegistrycredentialsCall;
15817
17045
  project: DeleteProjectCall;
15818
17046
  addon: DeleteAddonCall & {
15819
17047
  backupSchedule: DeleteAddonBackupscheduleCall;
@@ -15831,7 +17059,7 @@ declare class ApiClient {
15831
17059
  domain: {
15832
17060
  subdomain: AddDomainSubdomainCall;
15833
17061
  };
15834
- registry: AddRegistryCall;
17062
+ registryCredentials: AddRegistrycredentialsCall;
15835
17063
  };
15836
17064
  assign: {
15837
17065
  subdomain: {
@@ -15983,13 +17211,17 @@ declare class ApiClient {
15983
17211
  invoice: {
15984
17212
  details: GetInvoiceDetailsEndpoint;
15985
17213
  };
15986
- cluster: GetClusterEndpoint;
15987
- integration: GetIntegrationEndpoint;
17214
+ cloud: {
17215
+ cluster: GetCloudClusterEndpoint;
17216
+ dockerRegistry: GetCloudDockerregistryEndpoint;
17217
+ integration: GetCloudIntegrationEndpoint;
17218
+ };
15988
17219
  dnsId: GetDnsidEndpoint;
15989
17220
  domain: GetDomainEndpoint;
15990
17221
  subdomain: GetSubdomainEndpoint;
15991
17222
  logSink: GetLogsinkEndpoint;
15992
- registry: GetRegistryEndpoint;
17223
+ notification: GetNotificationEndpoint;
17224
+ registryCredentials: GetRegistrycredentialsEndpoint;
15993
17225
  project: GetProjectEndpoint;
15994
17226
  job: GetJobEndpoint & {
15995
17227
  branches: GetJobBranchesEndpoint;
@@ -16034,12 +17266,18 @@ declare class ApiClient {
16034
17266
  };
16035
17267
  list: {
16036
17268
  invoices: ListInvoicesEndpoint;
16037
- providers: ListProvidersEndpoint;
16038
- clusters: ListClustersEndpoint;
16039
- integrations: ListIntegrationsEndpoint;
17269
+ cloud: {
17270
+ providers: ListCloudProvidersEndpoint;
17271
+ clusters: ListCloudClustersEndpoint;
17272
+ dockerRegistry: ListCloudDockerregistryEndpoint;
17273
+ integrations: ListCloudIntegrationsEndpoint;
17274
+ nodeTypes: ListCloudNodetypesEndpoint;
17275
+ regions: ListCloudRegionsEndpoint;
17276
+ };
16040
17277
  domains: ListDomainsEndpoint;
16041
17278
  logSinks: ListLogsinksEndpoint;
16042
- registries: ListRegistriesEndpoint;
17279
+ notifications: ListNotificationsEndpoint;
17280
+ registryCredentials: ListRegistrycredentialsEndpoint;
16043
17281
  vcs: ListVcsEndpoint;
16044
17282
  repos: ListReposEndpoint;
16045
17283
  branches: ListBranchesEndpoint;
@@ -16059,10 +17297,14 @@ declare class ApiClient {
16059
17297
  templateRuns: ListTemplaterunsEndpoint;
16060
17298
  };
16061
17299
  create: {
16062
- cluster: CreateClusterEndpoint;
16063
- integration: CreateIntegrationEndpoint;
17300
+ cloud: {
17301
+ cluster: CreateCloudClusterEndpoint;
17302
+ dockerRegistry: CreateCloudDockerregistryEndpoint;
17303
+ integration: CreateCloudIntegrationEndpoint;
17304
+ };
16064
17305
  domain: CreateDomainEndpoint;
16065
17306
  logSink: CreateLogsinkEndpoint;
17307
+ notification: CreateNotificationEndpoint;
16066
17308
  customVcs: {
16067
17309
  token: CreateCustomvcsTokenEndpoint;
16068
17310
  };
@@ -16084,10 +17326,13 @@ declare class ApiClient {
16084
17326
  template: CreateTemplateEndpoint;
16085
17327
  };
16086
17328
  update: {
16087
- cluster: UpdateClusterEndpoint;
16088
- integration: UpdateIntegrationEndpoint;
17329
+ cloud: {
17330
+ cluster: UpdateCloudClusterEndpoint;
17331
+ integration: UpdateCloudIntegrationEndpoint;
17332
+ };
16089
17333
  logSink: UpdateLogsinkEndpoint;
16090
- registry: UpdateRegistryEndpoint;
17334
+ notification: UpdateNotificationEndpoint;
17335
+ registryCredentials: UpdateRegistrycredentialsEndpoint;
16091
17336
  addon: {
16092
17337
  networkSettings: UpdateAddonNetworksettingsEndpoint;
16093
17338
  security: UpdateAddonSecurityEndpoint;
@@ -16119,12 +17364,16 @@ declare class ApiClient {
16119
17364
  template: UpdateTemplateEndpoint;
16120
17365
  };
16121
17366
  delete: {
16122
- cluster: DeleteClusterEndpoint;
16123
- integration: DeleteIntegrationEndpoint;
17367
+ cloud: {
17368
+ cluster: DeleteCloudClusterEndpoint;
17369
+ dockerRegistry: DeleteCloudDockerregistryEndpoint;
17370
+ integration: DeleteCloudIntegrationEndpoint;
17371
+ };
16124
17372
  domain: DeleteDomainEndpoint;
16125
17373
  subdomain: DeleteSubdomainEndpoint;
16126
17374
  logSink: DeleteLogsinkEndpoint;
16127
- registry: DeleteRegistryEndpoint;
17375
+ notification: DeleteNotificationEndpoint;
17376
+ registryCredentials: DeleteRegistrycredentialsEndpoint;
16128
17377
  project: DeleteProjectEndpoint;
16129
17378
  addon: DeleteAddonEndpoint & {
16130
17379
  backupSchedule: DeleteAddonBackupscheduleEndpoint;
@@ -16142,7 +17391,7 @@ declare class ApiClient {
16142
17391
  domain: {
16143
17392
  subdomain: AddDomainSubdomainEndpoint;
16144
17393
  };
16145
- registry: AddRegistryEndpoint;
17394
+ registryCredentials: AddRegistrycredentialsEndpoint;
16146
17395
  };
16147
17396
  assign: {
16148
17397
  subdomain: {
@@ -16285,4 +17534,4 @@ type ApiClientOpts = {
16285
17534
  customUserAgent?: string;
16286
17535
  };
16287
17536
 
16288
- export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistryCall, AddRegistryData, AddRegistryEndpoint, AddRegistryRequest, AddRegistryResult, 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, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateClusterCall, CreateClusterData, CreateClusterEndpoint, CreateClusterRequest, CreateClusterResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateIntegrationCall, CreateIntegrationData, CreateIntegrationEndpoint, CreateIntegrationRequest, CreateIntegrationResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, 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, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteClusterCall, DeleteClusterEndpoint, DeleteClusterParameters, DeleteClusterRequest, DeleteClusterResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteIntegrationCall, DeleteIntegrationEndpoint, DeleteIntegrationParameters, DeleteIntegrationRequest, DeleteIntegrationResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistryCall, DeleteRegistryEndpoint, DeleteRegistryParameters, DeleteRegistryRequest, DeleteRegistryResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetClusterCall, GetClusterEndpoint, GetClusterParameters, GetClusterRequest, GetClusterResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetIntegrationCall, GetIntegrationEndpoint, GetIntegrationParameters, GetIntegrationRequest, GetIntegrationResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistryCall, GetRegistryEndpoint, GetRegistryParameters, GetRegistryRequest, GetRegistryResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListClustersCall, ListClustersEndpoint, ListClustersOptions, ListClustersRequest, ListClustersResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListIntegrationsCall, ListIntegrationsEndpoint, ListIntegrationsOptions, ListIntegrationsRequest, ListIntegrationsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListProvidersCall, ListProvidersEndpoint, ListProvidersRequest, ListProvidersResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistriesCall, ListRegistriesEndpoint, ListRegistriesOptions, ListRegistriesRequest, ListRegistriesResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateClusterCall, UpdateClusterData, UpdateClusterEndpoint, UpdateClusterParameters, UpdateClusterRequest, UpdateClusterResult, UpdateIntegrationCall, UpdateIntegrationData, UpdateIntegrationEndpoint, UpdateIntegrationParameters, UpdateIntegrationRequest, UpdateIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistryCall, UpdateRegistryData, UpdateRegistryEndpoint, UpdateRegistryParameters, UpdateRegistryRequest, UpdateRegistryResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, 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, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
17537
+ export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, 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, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, 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, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, 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, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };