@northflank/js-client 0.7.15 → 0.7.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-client.d.ts +1256 -767
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +1256 -767
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -1433,7 +1433,7 @@ type ListCloudClustersResult = {
|
|
|
1433
1433
|
'provider'?: string;
|
|
1434
1434
|
/** ID of the provider integration used by this cluster. Example: "gcp-integration" */
|
|
1435
1435
|
'integrationId': string;
|
|
1436
|
-
'nodePools'
|
|
1436
|
+
'nodePools'?: {
|
|
1437
1437
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
1438
1438
|
'nodeType': string;
|
|
1439
1439
|
/** Number of nodes to the node pool should be provisioned with. Example: 3 */
|
|
@@ -1466,11 +1466,28 @@ type ListCloudClustersResult = {
|
|
|
1466
1466
|
'systemPool'?: boolean;
|
|
1467
1467
|
/** Zones in which the node pool should be provisioned. */
|
|
1468
1468
|
'availabilityZones': string[];
|
|
1469
|
-
/**
|
|
1469
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
1470
|
+
'scheduling'?: {
|
|
1471
|
+
/** Allow jobs to schedule to this node pool */
|
|
1472
|
+
'allowJobs'?: boolean;
|
|
1473
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1474
|
+
'onlyGpuJobs'?: boolean;
|
|
1475
|
+
/** Allow services to schedule to this node pool */
|
|
1476
|
+
'allowServices'?: boolean;
|
|
1477
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1478
|
+
'onlyGpuServices'?: boolean;
|
|
1479
|
+
/** Allow addons to schedule to this node pool */
|
|
1480
|
+
'allowAddons'?: boolean;
|
|
1481
|
+
/** Allow builds to schedule to this node pool */
|
|
1482
|
+
'allowBuilds'?: boolean;
|
|
1483
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1484
|
+
'onlyGpuBuilds'?: boolean;
|
|
1485
|
+
};
|
|
1486
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
1470
1487
|
'labels'?: any;
|
|
1471
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" */
|
|
1472
1489
|
'id'?: string;
|
|
1473
|
-
};
|
|
1490
|
+
}[];
|
|
1474
1491
|
'status'?: {
|
|
1475
1492
|
'state'?: {
|
|
1476
1493
|
'state'?: string;
|
|
@@ -1516,7 +1533,7 @@ type CreateCloudClusterResult = {
|
|
|
1516
1533
|
'provider'?: string;
|
|
1517
1534
|
/** ID of the provider integration used by this cluster. Example: "gcp-integration" */
|
|
1518
1535
|
'integrationId': string;
|
|
1519
|
-
'nodePools'
|
|
1536
|
+
'nodePools'?: {
|
|
1520
1537
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
1521
1538
|
'nodeType': string;
|
|
1522
1539
|
/** Number of nodes to the node pool should be provisioned with. Example: 3 */
|
|
@@ -1549,11 +1566,28 @@ type CreateCloudClusterResult = {
|
|
|
1549
1566
|
'systemPool'?: boolean;
|
|
1550
1567
|
/** Zones in which the node pool should be provisioned. */
|
|
1551
1568
|
'availabilityZones': string[];
|
|
1552
|
-
/**
|
|
1569
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
1570
|
+
'scheduling'?: {
|
|
1571
|
+
/** Allow jobs to schedule to this node pool */
|
|
1572
|
+
'allowJobs'?: boolean;
|
|
1573
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1574
|
+
'onlyGpuJobs'?: boolean;
|
|
1575
|
+
/** Allow services to schedule to this node pool */
|
|
1576
|
+
'allowServices'?: boolean;
|
|
1577
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1578
|
+
'onlyGpuServices'?: boolean;
|
|
1579
|
+
/** Allow addons to schedule to this node pool */
|
|
1580
|
+
'allowAddons'?: boolean;
|
|
1581
|
+
/** Allow builds to schedule to this node pool */
|
|
1582
|
+
'allowBuilds'?: boolean;
|
|
1583
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1584
|
+
'onlyGpuBuilds'?: boolean;
|
|
1585
|
+
};
|
|
1586
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
1553
1587
|
'labels'?: any;
|
|
1554
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" */
|
|
1555
1589
|
'id'?: string;
|
|
1556
|
-
};
|
|
1590
|
+
}[];
|
|
1557
1591
|
'status'?: {
|
|
1558
1592
|
'state'?: {
|
|
1559
1593
|
'state'?: string;
|
|
@@ -1579,21 +1613,11 @@ type CreateCloudClusterData = {
|
|
|
1579
1613
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
|
|
1580
1614
|
/** Region of the cluster. Example: "europe-west2" */
|
|
1581
1615
|
'region': string;
|
|
1582
|
-
/** Kubernetes version of the cluster. Example: "1.
|
|
1616
|
+
/** Kubernetes version of the cluster. Example: "1.26" */
|
|
1583
1617
|
'kubernetesVersion': string;
|
|
1584
1618
|
/** Existing integration to use for this cluster. Example: "gcp-integration" */
|
|
1585
1619
|
'integrationId'?: string;
|
|
1586
|
-
|
|
1587
|
-
'integration'?: {
|
|
1588
|
-
/** Contents of a GCP key file. */
|
|
1589
|
-
'keyfileJson'?: string;
|
|
1590
|
-
/** AWS access key. */
|
|
1591
|
-
'accessKey'?: string;
|
|
1592
|
-
/** AWS secret key. */
|
|
1593
|
-
'secretKey'?: string;
|
|
1594
|
-
/** DO API key. */
|
|
1595
|
-
'apiKey'?: string;
|
|
1596
|
-
};
|
|
1620
|
+
'integration'?: any;
|
|
1597
1621
|
/** An array of node pools. */
|
|
1598
1622
|
'nodePools': {
|
|
1599
1623
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
@@ -1628,7 +1652,24 @@ type CreateCloudClusterData = {
|
|
|
1628
1652
|
'systemPool'?: boolean;
|
|
1629
1653
|
/** Zones in which the node pool should be provisioned. */
|
|
1630
1654
|
'availabilityZones': string[];
|
|
1631
|
-
/**
|
|
1655
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
1656
|
+
'scheduling'?: {
|
|
1657
|
+
/** Allow jobs to schedule to this node pool */
|
|
1658
|
+
'allowJobs'?: boolean;
|
|
1659
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1660
|
+
'onlyGpuJobs'?: boolean;
|
|
1661
|
+
/** Allow services to schedule to this node pool */
|
|
1662
|
+
'allowServices'?: boolean;
|
|
1663
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1664
|
+
'onlyGpuServices'?: boolean;
|
|
1665
|
+
/** Allow addons to schedule to this node pool */
|
|
1666
|
+
'allowAddons'?: boolean;
|
|
1667
|
+
/** Allow builds to schedule to this node pool */
|
|
1668
|
+
'allowBuilds'?: boolean;
|
|
1669
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1670
|
+
'onlyGpuBuilds'?: boolean;
|
|
1671
|
+
};
|
|
1672
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
1632
1673
|
'labels'?: any;
|
|
1633
1674
|
}[];
|
|
1634
1675
|
'settings'?: {
|
|
@@ -1646,7 +1687,7 @@ type CreateCloudClusterData = {
|
|
|
1646
1687
|
};
|
|
1647
1688
|
'logging'?: {
|
|
1648
1689
|
'mode'?: 'paas' | 'loki';
|
|
1649
|
-
/** Required data for loki setting. */
|
|
1690
|
+
/** Required data for the loki mode setting. */
|
|
1650
1691
|
'loki'?: {
|
|
1651
1692
|
's3BucketName': string;
|
|
1652
1693
|
's3AccessKey': string;
|
|
@@ -1654,6 +1695,56 @@ type CreateCloudClusterData = {
|
|
|
1654
1695
|
's3Region': string;
|
|
1655
1696
|
};
|
|
1656
1697
|
};
|
|
1698
|
+
'vanityDomains'?: {
|
|
1699
|
+
'apps'?: {
|
|
1700
|
+
'zoneName': string;
|
|
1701
|
+
'integrationId': string;
|
|
1702
|
+
};
|
|
1703
|
+
'customDomains'?: {
|
|
1704
|
+
'zoneName': string;
|
|
1705
|
+
'integrationId': string;
|
|
1706
|
+
};
|
|
1707
|
+
'loadBalancers'?: {
|
|
1708
|
+
'zoneName': string;
|
|
1709
|
+
'integrationId': string;
|
|
1710
|
+
};
|
|
1711
|
+
};
|
|
1712
|
+
'infrastructure'?: {
|
|
1713
|
+
'workloads'?: {
|
|
1714
|
+
'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
|
|
1715
|
+
};
|
|
1716
|
+
'builds'?: {
|
|
1717
|
+
'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
|
|
1718
|
+
};
|
|
1719
|
+
'installKata'?: boolean;
|
|
1720
|
+
'installGvisor'?: boolean;
|
|
1721
|
+
'cleanupVolumes'?: boolean;
|
|
1722
|
+
'cleanupSnapshots'?: boolean;
|
|
1723
|
+
};
|
|
1724
|
+
/** Request modifiers to use for different resources. */
|
|
1725
|
+
'requestModifiers'?: {
|
|
1726
|
+
/** Request modifiers for services */
|
|
1727
|
+
'services'?: {
|
|
1728
|
+
'cpu': number;
|
|
1729
|
+
'memory': number;
|
|
1730
|
+
};
|
|
1731
|
+
/** Request modifiers for jobs */
|
|
1732
|
+
'jobs'?: {
|
|
1733
|
+
'cpu': number;
|
|
1734
|
+
'memory': number;
|
|
1735
|
+
};
|
|
1736
|
+
/** Request modifiers for builds */
|
|
1737
|
+
'builds'?: {
|
|
1738
|
+
'cpu': number;
|
|
1739
|
+
'memory': number;
|
|
1740
|
+
};
|
|
1741
|
+
/** Request modifiers for addons */
|
|
1742
|
+
'addons'?: {
|
|
1743
|
+
'cpu': number;
|
|
1744
|
+
'memory': number;
|
|
1745
|
+
};
|
|
1746
|
+
};
|
|
1747
|
+
'skipInstall'?: boolean;
|
|
1657
1748
|
};
|
|
1658
1749
|
/** GCP specific data. Required when `provider` is `gcp`. */
|
|
1659
1750
|
'gcp'?: {
|
|
@@ -1675,67 +1766,7 @@ declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClus
|
|
|
1675
1766
|
body: (payload: CreateCloudClusterRequest) => string;
|
|
1676
1767
|
}
|
|
1677
1768
|
|
|
1678
|
-
type GetCloudClusterResult =
|
|
1679
|
-
/** Identifier for the cluster. Example: "gcp-cluster-1" */
|
|
1680
|
-
'id': string;
|
|
1681
|
-
/** The name of the cluster. Example: "GCP Cluster 1" */
|
|
1682
|
-
'name': string;
|
|
1683
|
-
/** A short description of the cluster. Example: "The cluster description" */
|
|
1684
|
-
'description'?: string;
|
|
1685
|
-
/** The cloud provider to which this cluster belongs to. Example: "gcp" */
|
|
1686
|
-
'provider'?: string;
|
|
1687
|
-
/** ID of the provider integration used by this cluster. Example: "gcp-integration" */
|
|
1688
|
-
'integrationId': string;
|
|
1689
|
-
'nodePools': {
|
|
1690
|
-
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
1691
|
-
'nodeType': string;
|
|
1692
|
-
/** Number of nodes to the node pool should be provisioned with. Example: 3 */
|
|
1693
|
-
'nodeCount': number;
|
|
1694
|
-
/** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
|
|
1695
|
-
'autoscaling'?: {
|
|
1696
|
-
'enabled'?: boolean;
|
|
1697
|
-
'min'?: number;
|
|
1698
|
-
'max'?: number;
|
|
1699
|
-
};
|
|
1700
|
-
'computeResources'?: {
|
|
1701
|
-
'gpu'?: {
|
|
1702
|
-
'mig'?: {
|
|
1703
|
-
'enabled'?: boolean;
|
|
1704
|
-
'partitions'?: string[];
|
|
1705
|
-
};
|
|
1706
|
-
'timeslicing'?: {
|
|
1707
|
-
'enabled'?: boolean;
|
|
1708
|
-
'numSlices'?: number;
|
|
1709
|
-
};
|
|
1710
|
-
};
|
|
1711
|
-
};
|
|
1712
|
-
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
1713
|
-
'preemptible'?: boolean;
|
|
1714
|
-
/** The disk type to use. */
|
|
1715
|
-
'diskType'?: string;
|
|
1716
|
-
/** Disk size in GB Example: 100 */
|
|
1717
|
-
'diskSize': number;
|
|
1718
|
-
/** When 'provider' is 'azure', at least one system node pool is required per cluster. */
|
|
1719
|
-
'systemPool'?: boolean;
|
|
1720
|
-
/** Zones in which the node pool should be provisioned. */
|
|
1721
|
-
'availabilityZones': string[];
|
|
1722
|
-
/** Set of label keys and values that can be used to determine scheduling via resource tags. */
|
|
1723
|
-
'labels'?: any;
|
|
1724
|
-
/** 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" */
|
|
1725
|
-
'id'?: string;
|
|
1726
|
-
};
|
|
1727
|
-
'status'?: {
|
|
1728
|
-
'state'?: {
|
|
1729
|
-
'state'?: string;
|
|
1730
|
-
'transitionTime'?: string;
|
|
1731
|
-
};
|
|
1732
|
-
'nextUpdateAfter'?: string;
|
|
1733
|
-
};
|
|
1734
|
-
/** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1735
|
-
'createdAt': string;
|
|
1736
|
-
/** Indicates if provider resource deletion has been requested by the user. */
|
|
1737
|
-
'deletionRequested': boolean;
|
|
1738
|
-
};
|
|
1769
|
+
type GetCloudClusterResult = any;
|
|
1739
1770
|
type GetCloudClusterCall = (opts: GetCloudClusterRequest) => Promise<ApiCallResponse<GetCloudClusterResult>>;
|
|
1740
1771
|
type GetCloudClusterRequest = {
|
|
1741
1772
|
parameters: GetCloudClusterParameters;
|
|
@@ -1763,7 +1794,7 @@ type UpdateCloudClusterResult = {
|
|
|
1763
1794
|
'provider'?: string;
|
|
1764
1795
|
/** ID of the provider integration used by this cluster. Example: "gcp-integration" */
|
|
1765
1796
|
'integrationId': string;
|
|
1766
|
-
'nodePools'
|
|
1797
|
+
'nodePools'?: {
|
|
1767
1798
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
1768
1799
|
'nodeType': string;
|
|
1769
1800
|
/** Number of nodes to the node pool should be provisioned with. Example: 3 */
|
|
@@ -1796,11 +1827,28 @@ type UpdateCloudClusterResult = {
|
|
|
1796
1827
|
'systemPool'?: boolean;
|
|
1797
1828
|
/** Zones in which the node pool should be provisioned. */
|
|
1798
1829
|
'availabilityZones': string[];
|
|
1799
|
-
/**
|
|
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. */
|
|
1800
1848
|
'labels'?: any;
|
|
1801
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" */
|
|
1802
1850
|
'id'?: string;
|
|
1803
|
-
};
|
|
1851
|
+
}[];
|
|
1804
1852
|
'status'?: {
|
|
1805
1853
|
'state'?: {
|
|
1806
1854
|
'state'?: string;
|
|
@@ -1857,7 +1905,24 @@ type UpdateCloudClusterData = {
|
|
|
1857
1905
|
'systemPool'?: boolean;
|
|
1858
1906
|
/** Zones in which the node pool should be provisioned. */
|
|
1859
1907
|
'availabilityZones': string[];
|
|
1860
|
-
/**
|
|
1908
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
1909
|
+
'scheduling'?: {
|
|
1910
|
+
/** Allow jobs to schedule to this node pool */
|
|
1911
|
+
'allowJobs'?: boolean;
|
|
1912
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1913
|
+
'onlyGpuJobs'?: boolean;
|
|
1914
|
+
/** Allow services to schedule to this node pool */
|
|
1915
|
+
'allowServices'?: boolean;
|
|
1916
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1917
|
+
'onlyGpuServices'?: boolean;
|
|
1918
|
+
/** Allow addons to schedule to this node pool */
|
|
1919
|
+
'allowAddons'?: boolean;
|
|
1920
|
+
/** Allow builds to schedule to this node pool */
|
|
1921
|
+
'allowBuilds'?: boolean;
|
|
1922
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1923
|
+
'onlyGpuBuilds'?: boolean;
|
|
1924
|
+
};
|
|
1925
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
1861
1926
|
'labels'?: any;
|
|
1862
1927
|
/** 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" */
|
|
1863
1928
|
'id'?: string;
|
|
@@ -1877,7 +1942,7 @@ type UpdateCloudClusterData = {
|
|
|
1877
1942
|
};
|
|
1878
1943
|
'logging'?: {
|
|
1879
1944
|
'mode'?: 'paas' | 'loki';
|
|
1880
|
-
/** Required data for loki setting. */
|
|
1945
|
+
/** Required data for the loki mode setting. */
|
|
1881
1946
|
'loki'?: {
|
|
1882
1947
|
's3BucketName': string;
|
|
1883
1948
|
's3AccessKey': string;
|
|
@@ -1885,6 +1950,56 @@ type UpdateCloudClusterData = {
|
|
|
1885
1950
|
's3Region': string;
|
|
1886
1951
|
};
|
|
1887
1952
|
};
|
|
1953
|
+
'vanityDomains'?: {
|
|
1954
|
+
'apps'?: {
|
|
1955
|
+
'zoneName': string;
|
|
1956
|
+
'integrationId': string;
|
|
1957
|
+
};
|
|
1958
|
+
'customDomains'?: {
|
|
1959
|
+
'zoneName': string;
|
|
1960
|
+
'integrationId': string;
|
|
1961
|
+
};
|
|
1962
|
+
'loadBalancers'?: {
|
|
1963
|
+
'zoneName': string;
|
|
1964
|
+
'integrationId': string;
|
|
1965
|
+
};
|
|
1966
|
+
};
|
|
1967
|
+
'infrastructure'?: {
|
|
1968
|
+
'workloads'?: {
|
|
1969
|
+
'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
|
|
1970
|
+
};
|
|
1971
|
+
'builds'?: {
|
|
1972
|
+
'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
|
|
1973
|
+
};
|
|
1974
|
+
'installKata'?: boolean;
|
|
1975
|
+
'installGvisor'?: boolean;
|
|
1976
|
+
'cleanupVolumes'?: boolean;
|
|
1977
|
+
'cleanupSnapshots'?: boolean;
|
|
1978
|
+
};
|
|
1979
|
+
/** Request modifiers to use for different resources. */
|
|
1980
|
+
'requestModifiers'?: {
|
|
1981
|
+
/** Request modifiers for services */
|
|
1982
|
+
'services'?: {
|
|
1983
|
+
'cpu': number;
|
|
1984
|
+
'memory': number;
|
|
1985
|
+
};
|
|
1986
|
+
/** Request modifiers for jobs */
|
|
1987
|
+
'jobs'?: {
|
|
1988
|
+
'cpu': number;
|
|
1989
|
+
'memory': number;
|
|
1990
|
+
};
|
|
1991
|
+
/** Request modifiers for builds */
|
|
1992
|
+
'builds'?: {
|
|
1993
|
+
'cpu': number;
|
|
1994
|
+
'memory': number;
|
|
1995
|
+
};
|
|
1996
|
+
/** Request modifiers for addons */
|
|
1997
|
+
'addons'?: {
|
|
1998
|
+
'cpu': number;
|
|
1999
|
+
'memory': number;
|
|
2000
|
+
};
|
|
2001
|
+
};
|
|
2002
|
+
'skipInstall'?: boolean;
|
|
1888
2003
|
};
|
|
1889
2004
|
};
|
|
1890
2005
|
/** Update an existing cluster. */
|
|
@@ -2107,7 +2222,7 @@ type CreateCloudIntegrationData = {
|
|
|
2107
2222
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
2108
2223
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
|
|
2109
2224
|
/** The type of provider integration. Example: "cluster" */
|
|
2110
|
-
'type'
|
|
2225
|
+
'type': 'cluster' | 'domain' | 'registry' | 'cdn';
|
|
2111
2226
|
/** Cloud provider credential input, required fields dependent on which provider is chosen. */
|
|
2112
2227
|
'credentials': {
|
|
2113
2228
|
/** Contents of a GCP key file. */
|
|
@@ -2121,8 +2236,10 @@ type CreateCloudIntegrationData = {
|
|
|
2121
2236
|
};
|
|
2122
2237
|
/** GCP specific data. Required when `provider` is `gcp`. */
|
|
2123
2238
|
'gcp'?: {
|
|
2124
|
-
|
|
2125
|
-
|
|
2239
|
+
'gcp'?: {
|
|
2240
|
+
/** Project ID */
|
|
2241
|
+
'projectId': string;
|
|
2242
|
+
};
|
|
2126
2243
|
};
|
|
2127
2244
|
};
|
|
2128
2245
|
/** Creates a new integration. */
|
|
@@ -2134,27 +2251,7 @@ declare class CreateCloudIntegrationEndpoint extends PostApiEndpoint<CreateCloud
|
|
|
2134
2251
|
body: (payload: CreateCloudIntegrationRequest) => string;
|
|
2135
2252
|
}
|
|
2136
2253
|
|
|
2137
|
-
type GetCloudIntegrationResult =
|
|
2138
|
-
/** Identifier for the integration. Example: "gcp-integration" */
|
|
2139
|
-
'id': string;
|
|
2140
|
-
/** The name of the integration. Example: "GCP integration" */
|
|
2141
|
-
'name': string;
|
|
2142
|
-
/** A short description of the integration. Example: "The integration description" */
|
|
2143
|
-
'description'?: string;
|
|
2144
|
-
/** Cloud provider credential input, required fields dependent on which provider is chosen. */
|
|
2145
|
-
'credentials': {
|
|
2146
|
-
/** Contents of a GCP key file. */
|
|
2147
|
-
'keyfileJson'?: string;
|
|
2148
|
-
/** AWS access key. */
|
|
2149
|
-
'accessKey'?: string;
|
|
2150
|
-
/** AWS secret key. */
|
|
2151
|
-
'secretKey'?: string;
|
|
2152
|
-
/** DO API key. */
|
|
2153
|
-
'apiKey'?: string;
|
|
2154
|
-
};
|
|
2155
|
-
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
2156
|
-
'createdAt': string;
|
|
2157
|
-
};
|
|
2254
|
+
type GetCloudIntegrationResult = any;
|
|
2158
2255
|
type GetCloudIntegrationCall = (opts: GetCloudIntegrationRequest) => Promise<ApiCallResponse<GetCloudIntegrationResult>>;
|
|
2159
2256
|
type GetCloudIntegrationRequest = {
|
|
2160
2257
|
parameters: GetCloudIntegrationParameters;
|
|
@@ -2171,27 +2268,7 @@ declare class GetCloudIntegrationEndpoint extends GetApiEndpoint<GetCloudIntegra
|
|
|
2171
2268
|
body: () => undefined;
|
|
2172
2269
|
}
|
|
2173
2270
|
|
|
2174
|
-
type UpdateCloudIntegrationResult =
|
|
2175
|
-
/** Identifier for the integration. Example: "gcp-integration" */
|
|
2176
|
-
'id': string;
|
|
2177
|
-
/** The name of the integration. Example: "GCP integration" */
|
|
2178
|
-
'name': string;
|
|
2179
|
-
/** A short description of the integration. Example: "The integration description" */
|
|
2180
|
-
'description'?: string;
|
|
2181
|
-
/** Cloud provider credential input, required fields dependent on which provider is chosen. */
|
|
2182
|
-
'credentials': {
|
|
2183
|
-
/** Contents of a GCP key file. */
|
|
2184
|
-
'keyfileJson'?: string;
|
|
2185
|
-
/** AWS access key. */
|
|
2186
|
-
'accessKey'?: string;
|
|
2187
|
-
/** AWS secret key. */
|
|
2188
|
-
'secretKey'?: string;
|
|
2189
|
-
/** DO API key. */
|
|
2190
|
-
'apiKey'?: string;
|
|
2191
|
-
};
|
|
2192
|
-
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
2193
|
-
'createdAt': string;
|
|
2194
|
-
};
|
|
2271
|
+
type UpdateCloudIntegrationResult = any;
|
|
2195
2272
|
type UpdateCloudIntegrationCall = (opts: UpdateCloudIntegrationRequest) => Promise<ApiCallResponse<UpdateCloudIntegrationResult>>;
|
|
2196
2273
|
type UpdateCloudIntegrationRequest = {
|
|
2197
2274
|
parameters: UpdateCloudIntegrationParameters;
|
|
@@ -2773,6 +2850,465 @@ declare class EnableSubdomainCdnEndpoint extends PostApiEndpoint<EnableSubdomain
|
|
|
2773
2850
|
body: (payload: EnableSubdomainCdnRequest) => string;
|
|
2774
2851
|
}
|
|
2775
2852
|
|
|
2853
|
+
type AddSubdomainPathResult = {
|
|
2854
|
+
/** The domain the path should be created for. Example: "site.example.com" */
|
|
2855
|
+
'subdomain': string;
|
|
2856
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
2857
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
2858
|
+
/** URI of the subdomain path. Interpreted according to the selected path mode Example: "/" */
|
|
2859
|
+
'uri': string;
|
|
2860
|
+
'options'?: {
|
|
2861
|
+
/** In case of uri conflicts, the route with the higher priority will take precedence */
|
|
2862
|
+
'priority'?: number;
|
|
2863
|
+
/** Allows case insensitive matching for 'prefix' and 'exact' modes */
|
|
2864
|
+
'ignoreUriCase'?: boolean;
|
|
2865
|
+
/** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
|
|
2866
|
+
'rewrite'?: {
|
|
2867
|
+
'uri'?: string;
|
|
2868
|
+
} | {
|
|
2869
|
+
'regex'?: {
|
|
2870
|
+
/** Regex match for the given path */
|
|
2871
|
+
'match': string;
|
|
2872
|
+
/** Regex rewrite for the given matched path */
|
|
2873
|
+
'rewrite': string;
|
|
2874
|
+
};
|
|
2875
|
+
};
|
|
2876
|
+
/** Customised request timeout for the given path. */
|
|
2877
|
+
'timeout'?: string;
|
|
2878
|
+
/** Settings allowing addition, re-write and removal of request as well as response headers. */
|
|
2879
|
+
'headers'?: {
|
|
2880
|
+
'request'?: {
|
|
2881
|
+
'set'?: any;
|
|
2882
|
+
'add'?: any;
|
|
2883
|
+
'remove'?: string[];
|
|
2884
|
+
};
|
|
2885
|
+
'response'?: {
|
|
2886
|
+
'set'?: any;
|
|
2887
|
+
'add'?: any;
|
|
2888
|
+
'remove'?: string[];
|
|
2889
|
+
};
|
|
2890
|
+
};
|
|
2891
|
+
/** Settings allowing for customization of CORS policies. */
|
|
2892
|
+
'corsPolicy'?: {
|
|
2893
|
+
'enabled': boolean;
|
|
2894
|
+
'allowOrigins'?: {
|
|
2895
|
+
/** Mode of the path, determining how the URI will be interpreted. */
|
|
2896
|
+
'mode'?: 'prefix' | 'exact' | 'regex';
|
|
2897
|
+
'path'?: string;
|
|
2898
|
+
}[];
|
|
2899
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
2900
|
+
'allowCredentials'?: boolean;
|
|
2901
|
+
'allowHeaders'?: string[];
|
|
2902
|
+
'maxAge'?: string;
|
|
2903
|
+
};
|
|
2904
|
+
/** Settings allowing for customization of retries. */
|
|
2905
|
+
'retries'?: {
|
|
2906
|
+
'enabled': boolean;
|
|
2907
|
+
'attempts': number;
|
|
2908
|
+
'perTryTimeout'?: string;
|
|
2909
|
+
};
|
|
2910
|
+
};
|
|
2911
|
+
/** time of creation */
|
|
2912
|
+
'createdAt'?: string;
|
|
2913
|
+
} | any;
|
|
2914
|
+
type AddSubdomainPathCall = (opts: AddSubdomainPathRequest) => Promise<ApiCallResponse<AddSubdomainPathResult>>;
|
|
2915
|
+
type AddSubdomainPathRequest = {
|
|
2916
|
+
parameters: AddSubdomainPathParameters;
|
|
2917
|
+
data: AddSubdomainPathData;
|
|
2918
|
+
};
|
|
2919
|
+
type AddSubdomainPathParameters = {
|
|
2920
|
+
/** Name of the domain */ 'domain': string;
|
|
2921
|
+
/** Name of the subdomain */
|
|
2922
|
+
'subdomain': string;
|
|
2923
|
+
};
|
|
2924
|
+
type AddSubdomainPathData = {
|
|
2925
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
2926
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
2927
|
+
/** URI of the subdomain path. Interpreted according to the selected path mode Example: "/" */
|
|
2928
|
+
'uri': string;
|
|
2929
|
+
'options'?: {
|
|
2930
|
+
/** In case of uri conflicts, the route with the higher priority will take precedence */
|
|
2931
|
+
'priority'?: number;
|
|
2932
|
+
/** Allows case insensitive matching for 'prefix' and 'exact' modes */
|
|
2933
|
+
'ignoreUriCase'?: boolean;
|
|
2934
|
+
/** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
|
|
2935
|
+
'rewrite'?: {
|
|
2936
|
+
'uri'?: string;
|
|
2937
|
+
} | {
|
|
2938
|
+
'regex'?: {
|
|
2939
|
+
/** Regex match for the given path */
|
|
2940
|
+
'match': string;
|
|
2941
|
+
/** Regex rewrite for the given matched path */
|
|
2942
|
+
'rewrite': string;
|
|
2943
|
+
};
|
|
2944
|
+
};
|
|
2945
|
+
/** Customised request timeout for the given path. */
|
|
2946
|
+
'timeout'?: string;
|
|
2947
|
+
/** Settings allowing addition, re-write and removal of request as well as response headers. */
|
|
2948
|
+
'headers'?: {
|
|
2949
|
+
'request'?: {
|
|
2950
|
+
'set'?: any;
|
|
2951
|
+
'add'?: any;
|
|
2952
|
+
'remove'?: string[];
|
|
2953
|
+
};
|
|
2954
|
+
'response'?: {
|
|
2955
|
+
'set'?: any;
|
|
2956
|
+
'add'?: any;
|
|
2957
|
+
'remove'?: string[];
|
|
2958
|
+
};
|
|
2959
|
+
};
|
|
2960
|
+
/** Settings allowing for customization of CORS policies. */
|
|
2961
|
+
'corsPolicy'?: {
|
|
2962
|
+
'enabled': boolean;
|
|
2963
|
+
'allowOrigins'?: {
|
|
2964
|
+
/** Mode of the path, determining how the URI will be interpreted. */
|
|
2965
|
+
'mode'?: 'prefix' | 'exact' | 'regex';
|
|
2966
|
+
'path'?: string;
|
|
2967
|
+
}[];
|
|
2968
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
2969
|
+
'allowCredentials'?: boolean;
|
|
2970
|
+
'allowHeaders'?: string[];
|
|
2971
|
+
'maxAge'?: string;
|
|
2972
|
+
};
|
|
2973
|
+
/** Settings allowing for customization of retries. */
|
|
2974
|
+
'retries'?: {
|
|
2975
|
+
'enabled': boolean;
|
|
2976
|
+
'attempts': number;
|
|
2977
|
+
'perTryTimeout'?: string;
|
|
2978
|
+
};
|
|
2979
|
+
};
|
|
2980
|
+
};
|
|
2981
|
+
/** Adds a new path to the subdomain. */
|
|
2982
|
+
declare class AddSubdomainPathEndpoint extends PostApiEndpoint<AddSubdomainPathRequest, AddSubdomainPathResult> {
|
|
2983
|
+
description: string;
|
|
2984
|
+
withAuth: boolean;
|
|
2985
|
+
requiredPermissions: string;
|
|
2986
|
+
endpointUrl: (opts: AddSubdomainPathRequest) => string;
|
|
2987
|
+
body: (payload: AddSubdomainPathRequest) => string;
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2990
|
+
type ListSubdomainPathResult = {
|
|
2991
|
+
/** A list of paths created for the given subdomain. */
|
|
2992
|
+
'paths': {
|
|
2993
|
+
/** The domain the path should be created for. Example: "site.example.com" */
|
|
2994
|
+
'subdomain': string;
|
|
2995
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
2996
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
2997
|
+
/** URI of the subdomain path. Interpreted according to the selected path mode Example: "/" */
|
|
2998
|
+
'uri': string;
|
|
2999
|
+
'options'?: {
|
|
3000
|
+
/** In case of uri conflicts, the route with the higher priority will take precedence */
|
|
3001
|
+
'priority'?: number;
|
|
3002
|
+
/** Allows case insensitive matching for 'prefix' and 'exact' modes */
|
|
3003
|
+
'ignoreUriCase'?: boolean;
|
|
3004
|
+
/** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
|
|
3005
|
+
'rewrite'?: {
|
|
3006
|
+
'uri'?: string;
|
|
3007
|
+
} | {
|
|
3008
|
+
'regex'?: {
|
|
3009
|
+
/** Regex match for the given path */
|
|
3010
|
+
'match': string;
|
|
3011
|
+
/** Regex rewrite for the given matched path */
|
|
3012
|
+
'rewrite': string;
|
|
3013
|
+
};
|
|
3014
|
+
};
|
|
3015
|
+
/** Customised request timeout for the given path. */
|
|
3016
|
+
'timeout'?: string;
|
|
3017
|
+
/** Settings allowing addition, re-write and removal of request as well as response headers. */
|
|
3018
|
+
'headers'?: {
|
|
3019
|
+
'request'?: {
|
|
3020
|
+
'set'?: any;
|
|
3021
|
+
'add'?: any;
|
|
3022
|
+
'remove'?: string[];
|
|
3023
|
+
};
|
|
3024
|
+
'response'?: {
|
|
3025
|
+
'set'?: any;
|
|
3026
|
+
'add'?: any;
|
|
3027
|
+
'remove'?: string[];
|
|
3028
|
+
};
|
|
3029
|
+
};
|
|
3030
|
+
/** Settings allowing for customization of CORS policies. */
|
|
3031
|
+
'corsPolicy'?: {
|
|
3032
|
+
'enabled': boolean;
|
|
3033
|
+
'allowOrigins'?: {
|
|
3034
|
+
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3035
|
+
'mode'?: 'prefix' | 'exact' | 'regex';
|
|
3036
|
+
'path'?: string;
|
|
3037
|
+
}[];
|
|
3038
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3039
|
+
'allowCredentials'?: boolean;
|
|
3040
|
+
'allowHeaders'?: string[];
|
|
3041
|
+
'maxAge'?: string;
|
|
3042
|
+
};
|
|
3043
|
+
/** Settings allowing for customization of retries. */
|
|
3044
|
+
'retries'?: {
|
|
3045
|
+
'enabled': boolean;
|
|
3046
|
+
'attempts': number;
|
|
3047
|
+
'perTryTimeout'?: string;
|
|
3048
|
+
};
|
|
3049
|
+
};
|
|
3050
|
+
/** time of creation */
|
|
3051
|
+
'createdAt'?: string;
|
|
3052
|
+
}[];
|
|
3053
|
+
};
|
|
3054
|
+
type ListSubdomainPathCall = (opts: ListSubdomainPathRequest) => Promise<ApiCallResponse<ListSubdomainPathResult>>;
|
|
3055
|
+
type ListSubdomainPathRequest = {
|
|
3056
|
+
parameters: ListSubdomainPathParameters;
|
|
3057
|
+
};
|
|
3058
|
+
type ListSubdomainPathParameters = {
|
|
3059
|
+
/** Name of the domain */ 'domain': string;
|
|
3060
|
+
/** Name of the subdomain */
|
|
3061
|
+
'subdomain': string;
|
|
3062
|
+
};
|
|
3063
|
+
/** List paths for a given subdomain. */
|
|
3064
|
+
declare class ListSubdomainPathEndpoint extends GetApiEndpoint<ListSubdomainPathRequest, ListSubdomainPathResult> {
|
|
3065
|
+
description: string;
|
|
3066
|
+
withAuth: boolean;
|
|
3067
|
+
requiredPermissions: string;
|
|
3068
|
+
endpointUrl: (opts: ListSubdomainPathRequest) => string;
|
|
3069
|
+
body: () => undefined;
|
|
3070
|
+
}
|
|
3071
|
+
|
|
3072
|
+
type GetSubdomainPathResult = {
|
|
3073
|
+
/** The domain the path should be created for. Example: "site.example.com" */
|
|
3074
|
+
'subdomain': string;
|
|
3075
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3076
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3077
|
+
/** URI of the subdomain path. Interpreted according to the selected path mode Example: "/" */
|
|
3078
|
+
'uri': string;
|
|
3079
|
+
'options'?: {
|
|
3080
|
+
/** In case of uri conflicts, the route with the higher priority will take precedence */
|
|
3081
|
+
'priority'?: number;
|
|
3082
|
+
/** Allows case insensitive matching for 'prefix' and 'exact' modes */
|
|
3083
|
+
'ignoreUriCase'?: boolean;
|
|
3084
|
+
/** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
|
|
3085
|
+
'rewrite'?: {
|
|
3086
|
+
'uri'?: string;
|
|
3087
|
+
} | {
|
|
3088
|
+
'regex'?: {
|
|
3089
|
+
/** Regex match for the given path */
|
|
3090
|
+
'match': string;
|
|
3091
|
+
/** Regex rewrite for the given matched path */
|
|
3092
|
+
'rewrite': string;
|
|
3093
|
+
};
|
|
3094
|
+
};
|
|
3095
|
+
/** Customised request timeout for the given path. */
|
|
3096
|
+
'timeout'?: string;
|
|
3097
|
+
/** Settings allowing addition, re-write and removal of request as well as response headers. */
|
|
3098
|
+
'headers'?: {
|
|
3099
|
+
'request'?: {
|
|
3100
|
+
'set'?: any;
|
|
3101
|
+
'add'?: any;
|
|
3102
|
+
'remove'?: string[];
|
|
3103
|
+
};
|
|
3104
|
+
'response'?: {
|
|
3105
|
+
'set'?: any;
|
|
3106
|
+
'add'?: any;
|
|
3107
|
+
'remove'?: string[];
|
|
3108
|
+
};
|
|
3109
|
+
};
|
|
3110
|
+
/** Settings allowing for customization of CORS policies. */
|
|
3111
|
+
'corsPolicy'?: {
|
|
3112
|
+
'enabled': boolean;
|
|
3113
|
+
'allowOrigins'?: {
|
|
3114
|
+
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3115
|
+
'mode'?: 'prefix' | 'exact' | 'regex';
|
|
3116
|
+
'path'?: string;
|
|
3117
|
+
}[];
|
|
3118
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3119
|
+
'allowCredentials'?: boolean;
|
|
3120
|
+
'allowHeaders'?: string[];
|
|
3121
|
+
'maxAge'?: string;
|
|
3122
|
+
};
|
|
3123
|
+
/** Settings allowing for customization of retries. */
|
|
3124
|
+
'retries'?: {
|
|
3125
|
+
'enabled': boolean;
|
|
3126
|
+
'attempts': number;
|
|
3127
|
+
'perTryTimeout'?: string;
|
|
3128
|
+
};
|
|
3129
|
+
};
|
|
3130
|
+
/** time of creation */
|
|
3131
|
+
'createdAt'?: string;
|
|
3132
|
+
/** Data about the subdomain path assignment. */
|
|
3133
|
+
'assignment'?: {
|
|
3134
|
+
/** The ID of the service to assign the subdomain path to. Example: "default-project" */
|
|
3135
|
+
'project': string;
|
|
3136
|
+
/** The ID of the project the service belongs to. Example: "example-service" */
|
|
3137
|
+
'service': string;
|
|
3138
|
+
/** The name of the port that will be assigned to the subdomain path. Example: "p01" */
|
|
3139
|
+
'port': string;
|
|
3140
|
+
};
|
|
3141
|
+
} | any;
|
|
3142
|
+
type GetSubdomainPathCall = (opts: GetSubdomainPathRequest) => Promise<ApiCallResponse<GetSubdomainPathResult>>;
|
|
3143
|
+
type GetSubdomainPathRequest = {
|
|
3144
|
+
parameters: GetSubdomainPathParameters;
|
|
3145
|
+
};
|
|
3146
|
+
type GetSubdomainPathParameters = {
|
|
3147
|
+
/** Name of the domain */ 'domain': string;
|
|
3148
|
+
/** Name of the subdomain */
|
|
3149
|
+
'subdomain': string;
|
|
3150
|
+
/** Name of the path */
|
|
3151
|
+
'subdomainPath': string;
|
|
3152
|
+
};
|
|
3153
|
+
/** Get subdomain path details. */
|
|
3154
|
+
declare class GetSubdomainPathEndpoint extends GetApiEndpoint<GetSubdomainPathRequest, GetSubdomainPathResult> {
|
|
3155
|
+
description: string;
|
|
3156
|
+
withAuth: boolean;
|
|
3157
|
+
requiredPermissions: string;
|
|
3158
|
+
endpointUrl: (opts: GetSubdomainPathRequest) => string;
|
|
3159
|
+
body: () => undefined;
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
type DeleteSubdomainPathResult = any;
|
|
3163
|
+
type DeleteSubdomainPathCall = (opts: DeleteSubdomainPathRequest) => Promise<ApiCallResponse<DeleteSubdomainPathResult>>;
|
|
3164
|
+
type DeleteSubdomainPathRequest = {
|
|
3165
|
+
parameters: DeleteSubdomainPathParameters;
|
|
3166
|
+
};
|
|
3167
|
+
type DeleteSubdomainPathParameters = {
|
|
3168
|
+
/** Name of the domain */ 'domain': string;
|
|
3169
|
+
/** Name of the subdomain */
|
|
3170
|
+
'subdomain': string;
|
|
3171
|
+
/** Name of the path */
|
|
3172
|
+
'subdomainPath': string;
|
|
3173
|
+
};
|
|
3174
|
+
/** Delete a path. */
|
|
3175
|
+
declare class DeleteSubdomainPathEndpoint extends DeleteApiEndpoint<DeleteSubdomainPathRequest, DeleteSubdomainPathResult> {
|
|
3176
|
+
description: string;
|
|
3177
|
+
withAuth: boolean;
|
|
3178
|
+
requiredPermissions: string;
|
|
3179
|
+
endpointUrl: (opts: DeleteSubdomainPathRequest) => string;
|
|
3180
|
+
body: () => undefined;
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
type UpdateSubdomainPathResult = any;
|
|
3184
|
+
type UpdateSubdomainPathCall = (opts: UpdateSubdomainPathRequest) => Promise<ApiCallResponse<UpdateSubdomainPathResult>>;
|
|
3185
|
+
type UpdateSubdomainPathRequest = {
|
|
3186
|
+
parameters: UpdateSubdomainPathParameters;
|
|
3187
|
+
data: UpdateSubdomainPathData;
|
|
3188
|
+
};
|
|
3189
|
+
type UpdateSubdomainPathParameters = {
|
|
3190
|
+
/** Name of the domain */ 'domain': string;
|
|
3191
|
+
/** Name of the subdomain */
|
|
3192
|
+
'subdomain': string;
|
|
3193
|
+
/** Name of the path */
|
|
3194
|
+
'subdomainPath': string;
|
|
3195
|
+
};
|
|
3196
|
+
type UpdateSubdomainPathData = {
|
|
3197
|
+
'options'?: {
|
|
3198
|
+
/** In case of uri conflicts, the route with the higher priority will take precedence */
|
|
3199
|
+
'priority'?: number;
|
|
3200
|
+
/** Allows case insensitive matching for 'prefix' and 'exact' modes */
|
|
3201
|
+
'ignoreUriCase'?: boolean;
|
|
3202
|
+
/** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
|
|
3203
|
+
'rewrite'?: {
|
|
3204
|
+
'uri'?: string;
|
|
3205
|
+
} | {
|
|
3206
|
+
'regex'?: {
|
|
3207
|
+
/** Regex match for the given path */
|
|
3208
|
+
'match': string;
|
|
3209
|
+
/** Regex rewrite for the given matched path */
|
|
3210
|
+
'rewrite': string;
|
|
3211
|
+
};
|
|
3212
|
+
};
|
|
3213
|
+
/** Customised request timeout for the given path. */
|
|
3214
|
+
'timeout'?: string;
|
|
3215
|
+
/** Settings allowing addition, re-write and removal of request as well as response headers. */
|
|
3216
|
+
'headers'?: {
|
|
3217
|
+
'request'?: {
|
|
3218
|
+
'set'?: any;
|
|
3219
|
+
'add'?: any;
|
|
3220
|
+
'remove'?: string[];
|
|
3221
|
+
};
|
|
3222
|
+
'response'?: {
|
|
3223
|
+
'set'?: any;
|
|
3224
|
+
'add'?: any;
|
|
3225
|
+
'remove'?: string[];
|
|
3226
|
+
};
|
|
3227
|
+
};
|
|
3228
|
+
/** Settings allowing for customization of CORS policies. */
|
|
3229
|
+
'corsPolicy'?: {
|
|
3230
|
+
'enabled': boolean;
|
|
3231
|
+
'allowOrigins'?: {
|
|
3232
|
+
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3233
|
+
'mode'?: 'prefix' | 'exact' | 'regex';
|
|
3234
|
+
'path'?: string;
|
|
3235
|
+
}[];
|
|
3236
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3237
|
+
'allowCredentials'?: boolean;
|
|
3238
|
+
'allowHeaders'?: string[];
|
|
3239
|
+
'maxAge'?: string;
|
|
3240
|
+
};
|
|
3241
|
+
/** Settings allowing for customization of retries. */
|
|
3242
|
+
'retries'?: {
|
|
3243
|
+
'enabled': boolean;
|
|
3244
|
+
'attempts': number;
|
|
3245
|
+
'perTryTimeout'?: string;
|
|
3246
|
+
};
|
|
3247
|
+
};
|
|
3248
|
+
};
|
|
3249
|
+
/** Update a subdomain path. */
|
|
3250
|
+
declare class UpdateSubdomainPathEndpoint extends PostApiEndpoint<UpdateSubdomainPathRequest, UpdateSubdomainPathResult> {
|
|
3251
|
+
description: string;
|
|
3252
|
+
withAuth: boolean;
|
|
3253
|
+
requiredPermissions: string;
|
|
3254
|
+
endpointUrl: (opts: UpdateSubdomainPathRequest) => string;
|
|
3255
|
+
body: (payload: UpdateSubdomainPathRequest) => string;
|
|
3256
|
+
}
|
|
3257
|
+
|
|
3258
|
+
type AssignSubdomainPathResult = any;
|
|
3259
|
+
type AssignSubdomainPathCall = (opts: AssignSubdomainPathRequest) => Promise<ApiCallResponse<AssignSubdomainPathResult>>;
|
|
3260
|
+
type AssignSubdomainPathRequest = {
|
|
3261
|
+
parameters: AssignSubdomainPathParameters;
|
|
3262
|
+
data: AssignSubdomainPathData;
|
|
3263
|
+
};
|
|
3264
|
+
type AssignSubdomainPathParameters = {
|
|
3265
|
+
/** Name of the domain */ 'domain': string;
|
|
3266
|
+
/** Name of the subdomain */
|
|
3267
|
+
'subdomain': string;
|
|
3268
|
+
/** Name of the path */
|
|
3269
|
+
'subdomainPath': string;
|
|
3270
|
+
};
|
|
3271
|
+
type AssignSubdomainPathData = {
|
|
3272
|
+
/** Data about the subdomain path assignment. */
|
|
3273
|
+
'assignment': {
|
|
3274
|
+
/** The ID of the service to assign the subdomain path to. Example: "default-project" */
|
|
3275
|
+
'project': string;
|
|
3276
|
+
/** The ID of the project the service belongs to. Example: "example-service" */
|
|
3277
|
+
'service': string;
|
|
3278
|
+
/** The name of the port that will be assigned to the subdomain path. Example: "p01" */
|
|
3279
|
+
'port': string;
|
|
3280
|
+
};
|
|
3281
|
+
};
|
|
3282
|
+
/** Assign a subdomain path to a port. */
|
|
3283
|
+
declare class AssignSubdomainPathEndpoint extends PostApiEndpoint<AssignSubdomainPathRequest, AssignSubdomainPathResult> {
|
|
3284
|
+
description: string;
|
|
3285
|
+
withAuth: boolean;
|
|
3286
|
+
requiredPermissions: string;
|
|
3287
|
+
endpointUrl: (opts: AssignSubdomainPathRequest) => string;
|
|
3288
|
+
body: (payload: AssignSubdomainPathRequest) => string;
|
|
3289
|
+
}
|
|
3290
|
+
|
|
3291
|
+
type UnassignSubdomainPathResult = any;
|
|
3292
|
+
type UnassignSubdomainPathCall = (opts: UnassignSubdomainPathRequest) => Promise<ApiCallResponse<UnassignSubdomainPathResult>>;
|
|
3293
|
+
type UnassignSubdomainPathRequest = {
|
|
3294
|
+
parameters: UnassignSubdomainPathParameters;
|
|
3295
|
+
};
|
|
3296
|
+
type UnassignSubdomainPathParameters = {
|
|
3297
|
+
/** Name of the domain */ 'domain': string;
|
|
3298
|
+
/** Name of the subdomain */
|
|
3299
|
+
'subdomain': string;
|
|
3300
|
+
/** Name of the path */
|
|
3301
|
+
'subdomainPath': string;
|
|
3302
|
+
};
|
|
3303
|
+
/** Unassign a subdomain path to a port. */
|
|
3304
|
+
declare class UnassignSubdomainPathEndpoint extends DeleteApiEndpoint<UnassignSubdomainPathRequest, UnassignSubdomainPathResult> {
|
|
3305
|
+
description: string;
|
|
3306
|
+
withAuth: boolean;
|
|
3307
|
+
requiredPermissions: string;
|
|
3308
|
+
endpointUrl: (opts: UnassignSubdomainPathRequest) => string;
|
|
3309
|
+
body: () => undefined;
|
|
3310
|
+
}
|
|
3311
|
+
|
|
2776
3312
|
type VerifySubdomainResult = any | any;
|
|
2777
3313
|
type VerifySubdomainCall = (opts: VerifySubdomainRequest) => Promise<ApiCallResponse<VerifySubdomainResult>>;
|
|
2778
3314
|
type VerifySubdomainRequest = {
|
|
@@ -4079,7 +4615,7 @@ type ListVcsResult = {
|
|
|
4079
4615
|
/** The version control accounts linked to this Northflank account. */
|
|
4080
4616
|
'vcsAccountLinks': {
|
|
4081
4617
|
/** The type of version control provider the account is linked to. Example: "self-hosted" */
|
|
4082
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
4618
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
4083
4619
|
/** The email of the account linked with this provider. Example: "email@example.com" */
|
|
4084
4620
|
'email': string;
|
|
4085
4621
|
/** The username of the account linked with this provider. Example: "vcs-user" */
|
|
@@ -4109,7 +4645,7 @@ declare class ListVcsEndpoint extends GetApiEndpoint<ListVcsRequest, ListVcsResu
|
|
|
4109
4645
|
|
|
4110
4646
|
type CreateCustomvcsTokenResult = {
|
|
4111
4647
|
/** VCS provider the token belongs to. Example: "github" */
|
|
4112
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
4648
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
4113
4649
|
/** Installation ID of the GitHub installation the token belongs to (GitHub only) Example: 1234567 */
|
|
4114
4650
|
'installationId'?: number;
|
|
4115
4651
|
/** Installation token (GitHub only). Example: "ghs_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" */
|
|
@@ -4143,7 +4679,7 @@ type ListReposResult = {
|
|
|
4143
4679
|
/** A list of accessible repositories. */
|
|
4144
4680
|
'repos'?: {
|
|
4145
4681
|
/** Version control provider of the repository. Example: "github" */
|
|
4146
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
4682
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
4147
4683
|
/** If `vcsService` is `self-hosted`, the ID of the self-hosted provider. */
|
|
4148
4684
|
'selfHostedVcsId'?: string;
|
|
4149
4685
|
/** The ID of the repository from the version control provider. This is always returned from the Northflank API as a string for consistency across providers. This value is the numerical ID of a GitHub repository, the numerical ID of a GitLab project, or the UUID of a Bitbucket repository. Example: "123456789" */
|
|
@@ -4294,6 +4830,8 @@ declare class ListProjectsEndpoint extends GetApiEndpoint<ListProjectsRequest, L
|
|
|
4294
4830
|
}
|
|
4295
4831
|
|
|
4296
4832
|
type CreateProjectResult = {
|
|
4833
|
+
/** Identifier for the project Example: "example-project" */
|
|
4834
|
+
'id': string;
|
|
4297
4835
|
/** The name of the project. Example: "New Project" */
|
|
4298
4836
|
'name': string;
|
|
4299
4837
|
/** The description of the project. Example: "This is a new project." */
|
|
@@ -4302,15 +4840,37 @@ type CreateProjectResult = {
|
|
|
4302
4840
|
'color'?: string;
|
|
4303
4841
|
/** The region the project will be hosted in. Example: "europe-west" */
|
|
4304
4842
|
'region'?: string;
|
|
4305
|
-
} | {
|
|
4306
|
-
/** The name of the project. Example: "New Project" */
|
|
4307
|
-
'name': string;
|
|
4308
|
-
/** The description of the project. Example: "This is a new project." */
|
|
4309
|
-
'description'?: string;
|
|
4310
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
4311
|
-
'color'?: string;
|
|
4312
4843
|
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
4313
4844
|
'clusterId'?: string;
|
|
4845
|
+
/** Advanced project networking settings. */
|
|
4846
|
+
'networking'?: {
|
|
4847
|
+
/** Projects from which ingress request should be permitted. */
|
|
4848
|
+
'allowedIngressProjects'?: string[];
|
|
4849
|
+
/** Defines this project's tailscale sidecar settings */
|
|
4850
|
+
'tailscale'?: {
|
|
4851
|
+
/** Whether or not to inject a tailscale sidecar for this project's resources */
|
|
4852
|
+
'enabled'?: boolean;
|
|
4853
|
+
'restrictions'?: {
|
|
4854
|
+
/** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
|
|
4855
|
+
'enabled': boolean;
|
|
4856
|
+
/** The tags which determine whether tailscale sidecar should be added */
|
|
4857
|
+
'tags'?: string[];
|
|
4858
|
+
};
|
|
4859
|
+
'options'?: {
|
|
4860
|
+
'cpuLimit'?: string;
|
|
4861
|
+
'memoryLimit'?: string;
|
|
4862
|
+
};
|
|
4863
|
+
/** Relevant tailscale secrets */
|
|
4864
|
+
'secrets'?: {
|
|
4865
|
+
/** tailscale auth key which is required for enabling tailscale */
|
|
4866
|
+
'authKey'?: string;
|
|
4867
|
+
};
|
|
4868
|
+
};
|
|
4869
|
+
};
|
|
4870
|
+
/** time of creation Example: "2000-01-01T12:00:00.000Z" */
|
|
4871
|
+
'createdAt'?: string;
|
|
4872
|
+
/** time of update Example: "2000-01-01T12:00:00.000Z" */
|
|
4873
|
+
'updatedAt'?: string;
|
|
4314
4874
|
};
|
|
4315
4875
|
type CreateProjectCall = (opts: CreateProjectRequest) => Promise<ApiCallResponse<CreateProjectResult>>;
|
|
4316
4876
|
type CreateProjectRequest = {
|
|
@@ -4345,6 +4905,8 @@ declare class CreateProjectEndpoint extends PostApiEndpoint<CreateProjectRequest
|
|
|
4345
4905
|
}
|
|
4346
4906
|
|
|
4347
4907
|
type PutProjectResult = {
|
|
4908
|
+
/** Identifier for the project Example: "example-project" */
|
|
4909
|
+
'id': string;
|
|
4348
4910
|
/** The name of the project. Example: "New Project" */
|
|
4349
4911
|
'name': string;
|
|
4350
4912
|
/** The description of the project. Example: "This is a new project." */
|
|
@@ -4353,15 +4915,37 @@ type PutProjectResult = {
|
|
|
4353
4915
|
'color'?: string;
|
|
4354
4916
|
/** The region the project will be hosted in. Example: "europe-west" */
|
|
4355
4917
|
'region'?: string;
|
|
4356
|
-
} | {
|
|
4357
|
-
/** The name of the project. Example: "New Project" */
|
|
4358
|
-
'name': string;
|
|
4359
|
-
/** The description of the project. Example: "This is a new project." */
|
|
4360
|
-
'description'?: string;
|
|
4361
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
4362
|
-
'color'?: string;
|
|
4363
4918
|
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
4364
4919
|
'clusterId'?: string;
|
|
4920
|
+
/** Advanced project networking settings. */
|
|
4921
|
+
'networking'?: {
|
|
4922
|
+
/** Projects from which ingress request should be permitted. */
|
|
4923
|
+
'allowedIngressProjects'?: string[];
|
|
4924
|
+
/** Defines this project's tailscale sidecar settings */
|
|
4925
|
+
'tailscale'?: {
|
|
4926
|
+
/** Whether or not to inject a tailscale sidecar for this project's resources */
|
|
4927
|
+
'enabled'?: boolean;
|
|
4928
|
+
'restrictions'?: {
|
|
4929
|
+
/** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
|
|
4930
|
+
'enabled': boolean;
|
|
4931
|
+
/** The tags which determine whether tailscale sidecar should be added */
|
|
4932
|
+
'tags'?: string[];
|
|
4933
|
+
};
|
|
4934
|
+
'options'?: {
|
|
4935
|
+
'cpuLimit'?: string;
|
|
4936
|
+
'memoryLimit'?: string;
|
|
4937
|
+
};
|
|
4938
|
+
/** Relevant tailscale secrets */
|
|
4939
|
+
'secrets'?: {
|
|
4940
|
+
/** tailscale auth key which is required for enabling tailscale */
|
|
4941
|
+
'authKey'?: string;
|
|
4942
|
+
};
|
|
4943
|
+
};
|
|
4944
|
+
};
|
|
4945
|
+
/** time of creation Example: "2000-01-01T12:00:00.000Z" */
|
|
4946
|
+
'createdAt'?: string;
|
|
4947
|
+
/** time of update Example: "2000-01-01T12:00:00.000Z" */
|
|
4948
|
+
'updatedAt'?: string;
|
|
4365
4949
|
};
|
|
4366
4950
|
type PutProjectCall = (opts: PutProjectRequest) => Promise<ApiCallResponse<PutProjectResult>>;
|
|
4367
4951
|
type PutProjectRequest = {
|
|
@@ -4396,6 +4980,8 @@ declare class PutProjectEndpoint extends PutApiEndpoint<PutProjectRequest, PutPr
|
|
|
4396
4980
|
}
|
|
4397
4981
|
|
|
4398
4982
|
type PatchProjectResult = {
|
|
4983
|
+
/** Identifier for the project Example: "example-project" */
|
|
4984
|
+
'id': string;
|
|
4399
4985
|
/** The name of the project. Example: "New Project" */
|
|
4400
4986
|
'name': string;
|
|
4401
4987
|
/** The description of the project. Example: "This is a new project." */
|
|
@@ -4404,15 +4990,37 @@ type PatchProjectResult = {
|
|
|
4404
4990
|
'color'?: string;
|
|
4405
4991
|
/** The region the project will be hosted in. Example: "europe-west" */
|
|
4406
4992
|
'region'?: string;
|
|
4407
|
-
} | {
|
|
4408
|
-
/** The name of the project. Example: "New Project" */
|
|
4409
|
-
'name': string;
|
|
4410
|
-
/** The description of the project. Example: "This is a new project." */
|
|
4411
|
-
'description'?: string;
|
|
4412
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
4413
|
-
'color'?: string;
|
|
4414
4993
|
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
4415
4994
|
'clusterId'?: string;
|
|
4995
|
+
/** Advanced project networking settings. */
|
|
4996
|
+
'networking'?: {
|
|
4997
|
+
/** Projects from which ingress request should be permitted. */
|
|
4998
|
+
'allowedIngressProjects'?: string[];
|
|
4999
|
+
/** Defines this project's tailscale sidecar settings */
|
|
5000
|
+
'tailscale'?: {
|
|
5001
|
+
/** Whether or not to inject a tailscale sidecar for this project's resources */
|
|
5002
|
+
'enabled'?: boolean;
|
|
5003
|
+
'restrictions'?: {
|
|
5004
|
+
/** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
|
|
5005
|
+
'enabled': boolean;
|
|
5006
|
+
/** The tags which determine whether tailscale sidecar should be added */
|
|
5007
|
+
'tags'?: string[];
|
|
5008
|
+
};
|
|
5009
|
+
'options'?: {
|
|
5010
|
+
'cpuLimit'?: string;
|
|
5011
|
+
'memoryLimit'?: string;
|
|
5012
|
+
};
|
|
5013
|
+
/** Relevant tailscale secrets */
|
|
5014
|
+
'secrets'?: {
|
|
5015
|
+
/** tailscale auth key which is required for enabling tailscale */
|
|
5016
|
+
'authKey'?: string;
|
|
5017
|
+
};
|
|
5018
|
+
};
|
|
5019
|
+
};
|
|
5020
|
+
/** time of creation Example: "2000-01-01T12:00:00.000Z" */
|
|
5021
|
+
'createdAt'?: string;
|
|
5022
|
+
/** time of update Example: "2000-01-01T12:00:00.000Z" */
|
|
5023
|
+
'updatedAt'?: string;
|
|
4416
5024
|
};
|
|
4417
5025
|
type PatchProjectCall = (opts: PatchProjectRequest) => Promise<ApiCallResponse<PatchProjectResult>>;
|
|
4418
5026
|
type PatchProjectRequest = {
|
|
@@ -4637,10 +5245,14 @@ type CreateAddonResult = {
|
|
|
4637
5245
|
'appId': string;
|
|
4638
5246
|
/** The current state of the addon. Example: "running" */
|
|
4639
5247
|
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
'
|
|
5248
|
+
/** Cluster information */
|
|
5249
|
+
'cluster': {
|
|
5250
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
5251
|
+
'id': string;
|
|
5252
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
5253
|
+
'name': string;
|
|
5254
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
5255
|
+
'namespace'?: string;
|
|
4644
5256
|
};
|
|
4645
5257
|
/** time of creation */
|
|
4646
5258
|
'createdAt'?: string;
|
|
@@ -4835,10 +5447,14 @@ type PutAddonResult = {
|
|
|
4835
5447
|
'appId': string;
|
|
4836
5448
|
/** The current state of the addon. Example: "running" */
|
|
4837
5449
|
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
|
|
4838
|
-
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
'
|
|
5450
|
+
/** Cluster information */
|
|
5451
|
+
'cluster': {
|
|
5452
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
5453
|
+
'id': string;
|
|
5454
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
5455
|
+
'name': string;
|
|
5456
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
5457
|
+
'namespace'?: string;
|
|
4842
5458
|
};
|
|
4843
5459
|
/** time of creation */
|
|
4844
5460
|
'createdAt'?: string;
|
|
@@ -5115,10 +5731,14 @@ type PatchAddonResult = {
|
|
|
5115
5731
|
'appId': string;
|
|
5116
5732
|
/** The current state of the addon. Example: "running" */
|
|
5117
5733
|
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
'
|
|
5734
|
+
/** Cluster information */
|
|
5735
|
+
'cluster': {
|
|
5736
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
5737
|
+
'id': string;
|
|
5738
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
5739
|
+
'name': string;
|
|
5740
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
5741
|
+
'namespace'?: string;
|
|
5122
5742
|
};
|
|
5123
5743
|
/** time of creation */
|
|
5124
5744
|
'createdAt'?: string;
|
|
@@ -6286,7 +6906,7 @@ type CreateJobCronResult = {
|
|
|
6286
6906
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
6287
6907
|
'projectUrl': string;
|
|
6288
6908
|
/** The VCS provider to use. Example: "github" */
|
|
6289
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
6909
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
6290
6910
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
6291
6911
|
'selfHostedVcsId'?: string;
|
|
6292
6912
|
/** 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" */
|
|
@@ -6340,7 +6960,7 @@ type CreateJobCronResult = {
|
|
|
6340
6960
|
};
|
|
6341
6961
|
};
|
|
6342
6962
|
'buildpack': {
|
|
6343
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
6963
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
6344
6964
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
6345
6965
|
/** Array of custom Buildpacks to use. */
|
|
6346
6966
|
'buildpackLocators'?: string[];
|
|
@@ -6360,10 +6980,14 @@ type CreateJobCronResult = {
|
|
|
6360
6980
|
'lastTransitionTime'?: string;
|
|
6361
6981
|
};
|
|
6362
6982
|
};
|
|
6363
|
-
|
|
6364
|
-
|
|
6365
|
-
|
|
6366
|
-
'
|
|
6983
|
+
/** Cluster information */
|
|
6984
|
+
'cluster': {
|
|
6985
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
6986
|
+
'id': string;
|
|
6987
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
6988
|
+
'name': string;
|
|
6989
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
6990
|
+
'namespace'?: string;
|
|
6367
6991
|
};
|
|
6368
6992
|
/** time of creation */
|
|
6369
6993
|
'createdAt'?: string;
|
|
@@ -6447,7 +7071,7 @@ type CreateJobCronData = {
|
|
|
6447
7071
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
6448
7072
|
'projectUrl': string;
|
|
6449
7073
|
/** The VCS provider to use. Example: "github" */
|
|
6450
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
7074
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
6451
7075
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
6452
7076
|
'selfHostedVcsId'?: string;
|
|
6453
7077
|
/** 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" */
|
|
@@ -6600,7 +7224,7 @@ type CreateJobCronData = {
|
|
|
6600
7224
|
};
|
|
6601
7225
|
};
|
|
6602
7226
|
'buildpack': {
|
|
6603
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
7227
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
6604
7228
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
6605
7229
|
/** Array of custom Buildpacks to use. */
|
|
6606
7230
|
'buildpackLocators'?: string[];
|
|
@@ -6793,7 +7417,7 @@ type PutJobCronResult = {
|
|
|
6793
7417
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
6794
7418
|
'projectUrl': string;
|
|
6795
7419
|
/** The VCS provider to use. Example: "github" */
|
|
6796
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
7420
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
6797
7421
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
6798
7422
|
'selfHostedVcsId'?: string;
|
|
6799
7423
|
/** 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" */
|
|
@@ -6847,7 +7471,7 @@ type PutJobCronResult = {
|
|
|
6847
7471
|
};
|
|
6848
7472
|
};
|
|
6849
7473
|
'buildpack': {
|
|
6850
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
7474
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
6851
7475
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
6852
7476
|
/** Array of custom Buildpacks to use. */
|
|
6853
7477
|
'buildpackLocators'?: string[];
|
|
@@ -6867,10 +7491,14 @@ type PutJobCronResult = {
|
|
|
6867
7491
|
'lastTransitionTime'?: string;
|
|
6868
7492
|
};
|
|
6869
7493
|
};
|
|
6870
|
-
|
|
6871
|
-
|
|
6872
|
-
|
|
6873
|
-
'
|
|
7494
|
+
/** Cluster information */
|
|
7495
|
+
'cluster': {
|
|
7496
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
7497
|
+
'id': string;
|
|
7498
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
7499
|
+
'name': string;
|
|
7500
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
7501
|
+
'namespace'?: string;
|
|
6874
7502
|
};
|
|
6875
7503
|
/** time of creation */
|
|
6876
7504
|
'createdAt'?: string;
|
|
@@ -6954,7 +7582,7 @@ type PutJobCronData = {
|
|
|
6954
7582
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
6955
7583
|
'projectUrl': string;
|
|
6956
7584
|
/** The VCS provider to use. Example: "github" */
|
|
6957
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
7585
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
6958
7586
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
6959
7587
|
'selfHostedVcsId'?: string;
|
|
6960
7588
|
/** 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" */
|
|
@@ -7107,7 +7735,7 @@ type PutJobCronData = {
|
|
|
7107
7735
|
};
|
|
7108
7736
|
};
|
|
7109
7737
|
'buildpack': {
|
|
7110
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
7738
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
7111
7739
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
7112
7740
|
/** Array of custom Buildpacks to use. */
|
|
7113
7741
|
'buildpackLocators'?: string[];
|
|
@@ -7300,7 +7928,7 @@ type PatchJobCronResult = {
|
|
|
7300
7928
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
7301
7929
|
'projectUrl': string;
|
|
7302
7930
|
/** The VCS provider to use. Example: "github" */
|
|
7303
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
7931
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
7304
7932
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
7305
7933
|
'selfHostedVcsId'?: string;
|
|
7306
7934
|
/** 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" */
|
|
@@ -7354,7 +7982,7 @@ type PatchJobCronResult = {
|
|
|
7354
7982
|
};
|
|
7355
7983
|
};
|
|
7356
7984
|
'buildpack': {
|
|
7357
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
7985
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
7358
7986
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
7359
7987
|
/** Array of custom Buildpacks to use. */
|
|
7360
7988
|
'buildpackLocators'?: string[];
|
|
@@ -7374,10 +8002,14 @@ type PatchJobCronResult = {
|
|
|
7374
8002
|
'lastTransitionTime'?: string;
|
|
7375
8003
|
};
|
|
7376
8004
|
};
|
|
7377
|
-
|
|
7378
|
-
|
|
7379
|
-
|
|
7380
|
-
'
|
|
8005
|
+
/** Cluster information */
|
|
8006
|
+
'cluster': {
|
|
8007
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
8008
|
+
'id': string;
|
|
8009
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
8010
|
+
'name': string;
|
|
8011
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
8012
|
+
'namespace'?: string;
|
|
7381
8013
|
};
|
|
7382
8014
|
/** time of creation */
|
|
7383
8015
|
'createdAt'?: string;
|
|
@@ -7443,34 +8075,6 @@ type PatchJobCronData = {
|
|
|
7443
8075
|
};
|
|
7444
8076
|
};
|
|
7445
8077
|
};
|
|
7446
|
-
'buildSettings'?: {
|
|
7447
|
-
'storage'?: {
|
|
7448
|
-
'ephemeralStorage'?: {
|
|
7449
|
-
/** Ephemeral storage per build in MB Example: 16384 */
|
|
7450
|
-
'storageSize'?: number;
|
|
7451
|
-
};
|
|
7452
|
-
};
|
|
7453
|
-
'dockerfile'?: {
|
|
7454
|
-
/** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
|
|
7455
|
-
'buildEngine'?: 'kaniko' | 'buildkit';
|
|
7456
|
-
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
7457
|
-
'dockerFilePath'?: string;
|
|
7458
|
-
/** The working directory of the Dockerfile. Example: "/" */
|
|
7459
|
-
'dockerWorkDir'?: string;
|
|
7460
|
-
/** Should intermediate image layers be cached? */
|
|
7461
|
-
'useCache'?: boolean;
|
|
7462
|
-
};
|
|
7463
|
-
'buildpack'?: {
|
|
7464
|
-
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
|
|
7465
|
-
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
7466
|
-
/** Array of custom Buildpacks to use. */
|
|
7467
|
-
'buildpackLocators'?: string[];
|
|
7468
|
-
/** The working directory to build in. Example: "/" */
|
|
7469
|
-
'buildContext'?: string;
|
|
7470
|
-
/** Should build dependencies be cached? */
|
|
7471
|
-
'useCache'?: boolean;
|
|
7472
|
-
};
|
|
7473
|
-
};
|
|
7474
8078
|
/** An object containing the runtime environment to set for the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"variable1":"abcdef","variable2":"12345"} */
|
|
7475
8079
|
'runtimeEnvironment'?: any;
|
|
7476
8080
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
@@ -7646,7 +8250,7 @@ type CreateJobManualResult = {
|
|
|
7646
8250
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
7647
8251
|
'projectUrl': string;
|
|
7648
8252
|
/** The VCS provider to use. Example: "github" */
|
|
7649
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
8253
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
7650
8254
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
7651
8255
|
'selfHostedVcsId'?: string;
|
|
7652
8256
|
/** 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" */
|
|
@@ -7700,7 +8304,7 @@ type CreateJobManualResult = {
|
|
|
7700
8304
|
};
|
|
7701
8305
|
};
|
|
7702
8306
|
'buildpack': {
|
|
7703
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
8307
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
7704
8308
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
7705
8309
|
/** Array of custom Buildpacks to use. */
|
|
7706
8310
|
'buildpackLocators'?: string[];
|
|
@@ -7720,10 +8324,14 @@ type CreateJobManualResult = {
|
|
|
7720
8324
|
'lastTransitionTime'?: string;
|
|
7721
8325
|
};
|
|
7722
8326
|
};
|
|
7723
|
-
|
|
7724
|
-
|
|
7725
|
-
|
|
7726
|
-
'
|
|
8327
|
+
/** Cluster information */
|
|
8328
|
+
'cluster': {
|
|
8329
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
8330
|
+
'id': string;
|
|
8331
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
8332
|
+
'name': string;
|
|
8333
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
8334
|
+
'namespace'?: string;
|
|
7727
8335
|
};
|
|
7728
8336
|
/** time of creation */
|
|
7729
8337
|
'createdAt'?: string;
|
|
@@ -7807,7 +8415,7 @@ type CreateJobManualData = {
|
|
|
7807
8415
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
7808
8416
|
'projectUrl': string;
|
|
7809
8417
|
/** The VCS provider to use. Example: "github" */
|
|
7810
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
8418
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
7811
8419
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
7812
8420
|
'selfHostedVcsId'?: string;
|
|
7813
8421
|
/** 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" */
|
|
@@ -7960,7 +8568,7 @@ type CreateJobManualData = {
|
|
|
7960
8568
|
};
|
|
7961
8569
|
};
|
|
7962
8570
|
'buildpack': {
|
|
7963
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
8571
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
7964
8572
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
7965
8573
|
/** Array of custom Buildpacks to use. */
|
|
7966
8574
|
'buildpackLocators'?: string[];
|
|
@@ -8141,7 +8749,7 @@ type PutJobManualResult = {
|
|
|
8141
8749
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
8142
8750
|
'projectUrl': string;
|
|
8143
8751
|
/** The VCS provider to use. Example: "github" */
|
|
8144
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
8752
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
8145
8753
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
8146
8754
|
'selfHostedVcsId'?: string;
|
|
8147
8755
|
/** 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" */
|
|
@@ -8195,7 +8803,7 @@ type PutJobManualResult = {
|
|
|
8195
8803
|
};
|
|
8196
8804
|
};
|
|
8197
8805
|
'buildpack': {
|
|
8198
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
8806
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
8199
8807
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
8200
8808
|
/** Array of custom Buildpacks to use. */
|
|
8201
8809
|
'buildpackLocators'?: string[];
|
|
@@ -8215,10 +8823,14 @@ type PutJobManualResult = {
|
|
|
8215
8823
|
'lastTransitionTime'?: string;
|
|
8216
8824
|
};
|
|
8217
8825
|
};
|
|
8218
|
-
|
|
8219
|
-
|
|
8220
|
-
|
|
8221
|
-
'
|
|
8826
|
+
/** Cluster information */
|
|
8827
|
+
'cluster': {
|
|
8828
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
8829
|
+
'id': string;
|
|
8830
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
8831
|
+
'name': string;
|
|
8832
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
8833
|
+
'namespace'?: string;
|
|
8222
8834
|
};
|
|
8223
8835
|
/** time of creation */
|
|
8224
8836
|
'createdAt'?: string;
|
|
@@ -8302,7 +8914,7 @@ type PutJobManualData = {
|
|
|
8302
8914
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
8303
8915
|
'projectUrl': string;
|
|
8304
8916
|
/** The VCS provider to use. Example: "github" */
|
|
8305
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
8917
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
8306
8918
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
8307
8919
|
'selfHostedVcsId'?: string;
|
|
8308
8920
|
/** 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" */
|
|
@@ -8455,7 +9067,7 @@ type PutJobManualData = {
|
|
|
8455
9067
|
};
|
|
8456
9068
|
};
|
|
8457
9069
|
'buildpack': {
|
|
8458
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
9070
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
8459
9071
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
8460
9072
|
/** Array of custom Buildpacks to use. */
|
|
8461
9073
|
'buildpackLocators'?: string[];
|
|
@@ -8636,7 +9248,7 @@ type PatchJobManualResult = {
|
|
|
8636
9248
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
8637
9249
|
'projectUrl': string;
|
|
8638
9250
|
/** The VCS provider to use. Example: "github" */
|
|
8639
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
9251
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
8640
9252
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
8641
9253
|
'selfHostedVcsId'?: string;
|
|
8642
9254
|
/** 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" */
|
|
@@ -8690,7 +9302,7 @@ type PatchJobManualResult = {
|
|
|
8690
9302
|
};
|
|
8691
9303
|
};
|
|
8692
9304
|
'buildpack': {
|
|
8693
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
9305
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
8694
9306
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
8695
9307
|
/** Array of custom Buildpacks to use. */
|
|
8696
9308
|
'buildpackLocators'?: string[];
|
|
@@ -8710,10 +9322,14 @@ type PatchJobManualResult = {
|
|
|
8710
9322
|
'lastTransitionTime'?: string;
|
|
8711
9323
|
};
|
|
8712
9324
|
};
|
|
8713
|
-
|
|
8714
|
-
|
|
8715
|
-
|
|
8716
|
-
'
|
|
9325
|
+
/** Cluster information */
|
|
9326
|
+
'cluster': {
|
|
9327
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
9328
|
+
'id': string;
|
|
9329
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
9330
|
+
'name': string;
|
|
9331
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
9332
|
+
'namespace'?: string;
|
|
8717
9333
|
};
|
|
8718
9334
|
/** time of creation */
|
|
8719
9335
|
'createdAt'?: string;
|
|
@@ -8779,34 +9395,6 @@ type PatchJobManualData = {
|
|
|
8779
9395
|
};
|
|
8780
9396
|
};
|
|
8781
9397
|
};
|
|
8782
|
-
'buildSettings'?: {
|
|
8783
|
-
'storage'?: {
|
|
8784
|
-
'ephemeralStorage'?: {
|
|
8785
|
-
/** Ephemeral storage per build in MB Example: 16384 */
|
|
8786
|
-
'storageSize'?: number;
|
|
8787
|
-
};
|
|
8788
|
-
};
|
|
8789
|
-
'dockerfile'?: {
|
|
8790
|
-
/** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
|
|
8791
|
-
'buildEngine'?: 'kaniko' | 'buildkit';
|
|
8792
|
-
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
8793
|
-
'dockerFilePath'?: string;
|
|
8794
|
-
/** The working directory of the Dockerfile. Example: "/" */
|
|
8795
|
-
'dockerWorkDir'?: string;
|
|
8796
|
-
/** Should intermediate image layers be cached? */
|
|
8797
|
-
'useCache'?: boolean;
|
|
8798
|
-
};
|
|
8799
|
-
'buildpack'?: {
|
|
8800
|
-
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
|
|
8801
|
-
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
8802
|
-
/** Array of custom Buildpacks to use. */
|
|
8803
|
-
'buildpackLocators'?: string[];
|
|
8804
|
-
/** The working directory to build in. Example: "/" */
|
|
8805
|
-
'buildContext'?: string;
|
|
8806
|
-
/** Should build dependencies be cached? */
|
|
8807
|
-
'useCache'?: boolean;
|
|
8808
|
-
};
|
|
8809
|
-
};
|
|
8810
9398
|
/** An object containing the runtime environment to set for the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"variable1":"abcdef","variable2":"12345"} */
|
|
8811
9399
|
'runtimeEnvironment'?: any;
|
|
8812
9400
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
@@ -8869,7 +9457,7 @@ type GetJobResult = {
|
|
|
8869
9457
|
/** URL of the repository being built Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
8870
9458
|
'projectUrl': string;
|
|
8871
9459
|
/** VCS provider for the repo being built Example: "github" */
|
|
8872
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
9460
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
8873
9461
|
/** ID of the self-hosted VCS, if applicable. Example: "example-team/self-hosted-vcs" */
|
|
8874
9462
|
'selfHostedVcsId'?: string;
|
|
8875
9463
|
/** Branch of the repo being built Example: "master" */
|
|
@@ -8909,7 +9497,7 @@ type GetJobResult = {
|
|
|
8909
9497
|
'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
|
|
8910
9498
|
/** Details about Buildpack settings. */
|
|
8911
9499
|
'buildpack'?: {
|
|
8912
|
-
/** The Buildpack stack used. Example: "
|
|
9500
|
+
/** The Buildpack stack used. Example: "HEROKU_22" */
|
|
8913
9501
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
8914
9502
|
/** Array of custom Buildpacks used. */
|
|
8915
9503
|
'buildpackLocators'?: string[];
|
|
@@ -9197,6 +9785,8 @@ type GetJobBuildargumentsParameters = {
|
|
|
9197
9785
|
type GetJobBuildargumentsOptions = {
|
|
9198
9786
|
/** Which secrets to display - if set to `this` only the group's secrets are displayed, if set to `inherited` only secrets from linked addons are displayed, if set to `all` or not provided, both are displayed. */
|
|
9199
9787
|
'show'?: string;
|
|
9788
|
+
/** If templated secrets should be replaced with their inferred value rather than returned as template strings. */
|
|
9789
|
+
'replaceTemplatedValues'?: string;
|
|
9200
9790
|
};
|
|
9201
9791
|
/** Gets the build arguments of the given job. If the API key does not have the permission 'Project > Secrets > General > Read', secrets inherited from secret groups will not be displayed. */
|
|
9202
9792
|
declare class GetJobBuildargumentsEndpoint extends GetApiEndpoint<GetJobBuildargumentsRequest, GetJobBuildargumentsResult> {
|
|
@@ -9349,7 +9939,7 @@ type UpdateJobBuildoptionsData = {
|
|
|
9349
9939
|
};
|
|
9350
9940
|
} | {
|
|
9351
9941
|
'buildpack': {
|
|
9352
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
9942
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
9353
9943
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
9354
9944
|
/** Array of custom buildpacks to use. */
|
|
9355
9945
|
'buildpackLocators'?: string[];
|
|
@@ -9413,7 +10003,7 @@ type UpdateJobBuildsourceData = {
|
|
|
9413
10003
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
9414
10004
|
'projectUrl'?: string;
|
|
9415
10005
|
/** The VCS provider to use. Example: "github" */
|
|
9416
|
-
'projectType'?: 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
10006
|
+
'projectType'?: 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
9417
10007
|
/** The name of the branch to use. Example: "master" */
|
|
9418
10008
|
'projectBranch'?: string;
|
|
9419
10009
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
@@ -9995,6 +10585,8 @@ type StartJobRunParameters = {
|
|
|
9995
10585
|
type StartJobRunData = {
|
|
9996
10586
|
/** An object containing the environment variables overrides to use when running the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
9997
10587
|
'runtimeEnvironment'?: any;
|
|
10588
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
10589
|
+
'runtimeFiles'?: any;
|
|
9998
10590
|
'billing'?: {
|
|
9999
10591
|
/** The ID of the deployment plan override to use. Example: "nf-compute-20" */
|
|
10000
10592
|
'deploymentPlan'?: string;
|
|
@@ -10170,6 +10762,8 @@ type GetJobRuntimeenvironmentParameters = {
|
|
|
10170
10762
|
type GetJobRuntimeenvironmentOptions = {
|
|
10171
10763
|
/** Which secrets to display - if set to `this` only the group's secrets are displayed, if set to `inherited` only secrets from linked addons are displayed, if set to `all` or not provided, both are displayed. */
|
|
10172
10764
|
'show'?: string;
|
|
10765
|
+
/** If templated secrets should be replaced with their inferred value rather than returned as template strings. */
|
|
10766
|
+
'replaceTemplatedValues'?: string;
|
|
10173
10767
|
};
|
|
10174
10768
|
/** Returns the runtime environment for the given job. If the API key does not have the permission 'Project > Secrets > General > Read', secrets inherited from secret groups will not be displayed. */
|
|
10175
10769
|
declare class GetJobRuntimeenvironmentEndpoint extends GetApiEndpoint<GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult> {
|
|
@@ -10410,6 +11004,8 @@ type GetPipelineResult = {
|
|
|
10410
11004
|
'name': string;
|
|
10411
11005
|
/** A description of the pipeline. */
|
|
10412
11006
|
'description'?: string;
|
|
11007
|
+
'preview'?: any;
|
|
11008
|
+
'stages'?: any[];
|
|
10413
11009
|
/** A list of services, jobs and addons to include in the pipeline. */
|
|
10414
11010
|
'nfObjects'?: {
|
|
10415
11011
|
/** The ID of the service, job or addon to include in the pipeline. */
|
|
@@ -10440,14 +11036,14 @@ declare class GetPipelineEndpoint extends GetApiEndpoint<GetPipelineRequest, Get
|
|
|
10440
11036
|
|
|
10441
11037
|
type GetPreviewtemplateResult = {
|
|
10442
11038
|
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
10443
|
-
'apiVersion': 'v1';
|
|
10444
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'.
|
|
11039
|
+
'apiVersion': 'v1.1';
|
|
11040
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
10445
11041
|
'arguments'?: any;
|
|
10446
11042
|
'triggers'?: {
|
|
10447
11043
|
/** A reference that can be used to access the output of this trigger in the template. */
|
|
10448
11044
|
'ref'?: string;
|
|
10449
11045
|
/** The VCS provider to use. Example: "github" */
|
|
10450
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
11046
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
10451
11047
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
10452
11048
|
'selfHostedVcsId'?: string;
|
|
10453
11049
|
/** 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" */
|
|
@@ -10516,8 +11112,8 @@ type UpdatePreviewtemplateParameters = {
|
|
|
10516
11112
|
};
|
|
10517
11113
|
type UpdatePreviewtemplateData = {
|
|
10518
11114
|
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
10519
|
-
'apiVersion': 'v1';
|
|
10520
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'.
|
|
11115
|
+
'apiVersion': 'v1.1';
|
|
11116
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
10521
11117
|
'arguments'?: any;
|
|
10522
11118
|
'spec': any;
|
|
10523
11119
|
/** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
|
|
@@ -10526,7 +11122,7 @@ type UpdatePreviewtemplateData = {
|
|
|
10526
11122
|
/** A reference that can be used to access the output of this trigger in the template. */
|
|
10527
11123
|
'ref'?: string;
|
|
10528
11124
|
/** The VCS provider to use. Example: "github" */
|
|
10529
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
11125
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
10530
11126
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
10531
11127
|
'selfHostedVcsId'?: string;
|
|
10532
11128
|
/** 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" */
|
|
@@ -10627,7 +11223,7 @@ type ListPreviewtemplaterunsResult = {
|
|
|
10627
11223
|
/** An array of template run objects. */
|
|
10628
11224
|
'previewTemplateRuns': {
|
|
10629
11225
|
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
10630
|
-
'apiVersion': 'v1';
|
|
11226
|
+
'apiVersion': 'v1.1';
|
|
10631
11227
|
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
10632
11228
|
'id': string;
|
|
10633
11229
|
/** Identifier for the template Example: "example-template" */
|
|
@@ -10669,14 +11265,14 @@ declare class ListPreviewtemplaterunsEndpoint extends GetApiEndpoint<ListPreview
|
|
|
10669
11265
|
|
|
10670
11266
|
type GetPreviewtemplaterunResult = {
|
|
10671
11267
|
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
10672
|
-
'apiVersion': 'v1';
|
|
10673
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'.
|
|
11268
|
+
'apiVersion': 'v1.1';
|
|
11269
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
10674
11270
|
'arguments'?: any;
|
|
10675
11271
|
'triggers'?: {
|
|
10676
11272
|
/** A reference that can be used to access the output of this trigger in the template. */
|
|
10677
11273
|
'ref'?: string;
|
|
10678
11274
|
/** The VCS provider to use. Example: "github" */
|
|
10679
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
11275
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
10680
11276
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
10681
11277
|
'selfHostedVcsId'?: string;
|
|
10682
11278
|
/** 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" */
|
|
@@ -10729,9 +11325,29 @@ declare class GetPreviewtemplaterunEndpoint extends GetApiEndpoint<GetPreviewtem
|
|
|
10729
11325
|
|
|
10730
11326
|
type GetReleaseflowResult = {
|
|
10731
11327
|
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
10732
|
-
'apiVersion': 'v1';
|
|
10733
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'.
|
|
11328
|
+
'apiVersion': 'v1.1';
|
|
11329
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
10734
11330
|
'arguments'?: any;
|
|
11331
|
+
'triggers'?: {
|
|
11332
|
+
/** A reference that can be used to access the output of this trigger in the template. */
|
|
11333
|
+
'ref'?: string;
|
|
11334
|
+
/** The VCS provider to use. Example: "github" */
|
|
11335
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
11336
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
11337
|
+
'selfHostedVcsId'?: string;
|
|
11338
|
+
/** 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" */
|
|
11339
|
+
'accountLogin'?: string;
|
|
11340
|
+
/** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
11341
|
+
'repoUrl': string;
|
|
11342
|
+
'branchRestrictions'?: string[];
|
|
11343
|
+
'prRestrictions'?: string[];
|
|
11344
|
+
'pathIgnoreRules'?: string[];
|
|
11345
|
+
'ciIgnoreFlags'?: string[];
|
|
11346
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
11347
|
+
'isAllowList'?: boolean;
|
|
11348
|
+
}[];
|
|
11349
|
+
/** An array of rich UI override inputs for the Release Flow template. */
|
|
11350
|
+
'richInputs'?: any[];
|
|
10735
11351
|
'spec': any;
|
|
10736
11352
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
10737
11353
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
@@ -10781,10 +11397,30 @@ type UpdateReleaseflowParameters = {
|
|
|
10781
11397
|
};
|
|
10782
11398
|
type UpdateReleaseflowData = {
|
|
10783
11399
|
'content': {
|
|
10784
|
-
/**
|
|
10785
|
-
'apiVersion': 'v1';
|
|
10786
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
11400
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
10787
11401
|
'arguments'?: any;
|
|
11402
|
+
'triggers'?: {
|
|
11403
|
+
/** A reference that can be used to access the output of this trigger in the template. */
|
|
11404
|
+
'ref'?: string;
|
|
11405
|
+
/** The VCS provider to use. Example: "github" */
|
|
11406
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
11407
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
11408
|
+
'selfHostedVcsId'?: string;
|
|
11409
|
+
/** 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" */
|
|
11410
|
+
'accountLogin'?: string;
|
|
11411
|
+
/** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
11412
|
+
'repoUrl': string;
|
|
11413
|
+
'branchRestrictions'?: string[];
|
|
11414
|
+
'prRestrictions'?: string[];
|
|
11415
|
+
'pathIgnoreRules'?: string[];
|
|
11416
|
+
'ciIgnoreFlags'?: string[];
|
|
11417
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
11418
|
+
'isAllowList'?: boolean;
|
|
11419
|
+
}[];
|
|
11420
|
+
/** An array of rich UI override inputs for the Release Flow template. */
|
|
11421
|
+
'richInputs'?: any[];
|
|
11422
|
+
'apiVersion': string;
|
|
11423
|
+
'project'?: any;
|
|
10788
11424
|
'spec': any;
|
|
10789
11425
|
};
|
|
10790
11426
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
@@ -10819,7 +11455,7 @@ type RunReleaseflowData = {
|
|
|
10819
11455
|
'name'?: string;
|
|
10820
11456
|
/** The optional description of the release-flow run. Example: "This is a description for the release-flow run." */
|
|
10821
11457
|
'description'?: string;
|
|
10822
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
11458
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARG_1":"value"} */
|
|
10823
11459
|
'arguments'?: any;
|
|
10824
11460
|
/** Overrides for specific reference values. This should be an object where each key corresponds to a ref defined in the template. The values of each of these keys should also be an object, where each key value pair provided will overwrite the value for that key in the given ref. For example, the value `{ 'example-ref': { 'branch': 'devel' } }` would set the `branch` field to `devel` for the node with ref `example-ref`. Example: {"example-ref":{"branch":"devel"}} */
|
|
10825
11461
|
'overrides'?: any;
|
|
@@ -10889,9 +11525,27 @@ declare class ListReleaseflowrunsEndpoint extends GetApiEndpoint<ListReleaseflow
|
|
|
10889
11525
|
|
|
10890
11526
|
type GetReleaseflowrunResult = {
|
|
10891
11527
|
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
10892
|
-
'apiVersion': 'v1';
|
|
10893
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'.
|
|
11528
|
+
'apiVersion': 'v1.1';
|
|
11529
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
10894
11530
|
'arguments'?: any;
|
|
11531
|
+
'triggers'?: {
|
|
11532
|
+
/** A reference that can be used to access the output of this trigger in the template. */
|
|
11533
|
+
'ref'?: string;
|
|
11534
|
+
/** The VCS provider to use. Example: "github" */
|
|
11535
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
11536
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
11537
|
+
'selfHostedVcsId'?: string;
|
|
11538
|
+
/** 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" */
|
|
11539
|
+
'accountLogin'?: string;
|
|
11540
|
+
/** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
11541
|
+
'repoUrl': string;
|
|
11542
|
+
'branchRestrictions'?: string[];
|
|
11543
|
+
'prRestrictions'?: string[];
|
|
11544
|
+
'pathIgnoreRules'?: string[];
|
|
11545
|
+
'ciIgnoreFlags'?: string[];
|
|
11546
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
11547
|
+
'isAllowList'?: boolean;
|
|
11548
|
+
}[];
|
|
10895
11549
|
'spec': any;
|
|
10896
11550
|
'refs'?: any;
|
|
10897
11551
|
/** ID of the release flow run Example: "110ddb52-bdcd-482d-8ac2-05ba580afe2f" */
|
|
@@ -10937,9 +11591,27 @@ declare class GetReleaseflowrunEndpoint extends GetApiEndpoint<GetReleaseflowrun
|
|
|
10937
11591
|
|
|
10938
11592
|
type AbortReleaseflowrunResult = {
|
|
10939
11593
|
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
10940
|
-
'apiVersion': 'v1';
|
|
10941
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'.
|
|
11594
|
+
'apiVersion': 'v1.1';
|
|
11595
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
10942
11596
|
'arguments'?: any;
|
|
11597
|
+
'triggers'?: {
|
|
11598
|
+
/** A reference that can be used to access the output of this trigger in the template. */
|
|
11599
|
+
'ref'?: string;
|
|
11600
|
+
/** The VCS provider to use. Example: "github" */
|
|
11601
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
11602
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
11603
|
+
'selfHostedVcsId'?: string;
|
|
11604
|
+
/** 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" */
|
|
11605
|
+
'accountLogin'?: string;
|
|
11606
|
+
/** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
11607
|
+
'repoUrl': string;
|
|
11608
|
+
'branchRestrictions'?: string[];
|
|
11609
|
+
'prRestrictions'?: string[];
|
|
11610
|
+
'pathIgnoreRules'?: string[];
|
|
11611
|
+
'ciIgnoreFlags'?: string[];
|
|
11612
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
11613
|
+
'isAllowList'?: boolean;
|
|
11614
|
+
}[];
|
|
10943
11615
|
'spec': any;
|
|
10944
11616
|
'refs'?: any;
|
|
10945
11617
|
/** ID of the release flow run Example: "110ddb52-bdcd-482d-8ac2-05ba580afe2f" */
|
|
@@ -10996,7 +11668,9 @@ type ListSecretsResult = {
|
|
|
10996
11668
|
'tags': string[];
|
|
10997
11669
|
/** A short description of the secret group Example: "This is the secret group description" */
|
|
10998
11670
|
'description'?: string;
|
|
10999
|
-
/** The type of the
|
|
11671
|
+
/** The permission type of the secret group. Example: "secret" */
|
|
11672
|
+
'type': 'secret' | 'config';
|
|
11673
|
+
/** The type of the secret group Example: "environment" */
|
|
11000
11674
|
'secretType': 'environment-arguments' | 'environment' | 'arguments';
|
|
11001
11675
|
/** The priority with which different secret groups will be merged Example: 10 */
|
|
11002
11676
|
'priority': number;
|
|
@@ -11048,7 +11722,9 @@ type CreateSecretResult = {
|
|
|
11048
11722
|
'description'?: string;
|
|
11049
11723
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
11050
11724
|
'tags'?: string[];
|
|
11051
|
-
/** The type of the created secret Example: "
|
|
11725
|
+
/** The hierarchy type of the created secret. Example: "secret" */
|
|
11726
|
+
'type'?: 'secret' | 'config';
|
|
11727
|
+
/** The injection scope of the created secret Example: "environment" */
|
|
11052
11728
|
'secretType': 'environment-arguments' | 'environment' | 'arguments';
|
|
11053
11729
|
/** The priority with which different secrets will be merged. Example: 10 */
|
|
11054
11730
|
'priority': number;
|
|
@@ -11106,7 +11782,9 @@ type CreateSecretData = {
|
|
|
11106
11782
|
'description'?: string;
|
|
11107
11783
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
11108
11784
|
'tags'?: string[];
|
|
11109
|
-
/** The type of the created secret Example: "
|
|
11785
|
+
/** The hierarchy type of the created secret. Example: "secret" */
|
|
11786
|
+
'type'?: 'secret' | 'config';
|
|
11787
|
+
/** The injection scope of the created secret Example: "environment" */
|
|
11110
11788
|
'secretType': 'environment-arguments' | 'environment' | 'arguments';
|
|
11111
11789
|
/** The priority with which different secrets will be merged. Example: 10 */
|
|
11112
11790
|
'priority': number;
|
|
@@ -11159,7 +11837,9 @@ type PutSecretResult = {
|
|
|
11159
11837
|
'description'?: string;
|
|
11160
11838
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
11161
11839
|
'tags'?: string[];
|
|
11162
|
-
/** The type of the created secret Example: "
|
|
11840
|
+
/** The hierarchy type of the created secret. Example: "secret" */
|
|
11841
|
+
'type'?: 'secret' | 'config';
|
|
11842
|
+
/** The injection scope of the created secret Example: "environment" */
|
|
11163
11843
|
'secretType': 'environment-arguments' | 'environment' | 'arguments';
|
|
11164
11844
|
/** The priority with which different secrets will be merged. Example: 10 */
|
|
11165
11845
|
'priority': number;
|
|
@@ -11217,7 +11897,9 @@ type PutSecretData = {
|
|
|
11217
11897
|
'description'?: string;
|
|
11218
11898
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
11219
11899
|
'tags'?: string[];
|
|
11220
|
-
/** The type of the created secret Example: "
|
|
11900
|
+
/** The hierarchy type of the created secret. Example: "secret" */
|
|
11901
|
+
'type'?: 'secret' | 'config';
|
|
11902
|
+
/** The injection scope of the created secret Example: "environment" */
|
|
11221
11903
|
'secretType': 'environment-arguments' | 'environment' | 'arguments';
|
|
11222
11904
|
/** The priority with which different secrets will be merged. Example: 10 */
|
|
11223
11905
|
'priority': number;
|
|
@@ -11270,7 +11952,9 @@ type PatchSecretResult = {
|
|
|
11270
11952
|
'description'?: string;
|
|
11271
11953
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
11272
11954
|
'tags'?: string[];
|
|
11273
|
-
/** The type of the created secret Example: "
|
|
11955
|
+
/** The hierarchy type of the created secret. Example: "secret" */
|
|
11956
|
+
'type'?: 'secret' | 'config';
|
|
11957
|
+
/** The injection scope of the created secret Example: "environment" */
|
|
11274
11958
|
'secretType': 'environment-arguments' | 'environment' | 'arguments';
|
|
11275
11959
|
/** The priority with which different secrets will be merged. Example: 10 */
|
|
11276
11960
|
'priority': number;
|
|
@@ -11328,7 +12012,9 @@ type PatchSecretData = {
|
|
|
11328
12012
|
'description'?: string;
|
|
11329
12013
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
11330
12014
|
'tags'?: string[];
|
|
11331
|
-
/** The type of the created secret Example: "
|
|
12015
|
+
/** The hierarchy type of the created secret. Example: "secret" */
|
|
12016
|
+
'type'?: 'secret' | 'config';
|
|
12017
|
+
/** The injection scope of the created secret Example: "environment" */
|
|
11332
12018
|
'secretType'?: 'environment-arguments' | 'environment' | 'arguments';
|
|
11333
12019
|
/** The priority with which different secrets will be merged. Example: 10 */
|
|
11334
12020
|
'priority'?: number;
|
|
@@ -11382,6 +12068,8 @@ type GetSecretResult = {
|
|
|
11382
12068
|
'tags': string[];
|
|
11383
12069
|
/** A short description of the secret group Example: "This is the secret group description" */
|
|
11384
12070
|
'description'?: string;
|
|
12071
|
+
/** The permission type of the secret group. Example: "secret" */
|
|
12072
|
+
'type': 'secret' | 'config';
|
|
11385
12073
|
/** The type of the created secret group Example: "environment" */
|
|
11386
12074
|
'secretType': 'environment-arguments' | 'environment' | 'arguments';
|
|
11387
12075
|
/** ID of the project that the secret group belongs to Example: "default-project" */
|
|
@@ -11493,7 +12181,9 @@ type UpdateSecretData = {
|
|
|
11493
12181
|
'aliases'?: string[];
|
|
11494
12182
|
}[];
|
|
11495
12183
|
}[];
|
|
11496
|
-
/** The type of the
|
|
12184
|
+
/** The permission type of the secret group. Example: "secret" */
|
|
12185
|
+
'type'?: 'secret' | 'config';
|
|
12186
|
+
/** The type of the created secret group Example: "environment" */
|
|
11497
12187
|
'secretType'?: 'environment-arguments' | 'environment' | 'arguments';
|
|
11498
12188
|
'secrets'?: {
|
|
11499
12189
|
/** Secret variables as JSON object, encrypted at rest. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
|
|
@@ -11625,6 +12315,8 @@ type GetSecretdetailsResult = {
|
|
|
11625
12315
|
'tags': string[];
|
|
11626
12316
|
/** A short description of the secret group Example: "This is the secret group description" */
|
|
11627
12317
|
'description'?: string;
|
|
12318
|
+
/** The permission type of the secret group. Example: "secret" */
|
|
12319
|
+
'type': 'secret' | 'config';
|
|
11628
12320
|
/** The type of the created secret group Example: "environment" */
|
|
11629
12321
|
'secretType': 'environment-arguments' | 'environment' | 'arguments';
|
|
11630
12322
|
/** ID of the project that the secret group belongs to Example: "default-project" */
|
|
@@ -11709,7 +12401,7 @@ type CreateServiceBuildResult = {
|
|
|
11709
12401
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
11710
12402
|
'projectUrl': string;
|
|
11711
12403
|
/** The VCS provider to use. Example: "github" */
|
|
11712
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
12404
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
11713
12405
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
11714
12406
|
'selfHostedVcsId'?: string;
|
|
11715
12407
|
/** 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" */
|
|
@@ -11742,7 +12434,7 @@ type CreateServiceBuildResult = {
|
|
|
11742
12434
|
};
|
|
11743
12435
|
};
|
|
11744
12436
|
'buildpack': {
|
|
11745
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
12437
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
11746
12438
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
11747
12439
|
/** Array of custom Buildpacks to use. */
|
|
11748
12440
|
'buildpackLocators'?: string[];
|
|
@@ -11789,10 +12481,14 @@ type CreateServiceBuildResult = {
|
|
|
11789
12481
|
'id': string;
|
|
11790
12482
|
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
11791
12483
|
'appId': string;
|
|
11792
|
-
|
|
11793
|
-
|
|
11794
|
-
|
|
11795
|
-
'
|
|
12484
|
+
/** Cluster information */
|
|
12485
|
+
'cluster': {
|
|
12486
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
12487
|
+
'id': string;
|
|
12488
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
12489
|
+
'name': string;
|
|
12490
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
12491
|
+
'namespace'?: string;
|
|
11796
12492
|
};
|
|
11797
12493
|
/** time of creation */
|
|
11798
12494
|
'createdAt'?: string;
|
|
@@ -11843,7 +12539,7 @@ type CreateServiceBuildData = {
|
|
|
11843
12539
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
11844
12540
|
'projectUrl': string;
|
|
11845
12541
|
/** The VCS provider to use. Example: "github" */
|
|
11846
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
12542
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
11847
12543
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
11848
12544
|
'selfHostedVcsId'?: string;
|
|
11849
12545
|
/** 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" */
|
|
@@ -11876,7 +12572,7 @@ type CreateServiceBuildData = {
|
|
|
11876
12572
|
};
|
|
11877
12573
|
};
|
|
11878
12574
|
'buildpack': {
|
|
11879
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
12575
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
11880
12576
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
11881
12577
|
/** Array of custom Buildpacks to use. */
|
|
11882
12578
|
'buildpackLocators'?: string[];
|
|
@@ -11953,7 +12649,7 @@ type PutServiceBuildResult = {
|
|
|
11953
12649
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
11954
12650
|
'projectUrl': string;
|
|
11955
12651
|
/** The VCS provider to use. Example: "github" */
|
|
11956
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
12652
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
11957
12653
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
11958
12654
|
'selfHostedVcsId'?: string;
|
|
11959
12655
|
/** 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" */
|
|
@@ -11986,7 +12682,7 @@ type PutServiceBuildResult = {
|
|
|
11986
12682
|
};
|
|
11987
12683
|
};
|
|
11988
12684
|
'buildpack': {
|
|
11989
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
12685
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
11990
12686
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
11991
12687
|
/** Array of custom Buildpacks to use. */
|
|
11992
12688
|
'buildpackLocators'?: string[];
|
|
@@ -12033,10 +12729,14 @@ type PutServiceBuildResult = {
|
|
|
12033
12729
|
'id': string;
|
|
12034
12730
|
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
12035
12731
|
'appId': string;
|
|
12036
|
-
|
|
12037
|
-
|
|
12038
|
-
|
|
12039
|
-
'
|
|
12732
|
+
/** Cluster information */
|
|
12733
|
+
'cluster': {
|
|
12734
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
12735
|
+
'id': string;
|
|
12736
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
12737
|
+
'name': string;
|
|
12738
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
12739
|
+
'namespace'?: string;
|
|
12040
12740
|
};
|
|
12041
12741
|
/** time of creation */
|
|
12042
12742
|
'createdAt'?: string;
|
|
@@ -12087,7 +12787,7 @@ type PutServiceBuildData = {
|
|
|
12087
12787
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
12088
12788
|
'projectUrl': string;
|
|
12089
12789
|
/** The VCS provider to use. Example: "github" */
|
|
12090
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
12790
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
12091
12791
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
12092
12792
|
'selfHostedVcsId'?: string;
|
|
12093
12793
|
/** 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" */
|
|
@@ -12120,7 +12820,7 @@ type PutServiceBuildData = {
|
|
|
12120
12820
|
};
|
|
12121
12821
|
};
|
|
12122
12822
|
'buildpack': {
|
|
12123
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
12823
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
12124
12824
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
12125
12825
|
/** Array of custom Buildpacks to use. */
|
|
12126
12826
|
'buildpackLocators'?: string[];
|
|
@@ -12197,7 +12897,7 @@ type PatchServiceBuildResult = {
|
|
|
12197
12897
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
12198
12898
|
'projectUrl': string;
|
|
12199
12899
|
/** The VCS provider to use. Example: "github" */
|
|
12200
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
12900
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
12201
12901
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
12202
12902
|
'selfHostedVcsId'?: string;
|
|
12203
12903
|
/** 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" */
|
|
@@ -12230,7 +12930,7 @@ type PatchServiceBuildResult = {
|
|
|
12230
12930
|
};
|
|
12231
12931
|
};
|
|
12232
12932
|
'buildpack': {
|
|
12233
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
12933
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
12234
12934
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
12235
12935
|
/** Array of custom Buildpacks to use. */
|
|
12236
12936
|
'buildpackLocators'?: string[];
|
|
@@ -12277,10 +12977,14 @@ type PatchServiceBuildResult = {
|
|
|
12277
12977
|
'id': string;
|
|
12278
12978
|
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
12279
12979
|
'appId': string;
|
|
12280
|
-
|
|
12281
|
-
|
|
12282
|
-
|
|
12283
|
-
'
|
|
12980
|
+
/** Cluster information */
|
|
12981
|
+
'cluster': {
|
|
12982
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
12983
|
+
'id': string;
|
|
12984
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
12985
|
+
'name': string;
|
|
12986
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
12987
|
+
'namespace'?: string;
|
|
12284
12988
|
};
|
|
12285
12989
|
/** time of creation */
|
|
12286
12990
|
'createdAt'?: string;
|
|
@@ -12331,7 +13035,7 @@ type PatchServiceBuildData = {
|
|
|
12331
13035
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
12332
13036
|
'projectUrl'?: string;
|
|
12333
13037
|
/** The VCS provider to use. Example: "github" */
|
|
12334
|
-
'projectType'?: 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
13038
|
+
'projectType'?: 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
12335
13039
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
12336
13040
|
'selfHostedVcsId'?: string;
|
|
12337
13041
|
/** 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" */
|
|
@@ -12357,7 +13061,7 @@ type PatchServiceBuildData = {
|
|
|
12357
13061
|
'useCache'?: boolean;
|
|
12358
13062
|
};
|
|
12359
13063
|
'buildpack'?: {
|
|
12360
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
13064
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
12361
13065
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
12362
13066
|
/** Array of custom Buildpacks to use. */
|
|
12363
13067
|
'buildpackLocators'?: string[];
|
|
@@ -12462,11 +13166,13 @@ type CreateServiceCombinedResult = {
|
|
|
12462
13166
|
}[];
|
|
12463
13167
|
/** Whether CI (continuous integration) should be disabled. */
|
|
12464
13168
|
'disabledCI'?: boolean;
|
|
12465
|
-
|
|
13169
|
+
/** Defines the build source for this resource Example: "git" */
|
|
13170
|
+
'buildSource'?: 'git' | 'bundle';
|
|
13171
|
+
'vcsData'?: {
|
|
12466
13172
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
12467
13173
|
'projectUrl': string;
|
|
12468
13174
|
/** The VCS provider to use. Example: "github" */
|
|
12469
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
13175
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
12470
13176
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
12471
13177
|
'selfHostedVcsId'?: string;
|
|
12472
13178
|
/** 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" */
|
|
@@ -12476,6 +13182,12 @@ type CreateServiceCombinedResult = {
|
|
|
12476
13182
|
/** The name of the branch to use. Example: "master" */
|
|
12477
13183
|
'projectBranch': string;
|
|
12478
13184
|
};
|
|
13185
|
+
'bundleData'?: {
|
|
13186
|
+
/** URL of the bundle to be built Example: "https://example.com/archive.tar" */
|
|
13187
|
+
'bundleUrl': string;
|
|
13188
|
+
/** Branch identifier for the bundle. */
|
|
13189
|
+
'branch': string;
|
|
13190
|
+
};
|
|
12479
13191
|
'buildSettings': {
|
|
12480
13192
|
'storage'?: {
|
|
12481
13193
|
'ephemeralStorage'?: {
|
|
@@ -12501,7 +13213,7 @@ type CreateServiceCombinedResult = {
|
|
|
12501
13213
|
};
|
|
12502
13214
|
};
|
|
12503
13215
|
'buildpack': {
|
|
12504
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
13216
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
12505
13217
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
12506
13218
|
/** Array of custom Buildpacks to use. */
|
|
12507
13219
|
'buildpackLocators'?: string[];
|
|
@@ -12653,10 +13365,14 @@ type CreateServiceCombinedResult = {
|
|
|
12653
13365
|
'id': string;
|
|
12654
13366
|
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
12655
13367
|
'appId': string;
|
|
12656
|
-
|
|
12657
|
-
|
|
12658
|
-
|
|
12659
|
-
'
|
|
13368
|
+
/** Cluster information */
|
|
13369
|
+
'cluster': {
|
|
13370
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
13371
|
+
'id': string;
|
|
13372
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
13373
|
+
'name': string;
|
|
13374
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
13375
|
+
'namespace'?: string;
|
|
12660
13376
|
};
|
|
12661
13377
|
/** time of creation */
|
|
12662
13378
|
'createdAt'?: string;
|
|
@@ -12791,11 +13507,13 @@ type CreateServiceCombinedData = {
|
|
|
12791
13507
|
}[];
|
|
12792
13508
|
/** Whether CI (continuous integration) should be disabled. */
|
|
12793
13509
|
'disabledCI'?: boolean;
|
|
12794
|
-
|
|
13510
|
+
/** Defines the build source for this resource Example: "git" */
|
|
13511
|
+
'buildSource'?: 'git' | 'bundle';
|
|
13512
|
+
'vcsData'?: {
|
|
12795
13513
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
12796
13514
|
'projectUrl': string;
|
|
12797
13515
|
/** The VCS provider to use. Example: "github" */
|
|
12798
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
13516
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
12799
13517
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
12800
13518
|
'selfHostedVcsId'?: string;
|
|
12801
13519
|
/** 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" */
|
|
@@ -12805,6 +13523,12 @@ type CreateServiceCombinedData = {
|
|
|
12805
13523
|
/** The name of the branch to use. Example: "master" */
|
|
12806
13524
|
'projectBranch': string;
|
|
12807
13525
|
};
|
|
13526
|
+
'bundleData'?: {
|
|
13527
|
+
/** URL of the bundle to be built Example: "https://example.com/archive.tar" */
|
|
13528
|
+
'bundleUrl': string;
|
|
13529
|
+
/** Branch identifier for the bundle. */
|
|
13530
|
+
'branch': string;
|
|
13531
|
+
};
|
|
12808
13532
|
'buildSettings': {
|
|
12809
13533
|
'storage'?: {
|
|
12810
13534
|
'ephemeralStorage'?: {
|
|
@@ -12830,7 +13554,7 @@ type CreateServiceCombinedData = {
|
|
|
12830
13554
|
};
|
|
12831
13555
|
};
|
|
12832
13556
|
'buildpack': {
|
|
12833
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
13557
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
12834
13558
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
12835
13559
|
/** Array of custom Buildpacks to use. */
|
|
12836
13560
|
'buildpackLocators'?: string[];
|
|
@@ -12988,11 +13712,13 @@ type PutServiceCombinedResult = {
|
|
|
12988
13712
|
}[];
|
|
12989
13713
|
/** Whether CI (continuous integration) should be disabled. */
|
|
12990
13714
|
'disabledCI'?: boolean;
|
|
12991
|
-
|
|
13715
|
+
/** Defines the build source for this resource Example: "git" */
|
|
13716
|
+
'buildSource'?: 'git' | 'bundle';
|
|
13717
|
+
'vcsData'?: {
|
|
12992
13718
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
12993
13719
|
'projectUrl': string;
|
|
12994
13720
|
/** The VCS provider to use. Example: "github" */
|
|
12995
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
13721
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
12996
13722
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
12997
13723
|
'selfHostedVcsId'?: string;
|
|
12998
13724
|
/** 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" */
|
|
@@ -13002,6 +13728,12 @@ type PutServiceCombinedResult = {
|
|
|
13002
13728
|
/** The name of the branch to use. Example: "master" */
|
|
13003
13729
|
'projectBranch': string;
|
|
13004
13730
|
};
|
|
13731
|
+
'bundleData'?: {
|
|
13732
|
+
/** URL of the bundle to be built Example: "https://example.com/archive.tar" */
|
|
13733
|
+
'bundleUrl': string;
|
|
13734
|
+
/** Branch identifier for the bundle. */
|
|
13735
|
+
'branch': string;
|
|
13736
|
+
};
|
|
13005
13737
|
'buildSettings': {
|
|
13006
13738
|
'storage'?: {
|
|
13007
13739
|
'ephemeralStorage'?: {
|
|
@@ -13027,7 +13759,7 @@ type PutServiceCombinedResult = {
|
|
|
13027
13759
|
};
|
|
13028
13760
|
};
|
|
13029
13761
|
'buildpack': {
|
|
13030
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
13762
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
13031
13763
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
13032
13764
|
/** Array of custom Buildpacks to use. */
|
|
13033
13765
|
'buildpackLocators'?: string[];
|
|
@@ -13179,10 +13911,14 @@ type PutServiceCombinedResult = {
|
|
|
13179
13911
|
'id': string;
|
|
13180
13912
|
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
13181
13913
|
'appId': string;
|
|
13182
|
-
|
|
13183
|
-
|
|
13184
|
-
|
|
13185
|
-
'
|
|
13914
|
+
/** Cluster information */
|
|
13915
|
+
'cluster': {
|
|
13916
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
13917
|
+
'id': string;
|
|
13918
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
13919
|
+
'name': string;
|
|
13920
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
13921
|
+
'namespace'?: string;
|
|
13186
13922
|
};
|
|
13187
13923
|
/** time of creation */
|
|
13188
13924
|
'createdAt'?: string;
|
|
@@ -13317,11 +14053,13 @@ type PutServiceCombinedData = {
|
|
|
13317
14053
|
}[];
|
|
13318
14054
|
/** Whether CI (continuous integration) should be disabled. */
|
|
13319
14055
|
'disabledCI'?: boolean;
|
|
13320
|
-
|
|
14056
|
+
/** Defines the build source for this resource Example: "git" */
|
|
14057
|
+
'buildSource'?: 'git' | 'bundle';
|
|
14058
|
+
'vcsData'?: {
|
|
13321
14059
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
13322
14060
|
'projectUrl': string;
|
|
13323
14061
|
/** The VCS provider to use. Example: "github" */
|
|
13324
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
14062
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
13325
14063
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
13326
14064
|
'selfHostedVcsId'?: string;
|
|
13327
14065
|
/** 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" */
|
|
@@ -13331,6 +14069,12 @@ type PutServiceCombinedData = {
|
|
|
13331
14069
|
/** The name of the branch to use. Example: "master" */
|
|
13332
14070
|
'projectBranch': string;
|
|
13333
14071
|
};
|
|
14072
|
+
'bundleData'?: {
|
|
14073
|
+
/** URL of the bundle to be built Example: "https://example.com/archive.tar" */
|
|
14074
|
+
'bundleUrl': string;
|
|
14075
|
+
/** Branch identifier for the bundle. */
|
|
14076
|
+
'branch': string;
|
|
14077
|
+
};
|
|
13334
14078
|
'buildSettings': {
|
|
13335
14079
|
'storage'?: {
|
|
13336
14080
|
'ephemeralStorage'?: {
|
|
@@ -13356,7 +14100,7 @@ type PutServiceCombinedData = {
|
|
|
13356
14100
|
};
|
|
13357
14101
|
};
|
|
13358
14102
|
'buildpack': {
|
|
13359
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
14103
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
13360
14104
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
13361
14105
|
/** Array of custom Buildpacks to use. */
|
|
13362
14106
|
'buildpackLocators'?: string[];
|
|
@@ -13514,11 +14258,13 @@ type PatchServiceCombinedResult = {
|
|
|
13514
14258
|
}[];
|
|
13515
14259
|
/** Whether CI (continuous integration) should be disabled. */
|
|
13516
14260
|
'disabledCI'?: boolean;
|
|
13517
|
-
|
|
14261
|
+
/** Defines the build source for this resource Example: "git" */
|
|
14262
|
+
'buildSource'?: 'git' | 'bundle';
|
|
14263
|
+
'vcsData'?: {
|
|
13518
14264
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
13519
14265
|
'projectUrl': string;
|
|
13520
14266
|
/** The VCS provider to use. Example: "github" */
|
|
13521
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
14267
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
13522
14268
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
13523
14269
|
'selfHostedVcsId'?: string;
|
|
13524
14270
|
/** 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" */
|
|
@@ -13528,6 +14274,12 @@ type PatchServiceCombinedResult = {
|
|
|
13528
14274
|
/** The name of the branch to use. Example: "master" */
|
|
13529
14275
|
'projectBranch': string;
|
|
13530
14276
|
};
|
|
14277
|
+
'bundleData'?: {
|
|
14278
|
+
/** URL of the bundle to be built Example: "https://example.com/archive.tar" */
|
|
14279
|
+
'bundleUrl': string;
|
|
14280
|
+
/** Branch identifier for the bundle. */
|
|
14281
|
+
'branch': string;
|
|
14282
|
+
};
|
|
13531
14283
|
'buildSettings': {
|
|
13532
14284
|
'storage'?: {
|
|
13533
14285
|
'ephemeralStorage'?: {
|
|
@@ -13553,7 +14305,7 @@ type PatchServiceCombinedResult = {
|
|
|
13553
14305
|
};
|
|
13554
14306
|
};
|
|
13555
14307
|
'buildpack': {
|
|
13556
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
14308
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
13557
14309
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
13558
14310
|
/** Array of custom Buildpacks to use. */
|
|
13559
14311
|
'buildpackLocators'?: string[];
|
|
@@ -13705,10 +14457,14 @@ type PatchServiceCombinedResult = {
|
|
|
13705
14457
|
'id': string;
|
|
13706
14458
|
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
13707
14459
|
'appId': string;
|
|
13708
|
-
|
|
13709
|
-
|
|
13710
|
-
|
|
13711
|
-
'
|
|
14460
|
+
/** Cluster information */
|
|
14461
|
+
'cluster': {
|
|
14462
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
14463
|
+
'id': string;
|
|
14464
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
14465
|
+
'name': string;
|
|
14466
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
14467
|
+
'namespace'?: string;
|
|
13712
14468
|
};
|
|
13713
14469
|
/** time of creation */
|
|
13714
14470
|
'createdAt'?: string;
|
|
@@ -13834,11 +14590,13 @@ type PatchServiceCombinedData = {
|
|
|
13834
14590
|
}[];
|
|
13835
14591
|
/** Whether CI (continuous integration) should be disabled. */
|
|
13836
14592
|
'disabledCI'?: boolean;
|
|
14593
|
+
/** Defines the build source for this resource Example: "git" */
|
|
14594
|
+
'buildSource'?: 'git' | 'bundle';
|
|
13837
14595
|
'vcsData'?: {
|
|
13838
14596
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
13839
14597
|
'projectUrl'?: string;
|
|
13840
14598
|
/** The VCS provider to use. Example: "github" */
|
|
13841
|
-
'projectType'?: 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
14599
|
+
'projectType'?: 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
13842
14600
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
13843
14601
|
'selfHostedVcsId'?: string;
|
|
13844
14602
|
/** 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" */
|
|
@@ -13848,6 +14606,12 @@ type PatchServiceCombinedData = {
|
|
|
13848
14606
|
/** The name of the branch to use. Example: "master" */
|
|
13849
14607
|
'projectBranch'?: string;
|
|
13850
14608
|
};
|
|
14609
|
+
'bundleData'?: {
|
|
14610
|
+
/** URL of the bundle to be built Example: "https://example.com/archive.tar" */
|
|
14611
|
+
'bundleUrl'?: string;
|
|
14612
|
+
/** Branch identifier for the bundle. */
|
|
14613
|
+
'branch'?: string;
|
|
14614
|
+
};
|
|
13851
14615
|
'buildSettings'?: {
|
|
13852
14616
|
'storage'?: {
|
|
13853
14617
|
'ephemeralStorage'?: {
|
|
@@ -13866,7 +14630,7 @@ type PatchServiceCombinedData = {
|
|
|
13866
14630
|
'useCache'?: boolean;
|
|
13867
14631
|
};
|
|
13868
14632
|
'buildpack'?: {
|
|
13869
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
14633
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
13870
14634
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
13871
14635
|
/** Array of custom Buildpacks to use. */
|
|
13872
14636
|
'buildpackLocators'?: string[];
|
|
@@ -14149,10 +14913,14 @@ type CreateServiceDeploymentResult = {
|
|
|
14149
14913
|
'id': string;
|
|
14150
14914
|
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
14151
14915
|
'appId': string;
|
|
14152
|
-
|
|
14153
|
-
|
|
14154
|
-
|
|
14155
|
-
'
|
|
14916
|
+
/** Cluster information */
|
|
14917
|
+
'cluster': {
|
|
14918
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
14919
|
+
'id': string;
|
|
14920
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
14921
|
+
'name': string;
|
|
14922
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
14923
|
+
'namespace'?: string;
|
|
14156
14924
|
};
|
|
14157
14925
|
/** time of creation */
|
|
14158
14926
|
'createdAt'?: string;
|
|
@@ -14633,10 +15401,14 @@ type PutServiceDeploymentResult = {
|
|
|
14633
15401
|
'id': string;
|
|
14634
15402
|
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
14635
15403
|
'appId': string;
|
|
14636
|
-
|
|
14637
|
-
|
|
14638
|
-
|
|
14639
|
-
'
|
|
15404
|
+
/** Cluster information */
|
|
15405
|
+
'cluster': {
|
|
15406
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
15407
|
+
'id': string;
|
|
15408
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
15409
|
+
'name': string;
|
|
15410
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
15411
|
+
'namespace'?: string;
|
|
14640
15412
|
};
|
|
14641
15413
|
/** time of creation */
|
|
14642
15414
|
'createdAt'?: string;
|
|
@@ -15117,10 +15889,14 @@ type PatchServiceDeploymentResult = {
|
|
|
15117
15889
|
'id': string;
|
|
15118
15890
|
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
15119
15891
|
'appId': string;
|
|
15120
|
-
|
|
15121
|
-
|
|
15122
|
-
|
|
15123
|
-
'
|
|
15892
|
+
/** Cluster information */
|
|
15893
|
+
'cluster': {
|
|
15894
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
15895
|
+
'id': string;
|
|
15896
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
15897
|
+
'name': string;
|
|
15898
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
15899
|
+
'namespace'?: string;
|
|
15124
15900
|
};
|
|
15125
15901
|
/** time of creation */
|
|
15126
15902
|
'createdAt'?: string;
|
|
@@ -15464,11 +16240,13 @@ type GetServiceResult = {
|
|
|
15464
16240
|
};
|
|
15465
16241
|
/** Is the service paused? */
|
|
15466
16242
|
'servicePaused': boolean;
|
|
16243
|
+
/** Defines the build source for this resource Example: "git" */
|
|
16244
|
+
'buildSource'?: 'git' | 'bundle';
|
|
15467
16245
|
'vcsData'?: {
|
|
15468
16246
|
/** URL of the repository being built Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
15469
16247
|
'projectUrl': string;
|
|
15470
16248
|
/** VCS provider for the repo being built Example: "github" */
|
|
15471
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
16249
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
15472
16250
|
/** ID of the self-hosted VCS, if applicable. Example: "example-team/self-hosted-vcs" */
|
|
15473
16251
|
'selfHostedVcsId'?: string;
|
|
15474
16252
|
/** Branch of the repo being built Example: "master" */
|
|
@@ -15480,6 +16258,16 @@ type GetServiceResult = {
|
|
|
15480
16258
|
/** File path of the Dockerfile Example: "/Dockerfile" */
|
|
15481
16259
|
'dockerFilePath': string;
|
|
15482
16260
|
};
|
|
16261
|
+
'bundleData'?: {
|
|
16262
|
+
/** URL of the bundle to be built Example: "https://example.com/archive.tar" */
|
|
16263
|
+
'bundleUrl': string;
|
|
16264
|
+
/** Branch of the bundle being built Example: "main" */
|
|
16265
|
+
'projectBranch'?: string;
|
|
16266
|
+
/** Working directory used by the dockerfile Example: "/" */
|
|
16267
|
+
'dockerWorkDir': string;
|
|
16268
|
+
/** File path of the Dockerfile Example: "/Dockerfile" */
|
|
16269
|
+
'dockerFilePath': string;
|
|
16270
|
+
};
|
|
15483
16271
|
'deployment'?: {
|
|
15484
16272
|
/** Region where this service is deployed and/or built Example: "europe-west" */
|
|
15485
16273
|
'region'?: string;
|
|
@@ -15550,7 +16338,7 @@ type GetServiceResult = {
|
|
|
15550
16338
|
'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
|
|
15551
16339
|
/** Details about Buildpack settings. */
|
|
15552
16340
|
'buildpack'?: {
|
|
15553
|
-
/** The Buildpack stack used. Example: "
|
|
16341
|
+
/** The Buildpack stack used. Example: "HEROKU_22" */
|
|
15554
16342
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
15555
16343
|
/** Array of custom Buildpacks used. */
|
|
15556
16344
|
'buildpackLocators'?: string[];
|
|
@@ -15828,12 +16616,10 @@ type StartServiceBuildParameters = {
|
|
|
15828
16616
|
'serviceId': string;
|
|
15829
16617
|
};
|
|
15830
16618
|
type StartServiceBuildData = {
|
|
15831
|
-
/**
|
|
15832
|
-
'
|
|
15833
|
-
/** Branch to build from. If `sha` is not provided, the latest commit of this branch will be built. Only supported by build services. Build services require either `branch` or `pullRequestId` field, but cannot be provided with both. */
|
|
16619
|
+
/** URL of the bundle to be built Example: "https://example.com/archive.tar" */
|
|
16620
|
+
'bundleUrl': string;
|
|
15834
16621
|
'branch'?: string;
|
|
15835
|
-
|
|
15836
|
-
'pullRequestId'?: number;
|
|
16622
|
+
'sha'?: string;
|
|
15837
16623
|
} | {
|
|
15838
16624
|
/** Commit sha to build. If not provided, builds the most recent relevant commit. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
|
|
15839
16625
|
'sha'?: string;
|
|
@@ -15875,6 +16661,8 @@ type GetServiceBuildargumentsParameters = {
|
|
|
15875
16661
|
type GetServiceBuildargumentsOptions = {
|
|
15876
16662
|
/** Which secrets to display - if set to `this` only the group's secrets are displayed, if set to `inherited` only secrets from linked addons are displayed, if set to `all` or not provided, both are displayed. */
|
|
15877
16663
|
'show'?: string;
|
|
16664
|
+
/** If templated secrets should be replaced with their inferred value rather than returned as template strings. */
|
|
16665
|
+
'replaceTemplatedValues'?: string;
|
|
15878
16666
|
};
|
|
15879
16667
|
/** Gets the build arguments of the given service. If the API key does not have the permission 'Project > Secrets > General > Read', secrets inherited from secret groups will not be displayed. */
|
|
15880
16668
|
declare class GetServiceBuildargumentsEndpoint extends GetApiEndpoint<GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult> {
|
|
@@ -16031,7 +16819,7 @@ type UpdateServiceBuildoptionsData = {
|
|
|
16031
16819
|
};
|
|
16032
16820
|
} | {
|
|
16033
16821
|
'buildpack': {
|
|
16034
|
-
/** Buildpack stack to use. Defaults to recommended stack `
|
|
16822
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
16035
16823
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
16036
16824
|
/** Array of custom buildpacks to use. */
|
|
16037
16825
|
'buildpackLocators'?: string[];
|
|
@@ -16099,7 +16887,7 @@ type UpdateServiceBuildsourceData = {
|
|
|
16099
16887
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
16100
16888
|
'projectUrl'?: string;
|
|
16101
16889
|
/** The VCS provider to use. Example: "github" */
|
|
16102
|
-
'projectType'?: 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
16890
|
+
'projectType'?: 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
16103
16891
|
/** The name of the branch to use. Example: "master" */
|
|
16104
16892
|
'projectBranch'?: string;
|
|
16105
16893
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
@@ -16769,6 +17557,8 @@ type GetServiceRuntimeenvironmentParameters = {
|
|
|
16769
17557
|
type GetServiceRuntimeenvironmentOptions = {
|
|
16770
17558
|
/** Which secrets to display - if set to `this` only the group's secrets are displayed, if set to `inherited` only secrets from linked addons are displayed, if set to `all` or not provided, both are displayed. */
|
|
16771
17559
|
'show'?: string;
|
|
17560
|
+
/** If templated secrets should be replaced with their inferred value rather than returned as template strings. */
|
|
17561
|
+
'replaceTemplatedValues'?: string;
|
|
16772
17562
|
};
|
|
16773
17563
|
/** Gets the runtime environment of the given service. If the API key does not have the permission 'Project > Secrets > General > Read', secrets inherited from secret groups will not be displayed. */
|
|
16774
17564
|
declare class GetServiceRuntimeenvironmentEndpoint extends GetApiEndpoint<GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult> {
|
|
@@ -17264,8 +18054,8 @@ type ListTemplatesResult = {
|
|
|
17264
18054
|
'name': string;
|
|
17265
18055
|
/** Description of the template. Example: "This is a sample template." */
|
|
17266
18056
|
'description'?: string;
|
|
17267
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17268
|
-
'apiVersion': 'v1';
|
|
18057
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18058
|
+
'apiVersion': 'v1.1';
|
|
17269
18059
|
/** Identifier for the template Example: "example-template" */
|
|
17270
18060
|
'id': string;
|
|
17271
18061
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
@@ -17304,41 +18094,16 @@ type CreateTemplateResult = {
|
|
|
17304
18094
|
'name': string;
|
|
17305
18095
|
/** Description of the template. Example: "This is a sample template." */
|
|
17306
18096
|
'description'?: string;
|
|
17307
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17308
|
-
'apiVersion': 'v1';
|
|
17309
|
-
/**
|
|
17310
|
-
'project': {
|
|
17311
|
-
/** The ID of the project to use. */
|
|
17312
|
-
'id': string;
|
|
17313
|
-
} | {
|
|
17314
|
-
'spec': {
|
|
17315
|
-
/** The name of the project. Example: "New Project" */
|
|
17316
|
-
'name': string;
|
|
17317
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17318
|
-
'description'?: string;
|
|
17319
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17320
|
-
'color'?: string;
|
|
17321
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
17322
|
-
'region'?: string;
|
|
17323
|
-
} | {
|
|
17324
|
-
/** The name of the project. Example: "New Project" */
|
|
17325
|
-
'name': string;
|
|
17326
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17327
|
-
'description'?: string;
|
|
17328
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17329
|
-
'color'?: string;
|
|
17330
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
17331
|
-
'clusterId'?: string;
|
|
17332
|
-
};
|
|
17333
|
-
};
|
|
17334
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18097
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18098
|
+
'apiVersion': 'v1.1';
|
|
18099
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
17335
18100
|
'arguments'?: any;
|
|
17336
18101
|
'spec': any;
|
|
17337
18102
|
/** Identifier for the template Example: "example-template" */
|
|
17338
18103
|
'id': string;
|
|
17339
18104
|
'gitops'?: {
|
|
17340
18105
|
/** The VCS provider to use. Example: "github" */
|
|
17341
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
18106
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
17342
18107
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
17343
18108
|
'selfHostedVcsId'?: string;
|
|
17344
18109
|
/** 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" */
|
|
@@ -17368,34 +18133,9 @@ type CreateTemplateResult = {
|
|
|
17368
18133
|
'name': string;
|
|
17369
18134
|
/** Description of the template. Example: "This is a sample template." */
|
|
17370
18135
|
'description'?: string;
|
|
17371
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17372
|
-
'apiVersion': 'v1';
|
|
17373
|
-
/**
|
|
17374
|
-
'project': {
|
|
17375
|
-
/** The ID of the project to use. */
|
|
17376
|
-
'id': string;
|
|
17377
|
-
} | {
|
|
17378
|
-
'spec': {
|
|
17379
|
-
/** The name of the project. Example: "New Project" */
|
|
17380
|
-
'name': string;
|
|
17381
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17382
|
-
'description'?: string;
|
|
17383
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17384
|
-
'color'?: string;
|
|
17385
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
17386
|
-
'region'?: string;
|
|
17387
|
-
} | {
|
|
17388
|
-
/** The name of the project. Example: "New Project" */
|
|
17389
|
-
'name': string;
|
|
17390
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17391
|
-
'description'?: string;
|
|
17392
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17393
|
-
'color'?: string;
|
|
17394
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
17395
|
-
'clusterId'?: string;
|
|
17396
|
-
};
|
|
17397
|
-
};
|
|
17398
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18136
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18137
|
+
'apiVersion': 'v1.1';
|
|
18138
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
17399
18139
|
'arguments'?: any;
|
|
17400
18140
|
'spec': any;
|
|
17401
18141
|
'refs'?: any;
|
|
@@ -17422,45 +18162,20 @@ type CreateTemplateData = {
|
|
|
17422
18162
|
'name': string;
|
|
17423
18163
|
/** Description of the template. Example: "This is a sample template." */
|
|
17424
18164
|
'description'?: string;
|
|
17425
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17426
|
-
'apiVersion': 'v1';
|
|
17427
|
-
/**
|
|
17428
|
-
'project': {
|
|
17429
|
-
/** The ID of the project to use. */
|
|
17430
|
-
'id': string;
|
|
17431
|
-
} | {
|
|
17432
|
-
'spec': {
|
|
17433
|
-
/** The name of the project. Example: "New Project" */
|
|
17434
|
-
'name': string;
|
|
17435
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17436
|
-
'description'?: string;
|
|
17437
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17438
|
-
'color'?: string;
|
|
17439
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
17440
|
-
'region'?: string;
|
|
17441
|
-
} | {
|
|
17442
|
-
/** The name of the project. Example: "New Project" */
|
|
17443
|
-
'name': string;
|
|
17444
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17445
|
-
'description'?: string;
|
|
17446
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17447
|
-
'color'?: string;
|
|
17448
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
17449
|
-
'clusterId'?: string;
|
|
17450
|
-
};
|
|
17451
|
-
};
|
|
17452
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18165
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18166
|
+
'apiVersion': 'v1.1';
|
|
18167
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
17453
18168
|
'arguments'?: any;
|
|
17454
18169
|
'spec': any;
|
|
17455
18170
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
17456
18171
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
17457
|
-
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control.
|
|
18172
|
+
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
17458
18173
|
'argumentOverrides'?: any;
|
|
17459
18174
|
/** Additional options for the template creation. */
|
|
17460
18175
|
'options'?: {
|
|
17461
18176
|
/** If true, the template will be ran immediately after creation. Example: true */
|
|
17462
18177
|
'runOnCreation'?: boolean;
|
|
17463
|
-
/** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`.
|
|
18178
|
+
/** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
|
|
17464
18179
|
'runOnCreationArgumentOverrides'?: any;
|
|
17465
18180
|
/** If true, the template will run automatically whenever it is updated. */
|
|
17466
18181
|
'autorun'?: boolean;
|
|
@@ -17470,45 +18185,20 @@ type CreateTemplateData = {
|
|
|
17470
18185
|
'name': string;
|
|
17471
18186
|
/** Description of the template. Example: "This is a sample template." */
|
|
17472
18187
|
'description'?: string;
|
|
17473
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17474
|
-
'apiVersion': 'v1';
|
|
17475
|
-
/**
|
|
17476
|
-
'project': {
|
|
17477
|
-
/** The ID of the project to use. */
|
|
17478
|
-
'id': string;
|
|
17479
|
-
} | {
|
|
17480
|
-
'spec': {
|
|
17481
|
-
/** The name of the project. Example: "New Project" */
|
|
17482
|
-
'name': string;
|
|
17483
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17484
|
-
'description'?: string;
|
|
17485
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17486
|
-
'color'?: string;
|
|
17487
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
17488
|
-
'region'?: string;
|
|
17489
|
-
} | {
|
|
17490
|
-
/** The name of the project. Example: "New Project" */
|
|
17491
|
-
'name': string;
|
|
17492
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17493
|
-
'description'?: string;
|
|
17494
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17495
|
-
'color'?: string;
|
|
17496
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
17497
|
-
'clusterId'?: string;
|
|
17498
|
-
};
|
|
17499
|
-
};
|
|
17500
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18188
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18189
|
+
'apiVersion': 'v1.1';
|
|
18190
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
17501
18191
|
'arguments'?: any;
|
|
17502
18192
|
'spec': any;
|
|
17503
18193
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
17504
18194
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
17505
|
-
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control.
|
|
18195
|
+
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
17506
18196
|
'argumentOverrides'?: any;
|
|
17507
18197
|
/** Additional options for the template creation. */
|
|
17508
18198
|
'options'?: {
|
|
17509
18199
|
/** If true, the template will be ran immediately after creation. Example: true */
|
|
17510
18200
|
'runOnCreation'?: boolean;
|
|
17511
|
-
/** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`.
|
|
18201
|
+
/** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
|
|
17512
18202
|
'runOnCreationArgumentOverrides'?: any;
|
|
17513
18203
|
/** If true, the template will run automatically whenever it is updated. */
|
|
17514
18204
|
'autorun'?: boolean;
|
|
@@ -17516,40 +18206,7 @@ type CreateTemplateData = {
|
|
|
17516
18206
|
/** GitOps data for syncing this template with a file in version control. */
|
|
17517
18207
|
'gitops': {
|
|
17518
18208
|
/** The VCS provider to use. Example: "github" */
|
|
17519
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
17520
|
-
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
17521
|
-
'selfHostedVcsId'?: string;
|
|
17522
|
-
/** 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" */
|
|
17523
|
-
'accountLogin'?: string;
|
|
17524
|
-
/** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
17525
|
-
'repoUrl': string;
|
|
17526
|
-
/** The name of the branch to use. Example: "main" */
|
|
17527
|
-
'branch': string;
|
|
17528
|
-
/** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
|
|
17529
|
-
'filePath': string;
|
|
17530
|
-
};
|
|
17531
|
-
} | {
|
|
17532
|
-
/** Name of the template. Example: "Example Template" */
|
|
17533
|
-
'name': string;
|
|
17534
|
-
/** Description of the template. Example: "This is a sample template." */
|
|
17535
|
-
'description'?: string;
|
|
17536
|
-
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
17537
|
-
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
17538
|
-
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
17539
|
-
'argumentOverrides'?: any;
|
|
17540
|
-
/** Additional options for the template creation. */
|
|
17541
|
-
'options'?: {
|
|
17542
|
-
/** If true, the template will be ran immediately after creation. Example: true */
|
|
17543
|
-
'runOnCreation'?: boolean;
|
|
17544
|
-
/** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
17545
|
-
'runOnCreationArgumentOverrides'?: any;
|
|
17546
|
-
/** If true, the template will run automatically whenever it is updated. */
|
|
17547
|
-
'autorun'?: boolean;
|
|
17548
|
-
};
|
|
17549
|
-
/** GitOps data for syncing this template with a file in version control. */
|
|
17550
|
-
'gitops': {
|
|
17551
|
-
/** The VCS provider to use. Example: "github" */
|
|
17552
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
18209
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
17553
18210
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
17554
18211
|
'selfHostedVcsId'?: string;
|
|
17555
18212
|
/** 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" */
|
|
@@ -17576,41 +18233,16 @@ type GetTemplateResult = {
|
|
|
17576
18233
|
'name': string;
|
|
17577
18234
|
/** Description of the template. Example: "This is a sample template." */
|
|
17578
18235
|
'description'?: string;
|
|
17579
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17580
|
-
'apiVersion': 'v1';
|
|
17581
|
-
/**
|
|
17582
|
-
'project': {
|
|
17583
|
-
/** The ID of the project to use. */
|
|
17584
|
-
'id': string;
|
|
17585
|
-
} | {
|
|
17586
|
-
'spec': {
|
|
17587
|
-
/** The name of the project. Example: "New Project" */
|
|
17588
|
-
'name': string;
|
|
17589
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17590
|
-
'description'?: string;
|
|
17591
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17592
|
-
'color'?: string;
|
|
17593
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
17594
|
-
'region'?: string;
|
|
17595
|
-
} | {
|
|
17596
|
-
/** The name of the project. Example: "New Project" */
|
|
17597
|
-
'name': string;
|
|
17598
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17599
|
-
'description'?: string;
|
|
17600
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17601
|
-
'color'?: string;
|
|
17602
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
17603
|
-
'clusterId'?: string;
|
|
17604
|
-
};
|
|
17605
|
-
};
|
|
17606
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18236
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18237
|
+
'apiVersion': 'v1.1';
|
|
18238
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
17607
18239
|
'arguments'?: any;
|
|
17608
18240
|
'spec': any;
|
|
17609
18241
|
/** Identifier for the template Example: "example-template" */
|
|
17610
18242
|
'id': string;
|
|
17611
18243
|
'gitops'?: {
|
|
17612
18244
|
/** The VCS provider to use. Example: "github" */
|
|
17613
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
18245
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
17614
18246
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
17615
18247
|
'selfHostedVcsId'?: string;
|
|
17616
18248
|
/** 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" */
|
|
@@ -17667,41 +18299,16 @@ type UpdateTemplateResult = {
|
|
|
17667
18299
|
'name': string;
|
|
17668
18300
|
/** Description of the template. Example: "This is a sample template." */
|
|
17669
18301
|
'description'?: string;
|
|
17670
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17671
|
-
'apiVersion': 'v1';
|
|
17672
|
-
/**
|
|
17673
|
-
'project': {
|
|
17674
|
-
/** The ID of the project to use. */
|
|
17675
|
-
'id': string;
|
|
17676
|
-
} | {
|
|
17677
|
-
'spec': {
|
|
17678
|
-
/** The name of the project. Example: "New Project" */
|
|
17679
|
-
'name': string;
|
|
17680
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17681
|
-
'description'?: string;
|
|
17682
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17683
|
-
'color'?: string;
|
|
17684
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
17685
|
-
'region'?: string;
|
|
17686
|
-
} | {
|
|
17687
|
-
/** The name of the project. Example: "New Project" */
|
|
17688
|
-
'name': string;
|
|
17689
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17690
|
-
'description'?: string;
|
|
17691
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17692
|
-
'color'?: string;
|
|
17693
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
17694
|
-
'clusterId'?: string;
|
|
17695
|
-
};
|
|
17696
|
-
};
|
|
17697
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18302
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18303
|
+
'apiVersion': 'v1.1';
|
|
18304
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
17698
18305
|
'arguments'?: any;
|
|
17699
18306
|
'spec': any;
|
|
17700
18307
|
/** Identifier for the template Example: "example-template" */
|
|
17701
18308
|
'id': string;
|
|
17702
18309
|
'gitops'?: {
|
|
17703
18310
|
/** The VCS provider to use. Example: "github" */
|
|
17704
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
18311
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
17705
18312
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
17706
18313
|
'selfHostedVcsId'?: string;
|
|
17707
18314
|
/** 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" */
|
|
@@ -17731,34 +18338,9 @@ type UpdateTemplateResult = {
|
|
|
17731
18338
|
'name': string;
|
|
17732
18339
|
/** Description of the template. Example: "This is a sample template." */
|
|
17733
18340
|
'description'?: string;
|
|
17734
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17735
|
-
'apiVersion': 'v1';
|
|
17736
|
-
/**
|
|
17737
|
-
'project': {
|
|
17738
|
-
/** The ID of the project to use. */
|
|
17739
|
-
'id': string;
|
|
17740
|
-
} | {
|
|
17741
|
-
'spec': {
|
|
17742
|
-
/** The name of the project. Example: "New Project" */
|
|
17743
|
-
'name': string;
|
|
17744
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17745
|
-
'description'?: string;
|
|
17746
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17747
|
-
'color'?: string;
|
|
17748
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
17749
|
-
'region'?: string;
|
|
17750
|
-
} | {
|
|
17751
|
-
/** The name of the project. Example: "New Project" */
|
|
17752
|
-
'name': string;
|
|
17753
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17754
|
-
'description'?: string;
|
|
17755
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17756
|
-
'color'?: string;
|
|
17757
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
17758
|
-
'clusterId'?: string;
|
|
17759
|
-
};
|
|
17760
|
-
};
|
|
17761
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18341
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18342
|
+
'apiVersion': 'v1.1';
|
|
18343
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
17762
18344
|
'arguments'?: any;
|
|
17763
18345
|
'spec': any;
|
|
17764
18346
|
'refs'?: any;
|
|
@@ -17789,39 +18371,14 @@ type UpdateTemplateData = {
|
|
|
17789
18371
|
'name': string;
|
|
17790
18372
|
/** Description of the template. Example: "This is a sample template." */
|
|
17791
18373
|
'description'?: string;
|
|
17792
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17793
|
-
'apiVersion': 'v1';
|
|
17794
|
-
/**
|
|
17795
|
-
'project': {
|
|
17796
|
-
/** The ID of the project to use. */
|
|
17797
|
-
'id': string;
|
|
17798
|
-
} | {
|
|
17799
|
-
'spec': {
|
|
17800
|
-
/** The name of the project. Example: "New Project" */
|
|
17801
|
-
'name': string;
|
|
17802
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17803
|
-
'description'?: string;
|
|
17804
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17805
|
-
'color'?: string;
|
|
17806
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
17807
|
-
'region'?: string;
|
|
17808
|
-
} | {
|
|
17809
|
-
/** The name of the project. Example: "New Project" */
|
|
17810
|
-
'name': string;
|
|
17811
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17812
|
-
'description'?: string;
|
|
17813
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17814
|
-
'color'?: string;
|
|
17815
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
17816
|
-
'clusterId'?: string;
|
|
17817
|
-
};
|
|
17818
|
-
};
|
|
17819
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18374
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18375
|
+
'apiVersion': 'v1.1';
|
|
18376
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
17820
18377
|
'arguments'?: any;
|
|
17821
18378
|
'spec': any;
|
|
17822
18379
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
17823
18380
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
17824
|
-
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control.
|
|
18381
|
+
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
17825
18382
|
'argumentOverrides'?: any;
|
|
17826
18383
|
/** Additional options for the template creation. */
|
|
17827
18384
|
'options'?: {
|
|
@@ -17833,39 +18390,14 @@ type UpdateTemplateData = {
|
|
|
17833
18390
|
'name': string;
|
|
17834
18391
|
/** Description of the template. Example: "This is a sample template." */
|
|
17835
18392
|
'description'?: string;
|
|
17836
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17837
|
-
'apiVersion': 'v1';
|
|
17838
|
-
/**
|
|
17839
|
-
'project': {
|
|
17840
|
-
/** The ID of the project to use. */
|
|
17841
|
-
'id': string;
|
|
17842
|
-
} | {
|
|
17843
|
-
'spec': {
|
|
17844
|
-
/** The name of the project. Example: "New Project" */
|
|
17845
|
-
'name': string;
|
|
17846
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17847
|
-
'description'?: string;
|
|
17848
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17849
|
-
'color'?: string;
|
|
17850
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
17851
|
-
'region'?: string;
|
|
17852
|
-
} | {
|
|
17853
|
-
/** The name of the project. Example: "New Project" */
|
|
17854
|
-
'name': string;
|
|
17855
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17856
|
-
'description'?: string;
|
|
17857
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17858
|
-
'color'?: string;
|
|
17859
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
17860
|
-
'clusterId'?: string;
|
|
17861
|
-
};
|
|
17862
|
-
};
|
|
17863
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18393
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18394
|
+
'apiVersion': 'v1.1';
|
|
18395
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
17864
18396
|
'arguments'?: any;
|
|
17865
18397
|
'spec': any;
|
|
17866
18398
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
17867
18399
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
17868
|
-
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control.
|
|
18400
|
+
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
17869
18401
|
'argumentOverrides'?: any;
|
|
17870
18402
|
/** Additional options for the template creation. */
|
|
17871
18403
|
'options'?: {
|
|
@@ -17875,7 +18407,7 @@ type UpdateTemplateData = {
|
|
|
17875
18407
|
/** GitOps data for syncing this template with a file in version control. If set to `null`, removes GitOps handling from this template. */
|
|
17876
18408
|
'gitops': {
|
|
17877
18409
|
/** The VCS provider to use. Example: "github" */
|
|
17878
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
18410
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
17879
18411
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
17880
18412
|
'selfHostedVcsId'?: string;
|
|
17881
18413
|
/** 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" */
|
|
@@ -17894,7 +18426,7 @@ type UpdateTemplateData = {
|
|
|
17894
18426
|
'description'?: string;
|
|
17895
18427
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
17896
18428
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
17897
|
-
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control.
|
|
18429
|
+
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
17898
18430
|
'argumentOverrides'?: any;
|
|
17899
18431
|
/** Additional options for the template creation. */
|
|
17900
18432
|
'options'?: {
|
|
@@ -17904,7 +18436,7 @@ type UpdateTemplateData = {
|
|
|
17904
18436
|
/** GitOps data for syncing this template with a file in version control. If set to `null`, removes GitOps handling from this template. */
|
|
17905
18437
|
'gitops': {
|
|
17906
18438
|
/** The VCS provider to use. Example: "github" */
|
|
17907
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
18439
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
|
|
17908
18440
|
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
17909
18441
|
'selfHostedVcsId'?: string;
|
|
17910
18442
|
/** 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" */
|
|
@@ -17948,34 +18480,9 @@ type RunTemplateResult = {
|
|
|
17948
18480
|
'name': string;
|
|
17949
18481
|
/** Description of the template. Example: "This is a sample template." */
|
|
17950
18482
|
'description'?: string;
|
|
17951
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
17952
|
-
'apiVersion': 'v1';
|
|
17953
|
-
/**
|
|
17954
|
-
'project': {
|
|
17955
|
-
/** The ID of the project to use. */
|
|
17956
|
-
'id': string;
|
|
17957
|
-
} | {
|
|
17958
|
-
'spec': {
|
|
17959
|
-
/** The name of the project. Example: "New Project" */
|
|
17960
|
-
'name': string;
|
|
17961
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17962
|
-
'description'?: string;
|
|
17963
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17964
|
-
'color'?: string;
|
|
17965
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
17966
|
-
'region'?: string;
|
|
17967
|
-
} | {
|
|
17968
|
-
/** The name of the project. Example: "New Project" */
|
|
17969
|
-
'name': string;
|
|
17970
|
-
/** The description of the project. Example: "This is a new project." */
|
|
17971
|
-
'description'?: string;
|
|
17972
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
17973
|
-
'color'?: string;
|
|
17974
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
17975
|
-
'clusterId'?: string;
|
|
17976
|
-
};
|
|
17977
|
-
};
|
|
17978
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18483
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18484
|
+
'apiVersion': 'v1.1';
|
|
18485
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
17979
18486
|
'arguments'?: any;
|
|
17980
18487
|
'spec': any;
|
|
17981
18488
|
'refs'?: any;
|
|
@@ -18001,7 +18508,7 @@ type RunTemplateParameters = {
|
|
|
18001
18508
|
/** ID of the template */ 'templateId': string;
|
|
18002
18509
|
};
|
|
18003
18510
|
type RunTemplateData = {
|
|
18004
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'.
|
|
18511
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
18005
18512
|
'arguments'?: any;
|
|
18006
18513
|
};
|
|
18007
18514
|
/** Run a template */
|
|
@@ -18020,8 +18527,8 @@ type ListTemplaterunsResult = {
|
|
|
18020
18527
|
'name': string;
|
|
18021
18528
|
/** Description of the template. Example: "This is a sample template." */
|
|
18022
18529
|
'description'?: string;
|
|
18023
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
18024
|
-
'apiVersion': 'v1';
|
|
18530
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18531
|
+
'apiVersion': 'v1.1';
|
|
18025
18532
|
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
18026
18533
|
'id': string;
|
|
18027
18534
|
/** Identifier for the template Example: "example-template" */
|
|
@@ -18070,34 +18577,9 @@ type GetTemplaterunResult = {
|
|
|
18070
18577
|
'name': string;
|
|
18071
18578
|
/** Description of the template. Example: "This is a sample template." */
|
|
18072
18579
|
'description'?: string;
|
|
18073
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
18074
|
-
'apiVersion': 'v1';
|
|
18075
|
-
/**
|
|
18076
|
-
'project': {
|
|
18077
|
-
/** The ID of the project to use. */
|
|
18078
|
-
'id': string;
|
|
18079
|
-
} | {
|
|
18080
|
-
'spec': {
|
|
18081
|
-
/** The name of the project. Example: "New Project" */
|
|
18082
|
-
'name': string;
|
|
18083
|
-
/** The description of the project. Example: "This is a new project." */
|
|
18084
|
-
'description'?: string;
|
|
18085
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
18086
|
-
'color'?: string;
|
|
18087
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
18088
|
-
'region'?: string;
|
|
18089
|
-
} | {
|
|
18090
|
-
/** The name of the project. Example: "New Project" */
|
|
18091
|
-
'name': string;
|
|
18092
|
-
/** The description of the project. Example: "This is a new project." */
|
|
18093
|
-
'description'?: string;
|
|
18094
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
18095
|
-
'color'?: string;
|
|
18096
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
18097
|
-
'clusterId'?: string;
|
|
18098
|
-
};
|
|
18099
|
-
};
|
|
18100
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18580
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18581
|
+
'apiVersion': 'v1.1';
|
|
18582
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
18101
18583
|
'arguments'?: any;
|
|
18102
18584
|
'spec': any;
|
|
18103
18585
|
'refs'?: any;
|
|
@@ -18137,34 +18619,9 @@ type AbortTemplaterunResult = {
|
|
|
18137
18619
|
'name': string;
|
|
18138
18620
|
/** Description of the template. Example: "This is a sample template." */
|
|
18139
18621
|
'description'?: string;
|
|
18140
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
18141
|
-
'apiVersion': 'v1';
|
|
18142
|
-
/**
|
|
18143
|
-
'project': {
|
|
18144
|
-
/** The ID of the project to use. */
|
|
18145
|
-
'id': string;
|
|
18146
|
-
} | {
|
|
18147
|
-
'spec': {
|
|
18148
|
-
/** The name of the project. Example: "New Project" */
|
|
18149
|
-
'name': string;
|
|
18150
|
-
/** The description of the project. Example: "This is a new project." */
|
|
18151
|
-
'description'?: string;
|
|
18152
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
18153
|
-
'color'?: string;
|
|
18154
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
18155
|
-
'region'?: string;
|
|
18156
|
-
} | {
|
|
18157
|
-
/** The name of the project. Example: "New Project" */
|
|
18158
|
-
'name': string;
|
|
18159
|
-
/** The description of the project. Example: "This is a new project." */
|
|
18160
|
-
'description'?: string;
|
|
18161
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
18162
|
-
'color'?: string;
|
|
18163
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
18164
|
-
'clusterId'?: string;
|
|
18165
|
-
};
|
|
18166
|
-
};
|
|
18167
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
|
|
18622
|
+
/** The version of the Northflank API to run the template against. Example: "v1.1" */
|
|
18623
|
+
'apiVersion': 'v1.1';
|
|
18624
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
18168
18625
|
'arguments'?: any;
|
|
18169
18626
|
'spec': any;
|
|
18170
18627
|
'refs'?: any;
|
|
@@ -18240,7 +18697,9 @@ declare class ApiClient {
|
|
|
18240
18697
|
};
|
|
18241
18698
|
dnsId: GetDnsidCall;
|
|
18242
18699
|
domain: GetDomainCall;
|
|
18243
|
-
subdomain: GetSubdomainCall
|
|
18700
|
+
subdomain: GetSubdomainCall & {
|
|
18701
|
+
path: GetSubdomainPathCall;
|
|
18702
|
+
};
|
|
18244
18703
|
logSink: GetLogsinkCall;
|
|
18245
18704
|
notification: GetNotificationCall;
|
|
18246
18705
|
registryCredentials: GetRegistrycredentialsCall;
|
|
@@ -18313,6 +18772,9 @@ declare class ApiClient {
|
|
|
18313
18772
|
regions: ListCloudRegionsCall;
|
|
18314
18773
|
};
|
|
18315
18774
|
domains: ListDomainsCall;
|
|
18775
|
+
subdomain: {
|
|
18776
|
+
path: ListSubdomainPathCall;
|
|
18777
|
+
};
|
|
18316
18778
|
logSinks: ListLogsinksCall;
|
|
18317
18779
|
notifications: ListNotificationsCall;
|
|
18318
18780
|
registryCredentials: ListRegistrycredentialsCall;
|
|
@@ -18368,6 +18830,9 @@ declare class ApiClient {
|
|
|
18368
18830
|
cluster: UpdateCloudClusterCall;
|
|
18369
18831
|
integration: UpdateCloudIntegrationCall;
|
|
18370
18832
|
};
|
|
18833
|
+
subdomain: {
|
|
18834
|
+
path: UpdateSubdomainPathCall;
|
|
18835
|
+
};
|
|
18371
18836
|
logSink: UpdateLogsinkCall;
|
|
18372
18837
|
notification: UpdateNotificationCall;
|
|
18373
18838
|
registryCredentials: UpdateRegistrycredentialsCall;
|
|
@@ -18408,7 +18873,9 @@ declare class ApiClient {
|
|
|
18408
18873
|
integration: DeleteCloudIntegrationCall;
|
|
18409
18874
|
};
|
|
18410
18875
|
domain: DeleteDomainCall;
|
|
18411
|
-
subdomain: DeleteSubdomainCall
|
|
18876
|
+
subdomain: DeleteSubdomainCall & {
|
|
18877
|
+
path: DeleteSubdomainPathCall;
|
|
18878
|
+
};
|
|
18412
18879
|
logSink: DeleteLogsinkCall;
|
|
18413
18880
|
notification: DeleteNotificationCall;
|
|
18414
18881
|
registryCredentials: DeleteRegistrycredentialsCall;
|
|
@@ -18435,15 +18902,21 @@ declare class ApiClient {
|
|
|
18435
18902
|
domain: {
|
|
18436
18903
|
subdomain: AddDomainSubdomainCall;
|
|
18437
18904
|
};
|
|
18905
|
+
subdomain: {
|
|
18906
|
+
path: AddSubdomainPathCall;
|
|
18907
|
+
};
|
|
18438
18908
|
registryCredentials: AddRegistrycredentialsCall;
|
|
18439
18909
|
};
|
|
18440
18910
|
assign: {
|
|
18441
18911
|
subdomain: {
|
|
18442
18912
|
service: AssignSubdomainServiceCall;
|
|
18913
|
+
path: AssignSubdomainPathCall;
|
|
18443
18914
|
};
|
|
18444
18915
|
};
|
|
18445
18916
|
unassign: {
|
|
18446
|
-
subdomain: UnassignSubdomainCall
|
|
18917
|
+
subdomain: UnassignSubdomainCall & {
|
|
18918
|
+
path: UnassignSubdomainPathCall;
|
|
18919
|
+
};
|
|
18447
18920
|
};
|
|
18448
18921
|
disable: {
|
|
18449
18922
|
subdomain: {
|
|
@@ -18589,7 +19062,9 @@ declare class ApiClient {
|
|
|
18589
19062
|
};
|
|
18590
19063
|
dnsId: GetDnsidEndpoint;
|
|
18591
19064
|
domain: GetDomainEndpoint;
|
|
18592
|
-
subdomain: GetSubdomainEndpoint
|
|
19065
|
+
subdomain: GetSubdomainEndpoint & {
|
|
19066
|
+
path: GetSubdomainPathEndpoint;
|
|
19067
|
+
};
|
|
18593
19068
|
logSink: GetLogsinkEndpoint;
|
|
18594
19069
|
notification: GetNotificationEndpoint;
|
|
18595
19070
|
registryCredentials: GetRegistrycredentialsEndpoint;
|
|
@@ -18646,6 +19121,9 @@ declare class ApiClient {
|
|
|
18646
19121
|
regions: ListCloudRegionsEndpoint;
|
|
18647
19122
|
};
|
|
18648
19123
|
domains: ListDomainsEndpoint;
|
|
19124
|
+
subdomain: {
|
|
19125
|
+
path: ListSubdomainPathEndpoint;
|
|
19126
|
+
};
|
|
18649
19127
|
logSinks: ListLogsinksEndpoint;
|
|
18650
19128
|
notifications: ListNotificationsEndpoint;
|
|
18651
19129
|
registryCredentials: ListRegistrycredentialsEndpoint;
|
|
@@ -18701,6 +19179,9 @@ declare class ApiClient {
|
|
|
18701
19179
|
cluster: UpdateCloudClusterEndpoint;
|
|
18702
19180
|
integration: UpdateCloudIntegrationEndpoint;
|
|
18703
19181
|
};
|
|
19182
|
+
subdomain: {
|
|
19183
|
+
path: UpdateSubdomainPathEndpoint;
|
|
19184
|
+
};
|
|
18704
19185
|
logSink: UpdateLogsinkEndpoint;
|
|
18705
19186
|
notification: UpdateNotificationEndpoint;
|
|
18706
19187
|
registryCredentials: UpdateRegistrycredentialsEndpoint;
|
|
@@ -18741,7 +19222,9 @@ declare class ApiClient {
|
|
|
18741
19222
|
integration: DeleteCloudIntegrationEndpoint;
|
|
18742
19223
|
};
|
|
18743
19224
|
domain: DeleteDomainEndpoint;
|
|
18744
|
-
subdomain: DeleteSubdomainEndpoint
|
|
19225
|
+
subdomain: DeleteSubdomainEndpoint & {
|
|
19226
|
+
path: DeleteSubdomainPathEndpoint;
|
|
19227
|
+
};
|
|
18745
19228
|
logSink: DeleteLogsinkEndpoint;
|
|
18746
19229
|
notification: DeleteNotificationEndpoint;
|
|
18747
19230
|
registryCredentials: DeleteRegistrycredentialsEndpoint;
|
|
@@ -18768,15 +19251,21 @@ declare class ApiClient {
|
|
|
18768
19251
|
domain: {
|
|
18769
19252
|
subdomain: AddDomainSubdomainEndpoint;
|
|
18770
19253
|
};
|
|
19254
|
+
subdomain: {
|
|
19255
|
+
path: AddSubdomainPathEndpoint;
|
|
19256
|
+
};
|
|
18771
19257
|
registryCredentials: AddRegistrycredentialsEndpoint;
|
|
18772
19258
|
};
|
|
18773
19259
|
assign: {
|
|
18774
19260
|
subdomain: {
|
|
18775
19261
|
service: AssignSubdomainServiceEndpoint;
|
|
19262
|
+
path: AssignSubdomainPathEndpoint;
|
|
18776
19263
|
};
|
|
18777
19264
|
};
|
|
18778
19265
|
unassign: {
|
|
18779
|
-
subdomain: UnassignSubdomainEndpoint
|
|
19266
|
+
subdomain: UnassignSubdomainEndpoint & {
|
|
19267
|
+
path: UnassignSubdomainPathEndpoint;
|
|
19268
|
+
};
|
|
18780
19269
|
};
|
|
18781
19270
|
disable: {
|
|
18782
19271
|
subdomain: {
|
|
@@ -18906,4 +19395,4 @@ type ApiClientOpts = {
|
|
|
18906
19395
|
customUserAgent?: string;
|
|
18907
19396
|
};
|
|
18908
19397
|
|
|
18909
|
-
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, 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, 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, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|
|
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 };
|