@northflank/js-client 0.7.16 → 0.7.18

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.
@@ -267,7 +267,7 @@ type ListAddonsResult = {
267
267
  'type': string;
268
268
  };
269
269
  /** The current state of the addon. Example: "running" */
270
- 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
270
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
271
271
  }[];
272
272
  };
273
273
  type ListAddonsCall = (opts: ListAddonsRequest) => Promise<ApiCallResponse<ListAddonsResult>>;
@@ -496,6 +496,7 @@ declare class NorthflankExecCommand {
496
496
  type LogsRequestCommon = LogRequestTextFilters & {
497
497
  lineLimit?: number;
498
498
  startTime?: Date;
499
+ deploymentId?: string;
499
500
  };
500
501
  type JobLogsRangeRequestData = LogsRequestCommon & {
501
502
  direction?: 'forward' | 'backward';
@@ -939,6 +940,7 @@ type MetricsEntry = {
939
940
  };
940
941
  type MetricsRequestCommon = {
941
942
  metricTypes?: MetricType[];
943
+ deploymentId?: string;
942
944
  };
943
945
  type JobMetricsRangeRequestData = MetricsRequestCommon & {
944
946
  startTime?: Date;
@@ -1159,10 +1161,6 @@ type GetAddonTypesResult = {
1159
1161
  'name': string;
1160
1162
  /** A description of the addon. Example: "Redis implements a distributed, in-memory key-value database with optional durability." */
1161
1163
  'description': string;
1162
- /** A list of available versions of the addon type. */
1163
- 'versions': string[];
1164
- /** A list of available major versions of the addon type. */
1165
- 'major': string[];
1166
1164
  /** Features supported by this addon type. */
1167
1165
  'features'?: {
1168
1166
  /** Whether this addon supports native (dump) backups */
@@ -1182,6 +1180,10 @@ type GetAddonTypesResult = {
1182
1180
  /** Whether this addon supports external connection. Example: true */
1183
1181
  'externalAccess': boolean;
1184
1182
  };
1183
+ /** A list of available versions of the addon type. */
1184
+ 'versions': string[];
1185
+ /** A list of available major versions of the addon type. */
1186
+ 'major': string[];
1185
1187
  /** Details about resource options for the addon type. */
1186
1188
  'resources': {
1187
1189
  /** Details about storage size options for this addon. */
@@ -1199,6 +1201,50 @@ type GetAddonTypesResult = {
1199
1201
  'default': number;
1200
1202
  };
1201
1203
  };
1204
+ }[] | {
1205
+ /** The identifier for the addon type. Example: "redis" */
1206
+ 'type': string;
1207
+ /** The name of the addon type. Example: "Redis" */
1208
+ 'name': string;
1209
+ /** A description of the addon. Example: "Redis implements a distributed, in-memory key-value database with optional durability." */
1210
+ 'description': string;
1211
+ /** Features supported by this addon type. */
1212
+ 'features'?: {
1213
+ /** Whether this addon supports native (dump) backups */
1214
+ 'backupsDump': boolean;
1215
+ /** Whether this addon supports customising the database name. */
1216
+ 'customDBName': boolean;
1217
+ /** Whether this addon supports addon forking - creating a new addon from an existing addon backup. */
1218
+ 'forkAddon': boolean;
1219
+ /** Whether this addon supports importing from an external backup. */
1220
+ 'importDump': boolean;
1221
+ /** Whether this addon supports importing from an existing live database. */
1222
+ 'importLive': boolean;
1223
+ /** Whether this addon supports replica scaling. */
1224
+ 'scaleReplicas': boolean;
1225
+ /** Whether this addon supports connection via TLS. Example: true */
1226
+ 'tls': boolean;
1227
+ /** Whether this addon supports external connection. Example: true */
1228
+ 'externalAccess': boolean;
1229
+ };
1230
+ 'config': {
1231
+ /** Allow addon user to view values provided to templating engine. */
1232
+ 'showTemplateValues'?: boolean;
1233
+ /** Allow addon user to edit values provided to templating engine. */
1234
+ 'enableTemplateValuesModification'?: boolean;
1235
+ /** Allow addon user to view and resolve potential errors occuring with templating engine run. */
1236
+ 'enableErrorRecovery'?: boolean;
1237
+ /** Install CRDs provided in resource bundle. */
1238
+ 'installCrds'?: boolean;
1239
+ /** Apply Northflank specific labels and annotations to Kubernetes resources. Required for core features such as viewing containers, logs, metrics. */
1240
+ 'useNfLabelsAndAnnotations'?: boolean;
1241
+ /** Apply Northflank secret injection instead of using Kubernetes secrets. */
1242
+ 'useNfSecretInjection'?: boolean;
1243
+ /** Inject Northflank-specific Kubernetes imagePullSecret to Pod resources. */
1244
+ 'useNfImagePullSecret'?: boolean;
1245
+ };
1246
+ /** If the addon deploys any k8s resources which are not namespace/project-scoped, it's a cluster scoped addon */
1247
+ 'scope': 'project' | 'cluster';
1202
1248
  }[];
1203
1249
  };
1204
1250
  type GetAddonTypesCall = (opts: GetAddonTypesRequest) => Promise<ApiCallResponse<GetAddonTypesResult>>;
@@ -1423,17 +1469,20 @@ declare class ListCloudProvidersEndpoint extends GetApiEndpoint<ListCloudProvide
1423
1469
  type ListCloudClustersResult = {
1424
1470
  /** An array of clusters. */
1425
1471
  'clusters': {
1426
- /** Identifier for the cluster. Example: "gcp-cluster-1" */
1427
- 'id': string;
1428
1472
  /** The name of the cluster. Example: "GCP Cluster 1" */
1429
1473
  'name': string;
1430
- /** A short description of the cluster. Example: "The cluster description" */
1474
+ /** The description of the cluster. Example: "This is a new cluster." */
1431
1475
  'description'?: string;
1432
- /** The cloud provider to which this cluster belongs to. Example: "gcp" */
1433
- 'provider'?: string;
1434
- /** ID of the provider integration used by this cluster. Example: "gcp-integration" */
1435
- 'integrationId': string;
1436
- 'nodePools'?: {
1476
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
1477
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1478
+ /** Region of the cluster. Example: "europe-west2" */
1479
+ 'region': string;
1480
+ /** Kubernetes version of the cluster. Example: "1.26" */
1481
+ 'kubernetesVersion': string;
1482
+ /** Existing integration to use for this cluster. Example: "gcp-integration" */
1483
+ 'integrationId'?: string;
1484
+ /** An array of node pools. */
1485
+ 'nodePools': {
1437
1486
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1438
1487
  'nodeType': string;
1439
1488
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
@@ -1485,20 +1534,91 @@ type ListCloudClustersResult = {
1485
1534
  };
1486
1535
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
1487
1536
  'labels'?: any;
1488
- /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
1489
- 'id'?: string;
1490
1537
  }[];
1491
- 'status'?: {
1492
- 'state'?: {
1493
- 'state'?: string;
1494
- 'transitionTime'?: string;
1538
+ 'settings'?: {
1539
+ 'builds'?: {
1540
+ 'mode'?: 'paas' | 'internal' | 'build-cluster';
1541
+ /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
1542
+ 'plan'?: string;
1543
+ /** Cluster to use for scheduling builds */
1544
+ 'clusterId'?: string;
1545
+ };
1546
+ 'registry'?: {
1547
+ 'mode'?: 'paas' | 'self-hosted';
1548
+ /** Credentials to use for storing of images. Example: "my-registry-credentials" */
1549
+ 'registryId'?: string;
1550
+ };
1551
+ 'logging'?: {
1552
+ 'mode'?: 'paas' | 'loki';
1553
+ /** Required data for the loki mode setting. */
1554
+ 'loki'?: {
1555
+ 's3BucketName': string;
1556
+ 's3AccessKey': string;
1557
+ 's3SecretKey': string;
1558
+ 's3Region': string;
1559
+ };
1560
+ };
1561
+ 'vanityDomains'?: {
1562
+ 'apps'?: {
1563
+ 'zoneName': string;
1564
+ 'integrationId': string;
1565
+ };
1566
+ 'customDomains'?: {
1567
+ 'zoneName': string;
1568
+ 'integrationId': string;
1569
+ };
1570
+ 'loadBalancers'?: {
1571
+ 'zoneName': string;
1572
+ 'integrationId': string;
1573
+ };
1495
1574
  };
1496
- 'nextUpdateAfter'?: string;
1575
+ 'infrastructure'?: {
1576
+ 'workloads'?: {
1577
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1578
+ };
1579
+ 'builds'?: {
1580
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1581
+ };
1582
+ 'installKata'?: boolean;
1583
+ 'installGvisor'?: boolean;
1584
+ 'cleanupVolumes'?: boolean;
1585
+ 'cleanupSnapshots'?: boolean;
1586
+ };
1587
+ /** Request modifiers to use for different resources. */
1588
+ 'requestModifiers'?: {
1589
+ /** Request modifiers for services */
1590
+ 'services'?: {
1591
+ 'cpu': number;
1592
+ 'memory': number;
1593
+ };
1594
+ /** Request modifiers for jobs */
1595
+ 'jobs'?: {
1596
+ 'cpu': number;
1597
+ 'memory': number;
1598
+ };
1599
+ /** Request modifiers for builds */
1600
+ 'builds'?: {
1601
+ 'cpu': number;
1602
+ 'memory': number;
1603
+ };
1604
+ /** Request modifiers for addons */
1605
+ 'addons'?: {
1606
+ 'cpu': number;
1607
+ 'memory': number;
1608
+ };
1609
+ };
1610
+ 'skipInstall'?: boolean;
1611
+ };
1612
+ /** GCP specific data. Required when `provider` is `gcp`. */
1613
+ 'gcp'?: {
1614
+ /** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
1615
+ 'projectId': string;
1616
+ };
1617
+ /** AWS specific data. Required when `provider` is `aws`. */
1618
+ 'aws'?: {
1619
+ /** List of subnets the cluster should be created for. At least 2 must be specified. */
1620
+ 'subnets': string;
1497
1621
  };
1498
- /** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
1499
- 'createdAt': string;
1500
- /** Indicates if provider resource deletion has been requested by the user. */
1501
- 'deletionRequested': boolean;
1502
1622
  }[];
1503
1623
  };
1504
1624
  type ListCloudClustersCall = (opts: ListCloudClustersRequest) => Promise<ApiCallResponse<ListCloudClustersResult>>;
@@ -1523,17 +1643,20 @@ declare class ListCloudClustersEndpoint extends GetApiEndpoint<ListCloudClusters
1523
1643
  }
1524
1644
 
1525
1645
  type CreateCloudClusterResult = {
1526
- /** Identifier for the cluster. Example: "gcp-cluster-1" */
1527
- 'id': string;
1528
1646
  /** The name of the cluster. Example: "GCP Cluster 1" */
1529
1647
  'name': string;
1530
- /** A short description of the cluster. Example: "The cluster description" */
1648
+ /** The description of the cluster. Example: "This is a new cluster." */
1531
1649
  'description'?: string;
1532
- /** The cloud provider to which this cluster belongs to. Example: "gcp" */
1533
- 'provider'?: string;
1534
- /** ID of the provider integration used by this cluster. Example: "gcp-integration" */
1535
- 'integrationId': string;
1536
- 'nodePools'?: {
1650
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
1651
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1652
+ /** Region of the cluster. Example: "europe-west2" */
1653
+ 'region': string;
1654
+ /** Kubernetes version of the cluster. Example: "1.26" */
1655
+ 'kubernetesVersion': string;
1656
+ /** Existing integration to use for this cluster. Example: "gcp-integration" */
1657
+ 'integrationId'?: string;
1658
+ /** An array of node pools. */
1659
+ 'nodePools': {
1537
1660
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1538
1661
  'nodeType': string;
1539
1662
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
@@ -1585,9 +1708,91 @@ type CreateCloudClusterResult = {
1585
1708
  };
1586
1709
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
1587
1710
  'labels'?: any;
1588
- /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
1589
- 'id'?: string;
1590
1711
  }[];
1712
+ 'settings'?: {
1713
+ 'builds'?: {
1714
+ 'mode'?: 'paas' | 'internal' | 'build-cluster';
1715
+ /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
1716
+ 'plan'?: string;
1717
+ /** Cluster to use for scheduling builds */
1718
+ 'clusterId'?: string;
1719
+ };
1720
+ 'registry'?: {
1721
+ 'mode'?: 'paas' | 'self-hosted';
1722
+ /** Credentials to use for storing of images. Example: "my-registry-credentials" */
1723
+ 'registryId'?: string;
1724
+ };
1725
+ 'logging'?: {
1726
+ 'mode'?: 'paas' | 'loki';
1727
+ /** Required data for the loki mode setting. */
1728
+ 'loki'?: {
1729
+ 's3BucketName': string;
1730
+ 's3AccessKey': string;
1731
+ 's3SecretKey': string;
1732
+ 's3Region': string;
1733
+ };
1734
+ };
1735
+ 'vanityDomains'?: {
1736
+ 'apps'?: {
1737
+ 'zoneName': string;
1738
+ 'integrationId': string;
1739
+ };
1740
+ 'customDomains'?: {
1741
+ 'zoneName': string;
1742
+ 'integrationId': string;
1743
+ };
1744
+ 'loadBalancers'?: {
1745
+ 'zoneName': string;
1746
+ 'integrationId': string;
1747
+ };
1748
+ };
1749
+ 'infrastructure'?: {
1750
+ 'workloads'?: {
1751
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1752
+ };
1753
+ 'builds'?: {
1754
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1755
+ };
1756
+ 'installKata'?: boolean;
1757
+ 'installGvisor'?: boolean;
1758
+ 'cleanupVolumes'?: boolean;
1759
+ 'cleanupSnapshots'?: boolean;
1760
+ };
1761
+ /** Request modifiers to use for different resources. */
1762
+ 'requestModifiers'?: {
1763
+ /** Request modifiers for services */
1764
+ 'services'?: {
1765
+ 'cpu': number;
1766
+ 'memory': number;
1767
+ };
1768
+ /** Request modifiers for jobs */
1769
+ 'jobs'?: {
1770
+ 'cpu': number;
1771
+ 'memory': number;
1772
+ };
1773
+ /** Request modifiers for builds */
1774
+ 'builds'?: {
1775
+ 'cpu': number;
1776
+ 'memory': number;
1777
+ };
1778
+ /** Request modifiers for addons */
1779
+ 'addons'?: {
1780
+ 'cpu': number;
1781
+ 'memory': number;
1782
+ };
1783
+ };
1784
+ 'skipInstall'?: boolean;
1785
+ };
1786
+ /** GCP specific data. Required when `provider` is `gcp`. */
1787
+ 'gcp'?: {
1788
+ /** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
1789
+ 'projectId': string;
1790
+ };
1791
+ /** AWS specific data. Required when `provider` is `aws`. */
1792
+ 'aws'?: {
1793
+ /** List of subnets the cluster should be created for. At least 2 must be specified. */
1794
+ 'subnets': string;
1795
+ };
1591
1796
  'status'?: {
1592
1797
  'state'?: {
1593
1798
  'state'?: string;
@@ -1595,16 +1800,360 @@ type CreateCloudClusterResult = {
1595
1800
  };
1596
1801
  'nextUpdateAfter'?: string;
1597
1802
  };
1803
+ /** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
1804
+ 'dns'?: string;
1598
1805
  /** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
1599
1806
  'createdAt': string;
1600
- /** Indicates if provider resource deletion has been requested by the user. */
1807
+ /** Indicates if provider resource deletion has been requested. */
1601
1808
  'deletionRequested': boolean;
1602
1809
  };
1603
- type CreateCloudClusterCall = (opts: CreateCloudClusterRequest) => Promise<ApiCallResponse<CreateCloudClusterResult>>;
1604
- type CreateCloudClusterRequest = {
1605
- data: CreateCloudClusterData;
1810
+ type CreateCloudClusterCall = (opts: CreateCloudClusterRequest) => Promise<ApiCallResponse<CreateCloudClusterResult>>;
1811
+ type CreateCloudClusterRequest = {
1812
+ data: CreateCloudClusterData;
1813
+ };
1814
+ type CreateCloudClusterData = {
1815
+ /** The name of the cluster. Example: "GCP Cluster 1" */
1816
+ 'name': string;
1817
+ /** The description of the cluster. Example: "This is a new cluster." */
1818
+ 'description'?: string;
1819
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
1820
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1821
+ /** Region of the cluster. Example: "europe-west2" */
1822
+ 'region': string;
1823
+ /** Kubernetes version of the cluster. Example: "1.26" */
1824
+ 'kubernetesVersion': string;
1825
+ /** Existing integration to use for this cluster. Example: "gcp-integration" */
1826
+ 'integrationId'?: string;
1827
+ /** An array of node pools. */
1828
+ 'nodePools': {
1829
+ /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1830
+ 'nodeType': string;
1831
+ /** Number of nodes to the node pool should be provisioned with. Example: 3 */
1832
+ 'nodeCount': number;
1833
+ /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
1834
+ 'autoscaling'?: {
1835
+ 'enabled'?: boolean;
1836
+ 'min'?: number;
1837
+ 'max'?: number;
1838
+ };
1839
+ 'computeResources'?: {
1840
+ 'gpu'?: {
1841
+ 'mig'?: {
1842
+ 'enabled'?: boolean;
1843
+ 'partitions'?: string[];
1844
+ };
1845
+ 'timeslicing'?: {
1846
+ 'enabled'?: boolean;
1847
+ 'numSlices'?: number;
1848
+ };
1849
+ };
1850
+ };
1851
+ /** Configures node pool with preemptible / spot instances if enabled. */
1852
+ 'preemptible'?: boolean;
1853
+ /** The disk type to use. */
1854
+ 'diskType'?: string;
1855
+ /** Disk size in GB Example: 100 */
1856
+ 'diskSize': number;
1857
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1858
+ 'systemPool'?: boolean;
1859
+ /** Zones in which the node pool should be provisioned. */
1860
+ 'availabilityZones': string[];
1861
+ /** Define basic workload scheduling restrictions for this node pool */
1862
+ 'scheduling'?: {
1863
+ /** Allow jobs to schedule to this node pool */
1864
+ 'allowJobs'?: boolean;
1865
+ /** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
1866
+ 'onlyGpuJobs'?: boolean;
1867
+ /** Allow services to schedule to this node pool */
1868
+ 'allowServices'?: boolean;
1869
+ /** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
1870
+ 'onlyGpuServices'?: boolean;
1871
+ /** Allow addons to schedule to this node pool */
1872
+ 'allowAddons'?: boolean;
1873
+ /** Allow builds to schedule to this node pool */
1874
+ 'allowBuilds'?: boolean;
1875
+ /** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
1876
+ 'onlyGpuBuilds'?: boolean;
1877
+ };
1878
+ /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
1879
+ 'labels'?: any;
1880
+ }[];
1881
+ 'settings'?: {
1882
+ 'builds'?: {
1883
+ 'mode'?: 'paas' | 'internal' | 'build-cluster';
1884
+ /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
1885
+ 'plan'?: string;
1886
+ /** Cluster to use for scheduling builds */
1887
+ 'clusterId'?: string;
1888
+ };
1889
+ 'registry'?: {
1890
+ 'mode'?: 'paas' | 'self-hosted';
1891
+ /** Credentials to use for storing of images. Example: "my-registry-credentials" */
1892
+ 'registryId'?: string;
1893
+ };
1894
+ 'logging'?: {
1895
+ 'mode'?: 'paas' | 'loki';
1896
+ /** Required data for the loki mode setting. */
1897
+ 'loki'?: {
1898
+ 's3BucketName': string;
1899
+ 's3AccessKey': string;
1900
+ 's3SecretKey': string;
1901
+ 's3Region': string;
1902
+ };
1903
+ };
1904
+ 'vanityDomains'?: {
1905
+ 'apps'?: {
1906
+ 'zoneName': string;
1907
+ 'integrationId': string;
1908
+ };
1909
+ 'customDomains'?: {
1910
+ 'zoneName': string;
1911
+ 'integrationId': string;
1912
+ };
1913
+ 'loadBalancers'?: {
1914
+ 'zoneName': string;
1915
+ 'integrationId': string;
1916
+ };
1917
+ };
1918
+ 'infrastructure'?: {
1919
+ 'workloads'?: {
1920
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1921
+ };
1922
+ 'builds'?: {
1923
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1924
+ };
1925
+ 'installKata'?: boolean;
1926
+ 'installGvisor'?: boolean;
1927
+ 'cleanupVolumes'?: boolean;
1928
+ 'cleanupSnapshots'?: boolean;
1929
+ };
1930
+ /** Request modifiers to use for different resources. */
1931
+ 'requestModifiers'?: {
1932
+ /** Request modifiers for services */
1933
+ 'services'?: {
1934
+ 'cpu': number;
1935
+ 'memory': number;
1936
+ };
1937
+ /** Request modifiers for jobs */
1938
+ 'jobs'?: {
1939
+ 'cpu': number;
1940
+ 'memory': number;
1941
+ };
1942
+ /** Request modifiers for builds */
1943
+ 'builds'?: {
1944
+ 'cpu': number;
1945
+ 'memory': number;
1946
+ };
1947
+ /** Request modifiers for addons */
1948
+ 'addons'?: {
1949
+ 'cpu': number;
1950
+ 'memory': number;
1951
+ };
1952
+ };
1953
+ 'skipInstall'?: boolean;
1954
+ };
1955
+ /** GCP specific data. Required when `provider` is `gcp`. */
1956
+ 'gcp'?: {
1957
+ /** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
1958
+ 'projectId': string;
1959
+ };
1960
+ /** AWS specific data. Required when `provider` is `aws`. */
1961
+ 'aws'?: {
1962
+ /** List of subnets the cluster should be created for. At least 2 must be specified. */
1963
+ 'subnets': string;
1964
+ };
1965
+ };
1966
+ /** Creates a new cluster. */
1967
+ declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClusterRequest, CreateCloudClusterResult> {
1968
+ description: string;
1969
+ withAuth: boolean;
1970
+ requiredPermissions: string;
1971
+ endpointUrl: (opts: CreateCloudClusterRequest) => string;
1972
+ body: (payload: CreateCloudClusterRequest) => string;
1973
+ }
1974
+
1975
+ type GetCloudClusterResult = {
1976
+ /** The name of the cluster. Example: "GCP Cluster 1" */
1977
+ 'name': string;
1978
+ /** The description of the cluster. Example: "This is a new cluster." */
1979
+ 'description'?: string;
1980
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
1981
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1982
+ /** Region of the cluster. Example: "europe-west2" */
1983
+ 'region': string;
1984
+ /** Kubernetes version of the cluster. Example: "1.26" */
1985
+ 'kubernetesVersion': string;
1986
+ /** Existing integration to use for this cluster. Example: "gcp-integration" */
1987
+ 'integrationId'?: string;
1988
+ /** An array of node pools. */
1989
+ 'nodePools': {
1990
+ /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1991
+ 'nodeType': string;
1992
+ /** Number of nodes to the node pool should be provisioned with. Example: 3 */
1993
+ 'nodeCount': number;
1994
+ /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
1995
+ 'autoscaling'?: {
1996
+ 'enabled'?: boolean;
1997
+ 'min'?: number;
1998
+ 'max'?: number;
1999
+ };
2000
+ 'computeResources'?: {
2001
+ 'gpu'?: {
2002
+ 'mig'?: {
2003
+ 'enabled'?: boolean;
2004
+ 'partitions'?: string[];
2005
+ };
2006
+ 'timeslicing'?: {
2007
+ 'enabled'?: boolean;
2008
+ 'numSlices'?: number;
2009
+ };
2010
+ };
2011
+ };
2012
+ /** Configures node pool with preemptible / spot instances if enabled. */
2013
+ 'preemptible'?: boolean;
2014
+ /** The disk type to use. */
2015
+ 'diskType'?: string;
2016
+ /** Disk size in GB Example: 100 */
2017
+ 'diskSize': number;
2018
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2019
+ 'systemPool'?: boolean;
2020
+ /** Zones in which the node pool should be provisioned. */
2021
+ 'availabilityZones': string[];
2022
+ /** Define basic workload scheduling restrictions for this node pool */
2023
+ 'scheduling'?: {
2024
+ /** Allow jobs to schedule to this node pool */
2025
+ 'allowJobs'?: boolean;
2026
+ /** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
2027
+ 'onlyGpuJobs'?: boolean;
2028
+ /** Allow services to schedule to this node pool */
2029
+ 'allowServices'?: boolean;
2030
+ /** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
2031
+ 'onlyGpuServices'?: boolean;
2032
+ /** Allow addons to schedule to this node pool */
2033
+ 'allowAddons'?: boolean;
2034
+ /** Allow builds to schedule to this node pool */
2035
+ 'allowBuilds'?: boolean;
2036
+ /** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
2037
+ 'onlyGpuBuilds'?: boolean;
2038
+ };
2039
+ /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
2040
+ 'labels'?: any;
2041
+ }[];
2042
+ 'settings'?: {
2043
+ 'builds'?: {
2044
+ 'mode'?: 'paas' | 'internal' | 'build-cluster';
2045
+ /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
2046
+ 'plan'?: string;
2047
+ /** Cluster to use for scheduling builds */
2048
+ 'clusterId'?: string;
2049
+ };
2050
+ 'registry'?: {
2051
+ 'mode'?: 'paas' | 'self-hosted';
2052
+ /** Credentials to use for storing of images. Example: "my-registry-credentials" */
2053
+ 'registryId'?: string;
2054
+ };
2055
+ 'logging'?: {
2056
+ 'mode'?: 'paas' | 'loki';
2057
+ /** Required data for the loki mode setting. */
2058
+ 'loki'?: {
2059
+ 's3BucketName': string;
2060
+ 's3AccessKey': string;
2061
+ 's3SecretKey': string;
2062
+ 's3Region': string;
2063
+ };
2064
+ };
2065
+ 'vanityDomains'?: {
2066
+ 'apps'?: {
2067
+ 'zoneName': string;
2068
+ 'integrationId': string;
2069
+ };
2070
+ 'customDomains'?: {
2071
+ 'zoneName': string;
2072
+ 'integrationId': string;
2073
+ };
2074
+ 'loadBalancers'?: {
2075
+ 'zoneName': string;
2076
+ 'integrationId': string;
2077
+ };
2078
+ };
2079
+ 'infrastructure'?: {
2080
+ 'workloads'?: {
2081
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2082
+ };
2083
+ 'builds'?: {
2084
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2085
+ };
2086
+ 'installKata'?: boolean;
2087
+ 'installGvisor'?: boolean;
2088
+ 'cleanupVolumes'?: boolean;
2089
+ 'cleanupSnapshots'?: boolean;
2090
+ };
2091
+ /** Request modifiers to use for different resources. */
2092
+ 'requestModifiers'?: {
2093
+ /** Request modifiers for services */
2094
+ 'services'?: {
2095
+ 'cpu': number;
2096
+ 'memory': number;
2097
+ };
2098
+ /** Request modifiers for jobs */
2099
+ 'jobs'?: {
2100
+ 'cpu': number;
2101
+ 'memory': number;
2102
+ };
2103
+ /** Request modifiers for builds */
2104
+ 'builds'?: {
2105
+ 'cpu': number;
2106
+ 'memory': number;
2107
+ };
2108
+ /** Request modifiers for addons */
2109
+ 'addons'?: {
2110
+ 'cpu': number;
2111
+ 'memory': number;
2112
+ };
2113
+ };
2114
+ 'skipInstall'?: boolean;
2115
+ };
2116
+ /** GCP specific data. Required when `provider` is `gcp`. */
2117
+ 'gcp'?: {
2118
+ /** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
2119
+ 'projectId': string;
2120
+ };
2121
+ /** AWS specific data. Required when `provider` is `aws`. */
2122
+ 'aws'?: {
2123
+ /** List of subnets the cluster should be created for. At least 2 must be specified. */
2124
+ 'subnets': string;
2125
+ };
2126
+ 'status'?: {
2127
+ 'state'?: {
2128
+ 'state'?: string;
2129
+ 'transitionTime'?: string;
2130
+ };
2131
+ 'nextUpdateAfter'?: string;
2132
+ };
2133
+ /** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
2134
+ 'dns'?: string;
2135
+ /** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
2136
+ 'createdAt': string;
2137
+ /** Indicates if provider resource deletion has been requested. */
2138
+ 'deletionRequested': boolean;
2139
+ };
2140
+ type GetCloudClusterCall = (opts: GetCloudClusterRequest) => Promise<ApiCallResponse<GetCloudClusterResult>>;
2141
+ type GetCloudClusterRequest = {
2142
+ parameters: GetCloudClusterParameters;
2143
+ };
2144
+ type GetCloudClusterParameters = {
2145
+ /** ID of the cluster */ 'clusterId': string;
1606
2146
  };
1607
- type CreateCloudClusterData = {
2147
+ /** Get information about the given cluster */
2148
+ declare class GetCloudClusterEndpoint extends GetApiEndpoint<GetCloudClusterRequest, GetCloudClusterResult> {
2149
+ description: string;
2150
+ withAuth: boolean;
2151
+ requiredPermissions: string;
2152
+ endpointUrl: (opts: GetCloudClusterRequest) => string;
2153
+ body: () => undefined;
2154
+ }
2155
+
2156
+ type UpdateCloudClusterResult = {
1608
2157
  /** The name of the cluster. Example: "GCP Cluster 1" */
1609
2158
  'name': string;
1610
2159
  /** The description of the cluster. Example: "This is a new cluster." */
@@ -1617,7 +2166,6 @@ type CreateCloudClusterData = {
1617
2166
  'kubernetesVersion': string;
1618
2167
  /** Existing integration to use for this cluster. Example: "gcp-integration" */
1619
2168
  'integrationId'?: string;
1620
- 'integration'?: any;
1621
2169
  /** An array of node pools. */
1622
2170
  'nodePools': {
1623
2171
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
@@ -1711,10 +2259,10 @@ type CreateCloudClusterData = {
1711
2259
  };
1712
2260
  'infrastructure'?: {
1713
2261
  'workloads'?: {
1714
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2262
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1715
2263
  };
1716
2264
  'builds'?: {
1717
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2265
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1718
2266
  };
1719
2267
  'installKata'?: boolean;
1720
2268
  'installGvisor'?: boolean;
@@ -1756,99 +2304,6 @@ type CreateCloudClusterData = {
1756
2304
  /** List of subnets the cluster should be created for. At least 2 must be specified. */
1757
2305
  'subnets': string;
1758
2306
  };
1759
- };
1760
- /** Creates a new cluster. */
1761
- declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClusterRequest, CreateCloudClusterResult> {
1762
- description: string;
1763
- withAuth: boolean;
1764
- requiredPermissions: string;
1765
- endpointUrl: (opts: CreateCloudClusterRequest) => string;
1766
- body: (payload: CreateCloudClusterRequest) => string;
1767
- }
1768
-
1769
- type GetCloudClusterResult = any;
1770
- type GetCloudClusterCall = (opts: GetCloudClusterRequest) => Promise<ApiCallResponse<GetCloudClusterResult>>;
1771
- type GetCloudClusterRequest = {
1772
- parameters: GetCloudClusterParameters;
1773
- };
1774
- type GetCloudClusterParameters = {
1775
- /** ID of the cluster */ 'clusterId': string;
1776
- };
1777
- /** Get information about the given cluster */
1778
- declare class GetCloudClusterEndpoint extends GetApiEndpoint<GetCloudClusterRequest, GetCloudClusterResult> {
1779
- description: string;
1780
- withAuth: boolean;
1781
- requiredPermissions: string;
1782
- endpointUrl: (opts: GetCloudClusterRequest) => string;
1783
- body: () => undefined;
1784
- }
1785
-
1786
- type UpdateCloudClusterResult = {
1787
- /** Identifier for the cluster. Example: "gcp-cluster-1" */
1788
- 'id': string;
1789
- /** The name of the cluster. Example: "GCP Cluster 1" */
1790
- 'name': string;
1791
- /** A short description of the cluster. Example: "The cluster description" */
1792
- 'description'?: string;
1793
- /** The cloud provider to which this cluster belongs to. Example: "gcp" */
1794
- 'provider'?: string;
1795
- /** ID of the provider integration used by this cluster. Example: "gcp-integration" */
1796
- 'integrationId': string;
1797
- 'nodePools'?: {
1798
- /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1799
- 'nodeType': string;
1800
- /** Number of nodes to the node pool should be provisioned with. Example: 3 */
1801
- 'nodeCount': number;
1802
- /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
1803
- 'autoscaling'?: {
1804
- 'enabled'?: boolean;
1805
- 'min'?: number;
1806
- 'max'?: number;
1807
- };
1808
- 'computeResources'?: {
1809
- 'gpu'?: {
1810
- 'mig'?: {
1811
- 'enabled'?: boolean;
1812
- 'partitions'?: string[];
1813
- };
1814
- 'timeslicing'?: {
1815
- 'enabled'?: boolean;
1816
- 'numSlices'?: number;
1817
- };
1818
- };
1819
- };
1820
- /** Configures node pool with preemptible / spot instances if enabled. */
1821
- 'preemptible'?: boolean;
1822
- /** The disk type to use. */
1823
- 'diskType'?: string;
1824
- /** Disk size in GB Example: 100 */
1825
- 'diskSize': number;
1826
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1827
- 'systemPool'?: boolean;
1828
- /** Zones in which the node pool should be provisioned. */
1829
- 'availabilityZones': string[];
1830
- /** Define basic workload scheduling restrictions for this node pool */
1831
- 'scheduling'?: {
1832
- /** Allow jobs to schedule to this node pool */
1833
- 'allowJobs'?: boolean;
1834
- /** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
1835
- 'onlyGpuJobs'?: boolean;
1836
- /** Allow services to schedule to this node pool */
1837
- 'allowServices'?: boolean;
1838
- /** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
1839
- 'onlyGpuServices'?: boolean;
1840
- /** Allow addons to schedule to this node pool */
1841
- 'allowAddons'?: boolean;
1842
- /** Allow builds to schedule to this node pool */
1843
- 'allowBuilds'?: boolean;
1844
- /** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
1845
- 'onlyGpuBuilds'?: boolean;
1846
- };
1847
- /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
1848
- 'labels'?: any;
1849
- /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
1850
- 'id'?: string;
1851
- }[];
1852
2307
  'status'?: {
1853
2308
  'state'?: {
1854
2309
  'state'?: string;
@@ -1856,9 +2311,11 @@ type UpdateCloudClusterResult = {
1856
2311
  };
1857
2312
  'nextUpdateAfter'?: string;
1858
2313
  };
2314
+ /** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
2315
+ 'dns'?: string;
1859
2316
  /** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
1860
2317
  'createdAt': string;
1861
- /** Indicates if provider resource deletion has been requested by the user. */
2318
+ /** Indicates if provider resource deletion has been requested. */
1862
2319
  'deletionRequested': boolean;
1863
2320
  };
1864
2321
  type UpdateCloudClusterCall = (opts: UpdateCloudClusterRequest) => Promise<ApiCallResponse<UpdateCloudClusterResult>>;
@@ -1966,10 +2423,10 @@ type UpdateCloudClusterData = {
1966
2423
  };
1967
2424
  'infrastructure'?: {
1968
2425
  'workloads'?: {
1969
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2426
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1970
2427
  };
1971
2428
  'builds'?: {
1972
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2429
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1973
2430
  };
1974
2431
  'installKata'?: boolean;
1975
2432
  'installGvisor'?: boolean;
@@ -2085,7 +2542,7 @@ type CreateCloudDockerregistryRequest = {
2085
2542
  data: CreateCloudDockerregistryData;
2086
2543
  };
2087
2544
  type CreateCloudDockerregistryData = {
2088
- /** The name of the cloud provider integration. Example: "New Integration" */
2545
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2089
2546
  'name': string;
2090
2547
  /** The description of the integration. Example: "This is a new cloud provider integration." */
2091
2548
  'description'?: string;
@@ -2156,14 +2613,23 @@ declare class DeleteCloudDockerregistryEndpoint extends DeleteApiEndpoint<Delete
2156
2613
  type ListCloudIntegrationsResult = {
2157
2614
  /** An array of integrations. */
2158
2615
  'integrations': {
2159
- /** Identifier for the integration. Example: "gcp-integration" */
2160
- 'id': string;
2161
- /** The name of the integration. Example: "GCP integration" */
2616
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2162
2617
  'name': string;
2163
- /** A short description of the integration. Example: "The integration description" */
2618
+ /** The description of the integration. Example: "This is a new cloud provider integration." */
2164
2619
  'description'?: string;
2165
- /** The cloud provider to which this integration belongs to. Example: "gcp" */
2166
- 'provider'?: string;
2620
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
2621
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2622
+ /** The type of provider integration. Example: "cluster" */
2623
+ 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2624
+ /** GCP specific data. Required when `provider` is `gcp`. */
2625
+ 'gcp'?: {
2626
+ 'gcp'?: {
2627
+ /** Project ID */
2628
+ 'projectId': string;
2629
+ };
2630
+ };
2631
+ /** ID of the integration Example: "example-integration" */
2632
+ 'id': string;
2167
2633
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
2168
2634
  'createdAt': string;
2169
2635
  }[];
@@ -2190,12 +2656,16 @@ declare class ListCloudIntegrationsEndpoint extends GetApiEndpoint<ListCloudInte
2190
2656
  }
2191
2657
 
2192
2658
  type CreateCloudIntegrationResult = {
2193
- /** Identifier for the integration. Example: "gcp-integration" */
2659
+ /** ID of the integration Example: "example-integration" */
2194
2660
  'id': string;
2195
- /** The name of the integration. Example: "GCP integration" */
2661
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2196
2662
  'name': string;
2197
- /** A short description of the integration. Example: "The integration description" */
2663
+ /** The description of the integration. Example: "This is a new cloud provider integration." */
2198
2664
  'description'?: string;
2665
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
2666
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2667
+ /** The type of provider integration. Example: "cluster" */
2668
+ 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2199
2669
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2200
2670
  'credentials': {
2201
2671
  /** Contents of a GCP key file. */
@@ -2204,8 +2674,25 @@ type CreateCloudIntegrationResult = {
2204
2674
  'accessKey'?: string;
2205
2675
  /** AWS secret key. */
2206
2676
  'secretKey'?: string;
2207
- /** DO API key. */
2677
+ /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2208
2678
  'apiKey'?: string;
2679
+ /** Directory (tenant) ID */
2680
+ 'tenantId'?: string;
2681
+ /** Application (client) ID */
2682
+ 'clientId'?: string;
2683
+ /** Object ID */
2684
+ 'objectId'?: string;
2685
+ /** Secret */
2686
+ 'secret'?: string;
2687
+ /** Azure Subscription ID */
2688
+ 'subscriptionId'?: string;
2689
+ };
2690
+ /** GCP specific data. Required when `provider` is `gcp`. */
2691
+ 'gcp'?: {
2692
+ 'gcp'?: {
2693
+ /** Project ID */
2694
+ 'projectId': string;
2695
+ };
2209
2696
  };
2210
2697
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
2211
2698
  'createdAt': string;
@@ -2215,7 +2702,7 @@ type CreateCloudIntegrationRequest = {
2215
2702
  data: CreateCloudIntegrationData;
2216
2703
  };
2217
2704
  type CreateCloudIntegrationData = {
2218
- /** The name of the cloud provider integration. Example: "New Integration" */
2705
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2219
2706
  'name': string;
2220
2707
  /** The description of the integration. Example: "This is a new cloud provider integration." */
2221
2708
  'description'?: string;
@@ -2231,8 +2718,18 @@ type CreateCloudIntegrationData = {
2231
2718
  'accessKey'?: string;
2232
2719
  /** AWS secret key. */
2233
2720
  'secretKey'?: string;
2234
- /** DO API key. */
2721
+ /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2235
2722
  'apiKey'?: string;
2723
+ /** Directory (tenant) ID */
2724
+ 'tenantId'?: string;
2725
+ /** Application (client) ID */
2726
+ 'clientId'?: string;
2727
+ /** Object ID */
2728
+ 'objectId'?: string;
2729
+ /** Secret */
2730
+ 'secret'?: string;
2731
+ /** Azure Subscription ID */
2732
+ 'subscriptionId'?: string;
2236
2733
  };
2237
2734
  /** GCP specific data. Required when `provider` is `gcp`. */
2238
2735
  'gcp'?: {
@@ -2251,7 +2748,48 @@ declare class CreateCloudIntegrationEndpoint extends PostApiEndpoint<CreateCloud
2251
2748
  body: (payload: CreateCloudIntegrationRequest) => string;
2252
2749
  }
2253
2750
 
2254
- type GetCloudIntegrationResult = any;
2751
+ type GetCloudIntegrationResult = {
2752
+ /** ID of the integration Example: "example-integration" */
2753
+ 'id': string;
2754
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2755
+ 'name': string;
2756
+ /** The description of the integration. Example: "This is a new cloud provider integration." */
2757
+ 'description'?: string;
2758
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
2759
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2760
+ /** The type of provider integration. Example: "cluster" */
2761
+ 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2762
+ /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2763
+ 'credentials': {
2764
+ /** Contents of a GCP key file. */
2765
+ 'keyfileJson'?: string;
2766
+ /** AWS access key. */
2767
+ 'accessKey'?: string;
2768
+ /** AWS secret key. */
2769
+ 'secretKey'?: string;
2770
+ /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2771
+ 'apiKey'?: string;
2772
+ /** Directory (tenant) ID */
2773
+ 'tenantId'?: string;
2774
+ /** Application (client) ID */
2775
+ 'clientId'?: string;
2776
+ /** Object ID */
2777
+ 'objectId'?: string;
2778
+ /** Secret */
2779
+ 'secret'?: string;
2780
+ /** Azure Subscription ID */
2781
+ 'subscriptionId'?: string;
2782
+ };
2783
+ /** GCP specific data. Required when `provider` is `gcp`. */
2784
+ 'gcp'?: {
2785
+ 'gcp'?: {
2786
+ /** Project ID */
2787
+ 'projectId': string;
2788
+ };
2789
+ };
2790
+ /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
2791
+ 'createdAt': string;
2792
+ };
2255
2793
  type GetCloudIntegrationCall = (opts: GetCloudIntegrationRequest) => Promise<ApiCallResponse<GetCloudIntegrationResult>>;
2256
2794
  type GetCloudIntegrationRequest = {
2257
2795
  parameters: GetCloudIntegrationParameters;
@@ -2268,7 +2806,48 @@ declare class GetCloudIntegrationEndpoint extends GetApiEndpoint<GetCloudIntegra
2268
2806
  body: () => undefined;
2269
2807
  }
2270
2808
 
2271
- type UpdateCloudIntegrationResult = any;
2809
+ type UpdateCloudIntegrationResult = {
2810
+ /** ID of the integration Example: "example-integration" */
2811
+ 'id': string;
2812
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2813
+ 'name': string;
2814
+ /** The description of the integration. Example: "This is a new cloud provider integration." */
2815
+ 'description'?: string;
2816
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
2817
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2818
+ /** The type of provider integration. Example: "cluster" */
2819
+ 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2820
+ /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2821
+ 'credentials': {
2822
+ /** Contents of a GCP key file. */
2823
+ 'keyfileJson'?: string;
2824
+ /** AWS access key. */
2825
+ 'accessKey'?: string;
2826
+ /** AWS secret key. */
2827
+ 'secretKey'?: string;
2828
+ /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2829
+ 'apiKey'?: string;
2830
+ /** Directory (tenant) ID */
2831
+ 'tenantId'?: string;
2832
+ /** Application (client) ID */
2833
+ 'clientId'?: string;
2834
+ /** Object ID */
2835
+ 'objectId'?: string;
2836
+ /** Secret */
2837
+ 'secret'?: string;
2838
+ /** Azure Subscription ID */
2839
+ 'subscriptionId'?: string;
2840
+ };
2841
+ /** GCP specific data. Required when `provider` is `gcp`. */
2842
+ 'gcp'?: {
2843
+ 'gcp'?: {
2844
+ /** Project ID */
2845
+ 'projectId': string;
2846
+ };
2847
+ };
2848
+ /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
2849
+ 'createdAt': string;
2850
+ };
2272
2851
  type UpdateCloudIntegrationCall = (opts: UpdateCloudIntegrationRequest) => Promise<ApiCallResponse<UpdateCloudIntegrationResult>>;
2273
2852
  type UpdateCloudIntegrationRequest = {
2274
2853
  parameters: UpdateCloudIntegrationParameters;
@@ -2288,8 +2867,18 @@ type UpdateCloudIntegrationData = {
2288
2867
  'accessKey'?: string;
2289
2868
  /** AWS secret key. */
2290
2869
  'secretKey'?: string;
2291
- /** DO API key. */
2870
+ /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2292
2871
  'apiKey'?: string;
2872
+ /** Directory (tenant) ID */
2873
+ 'tenantId'?: string;
2874
+ /** Application (client) ID */
2875
+ 'clientId'?: string;
2876
+ /** Object ID */
2877
+ 'objectId'?: string;
2878
+ /** Secret */
2879
+ 'secret'?: string;
2880
+ /** Azure Subscription ID */
2881
+ 'subscriptionId'?: string;
2293
2882
  };
2294
2883
  };
2295
2884
  /** Update information about the given integration */
@@ -2679,6 +3268,66 @@ type GetSubdomainResult = {
2679
3268
  'content': string;
2680
3269
  /** Whether the subdomain has been verified successfully and can be used. Example: true */
2681
3270
  'verified': boolean;
3271
+ 'certificate'?: {
3272
+ /** Whether a certificate is in the process of being generated */
3273
+ 'inProgress'?: boolean;
3274
+ /** Expiry date of the current certificate */
3275
+ 'expiryDate'?: string;
3276
+ /** Refresh date of the current certificate */
3277
+ 'refreshDare'?: string;
3278
+ };
3279
+ 'cdn'?: {
3280
+ 'cloudfront'?: {
3281
+ 'enabled'?: boolean;
3282
+ 'status'?: string;
3283
+ 'deployedAt'?: string;
3284
+ };
3285
+ 'fastly'?: {
3286
+ 'enabled'?: boolean;
3287
+ 'status'?: string;
3288
+ 'options'?: {
3289
+ 'service'?: {
3290
+ 'forceTlsEnableHsts'?: boolean;
3291
+ /** HSTS duration. Required when `forceTlsEnableHsts` is `true`. */
3292
+ 'hstsDuration'?: number;
3293
+ 'staleIfError'?: boolean;
3294
+ 'staleIfErrorTtl'?: number;
3295
+ 'defaultTtl'?: number;
3296
+ };
3297
+ 'logging'?: {
3298
+ 'enabled'?: boolean;
3299
+ };
3300
+ 'http3'?: {
3301
+ 'enabled'?: boolean;
3302
+ };
3303
+ 'websockets'?: {
3304
+ 'enabled'?: boolean;
3305
+ };
3306
+ 'compression'?: {
3307
+ 'enabled'?: boolean;
3308
+ /** Compression options. Required when `enabled` is `true`. */
3309
+ 'mode'?: 'gzip' | 'brotli';
3310
+ };
3311
+ 'vclSnippets'?: {
3312
+ 'id'?: string;
3313
+ 'name': string;
3314
+ 'type': 'init' | 'recv' | 'hash' | 'hit' | 'miss' | 'pass' | 'fetch' | 'error' | 'deliver' | 'log' | 'none';
3315
+ 'dynamic': '0' | '1';
3316
+ 'priority': number;
3317
+ 'content': string;
3318
+ }[];
3319
+ 'cacheSettings'?: {
3320
+ 'id'?: string;
3321
+ 'name': string;
3322
+ 'action'?: 'pass' | 'cache' | 'restart';
3323
+ 'cacheCondition'?: string;
3324
+ 'staleTtl': number;
3325
+ 'ttl': number;
3326
+ }[];
3327
+ };
3328
+ 'deployedAt'?: string;
3329
+ };
3330
+ };
2682
3331
  };
2683
3332
  type GetSubdomainCall = (opts: GetSubdomainRequest) => Promise<ApiCallResponse<GetSubdomainResult>>;
2684
3333
  type GetSubdomainRequest = {
@@ -2805,6 +3454,7 @@ type EnableSubdomainCdnData = {
2805
3454
  'options'?: {
2806
3455
  'service'?: {
2807
3456
  'forceTlsEnableHsts'?: boolean;
3457
+ /** HSTS duration. Required when `forceTlsEnableHsts` is `true`. */
2808
3458
  'hstsDuration'?: number;
2809
3459
  'staleIfError'?: boolean;
2810
3460
  'staleIfErrorTtl'?: number;
@@ -2821,6 +3471,7 @@ type EnableSubdomainCdnData = {
2821
3471
  };
2822
3472
  'compression'?: {
2823
3473
  'enabled'?: boolean;
3474
+ /** Compression options. Required when `enabled` is `true`. */
2824
3475
  'mode'?: 'gzip' | 'brotli';
2825
3476
  };
2826
3477
  'vclSnippets'?: {
@@ -2839,7 +3490,11 @@ type EnableSubdomainCdnData = {
2839
3490
  'staleTtl': number;
2840
3491
  'ttl': number;
2841
3492
  }[];
2842
- } | any;
3493
+ };
3494
+ } | {
3495
+ /** Provider for which a CDN on the subdomain should be enabled. Example: "cloudfront" */
3496
+ 'provider': string;
3497
+ 'options'?: any;
2843
3498
  };
2844
3499
  /** Enables a CDN integration on the given subdomain */
2845
3500
  declare class EnableSubdomainCdnEndpoint extends PostApiEndpoint<EnableSubdomainCdnRequest, EnableSubdomainCdnResult> {
@@ -2851,8 +3506,6 @@ declare class EnableSubdomainCdnEndpoint extends PostApiEndpoint<EnableSubdomain
2851
3506
  }
2852
3507
 
2853
3508
  type AddSubdomainPathResult = {
2854
- /** The domain the path should be created for. Example: "site.example.com" */
2855
- 'subdomain': string;
2856
3509
  /** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
2857
3510
  'mode': 'prefix' | 'exact' | 'regex';
2858
3511
  /** URI of the subdomain path. Interpreted according to the selected path mode Example: "/" */
@@ -2864,7 +3517,7 @@ type AddSubdomainPathResult = {
2864
3517
  'ignoreUriCase'?: boolean;
2865
3518
  /** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
2866
3519
  'rewrite'?: {
2867
- 'uri'?: string;
3520
+ 'uri': string;
2868
3521
  } | {
2869
3522
  'regex'?: {
2870
3523
  /** Regex match for the given path */
@@ -2908,6 +3561,8 @@ type AddSubdomainPathResult = {
2908
3561
  'perTryTimeout'?: string;
2909
3562
  };
2910
3563
  };
3564
+ /** The full URL including subdomain and path URI. */
3565
+ 'name'?: string;
2911
3566
  /** time of creation */
2912
3567
  'createdAt'?: string;
2913
3568
  } | any;
@@ -2933,7 +3588,7 @@ type AddSubdomainPathData = {
2933
3588
  'ignoreUriCase'?: boolean;
2934
3589
  /** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
2935
3590
  'rewrite'?: {
2936
- 'uri'?: string;
3591
+ 'uri': string;
2937
3592
  } | {
2938
3593
  'regex'?: {
2939
3594
  /** Regex match for the given path */
@@ -3003,7 +3658,7 @@ type ListSubdomainPathResult = {
3003
3658
  'ignoreUriCase'?: boolean;
3004
3659
  /** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
3005
3660
  'rewrite'?: {
3006
- 'uri'?: string;
3661
+ 'uri': string;
3007
3662
  } | {
3008
3663
  'regex'?: {
3009
3664
  /** Regex match for the given path */
@@ -3047,6 +3702,8 @@ type ListSubdomainPathResult = {
3047
3702
  'perTryTimeout'?: string;
3048
3703
  };
3049
3704
  };
3705
+ /** The full URL including subdomain and path URI. */
3706
+ 'name'?: string;
3050
3707
  /** time of creation */
3051
3708
  'createdAt'?: string;
3052
3709
  }[];
@@ -3070,8 +3727,6 @@ declare class ListSubdomainPathEndpoint extends GetApiEndpoint<ListSubdomainPath
3070
3727
  }
3071
3728
 
3072
3729
  type GetSubdomainPathResult = {
3073
- /** The domain the path should be created for. Example: "site.example.com" */
3074
- 'subdomain': string;
3075
3730
  /** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
3076
3731
  'mode': 'prefix' | 'exact' | 'regex';
3077
3732
  /** URI of the subdomain path. Interpreted according to the selected path mode Example: "/" */
@@ -3083,7 +3738,7 @@ type GetSubdomainPathResult = {
3083
3738
  'ignoreUriCase'?: boolean;
3084
3739
  /** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
3085
3740
  'rewrite'?: {
3086
- 'uri'?: string;
3741
+ 'uri': string;
3087
3742
  } | {
3088
3743
  'regex'?: {
3089
3744
  /** Regex match for the given path */
@@ -3127,6 +3782,8 @@ type GetSubdomainPathResult = {
3127
3782
  'perTryTimeout'?: string;
3128
3783
  };
3129
3784
  };
3785
+ /** The full URL including subdomain and path URI. */
3786
+ 'name'?: string;
3130
3787
  /** time of creation */
3131
3788
  'createdAt'?: string;
3132
3789
  /** Data about the subdomain path assignment. */
@@ -3201,7 +3858,7 @@ type UpdateSubdomainPathData = {
3201
3858
  'ignoreUriCase'?: boolean;
3202
3859
  /** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
3203
3860
  'rewrite'?: {
3204
- 'uri'?: string;
3861
+ 'uri': string;
3205
3862
  } | {
3206
3863
  'regex'?: {
3207
3864
  /** Regex match for the given path */
@@ -3416,6 +4073,16 @@ type CreateLogsinkData = {
3416
4073
  'restricted'?: boolean;
3417
4074
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3418
4075
  'projects'?: string[];
4076
+ 'options'?: {
4077
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4078
+ 'useCustomLabels'?: boolean;
4079
+ /** Forward CDN logs from your workloads Example: true */
4080
+ 'forwardCdnLogs'?: boolean;
4081
+ /** Forward ingress logs from your workloads Example: true */
4082
+ 'forwardIngressLogs'?: boolean;
4083
+ /** Forward mesh logs from your workloads Example: true */
4084
+ 'forwardMeshLogs'?: boolean;
4085
+ };
3419
4086
  /** The type of the log sink. Example: "loki" */
3420
4087
  'sinkType': 'loki';
3421
4088
  /** Details about the Loki log sink. */
@@ -3446,6 +4113,16 @@ type CreateLogsinkData = {
3446
4113
  'restricted'?: boolean;
3447
4114
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3448
4115
  'projects'?: string[];
4116
+ 'options'?: {
4117
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4118
+ 'useCustomLabels'?: boolean;
4119
+ /** Forward CDN logs from your workloads Example: true */
4120
+ 'forwardCdnLogs'?: boolean;
4121
+ /** Forward ingress logs from your workloads Example: true */
4122
+ 'forwardIngressLogs'?: boolean;
4123
+ /** Forward mesh logs from your workloads Example: true */
4124
+ 'forwardMeshLogs'?: boolean;
4125
+ };
3449
4126
  /** The type of the log sink. Example: "datadog_logs" */
3450
4127
  'sinkType': 'datadog_logs';
3451
4128
  /** Details about the Datadog log sink. */
@@ -3464,6 +4141,16 @@ type CreateLogsinkData = {
3464
4141
  'restricted'?: boolean;
3465
4142
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3466
4143
  'projects'?: string[];
4144
+ 'options'?: {
4145
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4146
+ 'useCustomLabels'?: boolean;
4147
+ /** Forward CDN logs from your workloads Example: true */
4148
+ 'forwardCdnLogs'?: boolean;
4149
+ /** Forward ingress logs from your workloads Example: true */
4150
+ 'forwardIngressLogs'?: boolean;
4151
+ /** Forward mesh logs from your workloads Example: true */
4152
+ 'forwardMeshLogs'?: boolean;
4153
+ };
3467
4154
  /** The type of the log sink. Example: "papertrail" */
3468
4155
  'sinkType': 'papertrail';
3469
4156
  /** Papertrail Sink Schema. */
@@ -3482,15 +4169,25 @@ type CreateLogsinkData = {
3482
4169
  /** The HTTP Token for the Papertrail log destination. Example: "123abcdefghijklmnopqrstuvwxy" */
3483
4170
  'token': string;
3484
4171
  };
3485
- } | {
3486
- /** Name of the log sink. Example: "example-log-sink" */
3487
- 'name': string;
3488
- /** Description of the log sink. Example: "This is an example log sink." */
3489
- 'description'?: string;
3490
- /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
3491
- 'restricted'?: boolean;
3492
- /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3493
- 'projects'?: string[];
4172
+ } | {
4173
+ /** Name of the log sink. Example: "example-log-sink" */
4174
+ 'name': string;
4175
+ /** Description of the log sink. Example: "This is an example log sink." */
4176
+ 'description'?: string;
4177
+ /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
4178
+ 'restricted'?: boolean;
4179
+ /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
4180
+ 'projects'?: string[];
4181
+ 'options'?: {
4182
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4183
+ 'useCustomLabels'?: boolean;
4184
+ /** Forward CDN logs from your workloads Example: true */
4185
+ 'forwardCdnLogs'?: boolean;
4186
+ /** Forward ingress logs from your workloads Example: true */
4187
+ 'forwardIngressLogs'?: boolean;
4188
+ /** Forward mesh logs from your workloads Example: true */
4189
+ 'forwardMeshLogs'?: boolean;
4190
+ };
3494
4191
  /** The type of the log sink. Example: "aws_s3" */
3495
4192
  'sinkType': 'aws_s3';
3496
4193
  /** Details about the AWS S3 log sink. */
@@ -3520,6 +4217,16 @@ type CreateLogsinkData = {
3520
4217
  'restricted'?: boolean;
3521
4218
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3522
4219
  'projects'?: string[];
4220
+ 'options'?: {
4221
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4222
+ 'useCustomLabels'?: boolean;
4223
+ /** Forward CDN logs from your workloads Example: true */
4224
+ 'forwardCdnLogs'?: boolean;
4225
+ /** Forward ingress logs from your workloads Example: true */
4226
+ 'forwardIngressLogs'?: boolean;
4227
+ /** Forward mesh logs from your workloads Example: true */
4228
+ 'forwardMeshLogs'?: boolean;
4229
+ };
3523
4230
  /** The type of the log sink. Example: "http" */
3524
4231
  'sinkType': 'http';
3525
4232
  /** Details about the HTTP log sink. */
@@ -3531,7 +4238,23 @@ type CreateLogsinkData = {
3531
4238
  /** Codec to encode logs in Example: "json" */
3532
4239
  'codec': 'text' | 'json';
3533
4240
  };
3534
- 'auth': any;
4241
+ /** Auth information. */
4242
+ 'auth': {
4243
+ /** No authentication strategy Example: "none" */
4244
+ 'strategy': 'none';
4245
+ } | {
4246
+ /** Basic HTTP authentication strategy. Example: "basic" */
4247
+ 'strategy': 'basic';
4248
+ /** Username for basic http authentication. Example: "my-user" */
4249
+ 'user'?: string;
4250
+ /** Password for basic http authentication. Example: "secret-password" */
4251
+ 'password': string;
4252
+ } | {
4253
+ /** Bearer token authentication strategy. Example: "bearer" */
4254
+ 'strategy': 'bearer';
4255
+ /** Token for bearer token authentication. Example: "my-token" */
4256
+ 'token'?: string;
4257
+ };
3535
4258
  };
3536
4259
  } | {
3537
4260
  /** Name of the log sink. Example: "example-log-sink" */
@@ -3542,6 +4265,16 @@ type CreateLogsinkData = {
3542
4265
  'restricted'?: boolean;
3543
4266
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3544
4267
  'projects'?: string[];
4268
+ 'options'?: {
4269
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4270
+ 'useCustomLabels'?: boolean;
4271
+ /** Forward CDN logs from your workloads Example: true */
4272
+ 'forwardCdnLogs'?: boolean;
4273
+ /** Forward ingress logs from your workloads Example: true */
4274
+ 'forwardIngressLogs'?: boolean;
4275
+ /** Forward mesh logs from your workloads Example: true */
4276
+ 'forwardMeshLogs'?: boolean;
4277
+ };
3545
4278
  /** The type of the log sink. Example: "logdna" */
3546
4279
  'sinkType': 'logdna';
3547
4280
  /** Details about the LogDNA log sink. */
@@ -3558,6 +4291,16 @@ type CreateLogsinkData = {
3558
4291
  'restricted'?: boolean;
3559
4292
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3560
4293
  'projects'?: string[];
4294
+ 'options'?: {
4295
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4296
+ 'useCustomLabels'?: boolean;
4297
+ /** Forward CDN logs from your workloads Example: true */
4298
+ 'forwardCdnLogs'?: boolean;
4299
+ /** Forward ingress logs from your workloads Example: true */
4300
+ 'forwardIngressLogs'?: boolean;
4301
+ /** Forward mesh logs from your workloads Example: true */
4302
+ 'forwardMeshLogs'?: boolean;
4303
+ };
3561
4304
  /** The type of the log sink. Example: "betterStack" */
3562
4305
  'sinkType': 'betterStack';
3563
4306
  /** Details about the Better Stack log sink. */
@@ -3574,6 +4317,16 @@ type CreateLogsinkData = {
3574
4317
  'restricted'?: boolean;
3575
4318
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3576
4319
  'projects'?: string[];
4320
+ 'options'?: {
4321
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4322
+ 'useCustomLabels'?: boolean;
4323
+ /** Forward CDN logs from your workloads Example: true */
4324
+ 'forwardCdnLogs'?: boolean;
4325
+ /** Forward ingress logs from your workloads Example: true */
4326
+ 'forwardIngressLogs'?: boolean;
4327
+ /** Forward mesh logs from your workloads Example: true */
4328
+ 'forwardMeshLogs'?: boolean;
4329
+ };
3577
4330
  /** The type of the log sink. Example: "honeycomb" */
3578
4331
  'sinkType': 'honeycomb';
3579
4332
  /** Details about the Honeycomb log sink. */
@@ -3592,6 +4345,16 @@ type CreateLogsinkData = {
3592
4345
  'restricted'?: boolean;
3593
4346
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3594
4347
  'projects'?: string[];
4348
+ 'options'?: {
4349
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4350
+ 'useCustomLabels'?: boolean;
4351
+ /** Forward CDN logs from your workloads Example: true */
4352
+ 'forwardCdnLogs'?: boolean;
4353
+ /** Forward ingress logs from your workloads Example: true */
4354
+ 'forwardIngressLogs'?: boolean;
4355
+ /** Forward mesh logs from your workloads Example: true */
4356
+ 'forwardMeshLogs'?: boolean;
4357
+ };
3595
4358
  /** The type of the log sink. Example: "logzio" */
3596
4359
  'sinkType': 'logzio';
3597
4360
  /** Details about the Logz.io log sink. */
@@ -3610,6 +4373,16 @@ type CreateLogsinkData = {
3610
4373
  'restricted'?: boolean;
3611
4374
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3612
4375
  'projects'?: string[];
4376
+ 'options'?: {
4377
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4378
+ 'useCustomLabels'?: boolean;
4379
+ /** Forward CDN logs from your workloads Example: true */
4380
+ 'forwardCdnLogs'?: boolean;
4381
+ /** Forward ingress logs from your workloads Example: true */
4382
+ 'forwardIngressLogs'?: boolean;
4383
+ /** Forward mesh logs from your workloads Example: true */
4384
+ 'forwardMeshLogs'?: boolean;
4385
+ };
3613
4386
  /** The type of the log sink. Example: "axiom" */
3614
4387
  'sinkType': 'axiom';
3615
4388
  /** Details about the Axiom log sink. */
@@ -3634,6 +4407,16 @@ type CreateLogsinkData = {
3634
4407
  'restricted'?: boolean;
3635
4408
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3636
4409
  'projects'?: string[];
4410
+ 'options'?: {
4411
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4412
+ 'useCustomLabels'?: boolean;
4413
+ /** Forward CDN logs from your workloads Example: true */
4414
+ 'forwardCdnLogs'?: boolean;
4415
+ /** Forward ingress logs from your workloads Example: true */
4416
+ 'forwardIngressLogs'?: boolean;
4417
+ /** Forward mesh logs from your workloads Example: true */
4418
+ 'forwardMeshLogs'?: boolean;
4419
+ };
3637
4420
  /** The type of the log sink. Example: "newRelic" */
3638
4421
  'sinkType': 'newRelic';
3639
4422
  /** Details about the New Relic log sink. */
@@ -3706,15 +4489,6 @@ type GetLogsinkResult = {
3706
4489
  /** The Datadog region. Example: "eu" */
3707
4490
  'region': 'eu' | 'us' | 'us3' | 'us5';
3708
4491
  } | any | {
3709
- /** Uri to send logs to. Example: "my.log-collector.com" */
3710
- 'uri': string;
3711
- /** Encoding options */
3712
- 'encoding'?: {
3713
- /** Codec to encode logs in Example: "json" */
3714
- 'codec': 'text' | 'json';
3715
- };
3716
- 'auth': any;
3717
- } | {
3718
4492
  /** Endpoint for the AWS S3 or compatible API bucket. Example: "my.bucket.com" */
3719
4493
  'endpoint': string;
3720
4494
  /** Region of the S3 bucket. Example: "eu-west-2" */
@@ -3731,16 +4505,46 @@ type GetLogsinkResult = {
3731
4505
  /** Log file compression method. Example: "gzip" */
3732
4506
  'compression': 'gzip' | 'none';
3733
4507
  } | {
3734
- /** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
3735
- 'token': string;
4508
+ /** Uri to send logs to. Example: "my.log-collector.com" */
4509
+ 'uri': string;
4510
+ /** Encoding options */
4511
+ 'encoding'?: {
4512
+ /** Codec to encode logs in Example: "json" */
4513
+ 'codec': 'text' | 'json';
4514
+ };
4515
+ /** Auth information. */
4516
+ 'auth': {
4517
+ /** No authentication strategy Example: "none" */
4518
+ 'strategy': 'none';
4519
+ } | {
4520
+ /** Basic HTTP authentication strategy. Example: "basic" */
4521
+ 'strategy': 'basic';
4522
+ /** Username for basic http authentication. Example: "my-user" */
4523
+ 'user'?: string;
4524
+ /** Password for basic http authentication. Example: "secret-password" */
4525
+ 'password': string;
4526
+ } | {
4527
+ /** Bearer token authentication strategy. Example: "bearer" */
4528
+ 'strategy': 'bearer';
4529
+ /** Token for bearer token authentication. Example: "my-token" */
4530
+ 'token'?: string;
4531
+ };
3736
4532
  } | {
3737
4533
  /** Ingestion Key Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
3738
4534
  'api_key': string;
4535
+ } | {
4536
+ /** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
4537
+ 'token': string;
3739
4538
  } | {
3740
4539
  /** Honeycomb API Key Example: "b1dd3feb585asd1a3e9" */
3741
4540
  'api_key': string;
3742
4541
  /** Name of the dataset Example: "staging-logs" */
3743
4542
  'dataset': string;
4543
+ } | {
4544
+ /** Your Logzio region code Example: "eu" */
4545
+ 'region': 'eu' | 'uk' | 'us' | 'ca' | 'au' | 'nl' | 'wa';
4546
+ /** The Log Shipping Token of the account you want to ship to Example: "sNFijNFgNFoNFrMsNFbNFObNFcgNFqoa" */
4547
+ 'token': string;
3744
4548
  } | {
3745
4549
  /** Name of the data Example: "staging" */
3746
4550
  'dataset': string;
@@ -3752,6 +4556,11 @@ type GetLogsinkResult = {
3752
4556
  'orgId'?: string;
3753
4557
  /** The Axiom url to use. Only change if self hosting axiom. */
3754
4558
  'url': string;
4559
+ } | {
4560
+ /** New Relic Account ID Example: "b1dd3feb585asd1a3e9" */
4561
+ 'accountId': string;
4562
+ /** New Relic License Key Example: "b1dd3feb585asd1a3e9" */
4563
+ 'licenseKey': string;
3755
4564
  };
3756
4565
  };
3757
4566
  type GetLogsinkCall = (opts: GetLogsinkRequest) => Promise<ApiCallResponse<GetLogsinkResult>>;
@@ -3871,7 +4680,23 @@ type UpdateLogsinkData = {
3871
4680
  /** Codec to encode logs in Example: "json" */
3872
4681
  'codec': 'text' | 'json';
3873
4682
  };
3874
- 'auth': any;
4683
+ /** Auth information. */
4684
+ 'auth': {
4685
+ /** No authentication strategy Example: "none" */
4686
+ 'strategy': 'none';
4687
+ } | {
4688
+ /** Basic HTTP authentication strategy. Example: "basic" */
4689
+ 'strategy': 'basic';
4690
+ /** Username for basic http authentication. Example: "my-user" */
4691
+ 'user'?: string;
4692
+ /** Password for basic http authentication. Example: "secret-password" */
4693
+ 'password': string;
4694
+ } | {
4695
+ /** Bearer token authentication strategy. Example: "bearer" */
4696
+ 'strategy': 'bearer';
4697
+ /** Token for bearer token authentication. Example: "my-token" */
4698
+ 'token'?: string;
4699
+ };
3875
4700
  } | {
3876
4701
  /** Endpoint for the AWS S3 or compatible API bucket. Example: "my.bucket.com" */
3877
4702
  'endpoint': string;
@@ -4846,26 +5671,42 @@ type CreateProjectResult = {
4846
5671
  'networking'?: {
4847
5672
  /** Projects from which ingress request should be permitted. */
4848
5673
  'allowedIngressProjects'?: string[];
4849
- /** Defines this project's tailscale sidecar settings */
5674
+ /** Defines this project's Tailscale sidecar settings */
4850
5675
  'tailscale'?: {
4851
- /** Whether or not to inject a tailscale sidecar for this project's resources */
5676
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
4852
5677
  'enabled'?: boolean;
4853
5678
  'restrictions'?: {
4854
- /** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
5679
+ /** Whether or not to restrict the settings to resources with specific tags */
4855
5680
  'enabled': boolean;
4856
- /** The tags which determine whether tailscale sidecar should be added */
5681
+ /** The tags which determine the resources the settings should be applied to */
4857
5682
  'tags'?: string[];
4858
5683
  };
4859
5684
  'options'?: {
4860
5685
  'cpuLimit'?: string;
4861
5686
  'memoryLimit'?: string;
4862
5687
  };
4863
- /** Relevant tailscale secrets */
5688
+ /** Relevant Tailscale secrets */
4864
5689
  'secrets'?: {
4865
- /** tailscale auth key which is required for enabling tailscale */
5690
+ /** Tailscale auth key (required for enabling Tailscale) */
4866
5691
  'authKey'?: string;
4867
5692
  };
4868
5693
  };
5694
+ /** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
5695
+ 'hostAliases'?: {
5696
+ /** Enable support for adding /etc/hosts overrides for a container */
5697
+ 'enabled'?: boolean;
5698
+ /** Entries to add to /etc/hosts */
5699
+ 'hostEntries'?: {
5700
+ 'ipAddress': string;
5701
+ 'hostnames': string[];
5702
+ }[];
5703
+ 'restrictions'?: {
5704
+ /** Whether or not to restrict the settings to resources with specific tags */
5705
+ 'enabled': boolean;
5706
+ /** The tags which determine the resources the settings should be applied to */
5707
+ 'tags'?: string[];
5708
+ };
5709
+ };
4869
5710
  };
4870
5711
  /** time of creation Example: "2000-01-01T12:00:00.000Z" */
4871
5712
  'createdAt'?: string;
@@ -4885,6 +5726,47 @@ type CreateProjectData = {
4885
5726
  'color'?: string;
4886
5727
  /** The region the project will be hosted in. Example: "europe-west" */
4887
5728
  'region'?: string;
5729
+ /** Advanced project networking settings. */
5730
+ 'networking'?: {
5731
+ /** Projects from which ingress request should be permitted. */
5732
+ 'allowedIngressProjects'?: string[];
5733
+ /** Defines this project's Tailscale sidecar settings */
5734
+ 'tailscale'?: {
5735
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
5736
+ 'enabled'?: boolean;
5737
+ 'restrictions'?: {
5738
+ /** Whether or not to restrict the settings to resources with specific tags */
5739
+ 'enabled': boolean;
5740
+ /** The tags which determine the resources the settings should be applied to */
5741
+ 'tags'?: string[];
5742
+ };
5743
+ 'options'?: {
5744
+ 'cpuLimit'?: string;
5745
+ 'memoryLimit'?: string;
5746
+ };
5747
+ /** Relevant Tailscale secrets */
5748
+ 'secrets'?: {
5749
+ /** Tailscale auth key (required for enabling Tailscale) */
5750
+ 'authKey'?: string;
5751
+ };
5752
+ };
5753
+ /** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
5754
+ 'hostAliases'?: {
5755
+ /** Enable support for adding /etc/hosts overrides for a container */
5756
+ 'enabled'?: boolean;
5757
+ /** Entries to add to /etc/hosts */
5758
+ 'hostEntries'?: {
5759
+ 'ipAddress': string;
5760
+ 'hostnames': string[];
5761
+ }[];
5762
+ 'restrictions'?: {
5763
+ /** Whether or not to restrict the settings to resources with specific tags */
5764
+ 'enabled': boolean;
5765
+ /** The tags which determine the resources the settings should be applied to */
5766
+ 'tags'?: string[];
5767
+ };
5768
+ };
5769
+ };
4888
5770
  } | {
4889
5771
  /** The name of the project. Example: "New Project" */
4890
5772
  'name': string;
@@ -4894,6 +5776,47 @@ type CreateProjectData = {
4894
5776
  'color'?: string;
4895
5777
  /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
4896
5778
  'clusterId'?: string;
5779
+ /** Advanced project networking settings. */
5780
+ 'networking'?: {
5781
+ /** Projects from which ingress request should be permitted. */
5782
+ 'allowedIngressProjects'?: string[];
5783
+ /** Defines this project's Tailscale sidecar settings */
5784
+ 'tailscale'?: {
5785
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
5786
+ 'enabled'?: boolean;
5787
+ 'restrictions'?: {
5788
+ /** Whether or not to restrict the settings to resources with specific tags */
5789
+ 'enabled': boolean;
5790
+ /** The tags which determine the resources the settings should be applied to */
5791
+ 'tags'?: string[];
5792
+ };
5793
+ 'options'?: {
5794
+ 'cpuLimit'?: string;
5795
+ 'memoryLimit'?: string;
5796
+ };
5797
+ /** Relevant Tailscale secrets */
5798
+ 'secrets'?: {
5799
+ /** Tailscale auth key (required for enabling Tailscale) */
5800
+ 'authKey'?: string;
5801
+ };
5802
+ };
5803
+ /** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
5804
+ 'hostAliases'?: {
5805
+ /** Enable support for adding /etc/hosts overrides for a container */
5806
+ 'enabled'?: boolean;
5807
+ /** Entries to add to /etc/hosts */
5808
+ 'hostEntries'?: {
5809
+ 'ipAddress': string;
5810
+ 'hostnames': string[];
5811
+ }[];
5812
+ 'restrictions'?: {
5813
+ /** Whether or not to restrict the settings to resources with specific tags */
5814
+ 'enabled': boolean;
5815
+ /** The tags which determine the resources the settings should be applied to */
5816
+ 'tags'?: string[];
5817
+ };
5818
+ };
5819
+ };
4897
5820
  };
4898
5821
  /** Creates a new project. */
4899
5822
  declare class CreateProjectEndpoint extends PostApiEndpoint<CreateProjectRequest, CreateProjectResult> {
@@ -4921,26 +5844,42 @@ type PutProjectResult = {
4921
5844
  'networking'?: {
4922
5845
  /** Projects from which ingress request should be permitted. */
4923
5846
  'allowedIngressProjects'?: string[];
4924
- /** Defines this project's tailscale sidecar settings */
5847
+ /** Defines this project's Tailscale sidecar settings */
4925
5848
  'tailscale'?: {
4926
- /** Whether or not to inject a tailscale sidecar for this project's resources */
5849
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
4927
5850
  'enabled'?: boolean;
4928
5851
  'restrictions'?: {
4929
- /** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
5852
+ /** Whether or not to restrict the settings to resources with specific tags */
4930
5853
  'enabled': boolean;
4931
- /** The tags which determine whether tailscale sidecar should be added */
5854
+ /** The tags which determine the resources the settings should be applied to */
4932
5855
  'tags'?: string[];
4933
5856
  };
4934
5857
  'options'?: {
4935
5858
  'cpuLimit'?: string;
4936
5859
  'memoryLimit'?: string;
4937
5860
  };
4938
- /** Relevant tailscale secrets */
5861
+ /** Relevant Tailscale secrets */
4939
5862
  'secrets'?: {
4940
- /** tailscale auth key which is required for enabling tailscale */
5863
+ /** Tailscale auth key (required for enabling Tailscale) */
4941
5864
  'authKey'?: string;
4942
5865
  };
4943
5866
  };
5867
+ /** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
5868
+ 'hostAliases'?: {
5869
+ /** Enable support for adding /etc/hosts overrides for a container */
5870
+ 'enabled'?: boolean;
5871
+ /** Entries to add to /etc/hosts */
5872
+ 'hostEntries'?: {
5873
+ 'ipAddress': string;
5874
+ 'hostnames': string[];
5875
+ }[];
5876
+ 'restrictions'?: {
5877
+ /** Whether or not to restrict the settings to resources with specific tags */
5878
+ 'enabled': boolean;
5879
+ /** The tags which determine the resources the settings should be applied to */
5880
+ 'tags'?: string[];
5881
+ };
5882
+ };
4944
5883
  };
4945
5884
  /** time of creation Example: "2000-01-01T12:00:00.000Z" */
4946
5885
  'createdAt'?: string;
@@ -4960,6 +5899,47 @@ type PutProjectData = {
4960
5899
  'color'?: string;
4961
5900
  /** The region the project will be hosted in. Example: "europe-west" */
4962
5901
  'region'?: string;
5902
+ /** Advanced project networking settings. */
5903
+ 'networking'?: {
5904
+ /** Projects from which ingress request should be permitted. */
5905
+ 'allowedIngressProjects'?: string[];
5906
+ /** Defines this project's Tailscale sidecar settings */
5907
+ 'tailscale'?: {
5908
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
5909
+ 'enabled'?: boolean;
5910
+ 'restrictions'?: {
5911
+ /** Whether or not to restrict the settings to resources with specific tags */
5912
+ 'enabled': boolean;
5913
+ /** The tags which determine the resources the settings should be applied to */
5914
+ 'tags'?: string[];
5915
+ };
5916
+ 'options'?: {
5917
+ 'cpuLimit'?: string;
5918
+ 'memoryLimit'?: string;
5919
+ };
5920
+ /** Relevant Tailscale secrets */
5921
+ 'secrets'?: {
5922
+ /** Tailscale auth key (required for enabling Tailscale) */
5923
+ 'authKey'?: string;
5924
+ };
5925
+ };
5926
+ /** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
5927
+ 'hostAliases'?: {
5928
+ /** Enable support for adding /etc/hosts overrides for a container */
5929
+ 'enabled'?: boolean;
5930
+ /** Entries to add to /etc/hosts */
5931
+ 'hostEntries'?: {
5932
+ 'ipAddress': string;
5933
+ 'hostnames': string[];
5934
+ }[];
5935
+ 'restrictions'?: {
5936
+ /** Whether or not to restrict the settings to resources with specific tags */
5937
+ 'enabled': boolean;
5938
+ /** The tags which determine the resources the settings should be applied to */
5939
+ 'tags'?: string[];
5940
+ };
5941
+ };
5942
+ };
4963
5943
  } | {
4964
5944
  /** The name of the project. Example: "New Project" */
4965
5945
  'name': string;
@@ -4969,6 +5949,47 @@ type PutProjectData = {
4969
5949
  'color'?: string;
4970
5950
  /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
4971
5951
  'clusterId'?: string;
5952
+ /** Advanced project networking settings. */
5953
+ 'networking'?: {
5954
+ /** Projects from which ingress request should be permitted. */
5955
+ 'allowedIngressProjects'?: string[];
5956
+ /** Defines this project's Tailscale sidecar settings */
5957
+ 'tailscale'?: {
5958
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
5959
+ 'enabled'?: boolean;
5960
+ 'restrictions'?: {
5961
+ /** Whether or not to restrict the settings to resources with specific tags */
5962
+ 'enabled': boolean;
5963
+ /** The tags which determine the resources the settings should be applied to */
5964
+ 'tags'?: string[];
5965
+ };
5966
+ 'options'?: {
5967
+ 'cpuLimit'?: string;
5968
+ 'memoryLimit'?: string;
5969
+ };
5970
+ /** Relevant Tailscale secrets */
5971
+ 'secrets'?: {
5972
+ /** Tailscale auth key (required for enabling Tailscale) */
5973
+ 'authKey'?: string;
5974
+ };
5975
+ };
5976
+ /** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
5977
+ 'hostAliases'?: {
5978
+ /** Enable support for adding /etc/hosts overrides for a container */
5979
+ 'enabled'?: boolean;
5980
+ /** Entries to add to /etc/hosts */
5981
+ 'hostEntries'?: {
5982
+ 'ipAddress': string;
5983
+ 'hostnames': string[];
5984
+ }[];
5985
+ 'restrictions'?: {
5986
+ /** Whether or not to restrict the settings to resources with specific tags */
5987
+ 'enabled': boolean;
5988
+ /** The tags which determine the resources the settings should be applied to */
5989
+ 'tags'?: string[];
5990
+ };
5991
+ };
5992
+ };
4972
5993
  };
4973
5994
  /** Creates or updates a project. */
4974
5995
  declare class PutProjectEndpoint extends PutApiEndpoint<PutProjectRequest, PutProjectResult> {
@@ -4996,26 +6017,42 @@ type PatchProjectResult = {
4996
6017
  'networking'?: {
4997
6018
  /** Projects from which ingress request should be permitted. */
4998
6019
  'allowedIngressProjects'?: string[];
4999
- /** Defines this project's tailscale sidecar settings */
6020
+ /** Defines this project's Tailscale sidecar settings */
5000
6021
  'tailscale'?: {
5001
- /** Whether or not to inject a tailscale sidecar for this project's resources */
6022
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
5002
6023
  'enabled'?: boolean;
5003
6024
  'restrictions'?: {
5004
- /** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
6025
+ /** Whether or not to restrict the settings to resources with specific tags */
5005
6026
  'enabled': boolean;
5006
- /** The tags which determine whether tailscale sidecar should be added */
6027
+ /** The tags which determine the resources the settings should be applied to */
5007
6028
  'tags'?: string[];
5008
6029
  };
5009
6030
  'options'?: {
5010
6031
  'cpuLimit'?: string;
5011
6032
  'memoryLimit'?: string;
5012
6033
  };
5013
- /** Relevant tailscale secrets */
6034
+ /** Relevant Tailscale secrets */
5014
6035
  'secrets'?: {
5015
- /** tailscale auth key which is required for enabling tailscale */
6036
+ /** Tailscale auth key (required for enabling Tailscale) */
5016
6037
  'authKey'?: string;
5017
6038
  };
5018
6039
  };
6040
+ /** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
6041
+ 'hostAliases'?: {
6042
+ /** Enable support for adding /etc/hosts overrides for a container */
6043
+ 'enabled'?: boolean;
6044
+ /** Entries to add to /etc/hosts */
6045
+ 'hostEntries'?: {
6046
+ 'ipAddress': string;
6047
+ 'hostnames': string[];
6048
+ }[];
6049
+ 'restrictions'?: {
6050
+ /** Whether or not to restrict the settings to resources with specific tags */
6051
+ 'enabled': boolean;
6052
+ /** The tags which determine the resources the settings should be applied to */
6053
+ 'tags'?: string[];
6054
+ };
6055
+ };
5019
6056
  };
5020
6057
  /** time of creation Example: "2000-01-01T12:00:00.000Z" */
5021
6058
  'createdAt'?: string;
@@ -5039,19 +6076,34 @@ type PatchProjectData = {
5039
6076
  /** Projects from which ingress request should be permitted. */
5040
6077
  'allowedIngressProjects'?: string[];
5041
6078
  'tailscale'?: {
5042
- /** Whether or not to inject a tailscale sidecar for this project's resources */
6079
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
5043
6080
  'enabled'?: boolean;
5044
6081
  'restrictions'?: {
5045
- /** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
6082
+ /** Whether or not to restrict the settings to resources with specific tags */
5046
6083
  'enabled'?: boolean;
5047
- /** The tags which determine whether tailscale sidecar should be added */
6084
+ /** The tags which determine the resources the settings should be applied to */
5048
6085
  'tags'?: string[];
5049
6086
  };
5050
6087
  'secrets'?: {
5051
- /** tailscale auth key which is required for enabling tailscale */
6088
+ /** Tailscale auth key (required for enabling Tailscale) */
5052
6089
  'authKey'?: string;
5053
6090
  };
5054
6091
  };
6092
+ 'hostAliases'?: {
6093
+ /** Enable support for adding /etc/hosts overrides for a container */
6094
+ 'enabled'?: boolean;
6095
+ /** Entries to add to /etc/hosts */
6096
+ 'hostEntries'?: {
6097
+ 'ipAddress': string;
6098
+ 'hostnames': string[];
6099
+ }[];
6100
+ 'restrictions'?: {
6101
+ /** Whether or not to restrict the settings to resources with specific tags */
6102
+ 'enabled'?: boolean;
6103
+ /** The tags which determine the resources the settings should be applied to */
6104
+ 'tags'?: string[];
6105
+ };
6106
+ };
5055
6107
  };
5056
6108
  };
5057
6109
  /** Updates a project. */
@@ -5177,8 +6229,12 @@ type CreateAddonResult = {
5177
6229
  'storage': number;
5178
6230
  /** The number of addon replicas to run. Example: 1 */
5179
6231
  'replicas': number;
5180
- /** Defines scheduling behaviour across different zones within the same region. */
5181
- 'zonalRedundancy'?: 'required' | 'disabled';
6232
+ 'zonalRedundancy'?: {
6233
+ /** Defines scheduling behaviour across different zones within the same region. */
6234
+ 'type'?: 'required' | 'disabled';
6235
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
6236
+ 'minZones'?: number;
6237
+ };
5182
6238
  };
5183
6239
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
5184
6240
  'source'?: {
@@ -5244,7 +6300,37 @@ type CreateAddonResult = {
5244
6300
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
5245
6301
  'appId': string;
5246
6302
  /** The current state of the addon. Example: "running" */
5247
- 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
6303
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
6304
+ /** Cluster information */
6305
+ 'cluster': {
6306
+ /** The id of the cluster associated with this project. Example: "nf-europe-west" */
6307
+ 'id': string;
6308
+ /** The name of the cluster associated with this project. Example: "nf-europe-west" */
6309
+ 'name': string;
6310
+ /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
6311
+ 'namespace'?: string;
6312
+ };
6313
+ /** time of creation */
6314
+ 'createdAt'?: string;
6315
+ /** time of update */
6316
+ 'updatedAt'?: string;
6317
+ } | {
6318
+ /** The name of the addon. Example: "Example Addon" */
6319
+ 'name': string;
6320
+ /** A description of the addon. Example: "An addon description" */
6321
+ 'description'?: string;
6322
+ /** An array of previously defined tags to help identify and group the resource. */
6323
+ 'tags'?: string[];
6324
+ /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
6325
+ 'type': string;
6326
+ /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
6327
+ 'templateValues'?: any;
6328
+ /** Identifier for the addon. Example: "example-addon" */
6329
+ 'id': string;
6330
+ /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
6331
+ 'appId': string;
6332
+ /** The current state of the addon. Example: "running" */
6333
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
5248
6334
  /** Cluster information */
5249
6335
  'cluster': {
5250
6336
  /** The id of the cluster associated with this project. Example: "nf-europe-west" */
@@ -5287,8 +6373,12 @@ type CreateAddonData = {
5287
6373
  'storage': number;
5288
6374
  /** The number of addon replicas to run. Example: 1 */
5289
6375
  'replicas': number;
5290
- /** Defines scheduling behaviour across different zones within the same region. */
5291
- 'zonalRedundancy'?: 'required' | 'disabled';
6376
+ 'zonalRedundancy'?: {
6377
+ /** Defines scheduling behaviour across different zones within the same region. */
6378
+ 'type'?: 'required' | 'disabled';
6379
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
6380
+ 'minZones'?: number;
6381
+ };
5292
6382
  };
5293
6383
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
5294
6384
  'source'?: {
@@ -5349,6 +6439,17 @@ type CreateAddonData = {
5349
6439
  /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
5350
6440
  'retentionTime': number;
5351
6441
  }[];
6442
+ } | {
6443
+ /** The name of the addon. Example: "Example Addon" */
6444
+ 'name': string;
6445
+ /** A description of the addon. Example: "An addon description" */
6446
+ 'description'?: string;
6447
+ /** An array of previously defined tags to help identify and group the resource. */
6448
+ 'tags'?: string[];
6449
+ /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
6450
+ 'type': string;
6451
+ /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
6452
+ 'templateValues'?: any;
5352
6453
  };
5353
6454
  /** Creates a new addon */
5354
6455
  declare class CreateAddonEndpoint extends PostApiEndpoint<CreateAddonRequest, CreateAddonResult> {
@@ -5379,8 +6480,12 @@ type PutAddonResult = {
5379
6480
  'storage': number;
5380
6481
  /** The number of addon replicas to run. Example: 1 */
5381
6482
  'replicas': number;
5382
- /** Defines scheduling behaviour across different zones within the same region. */
5383
- 'zonalRedundancy'?: 'required' | 'disabled';
6483
+ 'zonalRedundancy'?: {
6484
+ /** Defines scheduling behaviour across different zones within the same region. */
6485
+ 'type'?: 'required' | 'disabled';
6486
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
6487
+ 'minZones'?: number;
6488
+ };
5384
6489
  };
5385
6490
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
5386
6491
  'source'?: {
@@ -5446,7 +6551,37 @@ type PutAddonResult = {
5446
6551
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
5447
6552
  'appId': string;
5448
6553
  /** The current state of the addon. Example: "running" */
5449
- 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
6554
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
6555
+ /** Cluster information */
6556
+ 'cluster': {
6557
+ /** The id of the cluster associated with this project. Example: "nf-europe-west" */
6558
+ 'id': string;
6559
+ /** The name of the cluster associated with this project. Example: "nf-europe-west" */
6560
+ 'name': string;
6561
+ /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
6562
+ 'namespace'?: string;
6563
+ };
6564
+ /** time of creation */
6565
+ 'createdAt'?: string;
6566
+ /** time of update */
6567
+ 'updatedAt'?: string;
6568
+ } | {
6569
+ /** The name of the addon. Example: "Example Addon" */
6570
+ 'name': string;
6571
+ /** A description of the addon. Example: "An addon description" */
6572
+ 'description'?: string;
6573
+ /** An array of previously defined tags to help identify and group the resource. */
6574
+ 'tags'?: string[];
6575
+ /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
6576
+ 'type': string;
6577
+ /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
6578
+ 'templateValues'?: any;
6579
+ /** Identifier for the addon. Example: "example-addon" */
6580
+ 'id': string;
6581
+ /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
6582
+ 'appId': string;
6583
+ /** The current state of the addon. Example: "running" */
6584
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
5450
6585
  /** Cluster information */
5451
6586
  'cluster': {
5452
6587
  /** The id of the cluster associated with this project. Example: "nf-europe-west" */
@@ -5478,7 +6613,7 @@ type PutAddonData = {
5478
6613
  'tags'?: string[];
5479
6614
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
5480
6615
  'type': string;
5481
- /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. `latest` and `-latest` will only be applied on addon creation. Example: "latest" */
6616
+ /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
5482
6617
  'version': string;
5483
6618
  'billing': {
5484
6619
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
@@ -5489,8 +6624,12 @@ type PutAddonData = {
5489
6624
  'storage': number;
5490
6625
  /** The number of addon replicas to run. Example: 1 */
5491
6626
  'replicas': number;
5492
- /** Defines scheduling behaviour across different zones within the same region. */
5493
- 'zonalRedundancy'?: 'required' | 'disabled';
6627
+ 'zonalRedundancy'?: {
6628
+ /** Defines scheduling behaviour across different zones within the same region. */
6629
+ 'type'?: 'required' | 'disabled';
6630
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
6631
+ 'minZones'?: number;
6632
+ };
5494
6633
  };
5495
6634
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
5496
6635
  'source'?: {
@@ -5551,6 +6690,17 @@ type PutAddonData = {
5551
6690
  /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
5552
6691
  'retentionTime': number;
5553
6692
  }[];
6693
+ } | {
6694
+ /** The name of the addon. Example: "Example Addon" */
6695
+ 'name': string;
6696
+ /** A description of the addon. Example: "An addon description" */
6697
+ 'description'?: string;
6698
+ /** An array of previously defined tags to help identify and group the resource. */
6699
+ 'tags'?: string[];
6700
+ /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
6701
+ 'type': string;
6702
+ /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
6703
+ 'templateValues'?: any;
5554
6704
  };
5555
6705
  /** Creates or updates an addon */
5556
6706
  declare class PutAddonEndpoint extends PutApiEndpoint<PutAddonRequest, PutAddonResult> {
@@ -5575,7 +6725,7 @@ type GetAddonResult = {
5575
6725
  /** The time the addon was created. Example: "2021-01-20T11:19:53.175Z" */
5576
6726
  'createdAt': string;
5577
6727
  /** The current state of the addon. Example: "running" */
5578
- 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
6728
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
5579
6729
  /** Details about the addon's specifications. */
5580
6730
  'spec': {
5581
6731
  /** The type of the addon Example: "mongodb" */
@@ -5613,6 +6763,9 @@ type GetAddonResult = {
5613
6763
  'action': 'DENY' | 'ALLOW';
5614
6764
  }[];
5615
6765
  };
6766
+ } | {
6767
+ /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
6768
+ 'templateValues': string;
5616
6769
  };
5617
6770
  };
5618
6771
  /** Cluster information */
@@ -5663,8 +6816,12 @@ type PatchAddonResult = {
5663
6816
  'storage': number;
5664
6817
  /** The number of addon replicas to run. Example: 1 */
5665
6818
  'replicas': number;
5666
- /** Defines scheduling behaviour across different zones within the same region. */
5667
- 'zonalRedundancy'?: 'required' | 'disabled';
6819
+ 'zonalRedundancy'?: {
6820
+ /** Defines scheduling behaviour across different zones within the same region. */
6821
+ 'type'?: 'required' | 'disabled';
6822
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
6823
+ 'minZones'?: number;
6824
+ };
5668
6825
  };
5669
6826
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
5670
6827
  'source'?: {
@@ -5730,7 +6887,37 @@ type PatchAddonResult = {
5730
6887
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
5731
6888
  'appId': string;
5732
6889
  /** The current state of the addon. Example: "running" */
5733
- 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
6890
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
6891
+ /** Cluster information */
6892
+ 'cluster': {
6893
+ /** The id of the cluster associated with this project. Example: "nf-europe-west" */
6894
+ 'id': string;
6895
+ /** The name of the cluster associated with this project. Example: "nf-europe-west" */
6896
+ 'name': string;
6897
+ /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
6898
+ 'namespace'?: string;
6899
+ };
6900
+ /** time of creation */
6901
+ 'createdAt'?: string;
6902
+ /** time of update */
6903
+ 'updatedAt'?: string;
6904
+ } | {
6905
+ /** The name of the addon. Example: "Example Addon" */
6906
+ 'name': string;
6907
+ /** A description of the addon. Example: "An addon description" */
6908
+ 'description'?: string;
6909
+ /** An array of previously defined tags to help identify and group the resource. */
6910
+ 'tags'?: string[];
6911
+ /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
6912
+ 'type': string;
6913
+ /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
6914
+ 'templateValues'?: any;
6915
+ /** Identifier for the addon. Example: "example-addon" */
6916
+ 'id': string;
6917
+ /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
6918
+ 'appId': string;
6919
+ /** The current state of the addon. Example: "running" */
6920
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
5734
6921
  /** Cluster information */
5735
6922
  'cluster': {
5736
6923
  /** The id of the cluster associated with this project. Example: "nf-europe-west" */
@@ -5760,6 +6947,7 @@ type PatchAddonData = {
5760
6947
  'description'?: string;
5761
6948
  /** An array of previously defined tags to help identify and group the resource. */
5762
6949
  'tags'?: string[];
6950
+ 'templateValues'?: any;
5763
6951
  'billing'?: {
5764
6952
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
5765
6953
  'deploymentPlan'?: string;
@@ -5769,8 +6957,6 @@ type PatchAddonData = {
5769
6957
  'storage'?: number;
5770
6958
  /** The number of addon replicas to run. Example: 1 */
5771
6959
  'replicas'?: number;
5772
- /** Defines scheduling behaviour across different zones within the same region. */
5773
- 'zonalRedundancy'?: 'required' | 'disabled';
5774
6960
  };
5775
6961
  /** Enables access to the addon via TLS (if supported by the addon type). */
5776
6962
  'tlsEnabled'?: boolean;
@@ -5818,6 +7004,13 @@ type PatchAddonData = {
5818
7004
  /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
5819
7005
  'retentionTime': number;
5820
7006
  }[];
7007
+ } | {
7008
+ /** A description of the addon. Example: "An addon description" */
7009
+ 'description'?: string;
7010
+ /** An array of previously defined tags to help identify and group the resource. */
7011
+ 'tags'?: string[];
7012
+ /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
7013
+ 'templateValues'?: any;
5821
7014
  };
5822
7015
  /** Updates an addon */
5823
7016
  declare class PatchAddonEndpoint extends PatchApiEndpoint<PatchAddonRequest, PatchAddonResult> {
@@ -6935,6 +8128,7 @@ type CreateJobCronResult = {
6935
8128
  /** Image registry url of the deployed image. */
6936
8129
  'imageUrl'?: string;
6937
8130
  };
8131
+ /** Build engine */
6938
8132
  'buildSettings'?: {
6939
8133
  'storage'?: {
6940
8134
  'ephemeralStorage'?: {
@@ -7199,6 +8393,7 @@ type CreateJobCronData = {
7199
8393
  };
7200
8394
  };
7201
8395
  };
8396
+ /** Build engine */
7202
8397
  'buildSettings'?: {
7203
8398
  'storage'?: {
7204
8399
  'ephemeralStorage'?: {
@@ -7446,6 +8641,7 @@ type PutJobCronResult = {
7446
8641
  /** Image registry url of the deployed image. */
7447
8642
  'imageUrl'?: string;
7448
8643
  };
8644
+ /** Build engine */
7449
8645
  'buildSettings'?: {
7450
8646
  'storage'?: {
7451
8647
  'ephemeralStorage'?: {
@@ -7710,6 +8906,7 @@ type PutJobCronData = {
7710
8906
  };
7711
8907
  };
7712
8908
  };
8909
+ /** Build engine */
7713
8910
  'buildSettings'?: {
7714
8911
  'storage'?: {
7715
8912
  'ephemeralStorage'?: {
@@ -7957,6 +9154,7 @@ type PatchJobCronResult = {
7957
9154
  /** Image registry url of the deployed image. */
7958
9155
  'imageUrl'?: string;
7959
9156
  };
9157
+ /** Build engine */
7960
9158
  'buildSettings'?: {
7961
9159
  'storage'?: {
7962
9160
  'ephemeralStorage'?: {
@@ -8279,6 +9477,7 @@ type CreateJobManualResult = {
8279
9477
  /** Image registry url of the deployed image. */
8280
9478
  'imageUrl'?: string;
8281
9479
  };
9480
+ /** Build engine */
8282
9481
  'buildSettings'?: {
8283
9482
  'storage'?: {
8284
9483
  'ephemeralStorage'?: {
@@ -8543,6 +9742,7 @@ type CreateJobManualData = {
8543
9742
  };
8544
9743
  };
8545
9744
  };
9745
+ /** Build engine */
8546
9746
  'buildSettings'?: {
8547
9747
  'storage'?: {
8548
9748
  'ephemeralStorage'?: {
@@ -8778,6 +9978,7 @@ type PutJobManualResult = {
8778
9978
  /** Image registry url of the deployed image. */
8779
9979
  'imageUrl'?: string;
8780
9980
  };
9981
+ /** Build engine */
8781
9982
  'buildSettings'?: {
8782
9983
  'storage'?: {
8783
9984
  'ephemeralStorage'?: {
@@ -9042,6 +10243,7 @@ type PutJobManualData = {
9042
10243
  };
9043
10244
  };
9044
10245
  };
10246
+ /** Build engine */
9045
10247
  'buildSettings'?: {
9046
10248
  'storage'?: {
9047
10249
  'ephemeralStorage'?: {
@@ -9277,6 +10479,7 @@ type PatchJobManualResult = {
9277
10479
  /** Image registry url of the deployed image. */
9278
10480
  'imageUrl'?: string;
9279
10481
  };
10482
+ /** Build engine */
9280
10483
  'buildSettings'?: {
9281
10484
  'storage'?: {
9282
10485
  'ephemeralStorage'?: {
@@ -10591,6 +11794,7 @@ type StartJobRunData = {
10591
11794
  /** The ID of the deployment plan override to use. Example: "nf-compute-20" */
10592
11795
  'deploymentPlan'?: string;
10593
11796
  };
11797
+ /** Override the job run deployment source. */
10594
11798
  'deployment'?: {
10595
11799
  /** Allows for customization of docker runtime */
10596
11800
  'docker'?: {
@@ -11061,6 +12265,7 @@ type GetPreviewtemplateResult = {
11061
12265
  /** Should the git trigger only be triggered manually? */
11062
12266
  'manualOnly'?: boolean;
11063
12267
  }[];
12268
+ '$schema'?: string;
11064
12269
  'spec': any;
11065
12270
  /** Identifier for the template Example: "example-template" */
11066
12271
  'id': string;
@@ -11115,6 +12320,7 @@ type UpdatePreviewtemplateData = {
11115
12320
  'apiVersion': 'v1.1';
11116
12321
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
11117
12322
  'arguments'?: any;
12323
+ '$schema'?: string;
11118
12324
  'spec': any;
11119
12325
  /** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
11120
12326
  'paused'?: boolean;
@@ -11290,6 +12496,7 @@ type GetPreviewtemplaterunResult = {
11290
12496
  /** Should the git trigger only be triggered manually? */
11291
12497
  'manualOnly'?: boolean;
11292
12498
  }[];
12499
+ '$schema'?: string;
11293
12500
  'spec': any;
11294
12501
  'refs'?: any;
11295
12502
  /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
@@ -11346,6 +12553,7 @@ type GetReleaseflowResult = {
11346
12553
  'ciIgnoreFlagsEnabled'?: boolean;
11347
12554
  'isAllowList'?: boolean;
11348
12555
  }[];
12556
+ '$schema'?: string;
11349
12557
  /** An array of rich UI override inputs for the Release Flow template. */
11350
12558
  'richInputs'?: any[];
11351
12559
  'spec': any;
@@ -11417,6 +12625,7 @@ type UpdateReleaseflowData = {
11417
12625
  'ciIgnoreFlagsEnabled'?: boolean;
11418
12626
  'isAllowList'?: boolean;
11419
12627
  }[];
12628
+ '$schema'?: string;
11420
12629
  /** An array of rich UI override inputs for the Release Flow template. */
11421
12630
  'richInputs'?: any[];
11422
12631
  'apiVersion': string;
@@ -11546,6 +12755,7 @@ type GetReleaseflowrunResult = {
11546
12755
  'ciIgnoreFlagsEnabled'?: boolean;
11547
12756
  'isAllowList'?: boolean;
11548
12757
  }[];
12758
+ '$schema'?: string;
11549
12759
  'spec': any;
11550
12760
  'refs'?: any;
11551
12761
  /** ID of the release flow run Example: "110ddb52-bdcd-482d-8ac2-05ba580afe2f" */
@@ -11612,6 +12822,7 @@ type AbortReleaseflowrunResult = {
11612
12822
  'ciIgnoreFlagsEnabled'?: boolean;
11613
12823
  'isAllowList'?: boolean;
11614
12824
  }[];
12825
+ '$schema'?: string;
11615
12826
  'spec': any;
11616
12827
  'refs'?: any;
11617
12828
  /** ID of the release flow run Example: "110ddb52-bdcd-482d-8ac2-05ba580afe2f" */
@@ -12409,6 +13620,7 @@ type CreateServiceBuildResult = {
12409
13620
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
12410
13621
  'vcsLinkId'?: string;
12411
13622
  };
13623
+ /** Build engine */
12412
13624
  'buildSettings': {
12413
13625
  'storage'?: {
12414
13626
  'ephemeralStorage'?: {
@@ -12547,6 +13759,7 @@ type CreateServiceBuildData = {
12547
13759
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
12548
13760
  'vcsLinkId'?: string;
12549
13761
  };
13762
+ /** Build engine */
12550
13763
  'buildSettings': {
12551
13764
  'storage'?: {
12552
13765
  'ephemeralStorage'?: {
@@ -12657,6 +13870,7 @@ type PutServiceBuildResult = {
12657
13870
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
12658
13871
  'vcsLinkId'?: string;
12659
13872
  };
13873
+ /** Build engine */
12660
13874
  'buildSettings': {
12661
13875
  'storage'?: {
12662
13876
  'ephemeralStorage'?: {
@@ -12795,6 +14009,7 @@ type PutServiceBuildData = {
12795
14009
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
12796
14010
  'vcsLinkId'?: string;
12797
14011
  };
14012
+ /** Build engine */
12798
14013
  'buildSettings': {
12799
14014
  'storage'?: {
12800
14015
  'ephemeralStorage'?: {
@@ -12905,6 +14120,7 @@ type PatchServiceBuildResult = {
12905
14120
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
12906
14121
  'vcsLinkId'?: string;
12907
14122
  };
14123
+ /** Build engine */
12908
14124
  'buildSettings': {
12909
14125
  'storage'?: {
12910
14126
  'ephemeralStorage'?: {
@@ -13156,6 +14372,17 @@ type CreateServiceCombinedResult = {
13156
14372
  /** The action for this rule. Example: "DENY" */
13157
14373
  'action': 'ALLOW' | 'DENY';
13158
14374
  }[];
14375
+ /** Configure port authentication via SSO */
14376
+ 'sso'?: {
14377
+ /** ID of the SSO organization that the user will have to be a member of */
14378
+ 'organizationId'?: string;
14379
+ /** Array of directory groups that will have access */
14380
+ 'directoryGroupIds'?: string[];
14381
+ /** Enforce internal traffic through SSO authentication flow */
14382
+ 'validateInternalTraffic'?: boolean;
14383
+ };
14384
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
14385
+ 'verificationMode'?: 'or' | 'and';
13159
14386
  };
13160
14387
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
13161
14388
  'domains'?: string[];
@@ -13188,6 +14415,7 @@ type CreateServiceCombinedResult = {
13188
14415
  /** Branch identifier for the bundle. */
13189
14416
  'branch': string;
13190
14417
  };
14418
+ /** Build engine */
13191
14419
  'buildSettings': {
13192
14420
  'storage'?: {
13193
14421
  'ephemeralStorage'?: {
@@ -13343,12 +14571,17 @@ type CreateServiceCombinedResult = {
13343
14571
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
13344
14572
  'shmSize'?: number;
13345
14573
  };
14574
+ /** Roll out strategy of the service */
13346
14575
  'strategy'?: {
13347
14576
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
13348
14577
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
13349
14578
  };
13350
- /** Defines scheduling behaviour across different zones within the same region. */
13351
- 'zonalRedundancy'?: 'preferred' | 'disabled';
14579
+ 'zonalRedundancy'?: {
14580
+ /** Defines scheduling behaviour across different zones within the same region. */
14581
+ 'type'?: 'disabled' | 'preferred' | 'required';
14582
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
14583
+ 'minZones'?: number;
14584
+ };
13352
14585
  'gpu'?: {
13353
14586
  'enabled'?: boolean;
13354
14587
  'configuration'?: {
@@ -13457,12 +14690,17 @@ type CreateServiceCombinedData = {
13457
14690
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
13458
14691
  'shmSize'?: number;
13459
14692
  };
14693
+ /** Roll out strategy of the service */
13460
14694
  'strategy'?: {
13461
14695
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
13462
14696
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
13463
14697
  };
13464
- /** Defines scheduling behaviour across different zones within the same region. */
13465
- 'zonalRedundancy'?: 'preferred' | 'disabled';
14698
+ 'zonalRedundancy'?: {
14699
+ /** Defines scheduling behaviour across different zones within the same region. */
14700
+ 'type'?: 'disabled' | 'preferred' | 'required';
14701
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
14702
+ 'minZones'?: number;
14703
+ };
13466
14704
  'gpu'?: {
13467
14705
  'enabled'?: boolean;
13468
14706
  'configuration'?: {
@@ -13497,6 +14735,17 @@ type CreateServiceCombinedData = {
13497
14735
  /** The action for this rule. Example: "DENY" */
13498
14736
  'action': 'ALLOW' | 'DENY';
13499
14737
  }[];
14738
+ /** Configure port authentication via SSO */
14739
+ 'sso'?: {
14740
+ /** ID of the SSO organization that the user will have to be a member of */
14741
+ 'organizationId'?: string;
14742
+ /** Array of directory groups that will have access */
14743
+ 'directoryGroupIds'?: string[];
14744
+ /** Enforce internal traffic through SSO authentication flow */
14745
+ 'validateInternalTraffic'?: boolean;
14746
+ };
14747
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
14748
+ 'verificationMode'?: 'or' | 'and';
13500
14749
  };
13501
14750
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
13502
14751
  'domains'?: string[];
@@ -13529,6 +14778,7 @@ type CreateServiceCombinedData = {
13529
14778
  /** Branch identifier for the bundle. */
13530
14779
  'branch': string;
13531
14780
  };
14781
+ /** Build engine */
13532
14782
  'buildSettings': {
13533
14783
  'storage'?: {
13534
14784
  'ephemeralStorage'?: {
@@ -13702,6 +14952,17 @@ type PutServiceCombinedResult = {
13702
14952
  /** The action for this rule. Example: "DENY" */
13703
14953
  'action': 'ALLOW' | 'DENY';
13704
14954
  }[];
14955
+ /** Configure port authentication via SSO */
14956
+ 'sso'?: {
14957
+ /** ID of the SSO organization that the user will have to be a member of */
14958
+ 'organizationId'?: string;
14959
+ /** Array of directory groups that will have access */
14960
+ 'directoryGroupIds'?: string[];
14961
+ /** Enforce internal traffic through SSO authentication flow */
14962
+ 'validateInternalTraffic'?: boolean;
14963
+ };
14964
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
14965
+ 'verificationMode'?: 'or' | 'and';
13705
14966
  };
13706
14967
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
13707
14968
  'domains'?: string[];
@@ -13734,6 +14995,7 @@ type PutServiceCombinedResult = {
13734
14995
  /** Branch identifier for the bundle. */
13735
14996
  'branch': string;
13736
14997
  };
14998
+ /** Build engine */
13737
14999
  'buildSettings': {
13738
15000
  'storage'?: {
13739
15001
  'ephemeralStorage'?: {
@@ -13889,12 +15151,17 @@ type PutServiceCombinedResult = {
13889
15151
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
13890
15152
  'shmSize'?: number;
13891
15153
  };
15154
+ /** Roll out strategy of the service */
13892
15155
  'strategy'?: {
13893
15156
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
13894
15157
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
13895
15158
  };
13896
- /** Defines scheduling behaviour across different zones within the same region. */
13897
- 'zonalRedundancy'?: 'preferred' | 'disabled';
15159
+ 'zonalRedundancy'?: {
15160
+ /** Defines scheduling behaviour across different zones within the same region. */
15161
+ 'type'?: 'disabled' | 'preferred' | 'required';
15162
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
15163
+ 'minZones'?: number;
15164
+ };
13898
15165
  'gpu'?: {
13899
15166
  'enabled'?: boolean;
13900
15167
  'configuration'?: {
@@ -14003,12 +15270,17 @@ type PutServiceCombinedData = {
14003
15270
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
14004
15271
  'shmSize'?: number;
14005
15272
  };
15273
+ /** Roll out strategy of the service */
14006
15274
  'strategy'?: {
14007
15275
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
14008
15276
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
14009
15277
  };
14010
- /** Defines scheduling behaviour across different zones within the same region. */
14011
- 'zonalRedundancy'?: 'preferred' | 'disabled';
15278
+ 'zonalRedundancy'?: {
15279
+ /** Defines scheduling behaviour across different zones within the same region. */
15280
+ 'type'?: 'disabled' | 'preferred' | 'required';
15281
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
15282
+ 'minZones'?: number;
15283
+ };
14012
15284
  'gpu'?: {
14013
15285
  'enabled'?: boolean;
14014
15286
  'configuration'?: {
@@ -14043,6 +15315,17 @@ type PutServiceCombinedData = {
14043
15315
  /** The action for this rule. Example: "DENY" */
14044
15316
  'action': 'ALLOW' | 'DENY';
14045
15317
  }[];
15318
+ /** Configure port authentication via SSO */
15319
+ 'sso'?: {
15320
+ /** ID of the SSO organization that the user will have to be a member of */
15321
+ 'organizationId'?: string;
15322
+ /** Array of directory groups that will have access */
15323
+ 'directoryGroupIds'?: string[];
15324
+ /** Enforce internal traffic through SSO authentication flow */
15325
+ 'validateInternalTraffic'?: boolean;
15326
+ };
15327
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
15328
+ 'verificationMode'?: 'or' | 'and';
14046
15329
  };
14047
15330
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
14048
15331
  'domains'?: string[];
@@ -14075,6 +15358,7 @@ type PutServiceCombinedData = {
14075
15358
  /** Branch identifier for the bundle. */
14076
15359
  'branch': string;
14077
15360
  };
15361
+ /** Build engine */
14078
15362
  'buildSettings': {
14079
15363
  'storage'?: {
14080
15364
  'ephemeralStorage'?: {
@@ -14248,6 +15532,17 @@ type PatchServiceCombinedResult = {
14248
15532
  /** The action for this rule. Example: "DENY" */
14249
15533
  'action': 'ALLOW' | 'DENY';
14250
15534
  }[];
15535
+ /** Configure port authentication via SSO */
15536
+ 'sso'?: {
15537
+ /** ID of the SSO organization that the user will have to be a member of */
15538
+ 'organizationId'?: string;
15539
+ /** Array of directory groups that will have access */
15540
+ 'directoryGroupIds'?: string[];
15541
+ /** Enforce internal traffic through SSO authentication flow */
15542
+ 'validateInternalTraffic'?: boolean;
15543
+ };
15544
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
15545
+ 'verificationMode'?: 'or' | 'and';
14251
15546
  };
14252
15547
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
14253
15548
  'domains'?: string[];
@@ -14280,6 +15575,7 @@ type PatchServiceCombinedResult = {
14280
15575
  /** Branch identifier for the bundle. */
14281
15576
  'branch': string;
14282
15577
  };
15578
+ /** Build engine */
14283
15579
  'buildSettings': {
14284
15580
  'storage'?: {
14285
15581
  'ephemeralStorage'?: {
@@ -14435,12 +15731,17 @@ type PatchServiceCombinedResult = {
14435
15731
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
14436
15732
  'shmSize'?: number;
14437
15733
  };
15734
+ /** Roll out strategy of the service */
14438
15735
  'strategy'?: {
14439
15736
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
14440
15737
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
14441
15738
  };
14442
- /** Defines scheduling behaviour across different zones within the same region. */
14443
- 'zonalRedundancy'?: 'preferred' | 'disabled';
15739
+ 'zonalRedundancy'?: {
15740
+ /** Defines scheduling behaviour across different zones within the same region. */
15741
+ 'type'?: 'disabled' | 'preferred' | 'required';
15742
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
15743
+ 'minZones'?: number;
15744
+ };
14444
15745
  'gpu'?: {
14445
15746
  'enabled'?: boolean;
14446
15747
  'configuration'?: {
@@ -14522,14 +15823,21 @@ type PatchServiceCombinedData = {
14522
15823
  /** The number of instances to run the service on. Example: 1 */
14523
15824
  'instances'?: number;
14524
15825
  'buildpack'?: {
15826
+ /** Type of buildpack run configuration */
14525
15827
  'configType'?: 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
15828
+ /** Custom process which should be run. Required in case where `configType` is `customProcess` */
14526
15829
  'customProcess'?: string;
15830
+ /** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
14527
15831
  'customEntrypoint'?: string;
15832
+ /** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
14528
15833
  'customCommand'?: string;
14529
15834
  };
14530
15835
  'docker'?: {
15836
+ /** Type of entrypoint & command override configuration Example: "default" */
14531
15837
  'configType'?: 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
15838
+ /** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
14532
15839
  'customEntrypoint'?: string;
15840
+ /** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
14533
15841
  'customCommand'?: string;
14534
15842
  };
14535
15843
  'storage'?: {
@@ -14540,12 +15848,17 @@ type PatchServiceCombinedData = {
14540
15848
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
14541
15849
  'shmSize'?: number;
14542
15850
  };
15851
+ /** Roll out strategy of the service */
14543
15852
  'strategy'?: {
14544
15853
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
14545
15854
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
14546
15855
  };
14547
- /** Defines scheduling behaviour across different zones within the same region. */
14548
- 'zonalRedundancy'?: 'preferred' | 'disabled';
15856
+ 'zonalRedundancy'?: {
15857
+ /** Defines scheduling behaviour across different zones within the same region. */
15858
+ 'type'?: 'disabled' | 'preferred' | 'required';
15859
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
15860
+ 'minZones'?: number;
15861
+ };
14549
15862
  'gpu'?: {
14550
15863
  'enabled'?: boolean;
14551
15864
  'configuration'?: {
@@ -14580,6 +15893,17 @@ type PatchServiceCombinedData = {
14580
15893
  /** The action for this rule. Example: "DENY" */
14581
15894
  'action': 'ALLOW' | 'DENY';
14582
15895
  }[];
15896
+ /** Configure port authentication via SSO */
15897
+ 'sso'?: {
15898
+ /** ID of the SSO organization that the user will have to be a member of */
15899
+ 'organizationId'?: string;
15900
+ /** Array of directory groups that will have access */
15901
+ 'directoryGroupIds'?: string[];
15902
+ /** Enforce internal traffic through SSO authentication flow */
15903
+ 'validateInternalTraffic'?: boolean;
15904
+ };
15905
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
15906
+ 'verificationMode'?: 'or' | 'and';
14583
15907
  };
14584
15908
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
14585
15909
  'domains'?: string[];
@@ -14774,6 +16098,17 @@ type CreateServiceDeploymentResult = {
14774
16098
  /** The action for this rule. Example: "DENY" */
14775
16099
  'action': 'ALLOW' | 'DENY';
14776
16100
  }[];
16101
+ /** Configure port authentication via SSO */
16102
+ 'sso'?: {
16103
+ /** ID of the SSO organization that the user will have to be a member of */
16104
+ 'organizationId'?: string;
16105
+ /** Array of directory groups that will have access */
16106
+ 'directoryGroupIds'?: string[];
16107
+ /** Enforce internal traffic through SSO authentication flow */
16108
+ 'validateInternalTraffic'?: boolean;
16109
+ };
16110
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
16111
+ 'verificationMode'?: 'or' | 'and';
14777
16112
  };
14778
16113
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
14779
16114
  'domains'?: string[];
@@ -14875,12 +16210,17 @@ type CreateServiceDeploymentResult = {
14875
16210
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
14876
16211
  'shmSize'?: number;
14877
16212
  };
16213
+ /** Roll out strategy of the service */
14878
16214
  'strategy'?: {
14879
16215
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
14880
16216
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
14881
16217
  };
14882
- /** Defines scheduling behaviour across different zones within the same region. */
14883
- 'zonalRedundancy'?: 'preferred' | 'disabled';
16218
+ 'zonalRedundancy'?: {
16219
+ /** Defines scheduling behaviour across different zones within the same region. */
16220
+ 'type'?: 'disabled' | 'preferred' | 'required';
16221
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
16222
+ 'minZones'?: number;
16223
+ };
14884
16224
  'gpu'?: {
14885
16225
  'enabled'?: boolean;
14886
16226
  'configuration'?: {
@@ -14997,12 +16337,17 @@ type CreateServiceDeploymentData = {
14997
16337
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
14998
16338
  'shmSize'?: number;
14999
16339
  };
16340
+ /** Roll out strategy of the service */
15000
16341
  'strategy'?: {
15001
16342
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15002
16343
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
15003
16344
  };
15004
- /** Defines scheduling behaviour across different zones within the same region. */
15005
- 'zonalRedundancy'?: 'preferred' | 'disabled';
16345
+ 'zonalRedundancy'?: {
16346
+ /** Defines scheduling behaviour across different zones within the same region. */
16347
+ 'type'?: 'disabled' | 'preferred' | 'required';
16348
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
16349
+ 'minZones'?: number;
16350
+ };
15006
16351
  'gpu'?: {
15007
16352
  'enabled'?: boolean;
15008
16353
  'configuration'?: {
@@ -15053,12 +16398,17 @@ type CreateServiceDeploymentData = {
15053
16398
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15054
16399
  'shmSize'?: number;
15055
16400
  };
16401
+ /** Roll out strategy of the service */
15056
16402
  'strategy'?: {
15057
16403
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15058
16404
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
15059
16405
  };
15060
- /** Defines scheduling behaviour across different zones within the same region. */
15061
- 'zonalRedundancy'?: 'preferred' | 'disabled';
16406
+ 'zonalRedundancy'?: {
16407
+ /** Defines scheduling behaviour across different zones within the same region. */
16408
+ 'type'?: 'disabled' | 'preferred' | 'required';
16409
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
16410
+ 'minZones'?: number;
16411
+ };
15062
16412
  'gpu'?: {
15063
16413
  'enabled'?: boolean;
15064
16414
  'configuration'?: {
@@ -15105,12 +16455,17 @@ type CreateServiceDeploymentData = {
15105
16455
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15106
16456
  'shmSize'?: number;
15107
16457
  };
16458
+ /** Roll out strategy of the service */
15108
16459
  'strategy'?: {
15109
16460
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15110
16461
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
15111
16462
  };
15112
- /** Defines scheduling behaviour across different zones within the same region. */
15113
- 'zonalRedundancy'?: 'preferred' | 'disabled';
16463
+ 'zonalRedundancy'?: {
16464
+ /** Defines scheduling behaviour across different zones within the same region. */
16465
+ 'type'?: 'disabled' | 'preferred' | 'required';
16466
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
16467
+ 'minZones'?: number;
16468
+ };
15114
16469
  'gpu'?: {
15115
16470
  'enabled'?: boolean;
15116
16471
  'configuration'?: {
@@ -15145,6 +16500,17 @@ type CreateServiceDeploymentData = {
15145
16500
  /** The action for this rule. Example: "DENY" */
15146
16501
  'action': 'ALLOW' | 'DENY';
15147
16502
  }[];
16503
+ /** Configure port authentication via SSO */
16504
+ 'sso'?: {
16505
+ /** ID of the SSO organization that the user will have to be a member of */
16506
+ 'organizationId'?: string;
16507
+ /** Array of directory groups that will have access */
16508
+ 'directoryGroupIds'?: string[];
16509
+ /** Enforce internal traffic through SSO authentication flow */
16510
+ 'validateInternalTraffic'?: boolean;
16511
+ };
16512
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
16513
+ 'verificationMode'?: 'or' | 'and';
15148
16514
  };
15149
16515
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15150
16516
  'domains'?: string[];
@@ -15262,6 +16628,17 @@ type PutServiceDeploymentResult = {
15262
16628
  /** The action for this rule. Example: "DENY" */
15263
16629
  'action': 'ALLOW' | 'DENY';
15264
16630
  }[];
16631
+ /** Configure port authentication via SSO */
16632
+ 'sso'?: {
16633
+ /** ID of the SSO organization that the user will have to be a member of */
16634
+ 'organizationId'?: string;
16635
+ /** Array of directory groups that will have access */
16636
+ 'directoryGroupIds'?: string[];
16637
+ /** Enforce internal traffic through SSO authentication flow */
16638
+ 'validateInternalTraffic'?: boolean;
16639
+ };
16640
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
16641
+ 'verificationMode'?: 'or' | 'and';
15265
16642
  };
15266
16643
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15267
16644
  'domains'?: string[];
@@ -15363,12 +16740,17 @@ type PutServiceDeploymentResult = {
15363
16740
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15364
16741
  'shmSize'?: number;
15365
16742
  };
16743
+ /** Roll out strategy of the service */
15366
16744
  'strategy'?: {
15367
16745
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15368
16746
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
15369
16747
  };
15370
- /** Defines scheduling behaviour across different zones within the same region. */
15371
- 'zonalRedundancy'?: 'preferred' | 'disabled';
16748
+ 'zonalRedundancy'?: {
16749
+ /** Defines scheduling behaviour across different zones within the same region. */
16750
+ 'type'?: 'disabled' | 'preferred' | 'required';
16751
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
16752
+ 'minZones'?: number;
16753
+ };
15372
16754
  'gpu'?: {
15373
16755
  'enabled'?: boolean;
15374
16756
  'configuration'?: {
@@ -15485,12 +16867,17 @@ type PutServiceDeploymentData = {
15485
16867
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15486
16868
  'shmSize'?: number;
15487
16869
  };
16870
+ /** Roll out strategy of the service */
15488
16871
  'strategy'?: {
15489
16872
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15490
16873
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
15491
16874
  };
15492
- /** Defines scheduling behaviour across different zones within the same region. */
15493
- 'zonalRedundancy'?: 'preferred' | 'disabled';
16875
+ 'zonalRedundancy'?: {
16876
+ /** Defines scheduling behaviour across different zones within the same region. */
16877
+ 'type'?: 'disabled' | 'preferred' | 'required';
16878
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
16879
+ 'minZones'?: number;
16880
+ };
15494
16881
  'gpu'?: {
15495
16882
  'enabled'?: boolean;
15496
16883
  'configuration'?: {
@@ -15541,12 +16928,17 @@ type PutServiceDeploymentData = {
15541
16928
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15542
16929
  'shmSize'?: number;
15543
16930
  };
16931
+ /** Roll out strategy of the service */
15544
16932
  'strategy'?: {
15545
16933
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15546
16934
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
15547
16935
  };
15548
- /** Defines scheduling behaviour across different zones within the same region. */
15549
- 'zonalRedundancy'?: 'preferred' | 'disabled';
16936
+ 'zonalRedundancy'?: {
16937
+ /** Defines scheduling behaviour across different zones within the same region. */
16938
+ 'type'?: 'disabled' | 'preferred' | 'required';
16939
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
16940
+ 'minZones'?: number;
16941
+ };
15550
16942
  'gpu'?: {
15551
16943
  'enabled'?: boolean;
15552
16944
  'configuration'?: {
@@ -15593,12 +16985,17 @@ type PutServiceDeploymentData = {
15593
16985
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15594
16986
  'shmSize'?: number;
15595
16987
  };
16988
+ /** Roll out strategy of the service */
15596
16989
  'strategy'?: {
15597
16990
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15598
16991
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
15599
16992
  };
15600
- /** Defines scheduling behaviour across different zones within the same region. */
15601
- 'zonalRedundancy'?: 'preferred' | 'disabled';
16993
+ 'zonalRedundancy'?: {
16994
+ /** Defines scheduling behaviour across different zones within the same region. */
16995
+ 'type'?: 'disabled' | 'preferred' | 'required';
16996
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
16997
+ 'minZones'?: number;
16998
+ };
15602
16999
  'gpu'?: {
15603
17000
  'enabled'?: boolean;
15604
17001
  'configuration'?: {
@@ -15633,6 +17030,17 @@ type PutServiceDeploymentData = {
15633
17030
  /** The action for this rule. Example: "DENY" */
15634
17031
  'action': 'ALLOW' | 'DENY';
15635
17032
  }[];
17033
+ /** Configure port authentication via SSO */
17034
+ 'sso'?: {
17035
+ /** ID of the SSO organization that the user will have to be a member of */
17036
+ 'organizationId'?: string;
17037
+ /** Array of directory groups that will have access */
17038
+ 'directoryGroupIds'?: string[];
17039
+ /** Enforce internal traffic through SSO authentication flow */
17040
+ 'validateInternalTraffic'?: boolean;
17041
+ };
17042
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
17043
+ 'verificationMode'?: 'or' | 'and';
15636
17044
  };
15637
17045
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15638
17046
  'domains'?: string[];
@@ -15750,6 +17158,17 @@ type PatchServiceDeploymentResult = {
15750
17158
  /** The action for this rule. Example: "DENY" */
15751
17159
  'action': 'ALLOW' | 'DENY';
15752
17160
  }[];
17161
+ /** Configure port authentication via SSO */
17162
+ 'sso'?: {
17163
+ /** ID of the SSO organization that the user will have to be a member of */
17164
+ 'organizationId'?: string;
17165
+ /** Array of directory groups that will have access */
17166
+ 'directoryGroupIds'?: string[];
17167
+ /** Enforce internal traffic through SSO authentication flow */
17168
+ 'validateInternalTraffic'?: boolean;
17169
+ };
17170
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
17171
+ 'verificationMode'?: 'or' | 'and';
15753
17172
  };
15754
17173
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15755
17174
  'domains'?: string[];
@@ -15851,12 +17270,17 @@ type PatchServiceDeploymentResult = {
15851
17270
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15852
17271
  'shmSize'?: number;
15853
17272
  };
17273
+ /** Roll out strategy of the service */
15854
17274
  'strategy'?: {
15855
17275
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15856
17276
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
15857
17277
  };
15858
- /** Defines scheduling behaviour across different zones within the same region. */
15859
- 'zonalRedundancy'?: 'preferred' | 'disabled';
17278
+ 'zonalRedundancy'?: {
17279
+ /** Defines scheduling behaviour across different zones within the same region. */
17280
+ 'type'?: 'disabled' | 'preferred' | 'required';
17281
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
17282
+ 'minZones'?: number;
17283
+ };
15860
17284
  'gpu'?: {
15861
17285
  'enabled'?: boolean;
15862
17286
  'configuration'?: {
@@ -15973,12 +17397,17 @@ type PatchServiceDeploymentData = {
15973
17397
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15974
17398
  'shmSize'?: number;
15975
17399
  };
17400
+ /** Roll out strategy of the service */
15976
17401
  'strategy'?: {
15977
17402
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15978
17403
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
15979
17404
  };
15980
- /** Defines scheduling behaviour across different zones within the same region. */
15981
- 'zonalRedundancy'?: 'preferred' | 'disabled';
17405
+ 'zonalRedundancy'?: {
17406
+ /** Defines scheduling behaviour across different zones within the same region. */
17407
+ 'type'?: 'disabled' | 'preferred' | 'required';
17408
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
17409
+ 'minZones'?: number;
17410
+ };
15982
17411
  'gpu'?: {
15983
17412
  'enabled'?: boolean;
15984
17413
  'configuration'?: {
@@ -16029,12 +17458,17 @@ type PatchServiceDeploymentData = {
16029
17458
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
16030
17459
  'shmSize'?: number;
16031
17460
  };
17461
+ /** Roll out strategy of the service */
16032
17462
  'strategy'?: {
16033
17463
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
16034
17464
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
16035
17465
  };
16036
- /** Defines scheduling behaviour across different zones within the same region. */
16037
- 'zonalRedundancy'?: 'preferred' | 'disabled';
17466
+ 'zonalRedundancy'?: {
17467
+ /** Defines scheduling behaviour across different zones within the same region. */
17468
+ 'type'?: 'disabled' | 'preferred' | 'required';
17469
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
17470
+ 'minZones'?: number;
17471
+ };
16038
17472
  'gpu'?: {
16039
17473
  'enabled'?: boolean;
16040
17474
  'configuration'?: {
@@ -16081,12 +17515,17 @@ type PatchServiceDeploymentData = {
16081
17515
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
16082
17516
  'shmSize'?: number;
16083
17517
  };
17518
+ /** Roll out strategy of the service */
16084
17519
  'strategy'?: {
16085
17520
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
16086
17521
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
16087
17522
  };
16088
- /** Defines scheduling behaviour across different zones within the same region. */
16089
- 'zonalRedundancy'?: 'preferred' | 'disabled';
17523
+ 'zonalRedundancy'?: {
17524
+ /** Defines scheduling behaviour across different zones within the same region. */
17525
+ 'type'?: 'disabled' | 'preferred' | 'required';
17526
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
17527
+ 'minZones'?: number;
17528
+ };
16090
17529
  'gpu'?: {
16091
17530
  'enabled'?: boolean;
16092
17531
  'configuration'?: {
@@ -16121,6 +17560,17 @@ type PatchServiceDeploymentData = {
16121
17560
  /** The action for this rule. Example: "DENY" */
16122
17561
  'action': 'ALLOW' | 'DENY';
16123
17562
  }[];
17563
+ /** Configure port authentication via SSO */
17564
+ 'sso'?: {
17565
+ /** ID of the SSO organization that the user will have to be a member of */
17566
+ 'organizationId'?: string;
17567
+ /** Array of directory groups that will have access */
17568
+ 'directoryGroupIds'?: string[];
17569
+ /** Enforce internal traffic through SSO authentication flow */
17570
+ 'validateInternalTraffic'?: boolean;
17571
+ };
17572
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
17573
+ 'verificationMode'?: 'or' | 'and';
16124
17574
  };
16125
17575
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
16126
17576
  'domains'?: string[];
@@ -16432,6 +17882,17 @@ type GetServiceResult = {
16432
17882
  /** The action for this rule. Example: "DENY" */
16433
17883
  'action': 'ALLOW' | 'DENY';
16434
17884
  }[];
17885
+ /** Configure SSO access control for this port. */
17886
+ 'sso'?: {
17887
+ /** Organization ID of the work OS organization that should be validated. Example: "org_uniquestringidentifier" */
17888
+ 'organizationId'?: string;
17889
+ /** List of directory groupIds, one of which the user has to be a member of. */
17890
+ 'directoryGroupIds'?: string[];
17891
+ /** Enforce internal traffic through SSO authentication flow */
17892
+ 'validateInternalTraffic'?: boolean;
17893
+ };
17894
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
17895
+ 'verificationMode'?: 'or' | 'and';
16435
17896
  };
16436
17897
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
16437
17898
  'disableNfDomain'?: boolean;
@@ -17362,6 +18823,17 @@ type GetServicePortsResult = {
17362
18823
  /** The action for this rule. Example: "DENY" */
17363
18824
  'action': 'ALLOW' | 'DENY';
17364
18825
  }[];
18826
+ /** Configure SSO access control for this port. */
18827
+ 'sso'?: {
18828
+ /** Organization ID of the work OS organization that should be validated. Example: "org_uniquestringidentifier" */
18829
+ 'organizationId'?: string;
18830
+ /** List of directory groupIds, one of which the user has to be a member of. */
18831
+ 'directoryGroupIds'?: string[];
18832
+ /** Enforce internal traffic through SSO authentication flow */
18833
+ 'validateInternalTraffic'?: boolean;
18834
+ };
18835
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
18836
+ 'verificationMode'?: 'or' | 'and';
17365
18837
  };
17366
18838
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
17367
18839
  'disableNfDomain'?: boolean;
@@ -17428,6 +18900,17 @@ type UpdateServicePortsData = {
17428
18900
  /** The action for this rule. Example: "DENY" */
17429
18901
  'action': 'ALLOW' | 'DENY';
17430
18902
  }[];
18903
+ /** Configure port authentication via SSO */
18904
+ 'sso'?: {
18905
+ /** ID of the SSO organization that the user will have to be a member of */
18906
+ 'organizationId'?: string;
18907
+ /** Array of directory groups that will have access */
18908
+ 'directoryGroupIds'?: string[];
18909
+ /** Enforce internal traffic through SSO authentication flow */
18910
+ 'validateInternalTraffic'?: boolean;
18911
+ };
18912
+ /** Mode used to verify multiple security features like ip policies and SSO authentication */
18913
+ 'verificationMode'?: 'or' | 'and';
17431
18914
  };
17432
18915
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
17433
18916
  'disableNfDomain'?: boolean;
@@ -18047,6 +19530,234 @@ declare class ListRegionsEndpoint extends GetApiEndpoint<ListRegionsRequest, Lis
18047
19530
  body: () => undefined;
18048
19531
  }
18049
19532
 
19533
+ type ListTagsResult = {
19534
+ /** A list of available resource tags. */
19535
+ 'tags': {
19536
+ /** Schedule workloads to spot nodes */
19537
+ 'useSpotNodes'?: boolean;
19538
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
19539
+ 'useOnDemandNodes'?: boolean;
19540
+ 'nodeAffinities'?: {
19541
+ 'preference'?: boolean;
19542
+ /** The node affinity weight. Required when `preference` is `true`. */
19543
+ 'weight'?: number;
19544
+ 'matchExpressions': {
19545
+ 'key': string;
19546
+ 'operator': 'In' | 'NotIn';
19547
+ 'values': string[];
19548
+ }[];
19549
+ }[];
19550
+ 'color'?: string;
19551
+ 'description'?: string;
19552
+ 'name': string;
19553
+ 'id': string;
19554
+ /** time of creation Example: "2000-01-01T12:00:00.000Z" */
19555
+ 'createdAt'?: string;
19556
+ }[];
19557
+ };
19558
+ type ListTagsCall = (opts: ListTagsRequest) => Promise<ApiCallResponse<ListTagsResult>>;
19559
+ type ListTagsRequest = {
19560
+ options?: ListTagsOptions;
19561
+ };
19562
+ type ListTagsOptions = {
19563
+ /** The number of results to display per request. Maximum of 100 results per page. */
19564
+ 'per_page'?: number;
19565
+ /** The page number to access. */
19566
+ 'page'?: number;
19567
+ /** The cursor returned from the previous page of results, used to request the next page. */
19568
+ 'cursor'?: string;
19569
+ };
19570
+ /** List the resource tags for this entity. */
19571
+ declare class ListTagsEndpoint extends GetApiEndpoint<ListTagsRequest, ListTagsResult> {
19572
+ description: string;
19573
+ withAuth: boolean;
19574
+ requiredPermissions: string;
19575
+ endpointUrl: (opts: ListTagsRequest) => string;
19576
+ body: () => undefined;
19577
+ }
19578
+
19579
+ type AddTagResult = {
19580
+ /** Schedule workloads to spot nodes */
19581
+ 'useSpotNodes'?: boolean;
19582
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
19583
+ 'useOnDemandNodes'?: boolean;
19584
+ 'nodeAffinities'?: {
19585
+ 'preference'?: boolean;
19586
+ /** The node affinity weight. Required when `preference` is `true`. */
19587
+ 'weight'?: number;
19588
+ 'matchExpressions': {
19589
+ 'key': string;
19590
+ 'operator': 'In' | 'NotIn';
19591
+ 'values': string[];
19592
+ }[];
19593
+ }[];
19594
+ 'color'?: string;
19595
+ 'description'?: string;
19596
+ 'name': string;
19597
+ 'id': string;
19598
+ /** time of creation Example: "2000-01-01T12:00:00.000Z" */
19599
+ 'createdAt'?: string;
19600
+ };
19601
+ type AddTagCall = (opts: AddTagRequest) => Promise<ApiCallResponse<AddTagResult>>;
19602
+ type AddTagRequest = {
19603
+ data: AddTagData;
19604
+ };
19605
+ type AddTagData = {
19606
+ /** Schedule workloads to spot nodes */
19607
+ 'useSpotNodes'?: boolean;
19608
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
19609
+ 'useOnDemandNodes'?: boolean;
19610
+ 'nodeAffinities'?: {
19611
+ 'preference'?: boolean;
19612
+ /** The node affinity weight. Required when `preference` is `true`. */
19613
+ 'weight'?: number;
19614
+ 'matchExpressions': {
19615
+ 'key': string;
19616
+ 'operator': 'In' | 'NotIn';
19617
+ 'values': string[];
19618
+ }[];
19619
+ }[];
19620
+ 'color'?: string;
19621
+ 'description'?: string;
19622
+ 'name': string;
19623
+ };
19624
+ /** Add a new resource tag for this entity. */
19625
+ declare class AddTagEndpoint extends PostApiEndpoint<AddTagRequest, AddTagResult> {
19626
+ description: string;
19627
+ withAuth: boolean;
19628
+ requiredPermissions: string;
19629
+ endpointUrl: (opts: AddTagRequest) => string;
19630
+ body: (payload: AddTagRequest) => string;
19631
+ }
19632
+
19633
+ type PutTagResult = any;
19634
+ type PutTagCall = (opts: PutTagRequest) => Promise<ApiCallResponse<PutTagResult>>;
19635
+ type PutTagRequest = {
19636
+ parameters: PutTagParameters;
19637
+ data: PutTagData;
19638
+ };
19639
+ type PutTagParameters = {
19640
+ /** ID of the tag */ 'resourceTagId': string;
19641
+ };
19642
+ type PutTagData = {
19643
+ /** Schedule workloads to spot nodes */
19644
+ 'useSpotNodes'?: boolean;
19645
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
19646
+ 'useOnDemandNodes'?: boolean;
19647
+ 'nodeAffinities'?: {
19648
+ 'preference'?: boolean;
19649
+ /** The node affinity weight. Required when `preference` is `true`. */
19650
+ 'weight'?: number;
19651
+ 'matchExpressions': {
19652
+ 'key': string;
19653
+ 'operator': 'In' | 'NotIn';
19654
+ 'values': string[];
19655
+ }[];
19656
+ }[];
19657
+ 'color'?: string;
19658
+ 'description'?: string;
19659
+ 'name': string;
19660
+ };
19661
+ /** Update or create a resource tag. */
19662
+ declare class PutTagEndpoint extends PutApiEndpoint<PutTagRequest, PutTagResult> {
19663
+ description: string;
19664
+ withAuth: boolean;
19665
+ requiredPermissions: string;
19666
+ endpointUrl: (opts: PutTagRequest) => string;
19667
+ body: (payload: PutTagRequest) => string;
19668
+ }
19669
+
19670
+ type GetTagResult = {
19671
+ /** Schedule workloads to spot nodes */
19672
+ 'useSpotNodes'?: boolean;
19673
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
19674
+ 'useOnDemandNodes'?: boolean;
19675
+ 'nodeAffinities'?: {
19676
+ 'preference'?: boolean;
19677
+ /** The node affinity weight. Required when `preference` is `true`. */
19678
+ 'weight'?: number;
19679
+ 'matchExpressions': {
19680
+ 'key': string;
19681
+ 'operator': 'In' | 'NotIn';
19682
+ 'values': string[];
19683
+ }[];
19684
+ }[];
19685
+ 'color'?: string;
19686
+ 'description'?: string;
19687
+ 'name': string;
19688
+ 'id': string;
19689
+ /** time of creation Example: "2000-01-01T12:00:00.000Z" */
19690
+ 'createdAt'?: string;
19691
+ };
19692
+ type GetTagCall = (opts: GetTagRequest) => Promise<ApiCallResponse<GetTagResult>>;
19693
+ type GetTagRequest = {
19694
+ parameters: GetTagParameters;
19695
+ };
19696
+ type GetTagParameters = {
19697
+ /** ID of the tag */ 'resourceTagId': string;
19698
+ };
19699
+ /** View details for a given resource tag. */
19700
+ declare class GetTagEndpoint extends GetApiEndpoint<GetTagRequest, GetTagResult> {
19701
+ description: string;
19702
+ withAuth: boolean;
19703
+ requiredPermissions: string;
19704
+ endpointUrl: (opts: GetTagRequest) => string;
19705
+ body: () => undefined;
19706
+ }
19707
+
19708
+ type PatchTagResult = any;
19709
+ type PatchTagCall = (opts: PatchTagRequest) => Promise<ApiCallResponse<PatchTagResult>>;
19710
+ type PatchTagRequest = {
19711
+ parameters: PatchTagParameters;
19712
+ data: PatchTagData;
19713
+ };
19714
+ type PatchTagParameters = {
19715
+ /** ID of the tag */ 'resourceTagId': string;
19716
+ };
19717
+ type PatchTagData = {
19718
+ /** Schedule workloads to spot nodes */
19719
+ 'useSpotNodes'?: boolean;
19720
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
19721
+ 'useOnDemandNodes'?: boolean;
19722
+ 'nodeAffinities'?: {
19723
+ 'preference'?: boolean;
19724
+ /** The node affinity weight. Required when `preference` is `true`. */
19725
+ 'weight'?: number;
19726
+ 'matchExpressions': {
19727
+ 'key': string;
19728
+ 'operator': 'In' | 'NotIn';
19729
+ 'values': string[];
19730
+ }[];
19731
+ }[];
19732
+ 'color'?: string;
19733
+ 'description'?: string;
19734
+ };
19735
+ /** Patch a resource tag. */
19736
+ declare class PatchTagEndpoint extends PatchApiEndpoint<PatchTagRequest, PatchTagResult> {
19737
+ description: string;
19738
+ withAuth: boolean;
19739
+ requiredPermissions: string;
19740
+ endpointUrl: (opts: PatchTagRequest) => string;
19741
+ body: (payload: PatchTagRequest) => string;
19742
+ }
19743
+
19744
+ type DeleteTagResult = any;
19745
+ type DeleteTagCall = (opts: DeleteTagRequest) => Promise<ApiCallResponse<DeleteTagResult>>;
19746
+ type DeleteTagRequest = {
19747
+ parameters: DeleteTagParameters;
19748
+ };
19749
+ type DeleteTagParameters = {
19750
+ /** ID of the tag */ 'resourceTagId': string;
19751
+ };
19752
+ /** Delete a resource tag. */
19753
+ declare class DeleteTagEndpoint extends DeleteApiEndpoint<DeleteTagRequest, DeleteTagResult> {
19754
+ description: string;
19755
+ withAuth: boolean;
19756
+ requiredPermissions: string;
19757
+ endpointUrl: (opts: DeleteTagRequest) => string;
19758
+ body: () => undefined;
19759
+ }
19760
+
18050
19761
  type ListTemplatesResult = {
18051
19762
  /** An array of template objects. */
18052
19763
  'templates': {
@@ -18098,6 +19809,7 @@ type CreateTemplateResult = {
18098
19809
  'apiVersion': 'v1.1';
18099
19810
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18100
19811
  'arguments'?: any;
19812
+ '$schema'?: string;
18101
19813
  'spec': any;
18102
19814
  /** Identifier for the template Example: "example-template" */
18103
19815
  'id': string;
@@ -18137,6 +19849,7 @@ type CreateTemplateResult = {
18137
19849
  'apiVersion': 'v1.1';
18138
19850
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18139
19851
  'arguments'?: any;
19852
+ '$schema'?: string;
18140
19853
  'spec': any;
18141
19854
  'refs'?: any;
18142
19855
  /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
@@ -18166,6 +19879,7 @@ type CreateTemplateData = {
18166
19879
  'apiVersion': 'v1.1';
18167
19880
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18168
19881
  'arguments'?: any;
19882
+ '$schema'?: string;
18169
19883
  'spec': any;
18170
19884
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
18171
19885
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
@@ -18189,6 +19903,7 @@ type CreateTemplateData = {
18189
19903
  'apiVersion': 'v1.1';
18190
19904
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18191
19905
  'arguments'?: any;
19906
+ '$schema'?: string;
18192
19907
  'spec': any;
18193
19908
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
18194
19909
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
@@ -18218,6 +19933,43 @@ type CreateTemplateData = {
18218
19933
  /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
18219
19934
  'filePath': string;
18220
19935
  };
19936
+ } | {
19937
+ /** Name of the template. Example: "Example Template" */
19938
+ 'name': string;
19939
+ /** Description of the template. Example: "This is a sample template." */
19940
+ 'description'?: string;
19941
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
19942
+ 'arguments'?: any;
19943
+ '$schema'?: string;
19944
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
19945
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
19946
+ /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
19947
+ 'argumentOverrides'?: any;
19948
+ /** Additional options for the template creation. */
19949
+ 'options'?: {
19950
+ /** If true, the template will be ran immediately after creation. Example: true */
19951
+ 'runOnCreation'?: boolean;
19952
+ /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
19953
+ 'runOnCreationArgumentOverrides'?: any;
19954
+ /** If true, the template will run automatically whenever it is updated. */
19955
+ 'autorun'?: boolean;
19956
+ };
19957
+ /** GitOps data for syncing this template with a file in version control. */
19958
+ 'gitops': {
19959
+ /** The VCS provider to use. Example: "github" */
19960
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
19961
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
19962
+ 'selfHostedVcsId'?: string;
19963
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
19964
+ 'accountLogin'?: string;
19965
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
19966
+ 'repoUrl': string;
19967
+ /** The name of the branch to use. Example: "main" */
19968
+ 'branch': string;
19969
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
19970
+ 'filePath': string;
19971
+ };
19972
+ 'project'?: any;
18221
19973
  };
18222
19974
  /** Create a template */
18223
19975
  declare class CreateTemplateEndpoint extends PostApiEndpoint<CreateTemplateRequest, CreateTemplateResult> {
@@ -18237,6 +19989,7 @@ type GetTemplateResult = {
18237
19989
  'apiVersion': 'v1.1';
18238
19990
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18239
19991
  'arguments'?: any;
19992
+ '$schema'?: string;
18240
19993
  'spec': any;
18241
19994
  /** Identifier for the template Example: "example-template" */
18242
19995
  'id': string;
@@ -18303,6 +20056,7 @@ type UpdateTemplateResult = {
18303
20056
  'apiVersion': 'v1.1';
18304
20057
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18305
20058
  'arguments'?: any;
20059
+ '$schema'?: string;
18306
20060
  'spec': any;
18307
20061
  /** Identifier for the template Example: "example-template" */
18308
20062
  'id': string;
@@ -18342,6 +20096,7 @@ type UpdateTemplateResult = {
18342
20096
  'apiVersion': 'v1.1';
18343
20097
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18344
20098
  'arguments'?: any;
20099
+ '$schema'?: string;
18345
20100
  'spec': any;
18346
20101
  'refs'?: any;
18347
20102
  /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
@@ -18375,6 +20130,7 @@ type UpdateTemplateData = {
18375
20130
  'apiVersion': 'v1.1';
18376
20131
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18377
20132
  'arguments'?: any;
20133
+ '$schema'?: string;
18378
20134
  'spec': any;
18379
20135
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
18380
20136
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
@@ -18394,6 +20150,7 @@ type UpdateTemplateData = {
18394
20150
  'apiVersion': 'v1.1';
18395
20151
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18396
20152
  'arguments'?: any;
20153
+ '$schema'?: string;
18397
20154
  'spec': any;
18398
20155
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
18399
20156
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
@@ -18484,6 +20241,7 @@ type RunTemplateResult = {
18484
20241
  'apiVersion': 'v1.1';
18485
20242
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18486
20243
  'arguments'?: any;
20244
+ '$schema'?: string;
18487
20245
  'spec': any;
18488
20246
  'refs'?: any;
18489
20247
  /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
@@ -18581,6 +20339,7 @@ type GetTemplaterunResult = {
18581
20339
  'apiVersion': 'v1.1';
18582
20340
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18583
20341
  'arguments'?: any;
20342
+ '$schema'?: string;
18584
20343
  'spec': any;
18585
20344
  'refs'?: any;
18586
20345
  /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
@@ -18623,6 +20382,7 @@ type AbortTemplaterunResult = {
18623
20382
  'apiVersion': 'v1.1';
18624
20383
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18625
20384
  'arguments'?: any;
20385
+ '$schema'?: string;
18626
20386
  'spec': any;
18627
20387
  'refs'?: any;
18628
20388
  /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
@@ -18758,6 +20518,7 @@ declare class ApiClient {
18758
20518
  buildMetricsRange: GetServiceBuildMetricsRangeCall;
18759
20519
  };
18760
20520
  volume: GetVolumeCall;
20521
+ tag: GetTagCall;
18761
20522
  template: GetTemplateCall;
18762
20523
  templateRun: GetTemplaterunCall;
18763
20524
  };
@@ -18793,6 +20554,7 @@ declare class ApiClient {
18793
20554
  services: ListServicesCall;
18794
20555
  volumes: ListVolumesCall;
18795
20556
  regions: ListRegionsCall;
20557
+ tags: ListTagsCall;
18796
20558
  templates: ListTemplatesCall;
18797
20559
  templateRuns: ListTemplaterunsCall;
18798
20560
  };
@@ -18890,6 +20652,7 @@ declare class ApiClient {
18890
20652
  secretLink: DeleteSecretlinkCall;
18891
20653
  service: DeleteServiceCall;
18892
20654
  volume: DeleteVolumeCall;
20655
+ tag: DeleteTagCall;
18893
20656
  template: DeleteTemplateCall;
18894
20657
  };
18895
20658
  import: {
@@ -18906,6 +20669,7 @@ declare class ApiClient {
18906
20669
  path: AddSubdomainPathCall;
18907
20670
  };
18908
20671
  registryCredentials: AddRegistrycredentialsCall;
20672
+ tag: AddTagCall;
18909
20673
  };
18910
20674
  assign: {
18911
20675
  subdomain: {
@@ -18957,6 +20721,7 @@ declare class ApiClient {
18957
20721
  combined: PutServiceCombinedCall;
18958
20722
  deployment: PutServiceDeploymentCall;
18959
20723
  };
20724
+ tag: PutTagCall;
18960
20725
  };
18961
20726
  patch: {
18962
20727
  project: PatchProjectCall;
@@ -18971,6 +20736,7 @@ declare class ApiClient {
18971
20736
  combined: PatchServiceCombinedCall;
18972
20737
  deployment: PatchServiceDeploymentCall;
18973
20738
  };
20739
+ tag: PatchTagCall;
18974
20740
  };
18975
20741
  backup: {
18976
20742
  addon: BackupAddonCall;
@@ -19107,6 +20873,7 @@ declare class ApiClient {
19107
20873
  runtimeEnvironmentDetails: GetServiceRuntimeenvironmentdetailsEndpoint;
19108
20874
  };
19109
20875
  volume: GetVolumeEndpoint;
20876
+ tag: GetTagEndpoint;
19110
20877
  template: GetTemplateEndpoint;
19111
20878
  templateRun: GetTemplaterunEndpoint;
19112
20879
  };
@@ -19142,6 +20909,7 @@ declare class ApiClient {
19142
20909
  services: ListServicesEndpoint;
19143
20910
  volumes: ListVolumesEndpoint;
19144
20911
  regions: ListRegionsEndpoint;
20912
+ tags: ListTagsEndpoint;
19145
20913
  templates: ListTemplatesEndpoint;
19146
20914
  templateRuns: ListTemplaterunsEndpoint;
19147
20915
  };
@@ -19239,6 +21007,7 @@ declare class ApiClient {
19239
21007
  secretLink: DeleteSecretlinkEndpoint;
19240
21008
  service: DeleteServiceEndpoint;
19241
21009
  volume: DeleteVolumeEndpoint;
21010
+ tag: DeleteTagEndpoint;
19242
21011
  template: DeleteTemplateEndpoint;
19243
21012
  };
19244
21013
  import: {
@@ -19255,6 +21024,7 @@ declare class ApiClient {
19255
21024
  path: AddSubdomainPathEndpoint;
19256
21025
  };
19257
21026
  registryCredentials: AddRegistrycredentialsEndpoint;
21027
+ tag: AddTagEndpoint;
19258
21028
  };
19259
21029
  assign: {
19260
21030
  subdomain: {
@@ -19306,6 +21076,7 @@ declare class ApiClient {
19306
21076
  combined: PutServiceCombinedEndpoint;
19307
21077
  deployment: PutServiceDeploymentEndpoint;
19308
21078
  };
21079
+ tag: PutTagEndpoint;
19309
21080
  };
19310
21081
  patch: {
19311
21082
  project: PatchProjectEndpoint;
@@ -19320,6 +21091,7 @@ declare class ApiClient {
19320
21091
  combined: PatchServiceCombinedEndpoint;
19321
21092
  deployment: PatchServiceDeploymentEndpoint;
19322
21093
  };
21094
+ tag: PatchTagEndpoint;
19323
21095
  };
19324
21096
  backup: {
19325
21097
  addon: BackupAddonEndpoint;
@@ -19395,4 +21167,4 @@ type ApiClientOpts = {
19395
21167
  customUserAgent?: string;
19396
21168
  };
19397
21169
 
19398
- 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, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, 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, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, 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, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, 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, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, 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, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, 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, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
21170
+ 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, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, 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, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, 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, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, 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, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, 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, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, 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, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, 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, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, 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, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };