@northflank/js-client 0.8.2 → 0.8.3
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 +1373 -1050
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +1373 -1050
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/esm/api-client.d.ts
CHANGED
|
@@ -212,7 +212,7 @@ type ListServicesResult = {
|
|
|
212
212
|
/** Details about the status of the most recent build. */
|
|
213
213
|
'build'?: {
|
|
214
214
|
/** The current status of the build. Example: "SUCCESS" */
|
|
215
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
215
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
216
216
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
217
217
|
'lastTransitionTime'?: string;
|
|
218
218
|
};
|
|
@@ -403,6 +403,7 @@ type ExecConfig = {
|
|
|
403
403
|
projectId: string;
|
|
404
404
|
entityType: 'service' | 'job' | 'addon' | 'build';
|
|
405
405
|
entityId: string;
|
|
406
|
+
instanceName?: string;
|
|
406
407
|
containerName?: string;
|
|
407
408
|
command?: string | string[];
|
|
408
409
|
shell?: string;
|
|
@@ -447,11 +448,16 @@ type CommandResult = {
|
|
|
447
448
|
};
|
|
448
449
|
type ExecCommandData = {
|
|
449
450
|
command: string | string[];
|
|
451
|
+
instanceName?: string;
|
|
450
452
|
containerName?: string;
|
|
451
453
|
shell?: string;
|
|
452
454
|
user?: string | number;
|
|
453
455
|
group?: string | number;
|
|
454
456
|
};
|
|
457
|
+
type ExecCommandDataAddon = ExecCommandData & {
|
|
458
|
+
instanceName: string;
|
|
459
|
+
containerName?: string;
|
|
460
|
+
};
|
|
455
461
|
type ExecSessionData = Omit<ExecCommandData, 'command'> & {
|
|
456
462
|
command?: string | string[];
|
|
457
463
|
encoding?: string;
|
|
@@ -459,6 +465,10 @@ type ExecSessionData = Omit<ExecCommandData, 'command'> & {
|
|
|
459
465
|
ttyRows?: number;
|
|
460
466
|
ttyColumns?: number;
|
|
461
467
|
};
|
|
468
|
+
type CommandInfo = {
|
|
469
|
+
instanceName: string;
|
|
470
|
+
containerName: string;
|
|
471
|
+
};
|
|
462
472
|
declare class NorthflankExecCommand {
|
|
463
473
|
private readonly contextProvider;
|
|
464
474
|
private readonly agent?;
|
|
@@ -483,7 +493,7 @@ declare class NorthflankExecCommand {
|
|
|
483
493
|
execServiceSession(parameters: {
|
|
484
494
|
projectId: string;
|
|
485
495
|
serviceId: string;
|
|
486
|
-
}, data?: ExecSessionData): Promise<ExecCommandStandard>;
|
|
496
|
+
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<ExecCommandStandard>;
|
|
487
497
|
/**
|
|
488
498
|
* Runs command on a Northflank job and waits for completion returning command result and
|
|
489
499
|
* standard output and standard error emitted during commmand execution.
|
|
@@ -504,7 +514,28 @@ declare class NorthflankExecCommand {
|
|
|
504
514
|
execJobSession(parameters: {
|
|
505
515
|
projectId: string;
|
|
506
516
|
jobId: string;
|
|
507
|
-
}, data?: ExecSessionData): Promise<ExecCommandStandard>;
|
|
517
|
+
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<ExecCommandStandard>;
|
|
518
|
+
/**
|
|
519
|
+
* Runs command on a Northflank job and waits for completion returning command result and
|
|
520
|
+
* standard output and standard error emitted during commmand execution.
|
|
521
|
+
*/
|
|
522
|
+
execAddonCommand(parameters: {
|
|
523
|
+
projectId: string;
|
|
524
|
+
addonId: string;
|
|
525
|
+
}, data: ExecCommandDataAddon): Promise<{
|
|
526
|
+
commandResult: CommandResult;
|
|
527
|
+
stdOut: string;
|
|
528
|
+
stdErr: string;
|
|
529
|
+
}>;
|
|
530
|
+
/**
|
|
531
|
+
* Starts a session on a Northflank job. This is usually a longer-running command. The returned object allows to listen to events as well
|
|
532
|
+
* as consume streams for standard output (stdOut) and standard error (stdErr). Input can be sent using the standard input (stdIn)
|
|
533
|
+
* writable stream.
|
|
534
|
+
*/
|
|
535
|
+
execAddonSession(parameters: {
|
|
536
|
+
projectId: string;
|
|
537
|
+
addonId: string;
|
|
538
|
+
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<ExecCommandStandard>;
|
|
508
539
|
private execCommand;
|
|
509
540
|
private shellSession;
|
|
510
541
|
private getCommandRunner;
|
|
@@ -1800,49 +1831,8 @@ type ListCloudClustersResult = {
|
|
|
1800
1831
|
'kubernetesName': string;
|
|
1801
1832
|
}[];
|
|
1802
1833
|
};
|
|
1834
|
+
/** An array of node pools for BYOC or BYOK. */
|
|
1803
1835
|
'nodePools': {
|
|
1804
|
-
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
1805
|
-
'id': string;
|
|
1806
|
-
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
1807
|
-
'providerId': string;
|
|
1808
|
-
'computeResources'?: {
|
|
1809
|
-
'gpu'?: {
|
|
1810
|
-
'mig'?: {
|
|
1811
|
-
'enabled'?: boolean;
|
|
1812
|
-
'partitions'?: string[];
|
|
1813
|
-
};
|
|
1814
|
-
'timeslicing'?: {
|
|
1815
|
-
'enabled'?: boolean;
|
|
1816
|
-
'numSlices'?: number;
|
|
1817
|
-
};
|
|
1818
|
-
};
|
|
1819
|
-
};
|
|
1820
|
-
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
1821
|
-
'defaultPool'?: boolean;
|
|
1822
|
-
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
1823
|
-
'preemptible'?: boolean;
|
|
1824
|
-
/** Define basic workload scheduling restrictions for this node pool */
|
|
1825
|
-
'scheduling'?: {
|
|
1826
|
-
/** Allow jobs to schedule to this node pool */
|
|
1827
|
-
'allowJobs'?: boolean;
|
|
1828
|
-
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1829
|
-
'onlyGpuJobs'?: boolean;
|
|
1830
|
-
/** Allow services to schedule to this node pool */
|
|
1831
|
-
'allowServices'?: boolean;
|
|
1832
|
-
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1833
|
-
'onlyGpuServices'?: boolean;
|
|
1834
|
-
/** Allow addons to schedule to this node pool */
|
|
1835
|
-
'allowAddons'?: boolean;
|
|
1836
|
-
/** Allow builds to schedule to this node pool */
|
|
1837
|
-
'allowBuilds'?: boolean;
|
|
1838
|
-
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1839
|
-
'onlyGpuBuilds'?: boolean;
|
|
1840
|
-
/** Allow the placement of Ceph pods */
|
|
1841
|
-
'allowCeph'?: boolean;
|
|
1842
|
-
};
|
|
1843
|
-
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
1844
|
-
'labels'?: any;
|
|
1845
|
-
}[] | {
|
|
1846
1836
|
/** 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" */
|
|
1847
1837
|
'id': string;
|
|
1848
1838
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
@@ -1863,6 +1853,8 @@ type ListCloudClustersResult = {
|
|
|
1863
1853
|
'systemPool'?: boolean;
|
|
1864
1854
|
/** When 'provider' is 'azure', set this flag to use public node IPs. */
|
|
1865
1855
|
'enablePublicNodeIp'?: boolean;
|
|
1856
|
+
/** ID of the vnet subnet to use. */
|
|
1857
|
+
'vnetSubnetId'?: string;
|
|
1866
1858
|
};
|
|
1867
1859
|
/** AWS specific node pool settings. */
|
|
1868
1860
|
'aws'?: {
|
|
@@ -1882,11 +1874,67 @@ type ListCloudClustersResult = {
|
|
|
1882
1874
|
'min'?: number;
|
|
1883
1875
|
'max'?: number;
|
|
1884
1876
|
};
|
|
1885
|
-
'
|
|
1886
|
-
'
|
|
1877
|
+
'computeResources'?: {
|
|
1878
|
+
'gpu'?: {
|
|
1879
|
+
/** GPU type associated with the node pool. Example: "h100" */
|
|
1880
|
+
'type': string;
|
|
1881
|
+
'resources': {
|
|
1882
|
+
'memoryInfo'?: {
|
|
1883
|
+
/** Memory amount of the GPU in Gib. Example: 80 */
|
|
1884
|
+
'sizeInGiB'?: number;
|
|
1885
|
+
};
|
|
1886
|
+
};
|
|
1887
|
+
/** Number of GPUs per node. Example: 1 */
|
|
1888
|
+
'count': number;
|
|
1889
|
+
/** Time-slicing configuration object. */
|
|
1890
|
+
'timeslicing'?: {
|
|
1891
|
+
/** Whether or not to enable time-slicing on the GPU. */
|
|
1892
|
+
'enabled'?: boolean;
|
|
1893
|
+
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
1894
|
+
'numSlices'?: number;
|
|
1895
|
+
};
|
|
1896
|
+
};
|
|
1897
|
+
};
|
|
1898
|
+
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
1899
|
+
'preemptible'?: boolean;
|
|
1900
|
+
/** The disk type to use. */
|
|
1901
|
+
'diskType'?: string;
|
|
1902
|
+
/** Disk size in GB Example: 100 */
|
|
1903
|
+
'diskSize': number;
|
|
1904
|
+
/** Zones in which the node pool should be provisioned. */
|
|
1905
|
+
'availabilityZones': string[];
|
|
1906
|
+
/** Subnets ids in which the node pool should be provisioned. */
|
|
1907
|
+
'subnets'?: string[];
|
|
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
|
+
/** Allow the placement of Ceph pods */
|
|
1925
|
+
'allowCeph'?: boolean;
|
|
1887
1926
|
};
|
|
1927
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
1928
|
+
'labels'?: any;
|
|
1929
|
+
}[] | {
|
|
1930
|
+
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
1931
|
+
'id': string;
|
|
1932
|
+
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
1933
|
+
'providerId': string;
|
|
1888
1934
|
'computeResources'?: {
|
|
1889
1935
|
'gpu'?: {
|
|
1936
|
+
/** Whether this node pool consists of GPU nodes . */
|
|
1937
|
+
'supported'?: boolean;
|
|
1890
1938
|
/** GPU type associated with the node pool. Example: "h100" */
|
|
1891
1939
|
'type'?: string;
|
|
1892
1940
|
'resources'?: {
|
|
@@ -1895,8 +1943,6 @@ type ListCloudClustersResult = {
|
|
|
1895
1943
|
'sizeInGiB'?: number;
|
|
1896
1944
|
};
|
|
1897
1945
|
};
|
|
1898
|
-
/** Number of GPUs per node. Example: 1 */
|
|
1899
|
-
'count'?: number;
|
|
1900
1946
|
/** Multi-Instance GPU (MIG). configuration object. */
|
|
1901
1947
|
'mig'?: {
|
|
1902
1948
|
/** Whether or not to enable Multi-Instance GPU (MIG). */
|
|
@@ -1911,18 +1957,14 @@ type ListCloudClustersResult = {
|
|
|
1911
1957
|
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
1912
1958
|
'numSlices'?: number;
|
|
1913
1959
|
};
|
|
1960
|
+
/** Number of GPUs per node. Example: 1 */
|
|
1961
|
+
'count'?: number;
|
|
1914
1962
|
};
|
|
1915
1963
|
};
|
|
1964
|
+
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
1965
|
+
'defaultPool'?: boolean;
|
|
1916
1966
|
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
1917
1967
|
'preemptible'?: boolean;
|
|
1918
|
-
/** The disk type to use. */
|
|
1919
|
-
'diskType'?: string;
|
|
1920
|
-
/** Disk size in GB Example: 100 */
|
|
1921
|
-
'diskSize': number;
|
|
1922
|
-
/** Zones in which the node pool should be provisioned. */
|
|
1923
|
-
'availabilityZones': string[];
|
|
1924
|
-
/** Subnets ids in which the node pool should be provisioned. */
|
|
1925
|
-
'subnets'?: string[];
|
|
1926
1968
|
/** Define basic workload scheduling restrictions for this node pool */
|
|
1927
1969
|
'scheduling'?: {
|
|
1928
1970
|
/** Allow jobs to schedule to this node pool */
|
|
@@ -1958,8 +2000,23 @@ type ListCloudClustersResult = {
|
|
|
1958
2000
|
/** Credentials to use for storing of images. Example: "my-registry-credentials" */
|
|
1959
2001
|
'registryId'?: string;
|
|
1960
2002
|
};
|
|
2003
|
+
/** Logging settings */
|
|
1961
2004
|
'logging'?: {
|
|
1962
|
-
'mode'?: 'paas'
|
|
2005
|
+
'mode'?: 'paas';
|
|
2006
|
+
} | {
|
|
2007
|
+
'mode': 'loki';
|
|
2008
|
+
'loki'?: {
|
|
2009
|
+
'storageType': 's3';
|
|
2010
|
+
's3Region': string;
|
|
2011
|
+
's3BucketName': string;
|
|
2012
|
+
};
|
|
2013
|
+
} | {
|
|
2014
|
+
'mode': 'loki';
|
|
2015
|
+
'loki'?: {
|
|
2016
|
+
'storageType': 'gcs';
|
|
2017
|
+
'gcsBucketName': string;
|
|
2018
|
+
'gcpIntegrationId': string;
|
|
2019
|
+
};
|
|
1963
2020
|
};
|
|
1964
2021
|
'vanityDomains'?: {
|
|
1965
2022
|
'apps'?: {
|
|
@@ -2075,6 +2132,16 @@ type ListCloudClustersResult = {
|
|
|
2075
2132
|
};
|
|
2076
2133
|
/** Azure specific data. Required when `provider` is `azure`. */
|
|
2077
2134
|
'azure'?: {
|
|
2135
|
+
'networking'?: {
|
|
2136
|
+
'vnetConfiguration'?: {
|
|
2137
|
+
/** The vnet mode to use for this cluster. Use this to switch between creation of a new vnet per cluster or specifying a custom vnet. */
|
|
2138
|
+
'mode': 'create-default' | 'custom-vnet';
|
|
2139
|
+
/** Azure vnetId that should be used for this cluster. By default a new vnet will be created. */
|
|
2140
|
+
'vnetId'?: string;
|
|
2141
|
+
};
|
|
2142
|
+
/** Optional setting to configure overlay mode on Azure. */
|
|
2143
|
+
'networkPluginMode'?: 'overlay';
|
|
2144
|
+
};
|
|
2078
2145
|
'enableAuthorizedIpRanges'?: boolean;
|
|
2079
2146
|
'authorizedIpRanges'?: string[];
|
|
2080
2147
|
};
|
|
@@ -2140,49 +2207,8 @@ type CreateCloudClusterResult = {
|
|
|
2140
2207
|
'kubernetesName': string;
|
|
2141
2208
|
}[];
|
|
2142
2209
|
};
|
|
2210
|
+
/** An array of node pools for BYOC or BYOK. */
|
|
2143
2211
|
'nodePools': {
|
|
2144
|
-
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
2145
|
-
'id': string;
|
|
2146
|
-
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
2147
|
-
'providerId': string;
|
|
2148
|
-
'computeResources'?: {
|
|
2149
|
-
'gpu'?: {
|
|
2150
|
-
'mig'?: {
|
|
2151
|
-
'enabled'?: boolean;
|
|
2152
|
-
'partitions'?: string[];
|
|
2153
|
-
};
|
|
2154
|
-
'timeslicing'?: {
|
|
2155
|
-
'enabled'?: boolean;
|
|
2156
|
-
'numSlices'?: number;
|
|
2157
|
-
};
|
|
2158
|
-
};
|
|
2159
|
-
};
|
|
2160
|
-
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
2161
|
-
'defaultPool'?: boolean;
|
|
2162
|
-
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
2163
|
-
'preemptible'?: boolean;
|
|
2164
|
-
/** Define basic workload scheduling restrictions for this node pool */
|
|
2165
|
-
'scheduling'?: {
|
|
2166
|
-
/** Allow jobs to schedule to this node pool */
|
|
2167
|
-
'allowJobs'?: boolean;
|
|
2168
|
-
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2169
|
-
'onlyGpuJobs'?: boolean;
|
|
2170
|
-
/** Allow services to schedule to this node pool */
|
|
2171
|
-
'allowServices'?: boolean;
|
|
2172
|
-
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2173
|
-
'onlyGpuServices'?: boolean;
|
|
2174
|
-
/** Allow addons to schedule to this node pool */
|
|
2175
|
-
'allowAddons'?: boolean;
|
|
2176
|
-
/** Allow builds to schedule to this node pool */
|
|
2177
|
-
'allowBuilds'?: boolean;
|
|
2178
|
-
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2179
|
-
'onlyGpuBuilds'?: boolean;
|
|
2180
|
-
/** Allow the placement of Ceph pods */
|
|
2181
|
-
'allowCeph'?: boolean;
|
|
2182
|
-
};
|
|
2183
|
-
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2184
|
-
'labels'?: any;
|
|
2185
|
-
}[] | {
|
|
2186
2212
|
/** 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" */
|
|
2187
2213
|
'id': string;
|
|
2188
2214
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
@@ -2203,6 +2229,8 @@ type CreateCloudClusterResult = {
|
|
|
2203
2229
|
'systemPool'?: boolean;
|
|
2204
2230
|
/** When 'provider' is 'azure', set this flag to use public node IPs. */
|
|
2205
2231
|
'enablePublicNodeIp'?: boolean;
|
|
2232
|
+
/** ID of the vnet subnet to use. */
|
|
2233
|
+
'vnetSubnetId'?: string;
|
|
2206
2234
|
};
|
|
2207
2235
|
/** AWS specific node pool settings. */
|
|
2208
2236
|
'aws'?: {
|
|
@@ -2222,11 +2250,65 @@ type CreateCloudClusterResult = {
|
|
|
2222
2250
|
'min'?: number;
|
|
2223
2251
|
'max'?: number;
|
|
2224
2252
|
};
|
|
2225
|
-
'
|
|
2226
|
-
'
|
|
2253
|
+
'computeResources'?: {
|
|
2254
|
+
'gpu'?: {
|
|
2255
|
+
/** Time-slicing configuration object. */
|
|
2256
|
+
'timeslicing'?: {
|
|
2257
|
+
/** Whether or not to enable time-slicing on the GPU. */
|
|
2258
|
+
'enabled'?: boolean;
|
|
2259
|
+
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
2260
|
+
'numSlices'?: number;
|
|
2261
|
+
};
|
|
2262
|
+
};
|
|
2263
|
+
};
|
|
2264
|
+
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
2265
|
+
'preemptible'?: boolean;
|
|
2266
|
+
/** The disk type to use. */
|
|
2267
|
+
'diskType'?: string;
|
|
2268
|
+
/** Disk size in GB Example: 100 */
|
|
2269
|
+
'diskSize': number;
|
|
2270
|
+
/** Zones in which the node pool should be provisioned. */
|
|
2271
|
+
'availabilityZones': string[];
|
|
2272
|
+
/** Subnets in which the node pool should be provisioned. Required if provider is `oci`. */
|
|
2273
|
+
'subnets'?: string[];
|
|
2274
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
2275
|
+
'scheduling'?: {
|
|
2276
|
+
/** Allow jobs to schedule to this node pool */
|
|
2277
|
+
'allowJobs'?: boolean;
|
|
2278
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2279
|
+
'onlyGpuJobs'?: boolean;
|
|
2280
|
+
/** Allow services to schedule to this node pool */
|
|
2281
|
+
'allowServices'?: boolean;
|
|
2282
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2283
|
+
'onlyGpuServices'?: boolean;
|
|
2284
|
+
/** Allow addons to schedule to this node pool */
|
|
2285
|
+
'allowAddons'?: boolean;
|
|
2286
|
+
/** Allow builds to schedule to this node pool */
|
|
2287
|
+
'allowBuilds'?: boolean;
|
|
2288
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2289
|
+
'onlyGpuBuilds'?: boolean;
|
|
2290
|
+
/** Allow the placement of Ceph pods */
|
|
2291
|
+
'allowCeph'?: boolean;
|
|
2227
2292
|
};
|
|
2293
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2294
|
+
'labels'?: any;
|
|
2295
|
+
}[] | {
|
|
2296
|
+
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
2297
|
+
'id': string;
|
|
2298
|
+
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
2299
|
+
'providerId': string;
|
|
2228
2300
|
'computeResources'?: {
|
|
2229
2301
|
'gpu'?: {
|
|
2302
|
+
/** Whether this node pool consists of GPU nodes . */
|
|
2303
|
+
'supported'?: boolean;
|
|
2304
|
+
/** GPU type associated with the node pool. Example: "h100" */
|
|
2305
|
+
'type'?: string;
|
|
2306
|
+
'resources'?: {
|
|
2307
|
+
'memoryInfo'?: {
|
|
2308
|
+
/** Memory amount of the GPU in Gib. Example: 80 */
|
|
2309
|
+
'sizeInGiB'?: number;
|
|
2310
|
+
};
|
|
2311
|
+
};
|
|
2230
2312
|
/** Multi-Instance GPU (MIG). configuration object. */
|
|
2231
2313
|
'mig'?: {
|
|
2232
2314
|
/** Whether or not to enable Multi-Instance GPU (MIG). */
|
|
@@ -2241,17 +2323,14 @@ type CreateCloudClusterResult = {
|
|
|
2241
2323
|
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
2242
2324
|
'numSlices'?: number;
|
|
2243
2325
|
};
|
|
2326
|
+
/** Number of GPUs per node. Example: 1 */
|
|
2327
|
+
'count'?: number;
|
|
2244
2328
|
};
|
|
2245
2329
|
};
|
|
2330
|
+
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
2331
|
+
'defaultPool'?: boolean;
|
|
2246
2332
|
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
2247
2333
|
'preemptible'?: boolean;
|
|
2248
|
-
/** The disk type to use. */
|
|
2249
|
-
'diskType'?: string;
|
|
2250
|
-
/** Disk size in GB Example: 100 */
|
|
2251
|
-
'diskSize': number;
|
|
2252
|
-
/** Zones in which the node pool should be provisioned. */
|
|
2253
|
-
'availabilityZones': string[];
|
|
2254
|
-
'subnets'?: string[];
|
|
2255
2334
|
/** Define basic workload scheduling restrictions for this node pool */
|
|
2256
2335
|
'scheduling'?: {
|
|
2257
2336
|
/** Allow jobs to schedule to this node pool */
|
|
@@ -2287,15 +2366,25 @@ type CreateCloudClusterResult = {
|
|
|
2287
2366
|
/** Credentials to use for storing of images. Example: "my-registry-credentials" */
|
|
2288
2367
|
'registryId'?: string;
|
|
2289
2368
|
};
|
|
2369
|
+
/** Logging settings */
|
|
2290
2370
|
'logging'?: {
|
|
2291
|
-
'mode'?: 'paas'
|
|
2292
|
-
|
|
2371
|
+
'mode'?: 'paas';
|
|
2372
|
+
} | {
|
|
2373
|
+
'mode': 'loki';
|
|
2293
2374
|
'loki'?: {
|
|
2375
|
+
'storageType': 's3';
|
|
2294
2376
|
's3BucketName': string;
|
|
2295
2377
|
's3AccessKey': string;
|
|
2296
2378
|
's3SecretKey': string;
|
|
2297
2379
|
's3Region': string;
|
|
2298
2380
|
};
|
|
2381
|
+
} | {
|
|
2382
|
+
'mode': 'loki';
|
|
2383
|
+
'loki'?: {
|
|
2384
|
+
'storageType': 'gcs';
|
|
2385
|
+
'gcsBucketName': string;
|
|
2386
|
+
'gcpIntegrationId': string;
|
|
2387
|
+
};
|
|
2299
2388
|
};
|
|
2300
2389
|
'vanityDomains'?: {
|
|
2301
2390
|
'apps'?: {
|
|
@@ -2412,6 +2501,16 @@ type CreateCloudClusterResult = {
|
|
|
2412
2501
|
};
|
|
2413
2502
|
/** Azure specific data. Required when `provider` is `azure`. */
|
|
2414
2503
|
'azure'?: {
|
|
2504
|
+
'networking'?: {
|
|
2505
|
+
'vnetConfiguration'?: {
|
|
2506
|
+
/** The vnet mode to use for this cluster. Use this to switch between creation of a new vnet per cluster or specifying a custom vnet. */
|
|
2507
|
+
'mode': 'create-default' | 'custom-vnet';
|
|
2508
|
+
/** Azure vnetId that should be used for this cluster. By default a new vnet will be created. */
|
|
2509
|
+
'vnetId'?: string;
|
|
2510
|
+
};
|
|
2511
|
+
/** Optional setting to configure overlay mode on Azure. */
|
|
2512
|
+
'networkPluginMode'?: 'overlay';
|
|
2513
|
+
};
|
|
2415
2514
|
'enableAuthorizedIpRanges'?: boolean;
|
|
2416
2515
|
'authorizedIpRanges'?: string[];
|
|
2417
2516
|
};
|
|
@@ -2472,50 +2571,9 @@ type CreateCloudClusterData = {
|
|
|
2472
2571
|
'kubernetesName': string;
|
|
2473
2572
|
}[];
|
|
2474
2573
|
};
|
|
2574
|
+
/** An array of node pools for BYOC or BYOK. */
|
|
2475
2575
|
'nodePools': {
|
|
2476
|
-
/** ID of
|
|
2477
|
-
'id': string;
|
|
2478
|
-
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
2479
|
-
'providerId': string;
|
|
2480
|
-
'computeResources'?: {
|
|
2481
|
-
'gpu'?: {
|
|
2482
|
-
'mig'?: {
|
|
2483
|
-
'enabled'?: boolean;
|
|
2484
|
-
'partitions'?: string[];
|
|
2485
|
-
};
|
|
2486
|
-
'timeslicing'?: {
|
|
2487
|
-
'enabled'?: boolean;
|
|
2488
|
-
'numSlices'?: number;
|
|
2489
|
-
};
|
|
2490
|
-
};
|
|
2491
|
-
};
|
|
2492
|
-
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
2493
|
-
'defaultPool'?: boolean;
|
|
2494
|
-
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
2495
|
-
'preemptible'?: boolean;
|
|
2496
|
-
/** Define basic workload scheduling restrictions for this node pool */
|
|
2497
|
-
'scheduling'?: {
|
|
2498
|
-
/** Allow jobs to schedule to this node pool */
|
|
2499
|
-
'allowJobs'?: boolean;
|
|
2500
|
-
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2501
|
-
'onlyGpuJobs'?: boolean;
|
|
2502
|
-
/** Allow services to schedule to this node pool */
|
|
2503
|
-
'allowServices'?: boolean;
|
|
2504
|
-
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2505
|
-
'onlyGpuServices'?: boolean;
|
|
2506
|
-
/** Allow addons to schedule to this node pool */
|
|
2507
|
-
'allowAddons'?: boolean;
|
|
2508
|
-
/** Allow builds to schedule to this node pool */
|
|
2509
|
-
'allowBuilds'?: boolean;
|
|
2510
|
-
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2511
|
-
'onlyGpuBuilds'?: boolean;
|
|
2512
|
-
/** Allow the placement of Ceph pods */
|
|
2513
|
-
'allowCeph'?: boolean;
|
|
2514
|
-
};
|
|
2515
|
-
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2516
|
-
'labels'?: any;
|
|
2517
|
-
}[] | {
|
|
2518
|
-
/** 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" */
|
|
2576
|
+
/** 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" */
|
|
2519
2577
|
'id': string;
|
|
2520
2578
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
2521
2579
|
'nodeType': string;
|
|
@@ -2535,6 +2593,8 @@ type CreateCloudClusterData = {
|
|
|
2535
2593
|
'systemPool'?: boolean;
|
|
2536
2594
|
/** When 'provider' is 'azure', set this flag to use public node IPs. */
|
|
2537
2595
|
'enablePublicNodeIp'?: boolean;
|
|
2596
|
+
/** ID of the vnet subnet to use. */
|
|
2597
|
+
'vnetSubnetId'?: string;
|
|
2538
2598
|
};
|
|
2539
2599
|
/** AWS specific node pool settings. */
|
|
2540
2600
|
'aws'?: {
|
|
@@ -2554,11 +2614,65 @@ type CreateCloudClusterData = {
|
|
|
2554
2614
|
'min'?: number;
|
|
2555
2615
|
'max'?: number;
|
|
2556
2616
|
};
|
|
2557
|
-
'
|
|
2558
|
-
'
|
|
2617
|
+
'computeResources'?: {
|
|
2618
|
+
'gpu'?: {
|
|
2619
|
+
/** Time-slicing configuration object. */
|
|
2620
|
+
'timeslicing'?: {
|
|
2621
|
+
/** Whether or not to enable time-slicing on the GPU. */
|
|
2622
|
+
'enabled'?: boolean;
|
|
2623
|
+
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
2624
|
+
'numSlices'?: number;
|
|
2625
|
+
};
|
|
2626
|
+
};
|
|
2627
|
+
};
|
|
2628
|
+
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
2629
|
+
'preemptible'?: boolean;
|
|
2630
|
+
/** The disk type to use. */
|
|
2631
|
+
'diskType'?: string;
|
|
2632
|
+
/** Disk size in GB Example: 100 */
|
|
2633
|
+
'diskSize': number;
|
|
2634
|
+
/** Zones in which the node pool should be provisioned. */
|
|
2635
|
+
'availabilityZones': string[];
|
|
2636
|
+
/** Subnets in which the node pool should be provisioned. Required if provider is `oci`. */
|
|
2637
|
+
'subnets'?: string[];
|
|
2638
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
2639
|
+
'scheduling'?: {
|
|
2640
|
+
/** Allow jobs to schedule to this node pool */
|
|
2641
|
+
'allowJobs'?: boolean;
|
|
2642
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2643
|
+
'onlyGpuJobs'?: boolean;
|
|
2644
|
+
/** Allow services to schedule to this node pool */
|
|
2645
|
+
'allowServices'?: boolean;
|
|
2646
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2647
|
+
'onlyGpuServices'?: boolean;
|
|
2648
|
+
/** Allow addons to schedule to this node pool */
|
|
2649
|
+
'allowAddons'?: boolean;
|
|
2650
|
+
/** Allow builds to schedule to this node pool */
|
|
2651
|
+
'allowBuilds'?: boolean;
|
|
2652
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2653
|
+
'onlyGpuBuilds'?: boolean;
|
|
2654
|
+
/** Allow the placement of Ceph pods */
|
|
2655
|
+
'allowCeph'?: boolean;
|
|
2559
2656
|
};
|
|
2657
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2658
|
+
'labels'?: any;
|
|
2659
|
+
}[] | {
|
|
2660
|
+
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
2661
|
+
'id': string;
|
|
2662
|
+
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
2663
|
+
'providerId': string;
|
|
2560
2664
|
'computeResources'?: {
|
|
2561
2665
|
'gpu'?: {
|
|
2666
|
+
/** Whether this node pool consists of GPU nodes . */
|
|
2667
|
+
'supported'?: boolean;
|
|
2668
|
+
/** GPU type associated with the node pool. Example: "h100" */
|
|
2669
|
+
'type'?: string;
|
|
2670
|
+
'resources'?: {
|
|
2671
|
+
'memoryInfo'?: {
|
|
2672
|
+
/** Memory amount of the GPU in Gib. Example: 80 */
|
|
2673
|
+
'sizeInGiB'?: number;
|
|
2674
|
+
};
|
|
2675
|
+
};
|
|
2562
2676
|
/** Multi-Instance GPU (MIG). configuration object. */
|
|
2563
2677
|
'mig'?: {
|
|
2564
2678
|
/** Whether or not to enable Multi-Instance GPU (MIG). */
|
|
@@ -2573,17 +2687,14 @@ type CreateCloudClusterData = {
|
|
|
2573
2687
|
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
2574
2688
|
'numSlices'?: number;
|
|
2575
2689
|
};
|
|
2690
|
+
/** Number of GPUs per node. Example: 1 */
|
|
2691
|
+
'count'?: number;
|
|
2576
2692
|
};
|
|
2577
2693
|
};
|
|
2694
|
+
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
2695
|
+
'defaultPool'?: boolean;
|
|
2578
2696
|
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
2579
2697
|
'preemptible'?: boolean;
|
|
2580
|
-
/** The disk type to use. */
|
|
2581
|
-
'diskType'?: string;
|
|
2582
|
-
/** Disk size in GB Example: 100 */
|
|
2583
|
-
'diskSize': number;
|
|
2584
|
-
/** Zones in which the node pool should be provisioned. */
|
|
2585
|
-
'availabilityZones': string[];
|
|
2586
|
-
'subnets'?: string[];
|
|
2587
2698
|
/** Define basic workload scheduling restrictions for this node pool */
|
|
2588
2699
|
'scheduling'?: {
|
|
2589
2700
|
/** Allow jobs to schedule to this node pool */
|
|
@@ -2619,15 +2730,25 @@ type CreateCloudClusterData = {
|
|
|
2619
2730
|
/** Credentials to use for storing of images. Example: "my-registry-credentials" */
|
|
2620
2731
|
'registryId'?: string;
|
|
2621
2732
|
};
|
|
2733
|
+
/** Logging settings */
|
|
2622
2734
|
'logging'?: {
|
|
2623
|
-
'mode'?: 'paas'
|
|
2624
|
-
|
|
2735
|
+
'mode'?: 'paas';
|
|
2736
|
+
} | {
|
|
2737
|
+
'mode': 'loki';
|
|
2625
2738
|
'loki'?: {
|
|
2739
|
+
'storageType': 's3';
|
|
2626
2740
|
's3BucketName': string;
|
|
2627
2741
|
's3AccessKey': string;
|
|
2628
2742
|
's3SecretKey': string;
|
|
2629
2743
|
's3Region': string;
|
|
2630
2744
|
};
|
|
2745
|
+
} | {
|
|
2746
|
+
'mode': 'loki';
|
|
2747
|
+
'loki'?: {
|
|
2748
|
+
'storageType': 'gcs';
|
|
2749
|
+
'gcsBucketName': string;
|
|
2750
|
+
'gcpIntegrationId': string;
|
|
2751
|
+
};
|
|
2631
2752
|
};
|
|
2632
2753
|
'vanityDomains'?: {
|
|
2633
2754
|
'apps'?: {
|
|
@@ -2744,6 +2865,16 @@ type CreateCloudClusterData = {
|
|
|
2744
2865
|
};
|
|
2745
2866
|
/** Azure specific data. Required when `provider` is `azure`. */
|
|
2746
2867
|
'azure'?: {
|
|
2868
|
+
'networking'?: {
|
|
2869
|
+
'vnetConfiguration'?: {
|
|
2870
|
+
/** The vnet mode to use for this cluster. Use this to switch between creation of a new vnet per cluster or specifying a custom vnet. */
|
|
2871
|
+
'mode': 'create-default' | 'custom-vnet';
|
|
2872
|
+
/** Azure vnetId that should be used for this cluster. By default a new vnet will be created. */
|
|
2873
|
+
'vnetId'?: string;
|
|
2874
|
+
};
|
|
2875
|
+
/** Optional setting to configure overlay mode on Azure. */
|
|
2876
|
+
'networkPluginMode'?: 'overlay';
|
|
2877
|
+
};
|
|
2747
2878
|
'enableAuthorizedIpRanges'?: boolean;
|
|
2748
2879
|
'authorizedIpRanges'?: string[];
|
|
2749
2880
|
};
|
|
@@ -2792,49 +2923,8 @@ type PutCloudClusterResult = {
|
|
|
2792
2923
|
'kubernetesName': string;
|
|
2793
2924
|
}[];
|
|
2794
2925
|
};
|
|
2926
|
+
/** An array of node pools for BYOC or BYOK. */
|
|
2795
2927
|
'nodePools': {
|
|
2796
|
-
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
2797
|
-
'id': string;
|
|
2798
|
-
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
2799
|
-
'providerId': string;
|
|
2800
|
-
'computeResources'?: {
|
|
2801
|
-
'gpu'?: {
|
|
2802
|
-
'mig'?: {
|
|
2803
|
-
'enabled'?: boolean;
|
|
2804
|
-
'partitions'?: string[];
|
|
2805
|
-
};
|
|
2806
|
-
'timeslicing'?: {
|
|
2807
|
-
'enabled'?: boolean;
|
|
2808
|
-
'numSlices'?: number;
|
|
2809
|
-
};
|
|
2810
|
-
};
|
|
2811
|
-
};
|
|
2812
|
-
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
2813
|
-
'defaultPool'?: boolean;
|
|
2814
|
-
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
2815
|
-
'preemptible'?: boolean;
|
|
2816
|
-
/** Define basic workload scheduling restrictions for this node pool */
|
|
2817
|
-
'scheduling'?: {
|
|
2818
|
-
/** Allow jobs to schedule to this node pool */
|
|
2819
|
-
'allowJobs'?: boolean;
|
|
2820
|
-
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2821
|
-
'onlyGpuJobs'?: boolean;
|
|
2822
|
-
/** Allow services to schedule to this node pool */
|
|
2823
|
-
'allowServices'?: boolean;
|
|
2824
|
-
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2825
|
-
'onlyGpuServices'?: boolean;
|
|
2826
|
-
/** Allow addons to schedule to this node pool */
|
|
2827
|
-
'allowAddons'?: boolean;
|
|
2828
|
-
/** Allow builds to schedule to this node pool */
|
|
2829
|
-
'allowBuilds'?: boolean;
|
|
2830
|
-
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2831
|
-
'onlyGpuBuilds'?: boolean;
|
|
2832
|
-
/** Allow the placement of Ceph pods */
|
|
2833
|
-
'allowCeph'?: boolean;
|
|
2834
|
-
};
|
|
2835
|
-
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2836
|
-
'labels'?: any;
|
|
2837
|
-
}[] | {
|
|
2838
2928
|
/** 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" */
|
|
2839
2929
|
'id': string;
|
|
2840
2930
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
@@ -2855,6 +2945,8 @@ type PutCloudClusterResult = {
|
|
|
2855
2945
|
'systemPool'?: boolean;
|
|
2856
2946
|
/** When 'provider' is 'azure', set this flag to use public node IPs. */
|
|
2857
2947
|
'enablePublicNodeIp'?: boolean;
|
|
2948
|
+
/** ID of the vnet subnet to use. */
|
|
2949
|
+
'vnetSubnetId'?: string;
|
|
2858
2950
|
};
|
|
2859
2951
|
/** AWS specific node pool settings. */
|
|
2860
2952
|
'aws'?: {
|
|
@@ -2874,11 +2966,65 @@ type PutCloudClusterResult = {
|
|
|
2874
2966
|
'min'?: number;
|
|
2875
2967
|
'max'?: number;
|
|
2876
2968
|
};
|
|
2877
|
-
'
|
|
2878
|
-
'
|
|
2969
|
+
'computeResources'?: {
|
|
2970
|
+
'gpu'?: {
|
|
2971
|
+
/** Time-slicing configuration object. */
|
|
2972
|
+
'timeslicing'?: {
|
|
2973
|
+
/** Whether or not to enable time-slicing on the GPU. */
|
|
2974
|
+
'enabled'?: boolean;
|
|
2975
|
+
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
2976
|
+
'numSlices'?: number;
|
|
2977
|
+
};
|
|
2978
|
+
};
|
|
2979
|
+
};
|
|
2980
|
+
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
2981
|
+
'preemptible'?: boolean;
|
|
2982
|
+
/** The disk type to use. */
|
|
2983
|
+
'diskType'?: string;
|
|
2984
|
+
/** Disk size in GB Example: 100 */
|
|
2985
|
+
'diskSize': number;
|
|
2986
|
+
/** Zones in which the node pool should be provisioned. */
|
|
2987
|
+
'availabilityZones': string[];
|
|
2988
|
+
/** Subnets in which the node pool should be provisioned. Required if provider is `oci`. */
|
|
2989
|
+
'subnets'?: string[];
|
|
2990
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
2991
|
+
'scheduling'?: {
|
|
2992
|
+
/** Allow jobs to schedule to this node pool */
|
|
2993
|
+
'allowJobs'?: boolean;
|
|
2994
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2995
|
+
'onlyGpuJobs'?: boolean;
|
|
2996
|
+
/** Allow services to schedule to this node pool */
|
|
2997
|
+
'allowServices'?: boolean;
|
|
2998
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2999
|
+
'onlyGpuServices'?: boolean;
|
|
3000
|
+
/** Allow addons to schedule to this node pool */
|
|
3001
|
+
'allowAddons'?: boolean;
|
|
3002
|
+
/** Allow builds to schedule to this node pool */
|
|
3003
|
+
'allowBuilds'?: boolean;
|
|
3004
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3005
|
+
'onlyGpuBuilds'?: boolean;
|
|
3006
|
+
/** Allow the placement of Ceph pods */
|
|
3007
|
+
'allowCeph'?: boolean;
|
|
2879
3008
|
};
|
|
3009
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
3010
|
+
'labels'?: any;
|
|
3011
|
+
}[] | {
|
|
3012
|
+
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
3013
|
+
'id': string;
|
|
3014
|
+
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
3015
|
+
'providerId': string;
|
|
2880
3016
|
'computeResources'?: {
|
|
2881
3017
|
'gpu'?: {
|
|
3018
|
+
/** Whether this node pool consists of GPU nodes . */
|
|
3019
|
+
'supported'?: boolean;
|
|
3020
|
+
/** GPU type associated with the node pool. Example: "h100" */
|
|
3021
|
+
'type'?: string;
|
|
3022
|
+
'resources'?: {
|
|
3023
|
+
'memoryInfo'?: {
|
|
3024
|
+
/** Memory amount of the GPU in Gib. Example: 80 */
|
|
3025
|
+
'sizeInGiB'?: number;
|
|
3026
|
+
};
|
|
3027
|
+
};
|
|
2882
3028
|
/** Multi-Instance GPU (MIG). configuration object. */
|
|
2883
3029
|
'mig'?: {
|
|
2884
3030
|
/** Whether or not to enable Multi-Instance GPU (MIG). */
|
|
@@ -2893,17 +3039,14 @@ type PutCloudClusterResult = {
|
|
|
2893
3039
|
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
2894
3040
|
'numSlices'?: number;
|
|
2895
3041
|
};
|
|
3042
|
+
/** Number of GPUs per node. Example: 1 */
|
|
3043
|
+
'count'?: number;
|
|
2896
3044
|
};
|
|
2897
3045
|
};
|
|
3046
|
+
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
3047
|
+
'defaultPool'?: boolean;
|
|
2898
3048
|
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
2899
3049
|
'preemptible'?: boolean;
|
|
2900
|
-
/** The disk type to use. */
|
|
2901
|
-
'diskType'?: string;
|
|
2902
|
-
/** Disk size in GB Example: 100 */
|
|
2903
|
-
'diskSize': number;
|
|
2904
|
-
/** Zones in which the node pool should be provisioned. */
|
|
2905
|
-
'availabilityZones': string[];
|
|
2906
|
-
'subnets'?: string[];
|
|
2907
3050
|
/** Define basic workload scheduling restrictions for this node pool */
|
|
2908
3051
|
'scheduling'?: {
|
|
2909
3052
|
/** Allow jobs to schedule to this node pool */
|
|
@@ -2939,15 +3082,25 @@ type PutCloudClusterResult = {
|
|
|
2939
3082
|
/** Credentials to use for storing of images. Example: "my-registry-credentials" */
|
|
2940
3083
|
'registryId'?: string;
|
|
2941
3084
|
};
|
|
3085
|
+
/** Logging settings */
|
|
2942
3086
|
'logging'?: {
|
|
2943
|
-
'mode'?: 'paas'
|
|
2944
|
-
|
|
3087
|
+
'mode'?: 'paas';
|
|
3088
|
+
} | {
|
|
3089
|
+
'mode': 'loki';
|
|
2945
3090
|
'loki'?: {
|
|
3091
|
+
'storageType': 's3';
|
|
2946
3092
|
's3BucketName': string;
|
|
2947
3093
|
's3AccessKey': string;
|
|
2948
3094
|
's3SecretKey': string;
|
|
2949
3095
|
's3Region': string;
|
|
2950
3096
|
};
|
|
3097
|
+
} | {
|
|
3098
|
+
'mode': 'loki';
|
|
3099
|
+
'loki'?: {
|
|
3100
|
+
'storageType': 'gcs';
|
|
3101
|
+
'gcsBucketName': string;
|
|
3102
|
+
'gcpIntegrationId': string;
|
|
3103
|
+
};
|
|
2951
3104
|
};
|
|
2952
3105
|
'vanityDomains'?: {
|
|
2953
3106
|
'apps'?: {
|
|
@@ -3064,6 +3217,16 @@ type PutCloudClusterResult = {
|
|
|
3064
3217
|
};
|
|
3065
3218
|
/** Azure specific data. Required when `provider` is `azure`. */
|
|
3066
3219
|
'azure'?: {
|
|
3220
|
+
'networking'?: {
|
|
3221
|
+
'vnetConfiguration'?: {
|
|
3222
|
+
/** The vnet mode to use for this cluster. Use this to switch between creation of a new vnet per cluster or specifying a custom vnet. */
|
|
3223
|
+
'mode': 'create-default' | 'custom-vnet';
|
|
3224
|
+
/** Azure vnetId that should be used for this cluster. By default a new vnet will be created. */
|
|
3225
|
+
'vnetId'?: string;
|
|
3226
|
+
};
|
|
3227
|
+
/** Optional setting to configure overlay mode on Azure. */
|
|
3228
|
+
'networkPluginMode'?: 'overlay';
|
|
3229
|
+
};
|
|
3067
3230
|
'enableAuthorizedIpRanges'?: boolean;
|
|
3068
3231
|
'authorizedIpRanges'?: string[];
|
|
3069
3232
|
};
|
|
@@ -3124,49 +3287,8 @@ type PutCloudClusterData = {
|
|
|
3124
3287
|
'kubernetesName': string;
|
|
3125
3288
|
}[];
|
|
3126
3289
|
};
|
|
3290
|
+
/** An array of node pools for BYOC or BYOK. */
|
|
3127
3291
|
'nodePools': {
|
|
3128
|
-
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
3129
|
-
'id': string;
|
|
3130
|
-
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
3131
|
-
'providerId': string;
|
|
3132
|
-
'computeResources'?: {
|
|
3133
|
-
'gpu'?: {
|
|
3134
|
-
'mig'?: {
|
|
3135
|
-
'enabled'?: boolean;
|
|
3136
|
-
'partitions'?: string[];
|
|
3137
|
-
};
|
|
3138
|
-
'timeslicing'?: {
|
|
3139
|
-
'enabled'?: boolean;
|
|
3140
|
-
'numSlices'?: number;
|
|
3141
|
-
};
|
|
3142
|
-
};
|
|
3143
|
-
};
|
|
3144
|
-
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
3145
|
-
'defaultPool'?: boolean;
|
|
3146
|
-
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
3147
|
-
'preemptible'?: boolean;
|
|
3148
|
-
/** Define basic workload scheduling restrictions for this node pool */
|
|
3149
|
-
'scheduling'?: {
|
|
3150
|
-
/** Allow jobs to schedule to this node pool */
|
|
3151
|
-
'allowJobs'?: boolean;
|
|
3152
|
-
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3153
|
-
'onlyGpuJobs'?: boolean;
|
|
3154
|
-
/** Allow services to schedule to this node pool */
|
|
3155
|
-
'allowServices'?: boolean;
|
|
3156
|
-
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3157
|
-
'onlyGpuServices'?: boolean;
|
|
3158
|
-
/** Allow addons to schedule to this node pool */
|
|
3159
|
-
'allowAddons'?: boolean;
|
|
3160
|
-
/** Allow builds to schedule to this node pool */
|
|
3161
|
-
'allowBuilds'?: boolean;
|
|
3162
|
-
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3163
|
-
'onlyGpuBuilds'?: boolean;
|
|
3164
|
-
/** Allow the placement of Ceph pods */
|
|
3165
|
-
'allowCeph'?: boolean;
|
|
3166
|
-
};
|
|
3167
|
-
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
3168
|
-
'labels'?: any;
|
|
3169
|
-
}[] | {
|
|
3170
3292
|
/** 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" */
|
|
3171
3293
|
'id': string;
|
|
3172
3294
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
@@ -3187,6 +3309,8 @@ type PutCloudClusterData = {
|
|
|
3187
3309
|
'systemPool'?: boolean;
|
|
3188
3310
|
/** When 'provider' is 'azure', set this flag to use public node IPs. */
|
|
3189
3311
|
'enablePublicNodeIp'?: boolean;
|
|
3312
|
+
/** ID of the vnet subnet to use. */
|
|
3313
|
+
'vnetSubnetId'?: string;
|
|
3190
3314
|
};
|
|
3191
3315
|
/** AWS specific node pool settings. */
|
|
3192
3316
|
'aws'?: {
|
|
@@ -3206,18 +3330,8 @@ type PutCloudClusterData = {
|
|
|
3206
3330
|
'min'?: number;
|
|
3207
3331
|
'max'?: number;
|
|
3208
3332
|
};
|
|
3209
|
-
'platform'?: {
|
|
3210
|
-
'architecture'?: 'amd64' | 'arm64';
|
|
3211
|
-
};
|
|
3212
3333
|
'computeResources'?: {
|
|
3213
3334
|
'gpu'?: {
|
|
3214
|
-
/** Multi-Instance GPU (MIG). configuration object. */
|
|
3215
|
-
'mig'?: {
|
|
3216
|
-
/** Whether or not to enable Multi-Instance GPU (MIG). */
|
|
3217
|
-
'enabled'?: boolean;
|
|
3218
|
-
/** The partitions to configure on the GPU. */
|
|
3219
|
-
'partitions'?: string[];
|
|
3220
|
-
};
|
|
3221
3335
|
/** Time-slicing configuration object. */
|
|
3222
3336
|
'timeslicing'?: {
|
|
3223
3337
|
/** Whether or not to enable time-slicing on the GPU. */
|
|
@@ -3235,6 +3349,7 @@ type PutCloudClusterData = {
|
|
|
3235
3349
|
'diskSize': number;
|
|
3236
3350
|
/** Zones in which the node pool should be provisioned. */
|
|
3237
3351
|
'availabilityZones': string[];
|
|
3352
|
+
/** Subnets in which the node pool should be provisioned. Required if provider is `oci`. */
|
|
3238
3353
|
'subnets'?: string[];
|
|
3239
3354
|
/** Define basic workload scheduling restrictions for this node pool */
|
|
3240
3355
|
'scheduling'?: {
|
|
@@ -3257,12 +3372,72 @@ type PutCloudClusterData = {
|
|
|
3257
3372
|
};
|
|
3258
3373
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
3259
3374
|
'labels'?: any;
|
|
3260
|
-
}[]
|
|
3261
|
-
|
|
3262
|
-
'
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3375
|
+
}[] | {
|
|
3376
|
+
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
3377
|
+
'id': string;
|
|
3378
|
+
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
3379
|
+
'providerId': string;
|
|
3380
|
+
'computeResources'?: {
|
|
3381
|
+
'gpu'?: {
|
|
3382
|
+
/** Whether this node pool consists of GPU nodes . */
|
|
3383
|
+
'supported'?: boolean;
|
|
3384
|
+
/** GPU type associated with the node pool. Example: "h100" */
|
|
3385
|
+
'type'?: string;
|
|
3386
|
+
'resources'?: {
|
|
3387
|
+
'memoryInfo'?: {
|
|
3388
|
+
/** Memory amount of the GPU in Gib. Example: 80 */
|
|
3389
|
+
'sizeInGiB'?: number;
|
|
3390
|
+
};
|
|
3391
|
+
};
|
|
3392
|
+
/** Multi-Instance GPU (MIG). configuration object. */
|
|
3393
|
+
'mig'?: {
|
|
3394
|
+
/** Whether or not to enable Multi-Instance GPU (MIG). */
|
|
3395
|
+
'enabled'?: boolean;
|
|
3396
|
+
/** The partitions to configure on the GPU. */
|
|
3397
|
+
'partitions'?: string[];
|
|
3398
|
+
};
|
|
3399
|
+
/** Time-slicing configuration object. */
|
|
3400
|
+
'timeslicing'?: {
|
|
3401
|
+
/** Whether or not to enable time-slicing on the GPU. */
|
|
3402
|
+
'enabled'?: boolean;
|
|
3403
|
+
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
3404
|
+
'numSlices'?: number;
|
|
3405
|
+
};
|
|
3406
|
+
/** Number of GPUs per node. Example: 1 */
|
|
3407
|
+
'count'?: number;
|
|
3408
|
+
};
|
|
3409
|
+
};
|
|
3410
|
+
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
3411
|
+
'defaultPool'?: boolean;
|
|
3412
|
+
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
3413
|
+
'preemptible'?: boolean;
|
|
3414
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
3415
|
+
'scheduling'?: {
|
|
3416
|
+
/** Allow jobs to schedule to this node pool */
|
|
3417
|
+
'allowJobs'?: boolean;
|
|
3418
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3419
|
+
'onlyGpuJobs'?: boolean;
|
|
3420
|
+
/** Allow services to schedule to this node pool */
|
|
3421
|
+
'allowServices'?: boolean;
|
|
3422
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3423
|
+
'onlyGpuServices'?: boolean;
|
|
3424
|
+
/** Allow addons to schedule to this node pool */
|
|
3425
|
+
'allowAddons'?: boolean;
|
|
3426
|
+
/** Allow builds to schedule to this node pool */
|
|
3427
|
+
'allowBuilds'?: boolean;
|
|
3428
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3429
|
+
'onlyGpuBuilds'?: boolean;
|
|
3430
|
+
/** Allow the placement of Ceph pods */
|
|
3431
|
+
'allowCeph'?: boolean;
|
|
3432
|
+
};
|
|
3433
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
3434
|
+
'labels'?: any;
|
|
3435
|
+
}[];
|
|
3436
|
+
'settings'?: {
|
|
3437
|
+
'builds'?: {
|
|
3438
|
+
'mode'?: 'paas' | 'internal' | 'build-cluster';
|
|
3439
|
+
/** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
|
|
3440
|
+
'plan'?: string;
|
|
3266
3441
|
/** Cluster to use for scheduling builds */
|
|
3267
3442
|
'clusterId'?: string;
|
|
3268
3443
|
};
|
|
@@ -3271,15 +3446,25 @@ type PutCloudClusterData = {
|
|
|
3271
3446
|
/** Credentials to use for storing of images. Example: "my-registry-credentials" */
|
|
3272
3447
|
'registryId'?: string;
|
|
3273
3448
|
};
|
|
3449
|
+
/** Logging settings */
|
|
3274
3450
|
'logging'?: {
|
|
3275
|
-
'mode'?: 'paas'
|
|
3276
|
-
|
|
3451
|
+
'mode'?: 'paas';
|
|
3452
|
+
} | {
|
|
3453
|
+
'mode': 'loki';
|
|
3277
3454
|
'loki'?: {
|
|
3455
|
+
'storageType': 's3';
|
|
3278
3456
|
's3BucketName': string;
|
|
3279
3457
|
's3AccessKey': string;
|
|
3280
3458
|
's3SecretKey': string;
|
|
3281
3459
|
's3Region': string;
|
|
3282
3460
|
};
|
|
3461
|
+
} | {
|
|
3462
|
+
'mode': 'loki';
|
|
3463
|
+
'loki'?: {
|
|
3464
|
+
'storageType': 'gcs';
|
|
3465
|
+
'gcsBucketName': string;
|
|
3466
|
+
'gcpIntegrationId': string;
|
|
3467
|
+
};
|
|
3283
3468
|
};
|
|
3284
3469
|
'vanityDomains'?: {
|
|
3285
3470
|
'apps'?: {
|
|
@@ -3396,6 +3581,16 @@ type PutCloudClusterData = {
|
|
|
3396
3581
|
};
|
|
3397
3582
|
/** Azure specific data. Required when `provider` is `azure`. */
|
|
3398
3583
|
'azure'?: {
|
|
3584
|
+
'networking'?: {
|
|
3585
|
+
'vnetConfiguration'?: {
|
|
3586
|
+
/** The vnet mode to use for this cluster. Use this to switch between creation of a new vnet per cluster or specifying a custom vnet. */
|
|
3587
|
+
'mode': 'create-default' | 'custom-vnet';
|
|
3588
|
+
/** Azure vnetId that should be used for this cluster. By default a new vnet will be created. */
|
|
3589
|
+
'vnetId'?: string;
|
|
3590
|
+
};
|
|
3591
|
+
/** Optional setting to configure overlay mode on Azure. */
|
|
3592
|
+
'networkPluginMode'?: 'overlay';
|
|
3593
|
+
};
|
|
3399
3594
|
'enableAuthorizedIpRanges'?: boolean;
|
|
3400
3595
|
'authorizedIpRanges'?: string[];
|
|
3401
3596
|
};
|
|
@@ -3444,49 +3639,8 @@ type GetCloudClusterResult = {
|
|
|
3444
3639
|
'kubernetesName': string;
|
|
3445
3640
|
}[];
|
|
3446
3641
|
};
|
|
3642
|
+
/** An array of node pools for BYOC or BYOK. */
|
|
3447
3643
|
'nodePools': {
|
|
3448
|
-
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
3449
|
-
'id': string;
|
|
3450
|
-
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
3451
|
-
'providerId': string;
|
|
3452
|
-
'computeResources'?: {
|
|
3453
|
-
'gpu'?: {
|
|
3454
|
-
'mig'?: {
|
|
3455
|
-
'enabled'?: boolean;
|
|
3456
|
-
'partitions'?: string[];
|
|
3457
|
-
};
|
|
3458
|
-
'timeslicing'?: {
|
|
3459
|
-
'enabled'?: boolean;
|
|
3460
|
-
'numSlices'?: number;
|
|
3461
|
-
};
|
|
3462
|
-
};
|
|
3463
|
-
};
|
|
3464
|
-
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
3465
|
-
'defaultPool'?: boolean;
|
|
3466
|
-
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
3467
|
-
'preemptible'?: boolean;
|
|
3468
|
-
/** Define basic workload scheduling restrictions for this node pool */
|
|
3469
|
-
'scheduling'?: {
|
|
3470
|
-
/** Allow jobs to schedule to this node pool */
|
|
3471
|
-
'allowJobs'?: boolean;
|
|
3472
|
-
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3473
|
-
'onlyGpuJobs'?: boolean;
|
|
3474
|
-
/** Allow services to schedule to this node pool */
|
|
3475
|
-
'allowServices'?: boolean;
|
|
3476
|
-
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3477
|
-
'onlyGpuServices'?: boolean;
|
|
3478
|
-
/** Allow addons to schedule to this node pool */
|
|
3479
|
-
'allowAddons'?: boolean;
|
|
3480
|
-
/** Allow builds to schedule to this node pool */
|
|
3481
|
-
'allowBuilds'?: boolean;
|
|
3482
|
-
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3483
|
-
'onlyGpuBuilds'?: boolean;
|
|
3484
|
-
/** Allow the placement of Ceph pods */
|
|
3485
|
-
'allowCeph'?: boolean;
|
|
3486
|
-
};
|
|
3487
|
-
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
3488
|
-
'labels'?: any;
|
|
3489
|
-
}[] | {
|
|
3490
3644
|
/** 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" */
|
|
3491
3645
|
'id': string;
|
|
3492
3646
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
@@ -3507,6 +3661,8 @@ type GetCloudClusterResult = {
|
|
|
3507
3661
|
'systemPool'?: boolean;
|
|
3508
3662
|
/** When 'provider' is 'azure', set this flag to use public node IPs. */
|
|
3509
3663
|
'enablePublicNodeIp'?: boolean;
|
|
3664
|
+
/** ID of the vnet subnet to use. */
|
|
3665
|
+
'vnetSubnetId'?: string;
|
|
3510
3666
|
};
|
|
3511
3667
|
/** AWS specific node pool settings. */
|
|
3512
3668
|
'aws'?: {
|
|
@@ -3526,11 +3682,65 @@ type GetCloudClusterResult = {
|
|
|
3526
3682
|
'min'?: number;
|
|
3527
3683
|
'max'?: number;
|
|
3528
3684
|
};
|
|
3529
|
-
'
|
|
3530
|
-
'
|
|
3685
|
+
'computeResources'?: {
|
|
3686
|
+
'gpu'?: {
|
|
3687
|
+
/** Time-slicing configuration object. */
|
|
3688
|
+
'timeslicing'?: {
|
|
3689
|
+
/** Whether or not to enable time-slicing on the GPU. */
|
|
3690
|
+
'enabled'?: boolean;
|
|
3691
|
+
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
3692
|
+
'numSlices'?: number;
|
|
3693
|
+
};
|
|
3694
|
+
};
|
|
3695
|
+
};
|
|
3696
|
+
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
3697
|
+
'preemptible'?: boolean;
|
|
3698
|
+
/** The disk type to use. */
|
|
3699
|
+
'diskType'?: string;
|
|
3700
|
+
/** Disk size in GB Example: 100 */
|
|
3701
|
+
'diskSize': number;
|
|
3702
|
+
/** Zones in which the node pool should be provisioned. */
|
|
3703
|
+
'availabilityZones': string[];
|
|
3704
|
+
/** Subnets in which the node pool should be provisioned. Required if provider is `oci`. */
|
|
3705
|
+
'subnets'?: string[];
|
|
3706
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
3707
|
+
'scheduling'?: {
|
|
3708
|
+
/** Allow jobs to schedule to this node pool */
|
|
3709
|
+
'allowJobs'?: boolean;
|
|
3710
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3711
|
+
'onlyGpuJobs'?: boolean;
|
|
3712
|
+
/** Allow services to schedule to this node pool */
|
|
3713
|
+
'allowServices'?: boolean;
|
|
3714
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3715
|
+
'onlyGpuServices'?: boolean;
|
|
3716
|
+
/** Allow addons to schedule to this node pool */
|
|
3717
|
+
'allowAddons'?: boolean;
|
|
3718
|
+
/** Allow builds to schedule to this node pool */
|
|
3719
|
+
'allowBuilds'?: boolean;
|
|
3720
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3721
|
+
'onlyGpuBuilds'?: boolean;
|
|
3722
|
+
/** Allow the placement of Ceph pods */
|
|
3723
|
+
'allowCeph'?: boolean;
|
|
3531
3724
|
};
|
|
3725
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
3726
|
+
'labels'?: any;
|
|
3727
|
+
}[] | {
|
|
3728
|
+
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
3729
|
+
'id': string;
|
|
3730
|
+
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
3731
|
+
'providerId': string;
|
|
3532
3732
|
'computeResources'?: {
|
|
3533
3733
|
'gpu'?: {
|
|
3734
|
+
/** Whether this node pool consists of GPU nodes . */
|
|
3735
|
+
'supported'?: boolean;
|
|
3736
|
+
/** GPU type associated with the node pool. Example: "h100" */
|
|
3737
|
+
'type'?: string;
|
|
3738
|
+
'resources'?: {
|
|
3739
|
+
'memoryInfo'?: {
|
|
3740
|
+
/** Memory amount of the GPU in Gib. Example: 80 */
|
|
3741
|
+
'sizeInGiB'?: number;
|
|
3742
|
+
};
|
|
3743
|
+
};
|
|
3534
3744
|
/** Multi-Instance GPU (MIG). configuration object. */
|
|
3535
3745
|
'mig'?: {
|
|
3536
3746
|
/** Whether or not to enable Multi-Instance GPU (MIG). */
|
|
@@ -3545,17 +3755,14 @@ type GetCloudClusterResult = {
|
|
|
3545
3755
|
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
3546
3756
|
'numSlices'?: number;
|
|
3547
3757
|
};
|
|
3758
|
+
/** Number of GPUs per node. Example: 1 */
|
|
3759
|
+
'count'?: number;
|
|
3548
3760
|
};
|
|
3549
3761
|
};
|
|
3762
|
+
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
3763
|
+
'defaultPool'?: boolean;
|
|
3550
3764
|
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
3551
3765
|
'preemptible'?: boolean;
|
|
3552
|
-
/** The disk type to use. */
|
|
3553
|
-
'diskType'?: string;
|
|
3554
|
-
/** Disk size in GB Example: 100 */
|
|
3555
|
-
'diskSize': number;
|
|
3556
|
-
/** Zones in which the node pool should be provisioned. */
|
|
3557
|
-
'availabilityZones': string[];
|
|
3558
|
-
'subnets'?: string[];
|
|
3559
3766
|
/** Define basic workload scheduling restrictions for this node pool */
|
|
3560
3767
|
'scheduling'?: {
|
|
3561
3768
|
/** Allow jobs to schedule to this node pool */
|
|
@@ -3591,15 +3798,25 @@ type GetCloudClusterResult = {
|
|
|
3591
3798
|
/** Credentials to use for storing of images. Example: "my-registry-credentials" */
|
|
3592
3799
|
'registryId'?: string;
|
|
3593
3800
|
};
|
|
3801
|
+
/** Logging settings */
|
|
3594
3802
|
'logging'?: {
|
|
3595
|
-
'mode'?: 'paas'
|
|
3596
|
-
|
|
3803
|
+
'mode'?: 'paas';
|
|
3804
|
+
} | {
|
|
3805
|
+
'mode': 'loki';
|
|
3597
3806
|
'loki'?: {
|
|
3807
|
+
'storageType': 's3';
|
|
3598
3808
|
's3BucketName': string;
|
|
3599
3809
|
's3AccessKey': string;
|
|
3600
3810
|
's3SecretKey': string;
|
|
3601
3811
|
's3Region': string;
|
|
3602
3812
|
};
|
|
3813
|
+
} | {
|
|
3814
|
+
'mode': 'loki';
|
|
3815
|
+
'loki'?: {
|
|
3816
|
+
'storageType': 'gcs';
|
|
3817
|
+
'gcsBucketName': string;
|
|
3818
|
+
'gcpIntegrationId': string;
|
|
3819
|
+
};
|
|
3603
3820
|
};
|
|
3604
3821
|
'vanityDomains'?: {
|
|
3605
3822
|
'apps'?: {
|
|
@@ -3716,6 +3933,16 @@ type GetCloudClusterResult = {
|
|
|
3716
3933
|
};
|
|
3717
3934
|
/** Azure specific data. Required when `provider` is `azure`. */
|
|
3718
3935
|
'azure'?: {
|
|
3936
|
+
'networking'?: {
|
|
3937
|
+
'vnetConfiguration'?: {
|
|
3938
|
+
/** The vnet mode to use for this cluster. Use this to switch between creation of a new vnet per cluster or specifying a custom vnet. */
|
|
3939
|
+
'mode': 'create-default' | 'custom-vnet';
|
|
3940
|
+
/** Azure vnetId that should be used for this cluster. By default a new vnet will be created. */
|
|
3941
|
+
'vnetId'?: string;
|
|
3942
|
+
};
|
|
3943
|
+
/** Optional setting to configure overlay mode on Azure. */
|
|
3944
|
+
'networkPluginMode'?: 'overlay';
|
|
3945
|
+
};
|
|
3719
3946
|
'enableAuthorizedIpRanges'?: boolean;
|
|
3720
3947
|
'authorizedIpRanges'?: string[];
|
|
3721
3948
|
};
|
|
@@ -3788,49 +4015,8 @@ type PatchCloudClusterResult = {
|
|
|
3788
4015
|
'kubernetesName': string;
|
|
3789
4016
|
}[];
|
|
3790
4017
|
};
|
|
4018
|
+
/** An array of node pools for BYOC or BYOK. */
|
|
3791
4019
|
'nodePools': {
|
|
3792
|
-
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
3793
|
-
'id': string;
|
|
3794
|
-
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
3795
|
-
'providerId': string;
|
|
3796
|
-
'computeResources'?: {
|
|
3797
|
-
'gpu'?: {
|
|
3798
|
-
'mig'?: {
|
|
3799
|
-
'enabled'?: boolean;
|
|
3800
|
-
'partitions'?: string[];
|
|
3801
|
-
};
|
|
3802
|
-
'timeslicing'?: {
|
|
3803
|
-
'enabled'?: boolean;
|
|
3804
|
-
'numSlices'?: number;
|
|
3805
|
-
};
|
|
3806
|
-
};
|
|
3807
|
-
};
|
|
3808
|
-
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
3809
|
-
'defaultPool'?: boolean;
|
|
3810
|
-
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
3811
|
-
'preemptible'?: boolean;
|
|
3812
|
-
/** Define basic workload scheduling restrictions for this node pool */
|
|
3813
|
-
'scheduling'?: {
|
|
3814
|
-
/** Allow jobs to schedule to this node pool */
|
|
3815
|
-
'allowJobs'?: boolean;
|
|
3816
|
-
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3817
|
-
'onlyGpuJobs'?: boolean;
|
|
3818
|
-
/** Allow services to schedule to this node pool */
|
|
3819
|
-
'allowServices'?: boolean;
|
|
3820
|
-
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3821
|
-
'onlyGpuServices'?: boolean;
|
|
3822
|
-
/** Allow addons to schedule to this node pool */
|
|
3823
|
-
'allowAddons'?: boolean;
|
|
3824
|
-
/** Allow builds to schedule to this node pool */
|
|
3825
|
-
'allowBuilds'?: boolean;
|
|
3826
|
-
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
3827
|
-
'onlyGpuBuilds'?: boolean;
|
|
3828
|
-
/** Allow the placement of Ceph pods */
|
|
3829
|
-
'allowCeph'?: boolean;
|
|
3830
|
-
};
|
|
3831
|
-
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
3832
|
-
'labels'?: any;
|
|
3833
|
-
}[] | {
|
|
3834
4020
|
/** 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" */
|
|
3835
4021
|
'id': string;
|
|
3836
4022
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
@@ -3851,6 +4037,8 @@ type PatchCloudClusterResult = {
|
|
|
3851
4037
|
'systemPool'?: boolean;
|
|
3852
4038
|
/** When 'provider' is 'azure', set this flag to use public node IPs. */
|
|
3853
4039
|
'enablePublicNodeIp'?: boolean;
|
|
4040
|
+
/** ID of the vnet subnet to use. */
|
|
4041
|
+
'vnetSubnetId'?: string;
|
|
3854
4042
|
};
|
|
3855
4043
|
/** AWS specific node pool settings. */
|
|
3856
4044
|
'aws'?: {
|
|
@@ -3870,11 +4058,65 @@ type PatchCloudClusterResult = {
|
|
|
3870
4058
|
'min'?: number;
|
|
3871
4059
|
'max'?: number;
|
|
3872
4060
|
};
|
|
3873
|
-
'
|
|
3874
|
-
'
|
|
4061
|
+
'computeResources'?: {
|
|
4062
|
+
'gpu'?: {
|
|
4063
|
+
/** Time-slicing configuration object. */
|
|
4064
|
+
'timeslicing'?: {
|
|
4065
|
+
/** Whether or not to enable time-slicing on the GPU. */
|
|
4066
|
+
'enabled'?: boolean;
|
|
4067
|
+
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
4068
|
+
'numSlices'?: number;
|
|
4069
|
+
};
|
|
4070
|
+
};
|
|
4071
|
+
};
|
|
4072
|
+
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
4073
|
+
'preemptible'?: boolean;
|
|
4074
|
+
/** The disk type to use. */
|
|
4075
|
+
'diskType'?: string;
|
|
4076
|
+
/** Disk size in GB Example: 100 */
|
|
4077
|
+
'diskSize': number;
|
|
4078
|
+
/** Zones in which the node pool should be provisioned. */
|
|
4079
|
+
'availabilityZones': string[];
|
|
4080
|
+
/** Subnets in which the node pool should be provisioned. Required if provider is `oci`. */
|
|
4081
|
+
'subnets'?: string[];
|
|
4082
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
4083
|
+
'scheduling'?: {
|
|
4084
|
+
/** Allow jobs to schedule to this node pool */
|
|
4085
|
+
'allowJobs'?: boolean;
|
|
4086
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
4087
|
+
'onlyGpuJobs'?: boolean;
|
|
4088
|
+
/** Allow services to schedule to this node pool */
|
|
4089
|
+
'allowServices'?: boolean;
|
|
4090
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
4091
|
+
'onlyGpuServices'?: boolean;
|
|
4092
|
+
/** Allow addons to schedule to this node pool */
|
|
4093
|
+
'allowAddons'?: boolean;
|
|
4094
|
+
/** Allow builds to schedule to this node pool */
|
|
4095
|
+
'allowBuilds'?: boolean;
|
|
4096
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
4097
|
+
'onlyGpuBuilds'?: boolean;
|
|
4098
|
+
/** Allow the placement of Ceph pods */
|
|
4099
|
+
'allowCeph'?: boolean;
|
|
3875
4100
|
};
|
|
4101
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
4102
|
+
'labels'?: any;
|
|
4103
|
+
}[] | {
|
|
4104
|
+
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
4105
|
+
'id': string;
|
|
4106
|
+
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
4107
|
+
'providerId': string;
|
|
3876
4108
|
'computeResources'?: {
|
|
3877
4109
|
'gpu'?: {
|
|
4110
|
+
/** Whether this node pool consists of GPU nodes . */
|
|
4111
|
+
'supported'?: boolean;
|
|
4112
|
+
/** GPU type associated with the node pool. Example: "h100" */
|
|
4113
|
+
'type'?: string;
|
|
4114
|
+
'resources'?: {
|
|
4115
|
+
'memoryInfo'?: {
|
|
4116
|
+
/** Memory amount of the GPU in Gib. Example: 80 */
|
|
4117
|
+
'sizeInGiB'?: number;
|
|
4118
|
+
};
|
|
4119
|
+
};
|
|
3878
4120
|
/** Multi-Instance GPU (MIG). configuration object. */
|
|
3879
4121
|
'mig'?: {
|
|
3880
4122
|
/** Whether or not to enable Multi-Instance GPU (MIG). */
|
|
@@ -3889,17 +4131,14 @@ type PatchCloudClusterResult = {
|
|
|
3889
4131
|
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
3890
4132
|
'numSlices'?: number;
|
|
3891
4133
|
};
|
|
4134
|
+
/** Number of GPUs per node. Example: 1 */
|
|
4135
|
+
'count'?: number;
|
|
3892
4136
|
};
|
|
3893
4137
|
};
|
|
4138
|
+
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
4139
|
+
'defaultPool'?: boolean;
|
|
3894
4140
|
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
3895
4141
|
'preemptible'?: boolean;
|
|
3896
|
-
/** The disk type to use. */
|
|
3897
|
-
'diskType'?: string;
|
|
3898
|
-
/** Disk size in GB Example: 100 */
|
|
3899
|
-
'diskSize': number;
|
|
3900
|
-
/** Zones in which the node pool should be provisioned. */
|
|
3901
|
-
'availabilityZones': string[];
|
|
3902
|
-
'subnets'?: string[];
|
|
3903
4142
|
/** Define basic workload scheduling restrictions for this node pool */
|
|
3904
4143
|
'scheduling'?: {
|
|
3905
4144
|
/** Allow jobs to schedule to this node pool */
|
|
@@ -3935,15 +4174,25 @@ type PatchCloudClusterResult = {
|
|
|
3935
4174
|
/** Credentials to use for storing of images. Example: "my-registry-credentials" */
|
|
3936
4175
|
'registryId'?: string;
|
|
3937
4176
|
};
|
|
4177
|
+
/** Logging settings */
|
|
3938
4178
|
'logging'?: {
|
|
3939
|
-
'mode'?: 'paas'
|
|
3940
|
-
|
|
4179
|
+
'mode'?: 'paas';
|
|
4180
|
+
} | {
|
|
4181
|
+
'mode': 'loki';
|
|
3941
4182
|
'loki'?: {
|
|
4183
|
+
'storageType': 's3';
|
|
3942
4184
|
's3BucketName': string;
|
|
3943
4185
|
's3AccessKey': string;
|
|
3944
4186
|
's3SecretKey': string;
|
|
3945
4187
|
's3Region': string;
|
|
3946
4188
|
};
|
|
4189
|
+
} | {
|
|
4190
|
+
'mode': 'loki';
|
|
4191
|
+
'loki'?: {
|
|
4192
|
+
'storageType': 'gcs';
|
|
4193
|
+
'gcsBucketName': string;
|
|
4194
|
+
'gcpIntegrationId': string;
|
|
4195
|
+
};
|
|
3947
4196
|
};
|
|
3948
4197
|
'vanityDomains'?: {
|
|
3949
4198
|
'apps'?: {
|
|
@@ -4060,6 +4309,16 @@ type PatchCloudClusterResult = {
|
|
|
4060
4309
|
};
|
|
4061
4310
|
/** Azure specific data. Required when `provider` is `azure`. */
|
|
4062
4311
|
'azure'?: {
|
|
4312
|
+
'networking'?: {
|
|
4313
|
+
'vnetConfiguration'?: {
|
|
4314
|
+
/** The vnet mode to use for this cluster. Use this to switch between creation of a new vnet per cluster or specifying a custom vnet. */
|
|
4315
|
+
'mode': 'create-default' | 'custom-vnet';
|
|
4316
|
+
/** Azure vnetId that should be used for this cluster. By default a new vnet will be created. */
|
|
4317
|
+
'vnetId'?: string;
|
|
4318
|
+
};
|
|
4319
|
+
/** Optional setting to configure overlay mode on Azure. */
|
|
4320
|
+
'networkPluginMode'?: 'overlay';
|
|
4321
|
+
};
|
|
4063
4322
|
'enableAuthorizedIpRanges'?: boolean;
|
|
4064
4323
|
'authorizedIpRanges'?: string[];
|
|
4065
4324
|
};
|
|
@@ -4100,49 +4359,8 @@ type PatchCloudClusterData = {
|
|
|
4100
4359
|
'description'?: string;
|
|
4101
4360
|
/** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
|
|
4102
4361
|
'kubernetesVersion'?: string;
|
|
4362
|
+
/** An array of node pools for BYOC or BYOK. */
|
|
4103
4363
|
'nodePools'?: {
|
|
4104
|
-
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
4105
|
-
'id': string;
|
|
4106
|
-
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
4107
|
-
'providerId': string;
|
|
4108
|
-
'computeResources'?: {
|
|
4109
|
-
'gpu'?: {
|
|
4110
|
-
'mig'?: {
|
|
4111
|
-
'enabled'?: boolean;
|
|
4112
|
-
'partitions'?: string[];
|
|
4113
|
-
};
|
|
4114
|
-
'timeslicing'?: {
|
|
4115
|
-
'enabled'?: boolean;
|
|
4116
|
-
'numSlices'?: number;
|
|
4117
|
-
};
|
|
4118
|
-
};
|
|
4119
|
-
};
|
|
4120
|
-
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
4121
|
-
'defaultPool'?: boolean;
|
|
4122
|
-
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
4123
|
-
'preemptible'?: boolean;
|
|
4124
|
-
/** Define basic workload scheduling restrictions for this node pool */
|
|
4125
|
-
'scheduling'?: {
|
|
4126
|
-
/** Allow jobs to schedule to this node pool */
|
|
4127
|
-
'allowJobs'?: boolean;
|
|
4128
|
-
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
4129
|
-
'onlyGpuJobs'?: boolean;
|
|
4130
|
-
/** Allow services to schedule to this node pool */
|
|
4131
|
-
'allowServices'?: boolean;
|
|
4132
|
-
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
4133
|
-
'onlyGpuServices'?: boolean;
|
|
4134
|
-
/** Allow addons to schedule to this node pool */
|
|
4135
|
-
'allowAddons'?: boolean;
|
|
4136
|
-
/** Allow builds to schedule to this node pool */
|
|
4137
|
-
'allowBuilds'?: boolean;
|
|
4138
|
-
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
4139
|
-
'onlyGpuBuilds'?: boolean;
|
|
4140
|
-
/** Allow the placement of Ceph pods */
|
|
4141
|
-
'allowCeph'?: boolean;
|
|
4142
|
-
};
|
|
4143
|
-
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
4144
|
-
'labels'?: any;
|
|
4145
|
-
}[] | {
|
|
4146
4364
|
/** 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" */
|
|
4147
4365
|
'id': string;
|
|
4148
4366
|
/** Machine type to be used by the node pool. Example: "n2-standard-8" */
|
|
@@ -4163,6 +4381,8 @@ type PatchCloudClusterData = {
|
|
|
4163
4381
|
'systemPool'?: boolean;
|
|
4164
4382
|
/** When 'provider' is 'azure', set this flag to use public node IPs. */
|
|
4165
4383
|
'enablePublicNodeIp'?: boolean;
|
|
4384
|
+
/** ID of the vnet subnet to use. */
|
|
4385
|
+
'vnetSubnetId'?: string;
|
|
4166
4386
|
};
|
|
4167
4387
|
/** AWS specific node pool settings. */
|
|
4168
4388
|
'aws'?: {
|
|
@@ -4182,11 +4402,65 @@ type PatchCloudClusterData = {
|
|
|
4182
4402
|
'min'?: number;
|
|
4183
4403
|
'max'?: number;
|
|
4184
4404
|
};
|
|
4185
|
-
'
|
|
4186
|
-
'
|
|
4405
|
+
'computeResources'?: {
|
|
4406
|
+
'gpu'?: {
|
|
4407
|
+
/** Time-slicing configuration object. */
|
|
4408
|
+
'timeslicing'?: {
|
|
4409
|
+
/** Whether or not to enable time-slicing on the GPU. */
|
|
4410
|
+
'enabled'?: boolean;
|
|
4411
|
+
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
4412
|
+
'numSlices'?: number;
|
|
4413
|
+
};
|
|
4414
|
+
};
|
|
4187
4415
|
};
|
|
4416
|
+
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
4417
|
+
'preemptible'?: boolean;
|
|
4418
|
+
/** The disk type to use. */
|
|
4419
|
+
'diskType'?: string;
|
|
4420
|
+
/** Disk size in GB Example: 100 */
|
|
4421
|
+
'diskSize': number;
|
|
4422
|
+
/** Zones in which the node pool should be provisioned. */
|
|
4423
|
+
'availabilityZones': string[];
|
|
4424
|
+
/** Subnets in which the node pool should be provisioned. Required if provider is `oci`. */
|
|
4425
|
+
'subnets'?: string[];
|
|
4426
|
+
/** Define basic workload scheduling restrictions for this node pool */
|
|
4427
|
+
'scheduling'?: {
|
|
4428
|
+
/** Allow jobs to schedule to this node pool */
|
|
4429
|
+
'allowJobs'?: boolean;
|
|
4430
|
+
/** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
|
|
4431
|
+
'onlyGpuJobs'?: boolean;
|
|
4432
|
+
/** Allow services to schedule to this node pool */
|
|
4433
|
+
'allowServices'?: boolean;
|
|
4434
|
+
/** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
|
|
4435
|
+
'onlyGpuServices'?: boolean;
|
|
4436
|
+
/** Allow addons to schedule to this node pool */
|
|
4437
|
+
'allowAddons'?: boolean;
|
|
4438
|
+
/** Allow builds to schedule to this node pool */
|
|
4439
|
+
'allowBuilds'?: boolean;
|
|
4440
|
+
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
4441
|
+
'onlyGpuBuilds'?: boolean;
|
|
4442
|
+
/** Allow the placement of Ceph pods */
|
|
4443
|
+
'allowCeph'?: boolean;
|
|
4444
|
+
};
|
|
4445
|
+
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
4446
|
+
'labels'?: any;
|
|
4447
|
+
}[] | {
|
|
4448
|
+
/** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
|
|
4449
|
+
'id': string;
|
|
4450
|
+
/** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
4451
|
+
'providerId': string;
|
|
4188
4452
|
'computeResources'?: {
|
|
4189
4453
|
'gpu'?: {
|
|
4454
|
+
/** Whether this node pool consists of GPU nodes . */
|
|
4455
|
+
'supported'?: boolean;
|
|
4456
|
+
/** GPU type associated with the node pool. Example: "h100" */
|
|
4457
|
+
'type'?: string;
|
|
4458
|
+
'resources'?: {
|
|
4459
|
+
'memoryInfo'?: {
|
|
4460
|
+
/** Memory amount of the GPU in Gib. Example: 80 */
|
|
4461
|
+
'sizeInGiB'?: number;
|
|
4462
|
+
};
|
|
4463
|
+
};
|
|
4190
4464
|
/** Multi-Instance GPU (MIG). configuration object. */
|
|
4191
4465
|
'mig'?: {
|
|
4192
4466
|
/** Whether or not to enable Multi-Instance GPU (MIG). */
|
|
@@ -4201,17 +4475,14 @@ type PatchCloudClusterData = {
|
|
|
4201
4475
|
/** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
|
|
4202
4476
|
'numSlices'?: number;
|
|
4203
4477
|
};
|
|
4478
|
+
/** Number of GPUs per node. Example: 1 */
|
|
4479
|
+
'count'?: number;
|
|
4204
4480
|
};
|
|
4205
4481
|
};
|
|
4482
|
+
/** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
|
|
4483
|
+
'defaultPool'?: boolean;
|
|
4206
4484
|
/** Configures node pool with preemptible / spot instances if enabled. */
|
|
4207
4485
|
'preemptible'?: boolean;
|
|
4208
|
-
/** The disk type to use. */
|
|
4209
|
-
'diskType'?: string;
|
|
4210
|
-
/** Disk size in GB Example: 100 */
|
|
4211
|
-
'diskSize': number;
|
|
4212
|
-
/** Zones in which the node pool should be provisioned. */
|
|
4213
|
-
'availabilityZones': string[];
|
|
4214
|
-
'subnets'?: string[];
|
|
4215
4486
|
/** Define basic workload scheduling restrictions for this node pool */
|
|
4216
4487
|
'scheduling'?: {
|
|
4217
4488
|
/** Allow jobs to schedule to this node pool */
|
|
@@ -4247,9 +4518,25 @@ type PatchCloudClusterData = {
|
|
|
4247
4518
|
/** Credentials to use for storing of images. Example: "my-registry-credentials" */
|
|
4248
4519
|
'registryId'?: string;
|
|
4249
4520
|
};
|
|
4521
|
+
/** Logging settings */
|
|
4250
4522
|
'logging'?: {
|
|
4251
|
-
'mode'?: 'paas'
|
|
4252
|
-
|
|
4523
|
+
'mode'?: 'paas';
|
|
4524
|
+
} | {
|
|
4525
|
+
'mode': 'loki';
|
|
4526
|
+
'loki'?: {
|
|
4527
|
+
'storageType': 's3';
|
|
4528
|
+
's3BucketName': string;
|
|
4529
|
+
's3AccessKey': string;
|
|
4530
|
+
's3SecretKey': string;
|
|
4531
|
+
's3Region': string;
|
|
4532
|
+
};
|
|
4533
|
+
} | {
|
|
4534
|
+
'mode': 'loki';
|
|
4535
|
+
'loki'?: {
|
|
4536
|
+
'storageType': 'gcs';
|
|
4537
|
+
'gcsBucketName': string;
|
|
4538
|
+
'gcpIntegrationId': string;
|
|
4539
|
+
};
|
|
4253
4540
|
};
|
|
4254
4541
|
'vanityDomains'?: {
|
|
4255
4542
|
'apps'?: {
|
|
@@ -4358,6 +4645,16 @@ type PatchCloudClusterData = {
|
|
|
4358
4645
|
};
|
|
4359
4646
|
/** Azure specific data. Required when `provider` is `azure`. */
|
|
4360
4647
|
'azure'?: {
|
|
4648
|
+
'networking'?: {
|
|
4649
|
+
'vnetConfiguration'?: {
|
|
4650
|
+
/** The vnet mode to use for this cluster. Use this to switch between creation of a new vnet per cluster or specifying a custom vnet. */
|
|
4651
|
+
'mode': 'create-default' | 'custom-vnet';
|
|
4652
|
+
/** Azure vnetId that should be used for this cluster. By default a new vnet will be created. */
|
|
4653
|
+
'vnetId'?: string;
|
|
4654
|
+
};
|
|
4655
|
+
/** Optional setting to configure overlay mode on Azure. */
|
|
4656
|
+
'networkPluginMode'?: 'overlay';
|
|
4657
|
+
};
|
|
4361
4658
|
'enableAuthorizedIpRanges'?: boolean;
|
|
4362
4659
|
'authorizedIpRanges'?: string[];
|
|
4363
4660
|
};
|
|
@@ -4498,322 +4795,6 @@ declare class UncordonCloudClusterNodeEndpoint extends PostApiEndpoint<UncordonC
|
|
|
4498
4795
|
body: () => undefined;
|
|
4499
4796
|
}
|
|
4500
4797
|
|
|
4501
|
-
type ListCloudDockerregistryResult = {
|
|
4502
|
-
/** ID of the registry Example: "example-registry" */
|
|
4503
|
-
'id': string;
|
|
4504
|
-
/** The name of the cloud provider registry. Example: "Example Registry" */
|
|
4505
|
-
'name': string;
|
|
4506
|
-
/** The description of the integration. Example: "This is a new cloud provider registry." */
|
|
4507
|
-
'description'?: string;
|
|
4508
|
-
/** Unique id of the registry. Example: "nf-n7xyvdn4" */
|
|
4509
|
-
'uid'?: string;
|
|
4510
|
-
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4511
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
4512
|
-
'region': string;
|
|
4513
|
-
/** BYOC restrictions configuration for controlling team access */
|
|
4514
|
-
'restrictions'?: {
|
|
4515
|
-
/** Enable or disable BYOC restrictions for this entity */
|
|
4516
|
-
'enabled': boolean;
|
|
4517
|
-
/** List of teams that have access to this BYOC cluster */
|
|
4518
|
-
'teams'?: {
|
|
4519
|
-
/** The ID of the team that has access to this BYOC cluster */
|
|
4520
|
-
'teamId': string;
|
|
4521
|
-
}[];
|
|
4522
|
-
};
|
|
4523
|
-
/** time of update */
|
|
4524
|
-
'updatedAt'?: string;
|
|
4525
|
-
/** time of creation */
|
|
4526
|
-
'createdAt'?: string;
|
|
4527
|
-
};
|
|
4528
|
-
type ListCloudDockerregistryCall = ((opts: ListCloudDockerregistryRequest) => Promise<ApiCallResponse<ListCloudDockerregistryResult>>) & {
|
|
4529
|
-
all: (opts: ListCloudDockerregistryRequest) => Promise<ApiCallResponse<ListCloudDockerregistryResult>>;
|
|
4530
|
-
};
|
|
4531
|
-
type ListCloudDockerregistryRequest = {
|
|
4532
|
-
options?: ListCloudDockerregistryOptions;
|
|
4533
|
-
};
|
|
4534
|
-
type ListCloudDockerregistryOptions = {
|
|
4535
|
-
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
4536
|
-
'per_page'?: number;
|
|
4537
|
-
/** The page number to access. */
|
|
4538
|
-
'page'?: number;
|
|
4539
|
-
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
4540
|
-
'cursor'?: string;
|
|
4541
|
-
};
|
|
4542
|
-
/** Lists docker registries for the authenticated user or team. */
|
|
4543
|
-
declare class ListCloudDockerregistryEndpoint extends GetApiEndpointPaginated<ListCloudDockerregistryRequest, ListCloudDockerregistryResult> {
|
|
4544
|
-
description: string;
|
|
4545
|
-
withAuth: boolean;
|
|
4546
|
-
requiredPermissions: string;
|
|
4547
|
-
endpointUrl: (opts: ListCloudDockerregistryRequest) => string;
|
|
4548
|
-
body: () => undefined;
|
|
4549
|
-
}
|
|
4550
|
-
|
|
4551
|
-
type CreateCloudDockerregistryResult = {
|
|
4552
|
-
/** The name of the cloud provider registry. Example: "Example Registry" */
|
|
4553
|
-
'name': string;
|
|
4554
|
-
/** The description of the integration. Example: "This is a new cloud provider registry." */
|
|
4555
|
-
'description'?: string;
|
|
4556
|
-
/** Unique id of the registry. Example: "nf-n7xyvdn4" */
|
|
4557
|
-
'uid'?: string;
|
|
4558
|
-
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4559
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
4560
|
-
'region': string;
|
|
4561
|
-
/** Integration to use for this registry. Example: "gcp-integration" */
|
|
4562
|
-
'integrationId'?: string;
|
|
4563
|
-
/** BYOC restrictions configuration for controlling team access */
|
|
4564
|
-
'restrictions'?: {
|
|
4565
|
-
/** Enable or disable BYOC restrictions for this entity */
|
|
4566
|
-
'enabled': boolean;
|
|
4567
|
-
/** List of teams that have access to this BYOC cluster */
|
|
4568
|
-
'teams'?: {
|
|
4569
|
-
/** The ID of the team that has access to this BYOC cluster */
|
|
4570
|
-
'teamId': string;
|
|
4571
|
-
}[];
|
|
4572
|
-
};
|
|
4573
|
-
/** time of update */
|
|
4574
|
-
'updatedAt'?: string;
|
|
4575
|
-
/** time of creation */
|
|
4576
|
-
'createdAt'?: string;
|
|
4577
|
-
};
|
|
4578
|
-
type CreateCloudDockerregistryCall = (opts: CreateCloudDockerregistryRequest) => Promise<ApiCallResponse<CreateCloudDockerregistryResult>>;
|
|
4579
|
-
type CreateCloudDockerregistryRequest = {
|
|
4580
|
-
data: CreateCloudDockerregistryData;
|
|
4581
|
-
};
|
|
4582
|
-
type CreateCloudDockerregistryData = {
|
|
4583
|
-
/** The name of the cloud provider registry. Example: "Example Registry" */
|
|
4584
|
-
'name': string;
|
|
4585
|
-
/** The description of the integration. Example: "This is a new cloud provider registry." */
|
|
4586
|
-
'description'?: string;
|
|
4587
|
-
/** Unique id of the registry. Example: "nf-n7xyvdn4" */
|
|
4588
|
-
'uid'?: string;
|
|
4589
|
-
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4590
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
4591
|
-
'region': string;
|
|
4592
|
-
/** Integration to use for this registry. Example: "gcp-integration" */
|
|
4593
|
-
'integrationId'?: string;
|
|
4594
|
-
/** BYOC restrictions configuration for controlling team access */
|
|
4595
|
-
'restrictions'?: {
|
|
4596
|
-
/** Enable or disable BYOC restrictions for this entity */
|
|
4597
|
-
'enabled': boolean;
|
|
4598
|
-
/** List of teams that have access to this BYOC cluster */
|
|
4599
|
-
'teams'?: {
|
|
4600
|
-
/** The ID of the team that has access to this BYOC cluster */
|
|
4601
|
-
'teamId': string;
|
|
4602
|
-
}[];
|
|
4603
|
-
};
|
|
4604
|
-
/** time of update */
|
|
4605
|
-
'updatedAt'?: string;
|
|
4606
|
-
/** time of creation */
|
|
4607
|
-
'createdAt'?: string;
|
|
4608
|
-
};
|
|
4609
|
-
/** Creates a new docker registry. */
|
|
4610
|
-
declare class CreateCloudDockerregistryEndpoint extends PostApiEndpoint<CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult> {
|
|
4611
|
-
description: string;
|
|
4612
|
-
withAuth: boolean;
|
|
4613
|
-
requiredPermissions: string;
|
|
4614
|
-
endpointUrl: (opts: CreateCloudDockerregistryRequest) => string;
|
|
4615
|
-
body: (payload: CreateCloudDockerregistryRequest) => string;
|
|
4616
|
-
}
|
|
4617
|
-
|
|
4618
|
-
type PutCloudDockerregistryResult = {
|
|
4619
|
-
/** ID of the registry Example: "example-registry" */
|
|
4620
|
-
'id': string;
|
|
4621
|
-
/** The name of the cloud provider registry. Example: "Example Registry" */
|
|
4622
|
-
'name': string;
|
|
4623
|
-
/** The description of the integration. Example: "This is a new cloud provider registry." */
|
|
4624
|
-
'description'?: string;
|
|
4625
|
-
/** Unique id of the registry. Example: "nf-n7xyvdn4" */
|
|
4626
|
-
'uid'?: string;
|
|
4627
|
-
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4628
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
4629
|
-
'region': string;
|
|
4630
|
-
/** Integration to use for this registry. Example: "gcp-integration" */
|
|
4631
|
-
'integrationId'?: string;
|
|
4632
|
-
/** BYOC restrictions configuration for controlling team access */
|
|
4633
|
-
'restrictions'?: {
|
|
4634
|
-
/** Enable or disable BYOC restrictions for this entity */
|
|
4635
|
-
'enabled': boolean;
|
|
4636
|
-
/** List of teams that have access to this BYOC cluster */
|
|
4637
|
-
'teams'?: {
|
|
4638
|
-
/** The ID of the team that has access to this BYOC cluster */
|
|
4639
|
-
'teamId': string;
|
|
4640
|
-
}[];
|
|
4641
|
-
};
|
|
4642
|
-
/** time of update */
|
|
4643
|
-
'updatedAt'?: string;
|
|
4644
|
-
/** time of creation */
|
|
4645
|
-
'createdAt'?: string;
|
|
4646
|
-
};
|
|
4647
|
-
type PutCloudDockerregistryCall = (opts: PutCloudDockerregistryRequest) => Promise<ApiCallResponse<PutCloudDockerregistryResult>>;
|
|
4648
|
-
type PutCloudDockerregistryRequest = {
|
|
4649
|
-
parameters: PutCloudDockerregistryParameters;
|
|
4650
|
-
data: PutCloudDockerregistryData;
|
|
4651
|
-
};
|
|
4652
|
-
type PutCloudDockerregistryParameters = {
|
|
4653
|
-
/** ID of the docker registry */ 'registryId': string;
|
|
4654
|
-
};
|
|
4655
|
-
type PutCloudDockerregistryData = {
|
|
4656
|
-
/** The name of the cloud provider registry. Example: "Example Registry" */
|
|
4657
|
-
'name': string;
|
|
4658
|
-
/** The description of the integration. Example: "This is a new cloud provider registry." */
|
|
4659
|
-
'description'?: string;
|
|
4660
|
-
/** Unique id of the registry. Example: "nf-n7xyvdn4" */
|
|
4661
|
-
'uid'?: string;
|
|
4662
|
-
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4663
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
4664
|
-
'region': string;
|
|
4665
|
-
/** Integration to use for this registry. Example: "gcp-integration" */
|
|
4666
|
-
'integrationId'?: string;
|
|
4667
|
-
/** BYOC restrictions configuration for controlling team access */
|
|
4668
|
-
'restrictions'?: {
|
|
4669
|
-
/** Enable or disable BYOC restrictions for this entity */
|
|
4670
|
-
'enabled': boolean;
|
|
4671
|
-
/** List of teams that have access to this BYOC cluster */
|
|
4672
|
-
'teams'?: {
|
|
4673
|
-
/** The ID of the team that has access to this BYOC cluster */
|
|
4674
|
-
'teamId': string;
|
|
4675
|
-
}[];
|
|
4676
|
-
};
|
|
4677
|
-
/** time of update */
|
|
4678
|
-
'updatedAt'?: string;
|
|
4679
|
-
/** time of creation */
|
|
4680
|
-
'createdAt'?: string;
|
|
4681
|
-
};
|
|
4682
|
-
/** Creates or updates a docker registry. */
|
|
4683
|
-
declare class PutCloudDockerregistryEndpoint extends PutApiEndpoint<PutCloudDockerregistryRequest, PutCloudDockerregistryResult> {
|
|
4684
|
-
description: string;
|
|
4685
|
-
withAuth: boolean;
|
|
4686
|
-
requiredPermissions: string;
|
|
4687
|
-
endpointUrl: (opts: PutCloudDockerregistryRequest) => string;
|
|
4688
|
-
body: (payload: PutCloudDockerregistryRequest) => string;
|
|
4689
|
-
}
|
|
4690
|
-
|
|
4691
|
-
type GetCloudDockerregistryResult = {
|
|
4692
|
-
/** ID of the registry Example: "example-registry" */
|
|
4693
|
-
'id': string;
|
|
4694
|
-
/** The name of the cloud provider registry. Example: "Example Registry" */
|
|
4695
|
-
'name': string;
|
|
4696
|
-
/** The description of the integration. Example: "This is a new cloud provider registry." */
|
|
4697
|
-
'description'?: string;
|
|
4698
|
-
/** Unique id of the registry. Example: "nf-n7xyvdn4" */
|
|
4699
|
-
'uid'?: string;
|
|
4700
|
-
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4701
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
4702
|
-
'region': string;
|
|
4703
|
-
/** Integration to use for this registry. Example: "gcp-integration" */
|
|
4704
|
-
'integrationId'?: string;
|
|
4705
|
-
/** BYOC restrictions configuration for controlling team access */
|
|
4706
|
-
'restrictions'?: {
|
|
4707
|
-
/** Enable or disable BYOC restrictions for this entity */
|
|
4708
|
-
'enabled': boolean;
|
|
4709
|
-
/** List of teams that have access to this BYOC cluster */
|
|
4710
|
-
'teams'?: {
|
|
4711
|
-
/** The ID of the team that has access to this BYOC cluster */
|
|
4712
|
-
'teamId': string;
|
|
4713
|
-
}[];
|
|
4714
|
-
};
|
|
4715
|
-
/** time of update */
|
|
4716
|
-
'updatedAt'?: string;
|
|
4717
|
-
/** time of creation */
|
|
4718
|
-
'createdAt'?: string;
|
|
4719
|
-
};
|
|
4720
|
-
type GetCloudDockerregistryCall = (opts: GetCloudDockerregistryRequest) => Promise<ApiCallResponse<GetCloudDockerregistryResult>>;
|
|
4721
|
-
type GetCloudDockerregistryRequest = {
|
|
4722
|
-
parameters: GetCloudDockerregistryParameters;
|
|
4723
|
-
};
|
|
4724
|
-
type GetCloudDockerregistryParameters = {
|
|
4725
|
-
/** ID of the docker registry */ 'registryId': string;
|
|
4726
|
-
};
|
|
4727
|
-
/** Get information about the given docker registry */
|
|
4728
|
-
declare class GetCloudDockerregistryEndpoint extends GetApiEndpoint<GetCloudDockerregistryRequest, GetCloudDockerregistryResult> {
|
|
4729
|
-
description: string;
|
|
4730
|
-
withAuth: boolean;
|
|
4731
|
-
requiredPermissions: string;
|
|
4732
|
-
endpointUrl: (opts: GetCloudDockerregistryRequest) => string;
|
|
4733
|
-
body: () => undefined;
|
|
4734
|
-
}
|
|
4735
|
-
|
|
4736
|
-
type PatchCloudDockerregistryResult = {
|
|
4737
|
-
/** ID of the registry Example: "example-registry" */
|
|
4738
|
-
'id': string;
|
|
4739
|
-
/** The name of the cloud provider registry. Example: "Example Registry" */
|
|
4740
|
-
'name': string;
|
|
4741
|
-
/** The description of the integration. Example: "This is a new cloud provider registry." */
|
|
4742
|
-
'description'?: string;
|
|
4743
|
-
/** Unique id of the registry. Example: "nf-n7xyvdn4" */
|
|
4744
|
-
'uid'?: string;
|
|
4745
|
-
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4746
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
4747
|
-
'region': string;
|
|
4748
|
-
/** Integration to use for this registry. Example: "gcp-integration" */
|
|
4749
|
-
'integrationId'?: string;
|
|
4750
|
-
/** BYOC restrictions configuration for controlling team access */
|
|
4751
|
-
'restrictions'?: {
|
|
4752
|
-
/** Enable or disable BYOC restrictions for this entity */
|
|
4753
|
-
'enabled': boolean;
|
|
4754
|
-
/** List of teams that have access to this BYOC cluster */
|
|
4755
|
-
'teams'?: {
|
|
4756
|
-
/** The ID of the team that has access to this BYOC cluster */
|
|
4757
|
-
'teamId': string;
|
|
4758
|
-
}[];
|
|
4759
|
-
};
|
|
4760
|
-
/** time of update */
|
|
4761
|
-
'updatedAt'?: string;
|
|
4762
|
-
/** time of creation */
|
|
4763
|
-
'createdAt'?: string;
|
|
4764
|
-
};
|
|
4765
|
-
type PatchCloudDockerregistryCall = (opts: PatchCloudDockerregistryRequest) => Promise<ApiCallResponse<PatchCloudDockerregistryResult>>;
|
|
4766
|
-
type PatchCloudDockerregistryRequest = {
|
|
4767
|
-
parameters: PatchCloudDockerregistryParameters;
|
|
4768
|
-
data: PatchCloudDockerregistryData;
|
|
4769
|
-
};
|
|
4770
|
-
type PatchCloudDockerregistryParameters = {
|
|
4771
|
-
/** ID of the docker registry */ 'registryId': string;
|
|
4772
|
-
};
|
|
4773
|
-
type PatchCloudDockerregistryData = {
|
|
4774
|
-
/** The description of the integration. Example: "This is a new cloud provider registry." */
|
|
4775
|
-
'description'?: string;
|
|
4776
|
-
/** BYOC restrictions configuration for controlling team access */
|
|
4777
|
-
'restrictions'?: {
|
|
4778
|
-
/** Enable or disable BYOC restrictions for this entity */
|
|
4779
|
-
'enabled': boolean;
|
|
4780
|
-
/** List of teams that have access to this BYOC cluster */
|
|
4781
|
-
'teams'?: {
|
|
4782
|
-
/** The ID of the team that has access to this BYOC cluster */
|
|
4783
|
-
'teamId': string;
|
|
4784
|
-
}[];
|
|
4785
|
-
};
|
|
4786
|
-
/** time of update */
|
|
4787
|
-
'updatedAt'?: string;
|
|
4788
|
-
/** time of creation */
|
|
4789
|
-
'createdAt'?: string;
|
|
4790
|
-
};
|
|
4791
|
-
/** Updates a docker registry. */
|
|
4792
|
-
declare class PatchCloudDockerregistryEndpoint extends PatchApiEndpoint<PatchCloudDockerregistryRequest, PatchCloudDockerregistryResult> {
|
|
4793
|
-
description: string;
|
|
4794
|
-
withAuth: boolean;
|
|
4795
|
-
requiredPermissions: string;
|
|
4796
|
-
endpointUrl: (opts: PatchCloudDockerregistryRequest) => string;
|
|
4797
|
-
body: (payload: PatchCloudDockerregistryRequest) => string;
|
|
4798
|
-
}
|
|
4799
|
-
|
|
4800
|
-
type DeleteCloudDockerregistryResult = any | any;
|
|
4801
|
-
type DeleteCloudDockerregistryCall = (opts: DeleteCloudDockerregistryRequest) => Promise<ApiCallResponse<DeleteCloudDockerregistryResult>>;
|
|
4802
|
-
type DeleteCloudDockerregistryRequest = {
|
|
4803
|
-
parameters: DeleteCloudDockerregistryParameters;
|
|
4804
|
-
};
|
|
4805
|
-
type DeleteCloudDockerregistryParameters = {
|
|
4806
|
-
/** ID of the docker registry */ 'registryId': string;
|
|
4807
|
-
};
|
|
4808
|
-
/** Delete the given docker registry. Fails if the docker registry is associated with existing clusters. */
|
|
4809
|
-
declare class DeleteCloudDockerregistryEndpoint extends DeleteApiEndpoint<DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult> {
|
|
4810
|
-
description: string;
|
|
4811
|
-
withAuth: boolean;
|
|
4812
|
-
requiredPermissions: string;
|
|
4813
|
-
endpointUrl: (opts: DeleteCloudDockerregistryRequest) => string;
|
|
4814
|
-
body: () => undefined;
|
|
4815
|
-
}
|
|
4816
|
-
|
|
4817
4798
|
type ListCloudIntegrationsResult = {
|
|
4818
4799
|
/** An array of integrations. */
|
|
4819
4800
|
'integrations': {
|
|
@@ -4823,7 +4804,7 @@ type ListCloudIntegrationsResult = {
|
|
|
4823
4804
|
'description'?: string;
|
|
4824
4805
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4825
4806
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
4826
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | '
|
|
4807
|
+
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
4827
4808
|
/** BYOC restrictions configuration for controlling team access */
|
|
4828
4809
|
'restrictions'?: {
|
|
4829
4810
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -4889,7 +4870,7 @@ type CreateCloudIntegrationResult = {
|
|
|
4889
4870
|
'description'?: string;
|
|
4890
4871
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4891
4872
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
4892
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | '
|
|
4873
|
+
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
4893
4874
|
/** BYOC restrictions configuration for controlling team access */
|
|
4894
4875
|
'restrictions'?: {
|
|
4895
4876
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -4976,7 +4957,7 @@ type CreateCloudIntegrationData = {
|
|
|
4976
4957
|
'description'?: string;
|
|
4977
4958
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4978
4959
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
4979
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | '
|
|
4960
|
+
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
4980
4961
|
/** BYOC restrictions configuration for controlling team access */
|
|
4981
4962
|
'restrictions'?: {
|
|
4982
4963
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -5066,7 +5047,7 @@ type PutCloudIntegrationResult = {
|
|
|
5066
5047
|
'description'?: string;
|
|
5067
5048
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5068
5049
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
5069
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | '
|
|
5050
|
+
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5070
5051
|
/** BYOC restrictions configuration for controlling team access */
|
|
5071
5052
|
'restrictions'?: {
|
|
5072
5053
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -5157,7 +5138,7 @@ type PutCloudIntegrationData = {
|
|
|
5157
5138
|
'description'?: string;
|
|
5158
5139
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5159
5140
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
5160
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | '
|
|
5141
|
+
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5161
5142
|
/** BYOC restrictions configuration for controlling team access */
|
|
5162
5143
|
'restrictions'?: {
|
|
5163
5144
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -5247,7 +5228,7 @@ type GetCloudIntegrationResult = {
|
|
|
5247
5228
|
'description'?: string;
|
|
5248
5229
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5249
5230
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
5250
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | '
|
|
5231
|
+
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5251
5232
|
/** BYOC restrictions configuration for controlling team access */
|
|
5252
5233
|
'restrictions'?: {
|
|
5253
5234
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -5348,7 +5329,7 @@ type PatchCloudIntegrationResult = {
|
|
|
5348
5329
|
'description'?: string;
|
|
5349
5330
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5350
5331
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
|
|
5351
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | '
|
|
5332
|
+
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5352
5333
|
/** BYOC restrictions configuration for controlling team access */
|
|
5353
5334
|
'restrictions'?: {
|
|
5354
5335
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -5435,7 +5416,7 @@ type PatchCloudIntegrationParameters = {
|
|
|
5435
5416
|
type PatchCloudIntegrationData = {
|
|
5436
5417
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
5437
5418
|
'description'?: string;
|
|
5438
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | '
|
|
5419
|
+
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5439
5420
|
/** BYOC restrictions configuration for controlling team access */
|
|
5440
5421
|
'restrictions'?: {
|
|
5441
5422
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -6756,6 +6737,18 @@ type CreateLogsinkData = {
|
|
|
6756
6737
|
'restricted'?: boolean;
|
|
6757
6738
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
6758
6739
|
'projects'?: string[];
|
|
6740
|
+
/** Configuration of restrictions. */
|
|
6741
|
+
'restrictions'?: {
|
|
6742
|
+
/** Configuration of tag restriction settings. */
|
|
6743
|
+
'tags'?: {
|
|
6744
|
+
/** Whether restriction by tag should be enabled. */
|
|
6745
|
+
'enabled'?: boolean;
|
|
6746
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
6747
|
+
'items'?: string[];
|
|
6748
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6749
|
+
'matchCondition'?: 'and' | 'or';
|
|
6750
|
+
};
|
|
6751
|
+
};
|
|
6759
6752
|
'options'?: {
|
|
6760
6753
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
6761
6754
|
'useCustomLabels'?: boolean;
|
|
@@ -6796,6 +6789,18 @@ type CreateLogsinkData = {
|
|
|
6796
6789
|
'restricted'?: boolean;
|
|
6797
6790
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
6798
6791
|
'projects'?: string[];
|
|
6792
|
+
/** Configuration of restrictions. */
|
|
6793
|
+
'restrictions'?: {
|
|
6794
|
+
/** Configuration of tag restriction settings. */
|
|
6795
|
+
'tags'?: {
|
|
6796
|
+
/** Whether restriction by tag should be enabled. */
|
|
6797
|
+
'enabled'?: boolean;
|
|
6798
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
6799
|
+
'items'?: string[];
|
|
6800
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6801
|
+
'matchCondition'?: 'and' | 'or';
|
|
6802
|
+
};
|
|
6803
|
+
};
|
|
6799
6804
|
'options'?: {
|
|
6800
6805
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
6801
6806
|
'useCustomLabels'?: boolean;
|
|
@@ -6824,6 +6829,18 @@ type CreateLogsinkData = {
|
|
|
6824
6829
|
'restricted'?: boolean;
|
|
6825
6830
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
6826
6831
|
'projects'?: string[];
|
|
6832
|
+
/** Configuration of restrictions. */
|
|
6833
|
+
'restrictions'?: {
|
|
6834
|
+
/** Configuration of tag restriction settings. */
|
|
6835
|
+
'tags'?: {
|
|
6836
|
+
/** Whether restriction by tag should be enabled. */
|
|
6837
|
+
'enabled'?: boolean;
|
|
6838
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
6839
|
+
'items'?: string[];
|
|
6840
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6841
|
+
'matchCondition'?: 'and' | 'or';
|
|
6842
|
+
};
|
|
6843
|
+
};
|
|
6827
6844
|
'options'?: {
|
|
6828
6845
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
6829
6846
|
'useCustomLabels'?: boolean;
|
|
@@ -6861,6 +6878,18 @@ type CreateLogsinkData = {
|
|
|
6861
6878
|
'restricted'?: boolean;
|
|
6862
6879
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
6863
6880
|
'projects'?: string[];
|
|
6881
|
+
/** Configuration of restrictions. */
|
|
6882
|
+
'restrictions'?: {
|
|
6883
|
+
/** Configuration of tag restriction settings. */
|
|
6884
|
+
'tags'?: {
|
|
6885
|
+
/** Whether restriction by tag should be enabled. */
|
|
6886
|
+
'enabled'?: boolean;
|
|
6887
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
6888
|
+
'items'?: string[];
|
|
6889
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6890
|
+
'matchCondition'?: 'and' | 'or';
|
|
6891
|
+
};
|
|
6892
|
+
};
|
|
6864
6893
|
'options'?: {
|
|
6865
6894
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
6866
6895
|
'useCustomLabels'?: boolean;
|
|
@@ -6900,6 +6929,18 @@ type CreateLogsinkData = {
|
|
|
6900
6929
|
'restricted'?: boolean;
|
|
6901
6930
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
6902
6931
|
'projects'?: string[];
|
|
6932
|
+
/** Configuration of restrictions. */
|
|
6933
|
+
'restrictions'?: {
|
|
6934
|
+
/** Configuration of tag restriction settings. */
|
|
6935
|
+
'tags'?: {
|
|
6936
|
+
/** Whether restriction by tag should be enabled. */
|
|
6937
|
+
'enabled'?: boolean;
|
|
6938
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
6939
|
+
'items'?: string[];
|
|
6940
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6941
|
+
'matchCondition'?: 'and' | 'or';
|
|
6942
|
+
};
|
|
6943
|
+
};
|
|
6903
6944
|
'options'?: {
|
|
6904
6945
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
6905
6946
|
'useCustomLabels'?: boolean;
|
|
@@ -6957,6 +6998,18 @@ type CreateLogsinkData = {
|
|
|
6957
6998
|
'restricted'?: boolean;
|
|
6958
6999
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
6959
7000
|
'projects'?: string[];
|
|
7001
|
+
/** Configuration of restrictions. */
|
|
7002
|
+
'restrictions'?: {
|
|
7003
|
+
/** Configuration of tag restriction settings. */
|
|
7004
|
+
'tags'?: {
|
|
7005
|
+
/** Whether restriction by tag should be enabled. */
|
|
7006
|
+
'enabled'?: boolean;
|
|
7007
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
7008
|
+
'items'?: string[];
|
|
7009
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
7010
|
+
'matchCondition'?: 'and' | 'or';
|
|
7011
|
+
};
|
|
7012
|
+
};
|
|
6960
7013
|
'options'?: {
|
|
6961
7014
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
6962
7015
|
'useCustomLabels'?: boolean;
|
|
@@ -6983,6 +7036,18 @@ type CreateLogsinkData = {
|
|
|
6983
7036
|
'restricted'?: boolean;
|
|
6984
7037
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
6985
7038
|
'projects'?: string[];
|
|
7039
|
+
/** Configuration of restrictions. */
|
|
7040
|
+
'restrictions'?: {
|
|
7041
|
+
/** Configuration of tag restriction settings. */
|
|
7042
|
+
'tags'?: {
|
|
7043
|
+
/** Whether restriction by tag should be enabled. */
|
|
7044
|
+
'enabled'?: boolean;
|
|
7045
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
7046
|
+
'items'?: string[];
|
|
7047
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
7048
|
+
'matchCondition'?: 'and' | 'or';
|
|
7049
|
+
};
|
|
7050
|
+
};
|
|
6986
7051
|
'options'?: {
|
|
6987
7052
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
6988
7053
|
'useCustomLabels'?: boolean;
|
|
@@ -7011,6 +7076,18 @@ type CreateLogsinkData = {
|
|
|
7011
7076
|
'restricted'?: boolean;
|
|
7012
7077
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
7013
7078
|
'projects'?: string[];
|
|
7079
|
+
/** Configuration of restrictions. */
|
|
7080
|
+
'restrictions'?: {
|
|
7081
|
+
/** Configuration of tag restriction settings. */
|
|
7082
|
+
'tags'?: {
|
|
7083
|
+
/** Whether restriction by tag should be enabled. */
|
|
7084
|
+
'enabled'?: boolean;
|
|
7085
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
7086
|
+
'items'?: string[];
|
|
7087
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
7088
|
+
'matchCondition'?: 'and' | 'or';
|
|
7089
|
+
};
|
|
7090
|
+
};
|
|
7014
7091
|
'options'?: {
|
|
7015
7092
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
7016
7093
|
'useCustomLabels'?: boolean;
|
|
@@ -7039,6 +7116,18 @@ type CreateLogsinkData = {
|
|
|
7039
7116
|
'restricted'?: boolean;
|
|
7040
7117
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
7041
7118
|
'projects'?: string[];
|
|
7119
|
+
/** Configuration of restrictions. */
|
|
7120
|
+
'restrictions'?: {
|
|
7121
|
+
/** Configuration of tag restriction settings. */
|
|
7122
|
+
'tags'?: {
|
|
7123
|
+
/** Whether restriction by tag should be enabled. */
|
|
7124
|
+
'enabled'?: boolean;
|
|
7125
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
7126
|
+
'items'?: string[];
|
|
7127
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
7128
|
+
'matchCondition'?: 'and' | 'or';
|
|
7129
|
+
};
|
|
7130
|
+
};
|
|
7042
7131
|
'options'?: {
|
|
7043
7132
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
7044
7133
|
'useCustomLabels'?: boolean;
|
|
@@ -7067,6 +7156,18 @@ type CreateLogsinkData = {
|
|
|
7067
7156
|
'restricted'?: boolean;
|
|
7068
7157
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
7069
7158
|
'projects'?: string[];
|
|
7159
|
+
/** Configuration of restrictions. */
|
|
7160
|
+
'restrictions'?: {
|
|
7161
|
+
/** Configuration of tag restriction settings. */
|
|
7162
|
+
'tags'?: {
|
|
7163
|
+
/** Whether restriction by tag should be enabled. */
|
|
7164
|
+
'enabled'?: boolean;
|
|
7165
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
7166
|
+
'items'?: string[];
|
|
7167
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
7168
|
+
'matchCondition'?: 'and' | 'or';
|
|
7169
|
+
};
|
|
7170
|
+
};
|
|
7070
7171
|
'options'?: {
|
|
7071
7172
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
7072
7173
|
'useCustomLabels'?: boolean;
|
|
@@ -7101,6 +7202,18 @@ type CreateLogsinkData = {
|
|
|
7101
7202
|
'restricted'?: boolean;
|
|
7102
7203
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
7103
7204
|
'projects'?: string[];
|
|
7205
|
+
/** Configuration of restrictions. */
|
|
7206
|
+
'restrictions'?: {
|
|
7207
|
+
/** Configuration of tag restriction settings. */
|
|
7208
|
+
'tags'?: {
|
|
7209
|
+
/** Whether restriction by tag should be enabled. */
|
|
7210
|
+
'enabled'?: boolean;
|
|
7211
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
7212
|
+
'items'?: string[];
|
|
7213
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
7214
|
+
'matchCondition'?: 'and' | 'or';
|
|
7215
|
+
};
|
|
7216
|
+
};
|
|
7104
7217
|
'options'?: {
|
|
7105
7218
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
7106
7219
|
'useCustomLabels'?: boolean;
|
|
@@ -7865,6 +7978,18 @@ type CreateNotificationData = {
|
|
|
7865
7978
|
'secret'?: string;
|
|
7866
7979
|
/** Should notifications be sent only for specific projects? Example: true */
|
|
7867
7980
|
'restricted'?: boolean;
|
|
7981
|
+
/** Configuration of restrictions. */
|
|
7982
|
+
'restrictions'?: {
|
|
7983
|
+
/** Configuration of tag restriction settings. */
|
|
7984
|
+
'tags'?: {
|
|
7985
|
+
/** Whether restriction by tag should be enabled. */
|
|
7986
|
+
'enabled'?: boolean;
|
|
7987
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
7988
|
+
'items'?: string[];
|
|
7989
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
7990
|
+
'matchCondition'?: 'and' | 'or';
|
|
7991
|
+
};
|
|
7992
|
+
};
|
|
7868
7993
|
/** An array of projects that notifications will be sent for. */
|
|
7869
7994
|
'projects'?: string[];
|
|
7870
7995
|
/** Which events should notifications be sent for? */
|
|
@@ -8077,6 +8202,18 @@ type UpdateNotificationData = {
|
|
|
8077
8202
|
'restricted'?: boolean;
|
|
8078
8203
|
/** An array of projects that notifications will be sent for. */
|
|
8079
8204
|
'projects'?: string[];
|
|
8205
|
+
/** Configuration of restrictions. */
|
|
8206
|
+
'restrictions'?: {
|
|
8207
|
+
/** Configuration of tag restriction settings. */
|
|
8208
|
+
'tags'?: {
|
|
8209
|
+
/** Whether restriction by tag should be enabled. */
|
|
8210
|
+
'enabled'?: boolean;
|
|
8211
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
8212
|
+
'items'?: string[];
|
|
8213
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
8214
|
+
'matchCondition'?: 'and' | 'or';
|
|
8215
|
+
};
|
|
8216
|
+
};
|
|
8080
8217
|
/** Which events should notifications be sent for? */
|
|
8081
8218
|
'events'?: {
|
|
8082
8219
|
'trigger:service:autoscaling:event'?: boolean;
|
|
@@ -8173,23 +8310,41 @@ declare class DeleteNotificationEndpoint extends DeleteApiEndpoint<DeleteNotific
|
|
|
8173
8310
|
}
|
|
8174
8311
|
|
|
8175
8312
|
type ListRegistrycredentialsResult = {
|
|
8176
|
-
|
|
8177
|
-
|
|
8178
|
-
/** Identifier for the credentials. Example: "example-credentials" */
|
|
8313
|
+
'credentials'?: {
|
|
8314
|
+
/** ID of the docker credentials Example: "example-credentials" */
|
|
8179
8315
|
'id': string;
|
|
8180
|
-
/**
|
|
8316
|
+
/** The name of the docker credentials. Example: "Example Docker Credentials" */
|
|
8181
8317
|
'name': string;
|
|
8182
|
-
/**
|
|
8183
|
-
'
|
|
8184
|
-
/**
|
|
8185
|
-
'
|
|
8186
|
-
|
|
8187
|
-
|
|
8188
|
-
|
|
8189
|
-
|
|
8318
|
+
/** The provider of the docker registry. */
|
|
8319
|
+
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
8320
|
+
/** The URL of the docker registry. */
|
|
8321
|
+
'registryUrl'?: string;
|
|
8322
|
+
'aws'?: {
|
|
8323
|
+
/** The region of the docker registry. */
|
|
8324
|
+
'region'?: string;
|
|
8325
|
+
};
|
|
8326
|
+
'gcp'?: {
|
|
8327
|
+
/** The project ID of the GCP docker registry. */
|
|
8328
|
+
'projectId'?: string;
|
|
8329
|
+
};
|
|
8330
|
+
'azure'?: {
|
|
8331
|
+
/** The resource group of the Azure docker registry. */
|
|
8332
|
+
'resourceGroup'?: string;
|
|
8333
|
+
};
|
|
8334
|
+
/** Integration to use for this registry. */
|
|
8335
|
+
'integrationId'?: string;
|
|
8336
|
+
'credentials'?: {
|
|
8337
|
+
'scope': {
|
|
8338
|
+
/** Whether the credentials can pull images. */
|
|
8339
|
+
'pull'?: boolean;
|
|
8340
|
+
/** Whether the credentials can push images. */
|
|
8341
|
+
'push'?: boolean;
|
|
8342
|
+
};
|
|
8190
8343
|
};
|
|
8191
|
-
/**
|
|
8192
|
-
'
|
|
8344
|
+
/** time of update */
|
|
8345
|
+
'updatedAt'?: string;
|
|
8346
|
+
/** time of creation */
|
|
8347
|
+
'createdAt'?: string;
|
|
8193
8348
|
}[];
|
|
8194
8349
|
};
|
|
8195
8350
|
type ListRegistrycredentialsCall = ((opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>) & {
|
|
@@ -8216,80 +8371,98 @@ declare class ListRegistrycredentialsEndpoint extends GetApiEndpointPaginated<Li
|
|
|
8216
8371
|
}
|
|
8217
8372
|
|
|
8218
8373
|
type AddRegistrycredentialsResult = {
|
|
8219
|
-
/**
|
|
8374
|
+
/** ID of the docker credentials Example: "example-credentials" */
|
|
8220
8375
|
'id': string;
|
|
8221
|
-
/**
|
|
8376
|
+
/** The name of the docker credentials. Example: "Example Docker Credentials" */
|
|
8222
8377
|
'name': string;
|
|
8223
|
-
/**
|
|
8224
|
-
'
|
|
8225
|
-
/**
|
|
8226
|
-
'
|
|
8227
|
-
|
|
8378
|
+
/** The provider of the docker registry. */
|
|
8379
|
+
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
8380
|
+
/** The URL of the docker registry. */
|
|
8381
|
+
'registryUrl'?: string;
|
|
8382
|
+
'aws'?: {
|
|
8383
|
+
/** The region of the docker registry. */
|
|
8384
|
+
'region'?: string;
|
|
8385
|
+
};
|
|
8386
|
+
'gcp'?: {
|
|
8387
|
+
/** The project ID of the GCP docker registry. */
|
|
8388
|
+
'projectId'?: string;
|
|
8389
|
+
};
|
|
8390
|
+
'azure'?: {
|
|
8391
|
+
/** The resource group of the Azure docker registry. */
|
|
8392
|
+
'resourceGroup'?: string;
|
|
8393
|
+
};
|
|
8394
|
+
/** Integration to use for this registry. */
|
|
8395
|
+
'integrationId'?: string;
|
|
8396
|
+
'credentials'?: {
|
|
8397
|
+
/** Username for the docker registry. Required when `integrationId` is provided. */
|
|
8398
|
+
'username'?: string;
|
|
8399
|
+
/** Password for the docker registry. Required when `integrationId` is provided. */
|
|
8400
|
+
'password'?: string;
|
|
8401
|
+
'scope': {
|
|
8402
|
+
/** Whether the credentials can pull images. */
|
|
8403
|
+
'pull'?: boolean;
|
|
8404
|
+
/** Whether the credentials can push images. */
|
|
8405
|
+
'push'?: boolean;
|
|
8406
|
+
};
|
|
8407
|
+
};
|
|
8408
|
+
'restrictions'?: {
|
|
8409
|
+
/** Whether access to this credential is restricted. */
|
|
8228
8410
|
'restricted': boolean;
|
|
8229
|
-
/**
|
|
8230
|
-
'projects'
|
|
8411
|
+
/** List of projects that have access to this credential. */
|
|
8412
|
+
'projects'?: string[];
|
|
8231
8413
|
};
|
|
8232
|
-
/**
|
|
8233
|
-
'
|
|
8414
|
+
/** time of update */
|
|
8415
|
+
'updatedAt'?: string;
|
|
8416
|
+
/** time of creation */
|
|
8417
|
+
'createdAt'?: string;
|
|
8234
8418
|
};
|
|
8235
8419
|
type AddRegistrycredentialsCall = (opts: AddRegistrycredentialsRequest) => Promise<ApiCallResponse<AddRegistrycredentialsResult>>;
|
|
8236
8420
|
type AddRegistrycredentialsRequest = {
|
|
8237
8421
|
data: AddRegistrycredentialsData;
|
|
8238
8422
|
};
|
|
8239
8423
|
type AddRegistrycredentialsData = {
|
|
8240
|
-
/**
|
|
8424
|
+
/** The name of the docker credentials. Example: "Example Docker Credentials" */
|
|
8241
8425
|
'name': string;
|
|
8242
|
-
/**
|
|
8243
|
-
'
|
|
8244
|
-
/** The
|
|
8245
|
-
'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
8246
|
-
/** Data about whether the credentials are restricted to certain projects. */
|
|
8247
|
-
'restrictions'?: {
|
|
8248
|
-
/** Whether the credentials are restricted to specific projects. Example: true */
|
|
8249
|
-
'restricted'?: boolean;
|
|
8250
|
-
/** An array of projects the credentials are restricted to, if applicable. */
|
|
8251
|
-
'projects'?: string[];
|
|
8252
|
-
};
|
|
8253
|
-
/** Custom url for the container registry. Only usable (and required) when `provider` is `custom`. Example: "https://example.com" */
|
|
8426
|
+
/** The provider of the docker registry. */
|
|
8427
|
+
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
8428
|
+
/** The URL of the docker registry. */
|
|
8254
8429
|
'registryUrl'?: string;
|
|
8255
|
-
|
|
8256
|
-
|
|
8257
|
-
|
|
8258
|
-
|
|
8259
|
-
|
|
8260
|
-
|
|
8261
|
-
|
|
8262
|
-
|
|
8263
|
-
'
|
|
8264
|
-
|
|
8265
|
-
|
|
8266
|
-
|
|
8267
|
-
|
|
8268
|
-
|
|
8269
|
-
|
|
8270
|
-
/**
|
|
8271
|
-
'
|
|
8430
|
+
'aws'?: {
|
|
8431
|
+
/** The region of the docker registry. */
|
|
8432
|
+
'region'?: string;
|
|
8433
|
+
};
|
|
8434
|
+
'gcp'?: {
|
|
8435
|
+
/** The project ID of the GCP docker registry. */
|
|
8436
|
+
'projectId'?: string;
|
|
8437
|
+
};
|
|
8438
|
+
'azure'?: {
|
|
8439
|
+
/** The resource group of the Azure docker registry. */
|
|
8440
|
+
'resourceGroup'?: string;
|
|
8441
|
+
};
|
|
8442
|
+
/** Integration to use for this registry. */
|
|
8443
|
+
'integrationId'?: string;
|
|
8444
|
+
'credentials'?: {
|
|
8445
|
+
/** Username for the docker registry. Required when `integrationId` is provided. */
|
|
8446
|
+
'username'?: string;
|
|
8447
|
+
/** Password for the docker registry. Required when `integrationId` is provided. */
|
|
8448
|
+
'password'?: string;
|
|
8449
|
+
'scope': {
|
|
8450
|
+
/** Whether the credentials can pull images. */
|
|
8451
|
+
'pull'?: boolean;
|
|
8452
|
+
/** Whether the credentials can push images. */
|
|
8453
|
+
'push'?: boolean;
|
|
8454
|
+
};
|
|
8272
8455
|
};
|
|
8273
|
-
/** Custom url for the container registry. Only usable (and required) when `provider` is `custom`. Example: "https://example.com" */
|
|
8274
|
-
'registryUrl'?: string;
|
|
8275
|
-
/** Contents of `keyfile.json`, used to authenticate with Google Container Registry. Example: {"type":"service_account","project_id":"[PROJECT_ID]","private_key_id":"[KEY_ID]","private_key":"-----BEGIN PRIVATE KEY-----\n ... \n-----END PRIVATE KEY-----\n","client_email":"[SERVICE_ACCOUNT_EMAIL]","client_id":"[CLIENT_ID]","auth_uri":"https://accounts.google.com/o/oauth2/auth","token_uri":"https://accounts.google.com/o/oauth2/token","auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs","client_x509_cert_url":"https://www.googleapis.com/robot/v1/metadata/x509/[SERVICE_ACCOUNT_EMAIL]"} */
|
|
8276
|
-
'keyfile': any;
|
|
8277
|
-
} | {
|
|
8278
|
-
/** Name of the credentials. Example: "Example Credentials" */
|
|
8279
|
-
'name': string;
|
|
8280
|
-
/** Description of the credentials. Example: "This is a set of saved credentials." */
|
|
8281
|
-
'description': string;
|
|
8282
|
-
/** The registry provider associated with this set of credentials. Example: "dockerhub" */
|
|
8283
|
-
'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
8284
|
-
/** Data about whether the credentials are restricted to certain projects. */
|
|
8285
8456
|
'restrictions'?: {
|
|
8286
|
-
/** Whether
|
|
8287
|
-
'restricted'
|
|
8288
|
-
/**
|
|
8457
|
+
/** Whether access to this credential is restricted. */
|
|
8458
|
+
'restricted': boolean;
|
|
8459
|
+
/** List of projects that have access to this credential. */
|
|
8289
8460
|
'projects'?: string[];
|
|
8290
8461
|
};
|
|
8291
|
-
/**
|
|
8292
|
-
'
|
|
8462
|
+
/** time of update */
|
|
8463
|
+
'updatedAt'?: string;
|
|
8464
|
+
/** time of creation */
|
|
8465
|
+
'createdAt'?: string;
|
|
8293
8466
|
};
|
|
8294
8467
|
/** Adds a new set of container registry credentials to this account. */
|
|
8295
8468
|
declare class AddRegistrycredentialsEndpoint extends PostApiEndpoint<AddRegistrycredentialsRequest, AddRegistrycredentialsResult> {
|
|
@@ -8301,23 +8474,50 @@ declare class AddRegistrycredentialsEndpoint extends PostApiEndpoint<AddRegistry
|
|
|
8301
8474
|
}
|
|
8302
8475
|
|
|
8303
8476
|
type GetRegistrycredentialsResult = {
|
|
8304
|
-
/**
|
|
8477
|
+
/** ID of the docker credentials Example: "example-credentials" */
|
|
8305
8478
|
'id': string;
|
|
8306
|
-
/**
|
|
8479
|
+
/** The name of the docker credentials. Example: "Example Docker Credentials" */
|
|
8307
8480
|
'name': string;
|
|
8308
|
-
/**
|
|
8309
|
-
'
|
|
8310
|
-
/**
|
|
8311
|
-
'
|
|
8312
|
-
|
|
8481
|
+
/** The provider of the docker registry. */
|
|
8482
|
+
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
8483
|
+
/** The URL of the docker registry. */
|
|
8484
|
+
'registryUrl'?: string;
|
|
8485
|
+
'aws'?: {
|
|
8486
|
+
/** The region of the docker registry. */
|
|
8487
|
+
'region'?: string;
|
|
8488
|
+
};
|
|
8489
|
+
'gcp'?: {
|
|
8490
|
+
/** The project ID of the GCP docker registry. */
|
|
8491
|
+
'projectId'?: string;
|
|
8492
|
+
};
|
|
8493
|
+
'azure'?: {
|
|
8494
|
+
/** The resource group of the Azure docker registry. */
|
|
8495
|
+
'resourceGroup'?: string;
|
|
8496
|
+
};
|
|
8497
|
+
/** Integration to use for this registry. */
|
|
8498
|
+
'integrationId'?: string;
|
|
8499
|
+
'credentials'?: {
|
|
8500
|
+
/** Username for the docker registry. Required when `integrationId` is provided. */
|
|
8501
|
+
'username'?: string;
|
|
8502
|
+
/** Password for the docker registry. Required when `integrationId` is provided. */
|
|
8503
|
+
'password'?: string;
|
|
8504
|
+
'scope': {
|
|
8505
|
+
/** Whether the credentials can pull images. */
|
|
8506
|
+
'pull'?: boolean;
|
|
8507
|
+
/** Whether the credentials can push images. */
|
|
8508
|
+
'push'?: boolean;
|
|
8509
|
+
};
|
|
8510
|
+
};
|
|
8511
|
+
'restrictions'?: {
|
|
8512
|
+
/** Whether access to this credential is restricted. */
|
|
8313
8513
|
'restricted': boolean;
|
|
8314
|
-
/**
|
|
8315
|
-
'projects'
|
|
8514
|
+
/** List of projects that have access to this credential. */
|
|
8515
|
+
'projects'?: string[];
|
|
8316
8516
|
};
|
|
8317
|
-
/**
|
|
8318
|
-
'
|
|
8319
|
-
/**
|
|
8320
|
-
'
|
|
8517
|
+
/** time of update */
|
|
8518
|
+
'updatedAt'?: string;
|
|
8519
|
+
/** time of creation */
|
|
8520
|
+
'createdAt'?: string;
|
|
8321
8521
|
};
|
|
8322
8522
|
type GetRegistrycredentialsCall = (opts: GetRegistrycredentialsRequest) => Promise<ApiCallResponse<GetRegistrycredentialsResult>>;
|
|
8323
8523
|
type GetRegistrycredentialsRequest = {
|
|
@@ -8335,23 +8535,6 @@ declare class GetRegistrycredentialsEndpoint extends GetApiEndpoint<GetRegistryc
|
|
|
8335
8535
|
body: () => undefined;
|
|
8336
8536
|
}
|
|
8337
8537
|
|
|
8338
|
-
type DeleteRegistrycredentialsResult = any;
|
|
8339
|
-
type DeleteRegistrycredentialsCall = (opts: DeleteRegistrycredentialsRequest) => Promise<ApiCallResponse<DeleteRegistrycredentialsResult>>;
|
|
8340
|
-
type DeleteRegistrycredentialsRequest = {
|
|
8341
|
-
parameters: DeleteRegistrycredentialsParameters;
|
|
8342
|
-
};
|
|
8343
|
-
type DeleteRegistrycredentialsParameters = {
|
|
8344
|
-
/** ID of the registry credential */ 'credentialId': string;
|
|
8345
|
-
};
|
|
8346
|
-
/** Deletes a set of registry credential data. */
|
|
8347
|
-
declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult> {
|
|
8348
|
-
description: string;
|
|
8349
|
-
withAuth: boolean;
|
|
8350
|
-
requiredPermissions: string;
|
|
8351
|
-
endpointUrl: (opts: DeleteRegistrycredentialsRequest) => string;
|
|
8352
|
-
body: () => undefined;
|
|
8353
|
-
}
|
|
8354
|
-
|
|
8355
8538
|
type UpdateRegistrycredentialsResult = any;
|
|
8356
8539
|
type UpdateRegistrycredentialsCall = (opts: UpdateRegistrycredentialsRequest) => Promise<ApiCallResponse<UpdateRegistrycredentialsResult>>;
|
|
8357
8540
|
type UpdateRegistrycredentialsRequest = {
|
|
@@ -8362,60 +8545,31 @@ type UpdateRegistrycredentialsParameters = {
|
|
|
8362
8545
|
/** ID of the registry credential */ 'credentialId': string;
|
|
8363
8546
|
};
|
|
8364
8547
|
type UpdateRegistrycredentialsData = {
|
|
8365
|
-
|
|
8366
|
-
|
|
8367
|
-
|
|
8368
|
-
|
|
8369
|
-
|
|
8370
|
-
'
|
|
8371
|
-
|
|
8372
|
-
|
|
8373
|
-
|
|
8374
|
-
|
|
8375
|
-
|
|
8376
|
-
'description'?: string;
|
|
8377
|
-
/** Data about whether the credentials are restricted to certain projects. */
|
|
8378
|
-
'restrictions'?: {
|
|
8379
|
-
/** Whether the credentials are restricted to specific projects. Example: true */
|
|
8380
|
-
'restricted': boolean;
|
|
8381
|
-
/** An array of projects the credentials are restricted to, if applicable. */
|
|
8382
|
-
'projects'?: string[];
|
|
8383
|
-
};
|
|
8384
|
-
/** Custom url for the container registry. Only usable (and required) when `provider` is `custom`. Example: "https://example.com" */
|
|
8385
|
-
'registryUrl'?: string;
|
|
8386
|
-
/** Username for the container registry. Example: "test-user" */
|
|
8387
|
-
'username': string;
|
|
8388
|
-
/** Password, Personal Access Token, or API key for the container registry. Example: "password1234" */
|
|
8389
|
-
'password': string;
|
|
8390
|
-
} | {
|
|
8391
|
-
/** Description of the credentials. Example: "This is a set of saved credentials." */
|
|
8392
|
-
'description'?: string;
|
|
8393
|
-
/** Data about whether the credentials are restricted to certain projects. */
|
|
8394
|
-
'restrictions'?: {
|
|
8395
|
-
/** Whether the credentials are restricted to specific projects. Example: true */
|
|
8396
|
-
'restricted': boolean;
|
|
8397
|
-
/** An array of projects the credentials are restricted to, if applicable. */
|
|
8398
|
-
'projects'?: string[];
|
|
8548
|
+
'credentials'?: {
|
|
8549
|
+
/** Username for the docker registry. Required when `integrationId` is provided. */
|
|
8550
|
+
'username'?: string;
|
|
8551
|
+
/** Password for the docker registry. Required when `integrationId` is provided. */
|
|
8552
|
+
'password'?: string;
|
|
8553
|
+
'scope': {
|
|
8554
|
+
/** Whether the credentials can pull images. */
|
|
8555
|
+
'pull'?: boolean;
|
|
8556
|
+
/** Whether the credentials can push images. */
|
|
8557
|
+
'push'?: boolean;
|
|
8558
|
+
};
|
|
8399
8559
|
};
|
|
8400
|
-
/** Custom url for the container registry. Only usable (and required) when `provider` is `custom`. Example: "https://example.com" */
|
|
8401
|
-
'registryUrl'?: string;
|
|
8402
|
-
/** Contents of `keyfile.json`, used to authenticate with Google Container Registry. Example: {"type":"service_account","project_id":"[PROJECT_ID]","private_key_id":"[KEY_ID]","private_key":"-----BEGIN PRIVATE KEY-----\n ... \n-----END PRIVATE KEY-----\n","client_email":"[SERVICE_ACCOUNT_EMAIL]","client_id":"[CLIENT_ID]","auth_uri":"https://accounts.google.com/o/oauth2/auth","token_uri":"https://accounts.google.com/o/oauth2/token","auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs","client_x509_cert_url":"https://www.googleapis.com/robot/v1/metadata/x509/[SERVICE_ACCOUNT_EMAIL]"} */
|
|
8403
|
-
'keyfile': any;
|
|
8404
|
-
} | {
|
|
8405
|
-
/** Description of the credentials. Example: "This is a set of saved credentials." */
|
|
8406
|
-
'description'?: string;
|
|
8407
|
-
/** Data about whether the credentials are restricted to certain projects. */
|
|
8408
8560
|
'restrictions'?: {
|
|
8409
|
-
/** Whether
|
|
8561
|
+
/** Whether access to this credential is restricted. */
|
|
8410
8562
|
'restricted': boolean;
|
|
8411
|
-
/**
|
|
8563
|
+
/** List of projects that have access to this credential. */
|
|
8412
8564
|
'projects'?: string[];
|
|
8413
8565
|
};
|
|
8414
|
-
/**
|
|
8415
|
-
'
|
|
8566
|
+
/** time of update */
|
|
8567
|
+
'updatedAt'?: string;
|
|
8568
|
+
/** time of creation */
|
|
8569
|
+
'createdAt'?: string;
|
|
8416
8570
|
};
|
|
8417
8571
|
/** Updates a set of registry credential data. */
|
|
8418
|
-
declare class UpdateRegistrycredentialsEndpoint extends
|
|
8572
|
+
declare class UpdateRegistrycredentialsEndpoint extends PatchApiEndpoint<UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult> {
|
|
8419
8573
|
description: string;
|
|
8420
8574
|
withAuth: boolean;
|
|
8421
8575
|
requiredPermissions: string;
|
|
@@ -8423,6 +8577,23 @@ declare class UpdateRegistrycredentialsEndpoint extends PostApiEndpoint<UpdateRe
|
|
|
8423
8577
|
body: (payload: UpdateRegistrycredentialsRequest) => string;
|
|
8424
8578
|
}
|
|
8425
8579
|
|
|
8580
|
+
type DeleteRegistrycredentialsResult = any;
|
|
8581
|
+
type DeleteRegistrycredentialsCall = (opts: DeleteRegistrycredentialsRequest) => Promise<ApiCallResponse<DeleteRegistrycredentialsResult>>;
|
|
8582
|
+
type DeleteRegistrycredentialsRequest = {
|
|
8583
|
+
parameters: DeleteRegistrycredentialsParameters;
|
|
8584
|
+
};
|
|
8585
|
+
type DeleteRegistrycredentialsParameters = {
|
|
8586
|
+
/** ID of the registry credential */ 'credentialId': string;
|
|
8587
|
+
};
|
|
8588
|
+
/** Deletes a set of registry credential data. */
|
|
8589
|
+
declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult> {
|
|
8590
|
+
description: string;
|
|
8591
|
+
withAuth: boolean;
|
|
8592
|
+
requiredPermissions: string;
|
|
8593
|
+
endpointUrl: (opts: DeleteRegistrycredentialsRequest) => string;
|
|
8594
|
+
body: () => undefined;
|
|
8595
|
+
}
|
|
8596
|
+
|
|
8426
8597
|
type ListVcsResult = {
|
|
8427
8598
|
/** The version control accounts linked to this Northflank account. */
|
|
8428
8599
|
'vcsAccountLinks': {
|
|
@@ -11396,6 +11567,8 @@ type CreateJobCronResult = {
|
|
|
11396
11567
|
'buildArguments'?: any;
|
|
11397
11568
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
11398
11569
|
'buildFiles'?: any;
|
|
11570
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
11571
|
+
'dockerSecretMounts'?: any;
|
|
11399
11572
|
/** An array of health checks. */
|
|
11400
11573
|
'healthChecks'?: {
|
|
11401
11574
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -11519,16 +11692,20 @@ type CreateJobCronResult = {
|
|
|
11519
11692
|
};
|
|
11520
11693
|
};
|
|
11521
11694
|
'dockerfile': {
|
|
11522
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
11523
|
-
'buildEngine'?: '
|
|
11695
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
11696
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
11524
11697
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
11525
11698
|
'dockerFilePath': string;
|
|
11526
11699
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
11527
11700
|
'dockerWorkDir': string;
|
|
11528
|
-
/** Should intermediate image layers be cached? */
|
|
11529
|
-
'useCache'?: boolean;
|
|
11530
11701
|
'buildkit'?: {
|
|
11702
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
11703
|
+
'useCache'?: boolean;
|
|
11704
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
11705
|
+
'cacheStorageSize'?: number;
|
|
11706
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
11531
11707
|
'useInternalCache'?: boolean;
|
|
11708
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
11532
11709
|
'internalCacheStorage'?: number;
|
|
11533
11710
|
};
|
|
11534
11711
|
};
|
|
@@ -11555,7 +11732,7 @@ type CreateJobCronResult = {
|
|
|
11555
11732
|
/** Details about the status of the most recent build. */
|
|
11556
11733
|
'build'?: {
|
|
11557
11734
|
/** The current status of the build. Example: "SUCCESS" */
|
|
11558
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
11735
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
11559
11736
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
11560
11737
|
'lastTransitionTime'?: string;
|
|
11561
11738
|
};
|
|
@@ -11818,16 +11995,20 @@ type CreateJobCronData = {
|
|
|
11818
11995
|
};
|
|
11819
11996
|
};
|
|
11820
11997
|
'dockerfile': {
|
|
11821
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
11822
|
-
'buildEngine'?: '
|
|
11998
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
11999
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
11823
12000
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
11824
12001
|
'dockerFilePath': string;
|
|
11825
12002
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
11826
12003
|
'dockerWorkDir': string;
|
|
11827
|
-
/** Should intermediate image layers be cached? */
|
|
11828
|
-
'useCache'?: boolean;
|
|
11829
12004
|
'buildkit'?: {
|
|
12005
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
12006
|
+
'useCache'?: boolean;
|
|
12007
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
12008
|
+
'cacheStorageSize'?: number;
|
|
12009
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
11830
12010
|
'useInternalCache'?: boolean;
|
|
12011
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
11831
12012
|
'internalCacheStorage'?: number;
|
|
11832
12013
|
};
|
|
11833
12014
|
};
|
|
@@ -11857,6 +12038,8 @@ type CreateJobCronData = {
|
|
|
11857
12038
|
'buildArguments'?: any;
|
|
11858
12039
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
11859
12040
|
'buildFiles'?: any;
|
|
12041
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
12042
|
+
'dockerSecretMounts'?: any;
|
|
11860
12043
|
/** An array of health checks. */
|
|
11861
12044
|
'healthChecks'?: {
|
|
11862
12045
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -11959,6 +12142,8 @@ type PutJobCronResult = {
|
|
|
11959
12142
|
'buildArguments'?: any;
|
|
11960
12143
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
11961
12144
|
'buildFiles'?: any;
|
|
12145
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
12146
|
+
'dockerSecretMounts'?: any;
|
|
11962
12147
|
/** An array of health checks. */
|
|
11963
12148
|
'healthChecks'?: {
|
|
11964
12149
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -12082,16 +12267,20 @@ type PutJobCronResult = {
|
|
|
12082
12267
|
};
|
|
12083
12268
|
};
|
|
12084
12269
|
'dockerfile': {
|
|
12085
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
12086
|
-
'buildEngine'?: '
|
|
12270
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
12271
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
12087
12272
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
12088
12273
|
'dockerFilePath': string;
|
|
12089
12274
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
12090
12275
|
'dockerWorkDir': string;
|
|
12091
|
-
/** Should intermediate image layers be cached? */
|
|
12092
|
-
'useCache'?: boolean;
|
|
12093
12276
|
'buildkit'?: {
|
|
12277
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
12278
|
+
'useCache'?: boolean;
|
|
12279
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
12280
|
+
'cacheStorageSize'?: number;
|
|
12281
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
12094
12282
|
'useInternalCache'?: boolean;
|
|
12283
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
12095
12284
|
'internalCacheStorage'?: number;
|
|
12096
12285
|
};
|
|
12097
12286
|
};
|
|
@@ -12118,7 +12307,7 @@ type PutJobCronResult = {
|
|
|
12118
12307
|
/** Details about the status of the most recent build. */
|
|
12119
12308
|
'build'?: {
|
|
12120
12309
|
/** The current status of the build. Example: "SUCCESS" */
|
|
12121
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
12310
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
12122
12311
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
12123
12312
|
'lastTransitionTime'?: string;
|
|
12124
12313
|
};
|
|
@@ -12381,16 +12570,20 @@ type PutJobCronData = {
|
|
|
12381
12570
|
};
|
|
12382
12571
|
};
|
|
12383
12572
|
'dockerfile': {
|
|
12384
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
12385
|
-
'buildEngine'?: '
|
|
12573
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
12574
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
12386
12575
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
12387
12576
|
'dockerFilePath': string;
|
|
12388
12577
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
12389
12578
|
'dockerWorkDir': string;
|
|
12390
|
-
/** Should intermediate image layers be cached? */
|
|
12391
|
-
'useCache'?: boolean;
|
|
12392
12579
|
'buildkit'?: {
|
|
12580
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
12581
|
+
'useCache'?: boolean;
|
|
12582
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
12583
|
+
'cacheStorageSize'?: number;
|
|
12584
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
12393
12585
|
'useInternalCache'?: boolean;
|
|
12586
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
12394
12587
|
'internalCacheStorage'?: number;
|
|
12395
12588
|
};
|
|
12396
12589
|
};
|
|
@@ -12420,6 +12613,8 @@ type PutJobCronData = {
|
|
|
12420
12613
|
'buildArguments'?: any;
|
|
12421
12614
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
12422
12615
|
'buildFiles'?: any;
|
|
12616
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
12617
|
+
'dockerSecretMounts'?: any;
|
|
12423
12618
|
/** An array of health checks. */
|
|
12424
12619
|
'healthChecks'?: {
|
|
12425
12620
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -12522,6 +12717,8 @@ type PatchJobCronResult = {
|
|
|
12522
12717
|
'buildArguments'?: any;
|
|
12523
12718
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
12524
12719
|
'buildFiles'?: any;
|
|
12720
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
12721
|
+
'dockerSecretMounts'?: any;
|
|
12525
12722
|
/** An array of health checks. */
|
|
12526
12723
|
'healthChecks'?: {
|
|
12527
12724
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -12645,16 +12842,20 @@ type PatchJobCronResult = {
|
|
|
12645
12842
|
};
|
|
12646
12843
|
};
|
|
12647
12844
|
'dockerfile': {
|
|
12648
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
12649
|
-
'buildEngine'?: '
|
|
12845
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
12846
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
12650
12847
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
12651
12848
|
'dockerFilePath': string;
|
|
12652
12849
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
12653
12850
|
'dockerWorkDir': string;
|
|
12654
|
-
/** Should intermediate image layers be cached? */
|
|
12655
|
-
'useCache'?: boolean;
|
|
12656
12851
|
'buildkit'?: {
|
|
12852
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
12853
|
+
'useCache'?: boolean;
|
|
12854
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
12855
|
+
'cacheStorageSize'?: number;
|
|
12856
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
12657
12857
|
'useInternalCache'?: boolean;
|
|
12858
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
12658
12859
|
'internalCacheStorage'?: number;
|
|
12659
12860
|
};
|
|
12660
12861
|
};
|
|
@@ -12681,7 +12882,7 @@ type PatchJobCronResult = {
|
|
|
12681
12882
|
/** Details about the status of the most recent build. */
|
|
12682
12883
|
'build'?: {
|
|
12683
12884
|
/** The current status of the build. Example: "SUCCESS" */
|
|
12684
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
12885
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
12685
12886
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
12686
12887
|
'lastTransitionTime'?: string;
|
|
12687
12888
|
};
|
|
@@ -12770,6 +12971,8 @@ type PatchJobCronData = {
|
|
|
12770
12971
|
'buildArguments'?: any;
|
|
12771
12972
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
12772
12973
|
'buildFiles'?: any;
|
|
12974
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
12975
|
+
'dockerSecretMounts'?: any;
|
|
12773
12976
|
/** An array of health checks. */
|
|
12774
12977
|
'healthChecks'?: {
|
|
12775
12978
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -12872,6 +13075,8 @@ type CreateJobManualResult = {
|
|
|
12872
13075
|
'buildArguments'?: any;
|
|
12873
13076
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
12874
13077
|
'buildFiles'?: any;
|
|
13078
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
13079
|
+
'dockerSecretMounts'?: any;
|
|
12875
13080
|
/** An array of health checks. */
|
|
12876
13081
|
'healthChecks'?: {
|
|
12877
13082
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -12989,16 +13194,20 @@ type CreateJobManualResult = {
|
|
|
12989
13194
|
};
|
|
12990
13195
|
};
|
|
12991
13196
|
'dockerfile': {
|
|
12992
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
12993
|
-
'buildEngine'?: '
|
|
13197
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
13198
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
12994
13199
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
12995
13200
|
'dockerFilePath': string;
|
|
12996
13201
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
12997
13202
|
'dockerWorkDir': string;
|
|
12998
|
-
/** Should intermediate image layers be cached? */
|
|
12999
|
-
'useCache'?: boolean;
|
|
13000
13203
|
'buildkit'?: {
|
|
13204
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
13205
|
+
'useCache'?: boolean;
|
|
13206
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
13207
|
+
'cacheStorageSize'?: number;
|
|
13208
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
13001
13209
|
'useInternalCache'?: boolean;
|
|
13210
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
13002
13211
|
'internalCacheStorage'?: number;
|
|
13003
13212
|
};
|
|
13004
13213
|
};
|
|
@@ -13025,7 +13234,7 @@ type CreateJobManualResult = {
|
|
|
13025
13234
|
/** Details about the status of the most recent build. */
|
|
13026
13235
|
'build'?: {
|
|
13027
13236
|
/** The current status of the build. Example: "SUCCESS" */
|
|
13028
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
13237
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
13029
13238
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
13030
13239
|
'lastTransitionTime'?: string;
|
|
13031
13240
|
};
|
|
@@ -13288,16 +13497,20 @@ type CreateJobManualData = {
|
|
|
13288
13497
|
};
|
|
13289
13498
|
};
|
|
13290
13499
|
'dockerfile': {
|
|
13291
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
13292
|
-
'buildEngine'?: '
|
|
13500
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
13501
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
13293
13502
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
13294
13503
|
'dockerFilePath': string;
|
|
13295
13504
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
13296
13505
|
'dockerWorkDir': string;
|
|
13297
|
-
/** Should intermediate image layers be cached? */
|
|
13298
|
-
'useCache'?: boolean;
|
|
13299
13506
|
'buildkit'?: {
|
|
13507
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
13508
|
+
'useCache'?: boolean;
|
|
13509
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
13510
|
+
'cacheStorageSize'?: number;
|
|
13511
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
13300
13512
|
'useInternalCache'?: boolean;
|
|
13513
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
13301
13514
|
'internalCacheStorage'?: number;
|
|
13302
13515
|
};
|
|
13303
13516
|
};
|
|
@@ -13327,6 +13540,8 @@ type CreateJobManualData = {
|
|
|
13327
13540
|
'buildArguments'?: any;
|
|
13328
13541
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
13329
13542
|
'buildFiles'?: any;
|
|
13543
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
13544
|
+
'dockerSecretMounts'?: any;
|
|
13330
13545
|
/** An array of health checks. */
|
|
13331
13546
|
'healthChecks'?: {
|
|
13332
13547
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -13423,6 +13638,8 @@ type PutJobManualResult = {
|
|
|
13423
13638
|
'buildArguments'?: any;
|
|
13424
13639
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
13425
13640
|
'buildFiles'?: any;
|
|
13641
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
13642
|
+
'dockerSecretMounts'?: any;
|
|
13426
13643
|
/** An array of health checks. */
|
|
13427
13644
|
'healthChecks'?: {
|
|
13428
13645
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -13540,16 +13757,20 @@ type PutJobManualResult = {
|
|
|
13540
13757
|
};
|
|
13541
13758
|
};
|
|
13542
13759
|
'dockerfile': {
|
|
13543
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
13544
|
-
'buildEngine'?: '
|
|
13760
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
13761
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
13545
13762
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
13546
13763
|
'dockerFilePath': string;
|
|
13547
13764
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
13548
13765
|
'dockerWorkDir': string;
|
|
13549
|
-
/** Should intermediate image layers be cached? */
|
|
13550
|
-
'useCache'?: boolean;
|
|
13551
13766
|
'buildkit'?: {
|
|
13767
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
13768
|
+
'useCache'?: boolean;
|
|
13769
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
13770
|
+
'cacheStorageSize'?: number;
|
|
13771
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
13552
13772
|
'useInternalCache'?: boolean;
|
|
13773
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
13553
13774
|
'internalCacheStorage'?: number;
|
|
13554
13775
|
};
|
|
13555
13776
|
};
|
|
@@ -13576,7 +13797,7 @@ type PutJobManualResult = {
|
|
|
13576
13797
|
/** Details about the status of the most recent build. */
|
|
13577
13798
|
'build'?: {
|
|
13578
13799
|
/** The current status of the build. Example: "SUCCESS" */
|
|
13579
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
13800
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
13580
13801
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
13581
13802
|
'lastTransitionTime'?: string;
|
|
13582
13803
|
};
|
|
@@ -13839,16 +14060,20 @@ type PutJobManualData = {
|
|
|
13839
14060
|
};
|
|
13840
14061
|
};
|
|
13841
14062
|
'dockerfile': {
|
|
13842
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
13843
|
-
'buildEngine'?: '
|
|
14063
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
14064
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
13844
14065
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
13845
14066
|
'dockerFilePath': string;
|
|
13846
14067
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
13847
14068
|
'dockerWorkDir': string;
|
|
13848
|
-
/** Should intermediate image layers be cached? */
|
|
13849
|
-
'useCache'?: boolean;
|
|
13850
14069
|
'buildkit'?: {
|
|
14070
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
14071
|
+
'useCache'?: boolean;
|
|
14072
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
14073
|
+
'cacheStorageSize'?: number;
|
|
14074
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
13851
14075
|
'useInternalCache'?: boolean;
|
|
14076
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
13852
14077
|
'internalCacheStorage'?: number;
|
|
13853
14078
|
};
|
|
13854
14079
|
};
|
|
@@ -13878,6 +14103,8 @@ type PutJobManualData = {
|
|
|
13878
14103
|
'buildArguments'?: any;
|
|
13879
14104
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
13880
14105
|
'buildFiles'?: any;
|
|
14106
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
14107
|
+
'dockerSecretMounts'?: any;
|
|
13881
14108
|
/** An array of health checks. */
|
|
13882
14109
|
'healthChecks'?: {
|
|
13883
14110
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -13974,6 +14201,8 @@ type PatchJobManualResult = {
|
|
|
13974
14201
|
'buildArguments'?: any;
|
|
13975
14202
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
13976
14203
|
'buildFiles'?: any;
|
|
14204
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
14205
|
+
'dockerSecretMounts'?: any;
|
|
13977
14206
|
/** An array of health checks. */
|
|
13978
14207
|
'healthChecks'?: {
|
|
13979
14208
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -14091,16 +14320,20 @@ type PatchJobManualResult = {
|
|
|
14091
14320
|
};
|
|
14092
14321
|
};
|
|
14093
14322
|
'dockerfile': {
|
|
14094
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
14095
|
-
'buildEngine'?: '
|
|
14323
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
14324
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
14096
14325
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
14097
14326
|
'dockerFilePath': string;
|
|
14098
14327
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
14099
14328
|
'dockerWorkDir': string;
|
|
14100
|
-
/** Should intermediate image layers be cached? */
|
|
14101
|
-
'useCache'?: boolean;
|
|
14102
14329
|
'buildkit'?: {
|
|
14330
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
14331
|
+
'useCache'?: boolean;
|
|
14332
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
14333
|
+
'cacheStorageSize'?: number;
|
|
14334
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
14103
14335
|
'useInternalCache'?: boolean;
|
|
14336
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
14104
14337
|
'internalCacheStorage'?: number;
|
|
14105
14338
|
};
|
|
14106
14339
|
};
|
|
@@ -14127,7 +14360,7 @@ type PatchJobManualResult = {
|
|
|
14127
14360
|
/** Details about the status of the most recent build. */
|
|
14128
14361
|
'build'?: {
|
|
14129
14362
|
/** The current status of the build. Example: "SUCCESS" */
|
|
14130
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
14363
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
14131
14364
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
14132
14365
|
'lastTransitionTime'?: string;
|
|
14133
14366
|
};
|
|
@@ -14216,6 +14449,8 @@ type PatchJobManualData = {
|
|
|
14216
14449
|
'buildArguments'?: any;
|
|
14217
14450
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
14218
14451
|
'buildFiles'?: any;
|
|
14452
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
14453
|
+
'dockerSecretMounts'?: any;
|
|
14219
14454
|
/** An array of health checks. */
|
|
14220
14455
|
'healthChecks'?: {
|
|
14221
14456
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -14307,7 +14542,7 @@ type GetJobResult = {
|
|
|
14307
14542
|
};
|
|
14308
14543
|
'buildEngineConfiguration'?: {
|
|
14309
14544
|
/** The build engine used. Example: "buildpack" */
|
|
14310
|
-
'buildEngine'?: 'buildpack' | '
|
|
14545
|
+
'buildEngine'?: 'buildpack' | 'buildkit' | 'kaniko';
|
|
14311
14546
|
/** Details about Buildpack settings. */
|
|
14312
14547
|
'buildpack'?: {
|
|
14313
14548
|
/** The Buildpack stack used. Example: "HEROKU_24" */
|
|
@@ -14500,7 +14735,7 @@ type GetJobBuildsResult = {
|
|
|
14500
14735
|
/** ID of the pull request the commit belongs to. */
|
|
14501
14736
|
'pullRequestId'?: number;
|
|
14502
14737
|
/** The status of the build. Example: "SUCCESS" */
|
|
14503
|
-
'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
14738
|
+
'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
14504
14739
|
/** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
|
|
14505
14740
|
'sha'?: string;
|
|
14506
14741
|
'registry'?: {
|
|
@@ -14590,6 +14825,8 @@ type StartJobBuildData = {
|
|
|
14590
14825
|
'buildArguments'?: any;
|
|
14591
14826
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
14592
14827
|
'buildFiles'?: any;
|
|
14828
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
14829
|
+
'dockerSecretMounts'?: any;
|
|
14593
14830
|
/** Overrides for docker build settings. */
|
|
14594
14831
|
'docker'?: {
|
|
14595
14832
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
@@ -14654,9 +14891,11 @@ type UpdateJobBuildargumentsParameters = {
|
|
|
14654
14891
|
};
|
|
14655
14892
|
type UpdateJobBuildargumentsData = {
|
|
14656
14893
|
/** An object containing the all of the build arguments to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
14657
|
-
'buildArguments'
|
|
14894
|
+
'buildArguments'?: any;
|
|
14658
14895
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
14659
14896
|
'buildFiles'?: any;
|
|
14897
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
14898
|
+
'dockerSecretMounts'?: any;
|
|
14660
14899
|
};
|
|
14661
14900
|
/** Sets build arguments for the given job. */
|
|
14662
14901
|
declare class UpdateJobBuildargumentsEndpoint extends PostApiEndpoint<UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult> {
|
|
@@ -14751,19 +14990,21 @@ type UpdateJobBuildoptionsParameters = {
|
|
|
14751
14990
|
};
|
|
14752
14991
|
type UpdateJobBuildoptionsData = {
|
|
14753
14992
|
'dockerfile': {
|
|
14754
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
14755
|
-
'buildEngine'?: '
|
|
14756
|
-
/** Should intermediate image layers be cached? */
|
|
14757
|
-
'useCache'?: boolean;
|
|
14993
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
14994
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
14758
14995
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
14759
14996
|
'dockerFilePath'?: string;
|
|
14760
14997
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
14761
14998
|
'dockerWorkDir'?: string;
|
|
14762
14999
|
'buildkit'?: {
|
|
14763
|
-
/**
|
|
15000
|
+
/** Use persistent storage to cache build layers. */
|
|
15001
|
+
'useCache'?: boolean;
|
|
15002
|
+
/** The amount of persistent storage available to each build in MB. */
|
|
15003
|
+
'cacheStorageSize'?: number;
|
|
15004
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
14764
15005
|
'useInternalCache'?: boolean;
|
|
14765
|
-
/**
|
|
14766
|
-
'internalCacheStorage'
|
|
15006
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
15007
|
+
'internalCacheStorage'?: number;
|
|
14767
15008
|
};
|
|
14768
15009
|
};
|
|
14769
15010
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
@@ -14878,7 +15119,7 @@ type GetJobBuildResult = {
|
|
|
14878
15119
|
/** ID of the pull request the commit belongs to. */
|
|
14879
15120
|
'pullRequestId'?: number;
|
|
14880
15121
|
/** The status of the build. Example: "SUCCESS" */
|
|
14881
|
-
'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
15122
|
+
'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
14882
15123
|
/** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
|
|
14883
15124
|
'sha'?: string;
|
|
14884
15125
|
'registry'?: {
|
|
@@ -15084,7 +15325,7 @@ type GetJobDeploymentResult = {
|
|
|
15084
15325
|
/** Path of the external image excluding the hostname Example: "nginx:latest" */
|
|
15085
15326
|
'imagePath': string;
|
|
15086
15327
|
/** Registry provider hosting the external image Example: "dockerhub" */
|
|
15087
|
-
'registryProvider': '
|
|
15328
|
+
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
15088
15329
|
/** Does the image require authentication */
|
|
15089
15330
|
'privateImage': boolean;
|
|
15090
15331
|
};
|
|
@@ -15461,6 +15702,8 @@ type StartJobRunData = {
|
|
|
15461
15702
|
'runtimeEnvironment'?: any;
|
|
15462
15703
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
15463
15704
|
'runtimeFiles'?: any;
|
|
15705
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
15706
|
+
'dockerSecretMounts'?: any;
|
|
15464
15707
|
'billing'?: {
|
|
15465
15708
|
/** The ID of the deployment plan override to use. Example: "nf-compute-20" */
|
|
15466
15709
|
'deploymentPlan'?: string;
|
|
@@ -16083,7 +16326,7 @@ type UpdatePreviewtemplateData = {
|
|
|
16083
16326
|
'spec': any;
|
|
16084
16327
|
/** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
|
|
16085
16328
|
'paused'?: boolean;
|
|
16086
|
-
'triggers'
|
|
16329
|
+
'triggers'?: {
|
|
16087
16330
|
/** A reference that can be used to access the output of this trigger in the template. */
|
|
16088
16331
|
'ref'?: string;
|
|
16089
16332
|
/** The VCS provider to use. Example: "github" */
|
|
@@ -16967,6 +17210,8 @@ type CreateSecretResult = {
|
|
|
16967
17210
|
'variables'?: any;
|
|
16968
17211
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
16969
17212
|
'files'?: any;
|
|
17213
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17214
|
+
'dockerSecretMounts'?: any;
|
|
16970
17215
|
};
|
|
16971
17216
|
/** Identifier for the secret group Example: "example-secret-group" */
|
|
16972
17217
|
'id': string;
|
|
@@ -17029,6 +17274,8 @@ type CreateSecretData = {
|
|
|
17029
17274
|
'variables'?: any;
|
|
17030
17275
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17031
17276
|
'files'?: any;
|
|
17277
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17278
|
+
'dockerSecretMounts'?: any;
|
|
17032
17279
|
};
|
|
17033
17280
|
};
|
|
17034
17281
|
/** Creates a secret with the specified payload */
|
|
@@ -17086,6 +17333,8 @@ type PutSecretResult = {
|
|
|
17086
17333
|
'variables'?: any;
|
|
17087
17334
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17088
17335
|
'files'?: any;
|
|
17336
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17337
|
+
'dockerSecretMounts'?: any;
|
|
17089
17338
|
};
|
|
17090
17339
|
/** Identifier for the secret group Example: "example-secret-group" */
|
|
17091
17340
|
'id': string;
|
|
@@ -17148,6 +17397,8 @@ type PutSecretData = {
|
|
|
17148
17397
|
'variables'?: any;
|
|
17149
17398
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17150
17399
|
'files'?: any;
|
|
17400
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17401
|
+
'dockerSecretMounts'?: any;
|
|
17151
17402
|
};
|
|
17152
17403
|
};
|
|
17153
17404
|
/** Creates or updates a secret with the specified payload */
|
|
@@ -17205,6 +17456,8 @@ type PatchSecretResult = {
|
|
|
17205
17456
|
'variables'?: any;
|
|
17206
17457
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17207
17458
|
'files'?: any;
|
|
17459
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17460
|
+
'dockerSecretMounts'?: any;
|
|
17208
17461
|
};
|
|
17209
17462
|
/** Identifier for the secret group Example: "example-secret-group" */
|
|
17210
17463
|
'id': string;
|
|
@@ -17266,6 +17519,8 @@ type PatchSecretData = {
|
|
|
17266
17519
|
'variables'?: any;
|
|
17267
17520
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17268
17521
|
'files'?: any;
|
|
17522
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17523
|
+
'dockerSecretMounts'?: any;
|
|
17269
17524
|
};
|
|
17270
17525
|
};
|
|
17271
17526
|
/** Updates a secret with the specified payload */
|
|
@@ -17412,6 +17667,8 @@ type UpdateSecretData = {
|
|
|
17412
17667
|
'variables'?: any;
|
|
17413
17668
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17414
17669
|
'files'?: any;
|
|
17670
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17671
|
+
'dockerSecretMounts'?: any;
|
|
17415
17672
|
};
|
|
17416
17673
|
};
|
|
17417
17674
|
/** Update a secret */
|
|
@@ -17648,16 +17905,20 @@ type CreateServiceBuildResult = {
|
|
|
17648
17905
|
};
|
|
17649
17906
|
};
|
|
17650
17907
|
'dockerfile': {
|
|
17651
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
17652
|
-
'buildEngine'?: '
|
|
17908
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
17909
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
17653
17910
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
17654
17911
|
'dockerFilePath': string;
|
|
17655
17912
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
17656
17913
|
'dockerWorkDir': string;
|
|
17657
|
-
/** Should intermediate image layers be cached? */
|
|
17658
|
-
'useCache'?: boolean;
|
|
17659
17914
|
'buildkit'?: {
|
|
17915
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
17916
|
+
'useCache'?: boolean;
|
|
17917
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
17918
|
+
'cacheStorageSize'?: number;
|
|
17919
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
17660
17920
|
'useInternalCache'?: boolean;
|
|
17921
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
17661
17922
|
'internalCacheStorage'?: number;
|
|
17662
17923
|
};
|
|
17663
17924
|
};
|
|
@@ -17710,6 +17971,8 @@ type CreateServiceBuildResult = {
|
|
|
17710
17971
|
'buildArguments'?: any;
|
|
17711
17972
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17712
17973
|
'buildFiles'?: any;
|
|
17974
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17975
|
+
'dockerSecretMounts'?: any;
|
|
17713
17976
|
/** Type of the service (combined, build or deployment) Example: "build" */
|
|
17714
17977
|
'serviceType': 'build';
|
|
17715
17978
|
/** Identifier for the service Example: "example-service" */
|
|
@@ -17736,7 +17999,7 @@ type CreateServiceBuildResult = {
|
|
|
17736
17999
|
/** Details about the status of the most recent build. */
|
|
17737
18000
|
'build'?: {
|
|
17738
18001
|
/** The current status of the build. Example: "SUCCESS" */
|
|
17739
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
18002
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
17740
18003
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
17741
18004
|
'lastTransitionTime'?: string;
|
|
17742
18005
|
};
|
|
@@ -17799,16 +18062,20 @@ type CreateServiceBuildData = {
|
|
|
17799
18062
|
};
|
|
17800
18063
|
};
|
|
17801
18064
|
'dockerfile': {
|
|
17802
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
17803
|
-
'buildEngine'?: '
|
|
18065
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
18066
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
17804
18067
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
17805
18068
|
'dockerFilePath': string;
|
|
17806
18069
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
17807
18070
|
'dockerWorkDir': string;
|
|
17808
|
-
/** Should intermediate image layers be cached? */
|
|
17809
|
-
'useCache'?: boolean;
|
|
17810
18071
|
'buildkit'?: {
|
|
18072
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
18073
|
+
'useCache'?: boolean;
|
|
18074
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
18075
|
+
'cacheStorageSize'?: number;
|
|
18076
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
17811
18077
|
'useInternalCache'?: boolean;
|
|
18078
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
17812
18079
|
'internalCacheStorage'?: number;
|
|
17813
18080
|
};
|
|
17814
18081
|
};
|
|
@@ -17861,6 +18128,8 @@ type CreateServiceBuildData = {
|
|
|
17861
18128
|
'buildArguments'?: any;
|
|
17862
18129
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17863
18130
|
'buildFiles'?: any;
|
|
18131
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
18132
|
+
'dockerSecretMounts'?: any;
|
|
17864
18133
|
};
|
|
17865
18134
|
/** Creates a new build service. */
|
|
17866
18135
|
declare class CreateServiceBuildEndpoint extends PostApiEndpoint<CreateServiceBuildRequest, CreateServiceBuildResult> {
|
|
@@ -17920,16 +18189,20 @@ type PutServiceBuildResult = {
|
|
|
17920
18189
|
};
|
|
17921
18190
|
};
|
|
17922
18191
|
'dockerfile': {
|
|
17923
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
17924
|
-
'buildEngine'?: '
|
|
18192
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
18193
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
17925
18194
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
17926
18195
|
'dockerFilePath': string;
|
|
17927
18196
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
17928
18197
|
'dockerWorkDir': string;
|
|
17929
|
-
/** Should intermediate image layers be cached? */
|
|
17930
|
-
'useCache'?: boolean;
|
|
17931
18198
|
'buildkit'?: {
|
|
18199
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
18200
|
+
'useCache'?: boolean;
|
|
18201
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
18202
|
+
'cacheStorageSize'?: number;
|
|
18203
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
17932
18204
|
'useInternalCache'?: boolean;
|
|
18205
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
17933
18206
|
'internalCacheStorage'?: number;
|
|
17934
18207
|
};
|
|
17935
18208
|
};
|
|
@@ -17982,6 +18255,8 @@ type PutServiceBuildResult = {
|
|
|
17982
18255
|
'buildArguments'?: any;
|
|
17983
18256
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
17984
18257
|
'buildFiles'?: any;
|
|
18258
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
18259
|
+
'dockerSecretMounts'?: any;
|
|
17985
18260
|
/** Type of the service (combined, build or deployment) Example: "build" */
|
|
17986
18261
|
'serviceType': 'build';
|
|
17987
18262
|
/** Identifier for the service Example: "example-service" */
|
|
@@ -18008,7 +18283,7 @@ type PutServiceBuildResult = {
|
|
|
18008
18283
|
/** Details about the status of the most recent build. */
|
|
18009
18284
|
'build'?: {
|
|
18010
18285
|
/** The current status of the build. Example: "SUCCESS" */
|
|
18011
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
18286
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
18012
18287
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
18013
18288
|
'lastTransitionTime'?: string;
|
|
18014
18289
|
};
|
|
@@ -18071,16 +18346,20 @@ type PutServiceBuildData = {
|
|
|
18071
18346
|
};
|
|
18072
18347
|
};
|
|
18073
18348
|
'dockerfile': {
|
|
18074
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
18075
|
-
'buildEngine'?: '
|
|
18349
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
18350
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
18076
18351
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
18077
18352
|
'dockerFilePath': string;
|
|
18078
18353
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
18079
18354
|
'dockerWorkDir': string;
|
|
18080
|
-
/** Should intermediate image layers be cached? */
|
|
18081
|
-
'useCache'?: boolean;
|
|
18082
18355
|
'buildkit'?: {
|
|
18356
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
18357
|
+
'useCache'?: boolean;
|
|
18358
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
18359
|
+
'cacheStorageSize'?: number;
|
|
18360
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
18083
18361
|
'useInternalCache'?: boolean;
|
|
18362
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
18084
18363
|
'internalCacheStorage'?: number;
|
|
18085
18364
|
};
|
|
18086
18365
|
};
|
|
@@ -18133,6 +18412,8 @@ type PutServiceBuildData = {
|
|
|
18133
18412
|
'buildArguments'?: any;
|
|
18134
18413
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
18135
18414
|
'buildFiles'?: any;
|
|
18415
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
18416
|
+
'dockerSecretMounts'?: any;
|
|
18136
18417
|
};
|
|
18137
18418
|
/** Creates or updates a build service. */
|
|
18138
18419
|
declare class PutServiceBuildEndpoint extends PutApiEndpoint<PutServiceBuildRequest, PutServiceBuildResult> {
|
|
@@ -18192,16 +18473,20 @@ type PatchServiceBuildResult = {
|
|
|
18192
18473
|
};
|
|
18193
18474
|
};
|
|
18194
18475
|
'dockerfile': {
|
|
18195
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
18196
|
-
'buildEngine'?: '
|
|
18476
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
18477
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
18197
18478
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
18198
18479
|
'dockerFilePath': string;
|
|
18199
18480
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
18200
18481
|
'dockerWorkDir': string;
|
|
18201
|
-
/** Should intermediate image layers be cached? */
|
|
18202
|
-
'useCache'?: boolean;
|
|
18203
18482
|
'buildkit'?: {
|
|
18483
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
18484
|
+
'useCache'?: boolean;
|
|
18485
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
18486
|
+
'cacheStorageSize'?: number;
|
|
18487
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
18204
18488
|
'useInternalCache'?: boolean;
|
|
18489
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
18205
18490
|
'internalCacheStorage'?: number;
|
|
18206
18491
|
};
|
|
18207
18492
|
};
|
|
@@ -18254,6 +18539,8 @@ type PatchServiceBuildResult = {
|
|
|
18254
18539
|
'buildArguments'?: any;
|
|
18255
18540
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
18256
18541
|
'buildFiles'?: any;
|
|
18542
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
18543
|
+
'dockerSecretMounts'?: any;
|
|
18257
18544
|
/** Type of the service (combined, build or deployment) Example: "build" */
|
|
18258
18545
|
'serviceType': 'build';
|
|
18259
18546
|
/** Identifier for the service Example: "example-service" */
|
|
@@ -18280,7 +18567,7 @@ type PatchServiceBuildResult = {
|
|
|
18280
18567
|
/** Details about the status of the most recent build. */
|
|
18281
18568
|
'build'?: {
|
|
18282
18569
|
/** The current status of the build. Example: "SUCCESS" */
|
|
18283
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
18570
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
18284
18571
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
18285
18572
|
'lastTransitionTime'?: string;
|
|
18286
18573
|
};
|
|
@@ -18339,16 +18626,20 @@ type PatchServiceBuildData = {
|
|
|
18339
18626
|
};
|
|
18340
18627
|
};
|
|
18341
18628
|
'dockerfile'?: {
|
|
18342
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
18343
|
-
'buildEngine'?: '
|
|
18629
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
18630
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
18344
18631
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
18345
18632
|
'dockerFilePath'?: string;
|
|
18346
18633
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
18347
18634
|
'dockerWorkDir'?: string;
|
|
18348
|
-
/** Should intermediate image layers be cached? */
|
|
18349
|
-
'useCache'?: boolean;
|
|
18350
18635
|
'buildkit'?: {
|
|
18636
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
18637
|
+
'useCache'?: boolean;
|
|
18638
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
18639
|
+
'cacheStorageSize'?: number;
|
|
18640
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
18351
18641
|
'useInternalCache'?: boolean;
|
|
18642
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
18352
18643
|
'internalCacheStorage'?: number;
|
|
18353
18644
|
};
|
|
18354
18645
|
};
|
|
@@ -18394,6 +18685,8 @@ type PatchServiceBuildData = {
|
|
|
18394
18685
|
'buildArguments'?: any;
|
|
18395
18686
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
18396
18687
|
'buildFiles'?: any;
|
|
18688
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
18689
|
+
'dockerSecretMounts'?: any;
|
|
18397
18690
|
};
|
|
18398
18691
|
/** Updates a build service. */
|
|
18399
18692
|
declare class PatchServiceBuildEndpoint extends PatchApiEndpoint<PatchServiceBuildRequest, PatchServiceBuildResult> {
|
|
@@ -18615,16 +18908,20 @@ type CreateServiceCombinedResult = {
|
|
|
18615
18908
|
};
|
|
18616
18909
|
};
|
|
18617
18910
|
'dockerfile': {
|
|
18618
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
18619
|
-
'buildEngine'?: '
|
|
18911
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
18912
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
18620
18913
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
18621
18914
|
'dockerFilePath': string;
|
|
18622
18915
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
18623
18916
|
'dockerWorkDir': string;
|
|
18624
|
-
/** Should intermediate image layers be cached? */
|
|
18625
|
-
'useCache'?: boolean;
|
|
18626
18917
|
'buildkit'?: {
|
|
18918
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
18919
|
+
'useCache'?: boolean;
|
|
18920
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
18921
|
+
'cacheStorageSize'?: number;
|
|
18922
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
18627
18923
|
'useInternalCache'?: boolean;
|
|
18924
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
18628
18925
|
'internalCacheStorage'?: number;
|
|
18629
18926
|
};
|
|
18630
18927
|
};
|
|
@@ -18677,6 +18974,8 @@ type CreateServiceCombinedResult = {
|
|
|
18677
18974
|
'buildArguments'?: any;
|
|
18678
18975
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
18679
18976
|
'buildFiles'?: any;
|
|
18977
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
18978
|
+
'dockerSecretMounts'?: any;
|
|
18680
18979
|
/** An array of health checks. */
|
|
18681
18980
|
'healthChecks'?: {
|
|
18682
18981
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -18850,7 +19149,7 @@ type CreateServiceCombinedResult = {
|
|
|
18850
19149
|
/** Details about the status of the most recent build. */
|
|
18851
19150
|
'build'?: {
|
|
18852
19151
|
/** The current status of the build. Example: "SUCCESS" */
|
|
18853
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
19152
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
18854
19153
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
18855
19154
|
'lastTransitionTime'?: string;
|
|
18856
19155
|
};
|
|
@@ -19146,16 +19445,20 @@ type CreateServiceCombinedData = {
|
|
|
19146
19445
|
};
|
|
19147
19446
|
};
|
|
19148
19447
|
'dockerfile': {
|
|
19149
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
19150
|
-
'buildEngine'?: '
|
|
19448
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
19449
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
19151
19450
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
19152
19451
|
'dockerFilePath': string;
|
|
19153
19452
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
19154
19453
|
'dockerWorkDir': string;
|
|
19155
|
-
/** Should intermediate image layers be cached? */
|
|
19156
|
-
'useCache'?: boolean;
|
|
19157
19454
|
'buildkit'?: {
|
|
19455
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
19456
|
+
'useCache'?: boolean;
|
|
19457
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
19458
|
+
'cacheStorageSize'?: number;
|
|
19459
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
19158
19460
|
'useInternalCache'?: boolean;
|
|
19461
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
19159
19462
|
'internalCacheStorage'?: number;
|
|
19160
19463
|
};
|
|
19161
19464
|
};
|
|
@@ -19208,6 +19511,8 @@ type CreateServiceCombinedData = {
|
|
|
19208
19511
|
'buildArguments'?: any;
|
|
19209
19512
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
19210
19513
|
'buildFiles'?: any;
|
|
19514
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
19515
|
+
'dockerSecretMounts'?: any;
|
|
19211
19516
|
/** An array of health checks. */
|
|
19212
19517
|
'healthChecks'?: {
|
|
19213
19518
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -19509,16 +19814,20 @@ type PutServiceCombinedResult = {
|
|
|
19509
19814
|
};
|
|
19510
19815
|
};
|
|
19511
19816
|
'dockerfile': {
|
|
19512
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
19513
|
-
'buildEngine'?: '
|
|
19817
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
19818
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
19514
19819
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
19515
19820
|
'dockerFilePath': string;
|
|
19516
19821
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
19517
19822
|
'dockerWorkDir': string;
|
|
19518
|
-
/** Should intermediate image layers be cached? */
|
|
19519
|
-
'useCache'?: boolean;
|
|
19520
19823
|
'buildkit'?: {
|
|
19824
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
19825
|
+
'useCache'?: boolean;
|
|
19826
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
19827
|
+
'cacheStorageSize'?: number;
|
|
19828
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
19521
19829
|
'useInternalCache'?: boolean;
|
|
19830
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
19522
19831
|
'internalCacheStorage'?: number;
|
|
19523
19832
|
};
|
|
19524
19833
|
};
|
|
@@ -19571,6 +19880,8 @@ type PutServiceCombinedResult = {
|
|
|
19571
19880
|
'buildArguments'?: any;
|
|
19572
19881
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
19573
19882
|
'buildFiles'?: any;
|
|
19883
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
19884
|
+
'dockerSecretMounts'?: any;
|
|
19574
19885
|
/** An array of health checks. */
|
|
19575
19886
|
'healthChecks'?: {
|
|
19576
19887
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -19744,7 +20055,7 @@ type PutServiceCombinedResult = {
|
|
|
19744
20055
|
/** Details about the status of the most recent build. */
|
|
19745
20056
|
'build'?: {
|
|
19746
20057
|
/** The current status of the build. Example: "SUCCESS" */
|
|
19747
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
20058
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
19748
20059
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
19749
20060
|
'lastTransitionTime'?: string;
|
|
19750
20061
|
};
|
|
@@ -20040,16 +20351,20 @@ type PutServiceCombinedData = {
|
|
|
20040
20351
|
};
|
|
20041
20352
|
};
|
|
20042
20353
|
'dockerfile': {
|
|
20043
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
20044
|
-
'buildEngine'?: '
|
|
20354
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
20355
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
20045
20356
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
20046
20357
|
'dockerFilePath': string;
|
|
20047
20358
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
20048
20359
|
'dockerWorkDir': string;
|
|
20049
|
-
/** Should intermediate image layers be cached? */
|
|
20050
|
-
'useCache'?: boolean;
|
|
20051
20360
|
'buildkit'?: {
|
|
20361
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
20362
|
+
'useCache'?: boolean;
|
|
20363
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
20364
|
+
'cacheStorageSize'?: number;
|
|
20365
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
20052
20366
|
'useInternalCache'?: boolean;
|
|
20367
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
20053
20368
|
'internalCacheStorage'?: number;
|
|
20054
20369
|
};
|
|
20055
20370
|
};
|
|
@@ -20102,6 +20417,8 @@ type PutServiceCombinedData = {
|
|
|
20102
20417
|
'buildArguments'?: any;
|
|
20103
20418
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
20104
20419
|
'buildFiles'?: any;
|
|
20420
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
20421
|
+
'dockerSecretMounts'?: any;
|
|
20105
20422
|
/** An array of health checks. */
|
|
20106
20423
|
'healthChecks'?: {
|
|
20107
20424
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -20403,16 +20720,20 @@ type PatchServiceCombinedResult = {
|
|
|
20403
20720
|
};
|
|
20404
20721
|
};
|
|
20405
20722
|
'dockerfile': {
|
|
20406
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
20407
|
-
'buildEngine'?: '
|
|
20723
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
20724
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
20408
20725
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
20409
20726
|
'dockerFilePath': string;
|
|
20410
20727
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
20411
20728
|
'dockerWorkDir': string;
|
|
20412
|
-
/** Should intermediate image layers be cached? */
|
|
20413
|
-
'useCache'?: boolean;
|
|
20414
20729
|
'buildkit'?: {
|
|
20730
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
20731
|
+
'useCache'?: boolean;
|
|
20732
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
20733
|
+
'cacheStorageSize'?: number;
|
|
20734
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
20415
20735
|
'useInternalCache'?: boolean;
|
|
20736
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
20416
20737
|
'internalCacheStorage'?: number;
|
|
20417
20738
|
};
|
|
20418
20739
|
};
|
|
@@ -20465,6 +20786,8 @@ type PatchServiceCombinedResult = {
|
|
|
20465
20786
|
'buildArguments'?: any;
|
|
20466
20787
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
20467
20788
|
'buildFiles'?: any;
|
|
20789
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
20790
|
+
'dockerSecretMounts'?: any;
|
|
20468
20791
|
/** An array of health checks. */
|
|
20469
20792
|
'healthChecks'?: {
|
|
20470
20793
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -20638,7 +20961,7 @@ type PatchServiceCombinedResult = {
|
|
|
20638
20961
|
/** Details about the status of the most recent build. */
|
|
20639
20962
|
'build'?: {
|
|
20640
20963
|
/** The current status of the build. Example: "SUCCESS" */
|
|
20641
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
20964
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
20642
20965
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
20643
20966
|
'lastTransitionTime'?: string;
|
|
20644
20967
|
};
|
|
@@ -20926,16 +21249,20 @@ type PatchServiceCombinedData = {
|
|
|
20926
21249
|
};
|
|
20927
21250
|
};
|
|
20928
21251
|
'dockerfile'?: {
|
|
20929
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
20930
|
-
'buildEngine'?: '
|
|
21252
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
21253
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
20931
21254
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
20932
21255
|
'dockerFilePath'?: string;
|
|
20933
21256
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
20934
21257
|
'dockerWorkDir'?: string;
|
|
20935
|
-
/** Should intermediate image layers be cached? */
|
|
20936
|
-
'useCache'?: boolean;
|
|
20937
21258
|
'buildkit'?: {
|
|
21259
|
+
/** Use persistent storage to cache build layers. Example: true */
|
|
21260
|
+
'useCache'?: boolean;
|
|
21261
|
+
/** The amount of persistent storage available to each build in MB. Example: 32768 */
|
|
21262
|
+
'cacheStorageSize'?: number;
|
|
21263
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
20938
21264
|
'useInternalCache'?: boolean;
|
|
21265
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
20939
21266
|
'internalCacheStorage'?: number;
|
|
20940
21267
|
};
|
|
20941
21268
|
};
|
|
@@ -20981,6 +21308,8 @@ type PatchServiceCombinedData = {
|
|
|
20981
21308
|
'buildArguments'?: any;
|
|
20982
21309
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
20983
21310
|
'buildFiles'?: any;
|
|
21311
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
21312
|
+
'dockerSecretMounts'?: any;
|
|
20984
21313
|
/** An array of health checks. */
|
|
20985
21314
|
'healthChecks'?: {
|
|
20986
21315
|
/** The protocol to access the health check with. Example: "HTTP" */
|
|
@@ -23662,7 +23991,7 @@ type GetServiceResult = {
|
|
|
23662
23991
|
/** Details about the status of the most recent build. */
|
|
23663
23992
|
'build'?: {
|
|
23664
23993
|
/** The current status of the build. Example: "SUCCESS" */
|
|
23665
|
-
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
23994
|
+
'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
23666
23995
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
23667
23996
|
'lastTransitionTime'?: string;
|
|
23668
23997
|
};
|
|
@@ -23716,7 +24045,7 @@ type GetServiceResult = {
|
|
|
23716
24045
|
/** Path of the external image excluding the hostname */
|
|
23717
24046
|
'imagePath': string;
|
|
23718
24047
|
/** Registry provider hosting the external image */
|
|
23719
|
-
'registryProvider': '
|
|
24048
|
+
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
23720
24049
|
/** Does the image require authentication */
|
|
23721
24050
|
'privateImage': boolean;
|
|
23722
24051
|
};
|
|
@@ -23834,7 +24163,7 @@ type GetServiceResult = {
|
|
|
23834
24163
|
};
|
|
23835
24164
|
'buildEngineConfiguration'?: {
|
|
23836
24165
|
/** The build engine used. Example: "buildpack" */
|
|
23837
|
-
'buildEngine'?: 'buildpack' | '
|
|
24166
|
+
'buildEngine'?: 'buildpack' | 'buildkit' | 'kaniko';
|
|
23838
24167
|
/** Details about Buildpack settings. */
|
|
23839
24168
|
'buildpack'?: {
|
|
23840
24169
|
/** The Buildpack stack used. Example: "HEROKU_24" */
|
|
@@ -24092,7 +24421,7 @@ type GetServiceBuildsResult = {
|
|
|
24092
24421
|
/** ID of the pull request the commit belongs to. */
|
|
24093
24422
|
'pullRequestId'?: number;
|
|
24094
24423
|
/** The status of the build. Example: "SUCCESS" */
|
|
24095
|
-
'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
24424
|
+
'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
24096
24425
|
/** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
|
|
24097
24426
|
'sha'?: string;
|
|
24098
24427
|
'registry'?: {
|
|
@@ -24188,6 +24517,8 @@ type StartServiceBuildData = {
|
|
|
24188
24517
|
'buildArguments'?: any;
|
|
24189
24518
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
24190
24519
|
'buildFiles'?: any;
|
|
24520
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
24521
|
+
'dockerSecretMounts'?: any;
|
|
24191
24522
|
/** Overrides for docker build settings. */
|
|
24192
24523
|
'docker'?: {
|
|
24193
24524
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
@@ -24252,9 +24583,11 @@ type UpdateServiceBuildargumentsParameters = {
|
|
|
24252
24583
|
};
|
|
24253
24584
|
type UpdateServiceBuildargumentsData = {
|
|
24254
24585
|
/** An object containing the all of the build arguments to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
24255
|
-
'buildArguments'
|
|
24586
|
+
'buildArguments'?: any;
|
|
24256
24587
|
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
24257
24588
|
'buildFiles'?: any;
|
|
24589
|
+
/** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
24590
|
+
'dockerSecretMounts'?: any;
|
|
24258
24591
|
};
|
|
24259
24592
|
/** Sets the build arguments for the given service. */
|
|
24260
24593
|
declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult> {
|
|
@@ -24349,19 +24682,21 @@ type UpdateServiceBuildoptionsParameters = {
|
|
|
24349
24682
|
};
|
|
24350
24683
|
type UpdateServiceBuildoptionsData = {
|
|
24351
24684
|
'dockerfile': {
|
|
24352
|
-
/** Build engine to use. Defaults to recommended build engine `
|
|
24353
|
-
'buildEngine'?: '
|
|
24354
|
-
/** Should intermediate image layers be cached? */
|
|
24355
|
-
'useCache'?: boolean;
|
|
24685
|
+
/** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
|
|
24686
|
+
'buildEngine'?: 'buildkit' | 'kaniko';
|
|
24356
24687
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
24357
24688
|
'dockerFilePath'?: string;
|
|
24358
24689
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
24359
24690
|
'dockerWorkDir'?: string;
|
|
24360
24691
|
'buildkit'?: {
|
|
24361
|
-
/**
|
|
24692
|
+
/** Use persistent storage to cache build layers. */
|
|
24693
|
+
'useCache'?: boolean;
|
|
24694
|
+
/** The amount of persistent storage available to each build in MB. */
|
|
24695
|
+
'cacheStorageSize'?: number;
|
|
24696
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
24362
24697
|
'useInternalCache'?: boolean;
|
|
24363
|
-
/**
|
|
24364
|
-
'internalCacheStorage'
|
|
24698
|
+
/** DEPRECATED: This field will be removed in the near future. */
|
|
24699
|
+
'internalCacheStorage'?: number;
|
|
24365
24700
|
};
|
|
24366
24701
|
};
|
|
24367
24702
|
/** An array of pull request build rules. Only supported for build services. Each commit belonging to a pull request on a branch that matches one of the provided build rules will be built automatically. */
|
|
@@ -24484,7 +24819,7 @@ type GetServiceBuildResult = {
|
|
|
24484
24819
|
/** ID of the pull request the commit belongs to. */
|
|
24485
24820
|
'pullRequestId'?: number;
|
|
24486
24821
|
/** The status of the build. Example: "SUCCESS" */
|
|
24487
|
-
'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
24822
|
+
'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
|
|
24488
24823
|
/** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
|
|
24489
24824
|
'sha'?: string;
|
|
24490
24825
|
'registry'?: {
|
|
@@ -24686,7 +25021,7 @@ type GetServiceDeploymentResult = {
|
|
|
24686
25021
|
/** Path of the external image excluding the hostname Example: "nginx:latest" */
|
|
24687
25022
|
'imagePath': string;
|
|
24688
25023
|
/** Registry provider hosting the external image Example: "dockerhub" */
|
|
24689
|
-
'registryProvider': '
|
|
25024
|
+
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
24690
25025
|
/** Does the image require authentication */
|
|
24691
25026
|
'privateImage': boolean;
|
|
24692
25027
|
};
|
|
@@ -26816,7 +27151,6 @@ declare class ApiClient {
|
|
|
26816
27151
|
};
|
|
26817
27152
|
cloud: {
|
|
26818
27153
|
cluster: GetCloudClusterCall;
|
|
26819
|
-
dockerRegistry: GetCloudDockerregistryCall;
|
|
26820
27154
|
integration: GetCloudIntegrationCall;
|
|
26821
27155
|
};
|
|
26822
27156
|
dnsId: GetDnsidCall;
|
|
@@ -26897,7 +27231,6 @@ declare class ApiClient {
|
|
|
26897
27231
|
cluster: {
|
|
26898
27232
|
nodes: ListCloudClusterNodesCall;
|
|
26899
27233
|
};
|
|
26900
|
-
dockerRegistry: ListCloudDockerregistryCall;
|
|
26901
27234
|
integrations: ListCloudIntegrationsCall;
|
|
26902
27235
|
nodeTypes: ListCloudNodetypesCall;
|
|
26903
27236
|
regions: ListCloudRegionsCall;
|
|
@@ -26943,7 +27276,6 @@ declare class ApiClient {
|
|
|
26943
27276
|
backupDestination: PatchBackupdestinationCall;
|
|
26944
27277
|
cloud: {
|
|
26945
27278
|
cluster: PatchCloudClusterCall;
|
|
26946
|
-
dockerRegistry: PatchCloudDockerregistryCall;
|
|
26947
27279
|
integration: PatchCloudIntegrationCall;
|
|
26948
27280
|
};
|
|
26949
27281
|
project: PatchProjectCall;
|
|
@@ -26964,7 +27296,6 @@ declare class ApiClient {
|
|
|
26964
27296
|
backupDestination: DeleteBackupdestinationCall;
|
|
26965
27297
|
cloud: {
|
|
26966
27298
|
cluster: DeleteCloudClusterCall;
|
|
26967
|
-
dockerRegistry: DeleteCloudDockerregistryCall;
|
|
26968
27299
|
integration: DeleteCloudIntegrationCall;
|
|
26969
27300
|
};
|
|
26970
27301
|
domain: DeleteDomainCall;
|
|
@@ -26991,7 +27322,6 @@ declare class ApiClient {
|
|
|
26991
27322
|
create: {
|
|
26992
27323
|
cloud: {
|
|
26993
27324
|
cluster: CreateCloudClusterCall;
|
|
26994
|
-
dockerRegistry: CreateCloudDockerregistryCall;
|
|
26995
27325
|
integration: CreateCloudIntegrationCall;
|
|
26996
27326
|
};
|
|
26997
27327
|
domain: CreateDomainCall;
|
|
@@ -27020,7 +27350,6 @@ declare class ApiClient {
|
|
|
27020
27350
|
put: {
|
|
27021
27351
|
cloud: {
|
|
27022
27352
|
cluster: PutCloudClusterCall;
|
|
27023
|
-
dockerRegistry: PutCloudDockerregistryCall;
|
|
27024
27353
|
integration: PutCloudIntegrationCall;
|
|
27025
27354
|
};
|
|
27026
27355
|
project: PutProjectCall;
|
|
@@ -27237,7 +27566,6 @@ declare class ApiClient {
|
|
|
27237
27566
|
};
|
|
27238
27567
|
cloud: {
|
|
27239
27568
|
cluster: GetCloudClusterEndpoint;
|
|
27240
|
-
dockerRegistry: GetCloudDockerregistryEndpoint;
|
|
27241
27569
|
integration: GetCloudIntegrationEndpoint;
|
|
27242
27570
|
};
|
|
27243
27571
|
dnsId: GetDnsidEndpoint;
|
|
@@ -27302,7 +27630,6 @@ declare class ApiClient {
|
|
|
27302
27630
|
cluster: {
|
|
27303
27631
|
nodes: ListCloudClusterNodesEndpoint;
|
|
27304
27632
|
};
|
|
27305
|
-
dockerRegistry: ListCloudDockerregistryEndpoint;
|
|
27306
27633
|
integrations: ListCloudIntegrationsEndpoint;
|
|
27307
27634
|
nodeTypes: ListCloudNodetypesEndpoint;
|
|
27308
27635
|
regions: ListCloudRegionsEndpoint;
|
|
@@ -27348,7 +27675,6 @@ declare class ApiClient {
|
|
|
27348
27675
|
backupDestination: PatchBackupdestinationEndpoint;
|
|
27349
27676
|
cloud: {
|
|
27350
27677
|
cluster: PatchCloudClusterEndpoint;
|
|
27351
|
-
dockerRegistry: PatchCloudDockerregistryEndpoint;
|
|
27352
27678
|
integration: PatchCloudIntegrationEndpoint;
|
|
27353
27679
|
};
|
|
27354
27680
|
project: PatchProjectEndpoint;
|
|
@@ -27369,7 +27695,6 @@ declare class ApiClient {
|
|
|
27369
27695
|
backupDestination: DeleteBackupdestinationEndpoint;
|
|
27370
27696
|
cloud: {
|
|
27371
27697
|
cluster: DeleteCloudClusterEndpoint;
|
|
27372
|
-
dockerRegistry: DeleteCloudDockerregistryEndpoint;
|
|
27373
27698
|
integration: DeleteCloudIntegrationEndpoint;
|
|
27374
27699
|
};
|
|
27375
27700
|
domain: DeleteDomainEndpoint;
|
|
@@ -27396,7 +27721,6 @@ declare class ApiClient {
|
|
|
27396
27721
|
create: {
|
|
27397
27722
|
cloud: {
|
|
27398
27723
|
cluster: CreateCloudClusterEndpoint;
|
|
27399
|
-
dockerRegistry: CreateCloudDockerregistryEndpoint;
|
|
27400
27724
|
integration: CreateCloudIntegrationEndpoint;
|
|
27401
27725
|
};
|
|
27402
27726
|
domain: CreateDomainEndpoint;
|
|
@@ -27425,7 +27749,6 @@ declare class ApiClient {
|
|
|
27425
27749
|
put: {
|
|
27426
27750
|
cloud: {
|
|
27427
27751
|
cluster: PutCloudClusterEndpoint;
|
|
27428
|
-
dockerRegistry: PutCloudDockerregistryEndpoint;
|
|
27429
27752
|
integration: PutCloudIntegrationEndpoint;
|
|
27430
27753
|
};
|
|
27431
27754
|
project: PutProjectEndpoint;
|
|
@@ -27615,4 +27938,4 @@ type ApiClientOpts = {
|
|
|
27615
27938
|
agent?: any;
|
|
27616
27939
|
};
|
|
27617
27940
|
|
|
27618
|
-
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreOptions, 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, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationEndpoint, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CopyType, CordonCloudClusterNodeCall, CordonCloudClusterNodeEndpoint, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, 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, DeleteBackupdestinationCall, DeleteBackupdestinationEndpoint, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DownloadOptions, DrainCloudClusterNodeCall, DrainCloudClusterNodeEndpoint, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresEndpoint, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, 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, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetApiEndpointPaginated, GetBackupdestinationCall, GetBackupdestinationEndpoint, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateEndpoint, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBackupdestinationsCall, ListBackupdestinationsEndpoint, ListBackupdestinationsOptions, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsEndpoint, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationEndpoint, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, PatchCloudClusterCall, PatchCloudClusterData, PatchCloudClusterEndpoint, PatchCloudClusterParameters, PatchCloudClusterRequest, PatchCloudClusterResult, PatchCloudDockerregistryCall, PatchCloudDockerregistryData, PatchCloudDockerregistryEndpoint, PatchCloudDockerregistryParameters, PatchCloudDockerregistryRequest, PatchCloudDockerregistryResult, PatchCloudIntegrationCall, PatchCloudIntegrationData, PatchCloudIntegrationEndpoint, PatchCloudIntegrationParameters, PatchCloudIntegrationRequest, PatchCloudIntegrationResult, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutCloudClusterCall, PutCloudClusterData, PutCloudClusterEndpoint, PutCloudClusterRequest, PutCloudClusterResult, PutCloudDockerregistryCall, PutCloudDockerregistryData, PutCloudDockerregistryEndpoint, PutCloudDockerregistryParameters, PutCloudDockerregistryRequest, PutCloudDockerregistryResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationEndpoint, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupOptions, 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, 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, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeEndpoint, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, 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, UploadOptions, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|
|
27941
|
+
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreOptions, 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, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationEndpoint, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CopyType, CordonCloudClusterNodeCall, CordonCloudClusterNodeEndpoint, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, 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, DeleteBackupdestinationCall, DeleteBackupdestinationEndpoint, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DownloadOptions, DrainCloudClusterNodeCall, DrainCloudClusterNodeEndpoint, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresEndpoint, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, 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, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetApiEndpointPaginated, GetBackupdestinationCall, GetBackupdestinationEndpoint, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateEndpoint, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBackupdestinationsCall, ListBackupdestinationsEndpoint, ListBackupdestinationsOptions, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsEndpoint, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationEndpoint, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, PatchCloudClusterCall, PatchCloudClusterData, PatchCloudClusterEndpoint, PatchCloudClusterParameters, PatchCloudClusterRequest, PatchCloudClusterResult, PatchCloudIntegrationCall, PatchCloudIntegrationData, PatchCloudIntegrationEndpoint, PatchCloudIntegrationParameters, PatchCloudIntegrationRequest, PatchCloudIntegrationResult, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutCloudClusterCall, PutCloudClusterData, PutCloudClusterEndpoint, PutCloudClusterRequest, PutCloudClusterResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationEndpoint, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupOptions, 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, 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, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeEndpoint, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, 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, UploadOptions, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|