@northflank/js-client 0.8.2 → 0.8.4

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.
@@ -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
- 'platform'?: {
1886
- 'architecture'?: 'amd64' | 'arm64';
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' | 'loki';
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
- 'platform'?: {
2226
- 'architecture'?: 'amd64' | 'arm64';
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' | 'loki';
2292
- /** Required data for the loki mode setting. */
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 the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
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
- 'platform'?: {
2558
- 'architecture'?: 'amd64' | 'arm64';
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' | 'loki';
2624
- /** Required data for the loki mode setting. */
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
- 'platform'?: {
2878
- 'architecture'?: 'amd64' | 'arm64';
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' | 'loki';
2944
- /** Required data for the loki mode setting. */
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
- 'settings'?: {
3262
- 'builds'?: {
3263
- 'mode'?: 'paas' | 'internal' | 'build-cluster';
3264
- /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
3265
- 'plan'?: string;
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' | 'loki';
3276
- /** Required data for the loki mode setting. */
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
- 'platform'?: {
3530
- 'architecture'?: 'amd64' | 'arm64';
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
+ };
3531
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;
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' | 'loki';
3596
- /** Required data for the loki mode setting. */
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
- 'platform'?: {
3874
- 'architecture'?: 'amd64' | 'arm64';
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
+ };
3875
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;
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' | 'loki';
3940
- /** Required data for the loki mode setting. */
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
- 'platform'?: {
4186
- 'architecture'?: 'amd64' | 'arm64';
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
+ };
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;
4187
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' | 'loki';
4252
- 'loki'?: any;
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' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
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' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
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' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
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' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
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' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
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' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
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' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
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' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
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,42 @@ declare class DeleteNotificationEndpoint extends DeleteApiEndpoint<DeleteNotific
8173
8310
  }
8174
8311
 
8175
8312
  type ListRegistrycredentialsResult = {
8176
- /** An array of credentials saved to this account. */
8313
+ /** An array of registry credential information. */
8177
8314
  'credentials': {
8178
- /** Identifier for the credentials. Example: "example-credentials" */
8315
+ /** ID of the docker credentials Example: "example-credentials" */
8179
8316
  'id': string;
8180
- /** Name of the saved credentials. Example: "Example Credentials" */
8317
+ /** The name of the docker credentials. Example: "Example Docker Credentials" */
8181
8318
  'name': string;
8182
- /** Description of the saved credentials. Example: "This is a set of saved credentials." */
8183
- 'description': string;
8184
- /** Data about whether the credentials are restricted to certain projects. */
8185
- 'restrictions': {
8186
- /** Whether the credentials are restricted to specific projects. Example: true */
8187
- 'restricted': boolean;
8188
- /** An array of projects the credentials are restricted to, if applicable. */
8189
- 'projects': string[];
8319
+ /** The provider of the docker registry. */
8320
+ 'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
8321
+ /** The URL of the docker registry. */
8322
+ 'registryUrl'?: string;
8323
+ 'aws'?: {
8324
+ /** The region of the docker registry. */
8325
+ 'region'?: string;
8326
+ };
8327
+ 'gcp'?: {
8328
+ /** The project ID of the GCP docker registry. */
8329
+ 'projectId'?: string;
8330
+ };
8331
+ 'azure'?: {
8332
+ /** The resource group of the Azure docker registry. */
8333
+ 'resourceGroup'?: string;
8334
+ };
8335
+ /** Integration to use for this registry. */
8336
+ 'integrationId'?: string;
8337
+ 'credentials'?: {
8338
+ 'scope': {
8339
+ /** Whether the credentials can pull images. */
8340
+ 'pull'?: boolean;
8341
+ /** Whether the credentials can push images. */
8342
+ 'push'?: boolean;
8343
+ };
8190
8344
  };
8191
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
8192
- 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
8345
+ /** time of update */
8346
+ 'updatedAt'?: string;
8347
+ /** time of creation */
8348
+ 'createdAt'?: string;
8193
8349
  }[];
8194
8350
  };
8195
8351
  type ListRegistrycredentialsCall = ((opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>) & {
@@ -8216,80 +8372,98 @@ declare class ListRegistrycredentialsEndpoint extends GetApiEndpointPaginated<Li
8216
8372
  }
8217
8373
 
8218
8374
  type AddRegistrycredentialsResult = {
8219
- /** Identifier for the credentials. Example: "example-credentials" */
8375
+ /** ID of the docker credentials Example: "example-credentials" */
8220
8376
  'id': string;
8221
- /** Name of the saved credentials. Example: "Example Credentials" */
8377
+ /** The name of the docker credentials. Example: "Example Docker Credentials" */
8222
8378
  'name': string;
8223
- /** Description of the saved credentials. Example: "This is a set of saved credentials." */
8224
- 'description': string;
8225
- /** Data about whether the credentials are restricted to certain projects. */
8226
- 'restrictions': {
8227
- /** Whether the credentials are restricted to specific projects. Example: true */
8379
+ /** The provider of the docker registry. */
8380
+ 'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
8381
+ /** The URL of the docker registry. */
8382
+ 'registryUrl'?: string;
8383
+ 'aws'?: {
8384
+ /** The region of the docker registry. */
8385
+ 'region'?: string;
8386
+ };
8387
+ 'gcp'?: {
8388
+ /** The project ID of the GCP docker registry. */
8389
+ 'projectId'?: string;
8390
+ };
8391
+ 'azure'?: {
8392
+ /** The resource group of the Azure docker registry. */
8393
+ 'resourceGroup'?: string;
8394
+ };
8395
+ /** Integration to use for this registry. */
8396
+ 'integrationId'?: string;
8397
+ 'credentials'?: {
8398
+ /** Username for the docker registry. Required when `integrationId` is provided. */
8399
+ 'username'?: string;
8400
+ /** Password for the docker registry. Required when `integrationId` is provided. */
8401
+ 'password'?: string;
8402
+ 'scope': {
8403
+ /** Whether the credentials can pull images. */
8404
+ 'pull'?: boolean;
8405
+ /** Whether the credentials can push images. */
8406
+ 'push'?: boolean;
8407
+ };
8408
+ };
8409
+ 'restrictions'?: {
8410
+ /** Whether access to this credential is restricted. */
8228
8411
  'restricted': boolean;
8229
- /** An array of projects the credentials are restricted to, if applicable. */
8230
- 'projects': string[];
8412
+ /** List of projects that have access to this credential. */
8413
+ 'projects'?: string[];
8231
8414
  };
8232
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
8233
- 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
8415
+ /** time of update */
8416
+ 'updatedAt'?: string;
8417
+ /** time of creation */
8418
+ 'createdAt'?: string;
8234
8419
  };
8235
8420
  type AddRegistrycredentialsCall = (opts: AddRegistrycredentialsRequest) => Promise<ApiCallResponse<AddRegistrycredentialsResult>>;
8236
8421
  type AddRegistrycredentialsRequest = {
8237
8422
  data: AddRegistrycredentialsData;
8238
8423
  };
8239
8424
  type AddRegistrycredentialsData = {
8240
- /** Name of the credentials. Example: "Example Credentials" */
8425
+ /** The name of the docker credentials. Example: "Example Docker Credentials" */
8241
8426
  'name': string;
8242
- /** Description of the credentials. Example: "This is a set of saved credentials." */
8243
- 'description': string;
8244
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
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" */
8427
+ /** The provider of the docker registry. */
8428
+ 'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
8429
+ /** The URL of the docker registry. */
8254
8430
  'registryUrl'?: string;
8255
- /** Username for the container registry. Example: "test-user" */
8256
- 'username': string;
8257
- /** Password, Personal Access Token, or API key for the container registry. Example: "password1234" */
8258
- 'password': string;
8259
- } | {
8260
- /** Name of the credentials. Example: "Example Credentials" */
8261
- 'name': string;
8262
- /** Description of the credentials. Example: "This is a set of saved credentials." */
8263
- 'description': string;
8264
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
8265
- 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
8266
- /** Data about whether the credentials are restricted to certain projects. */
8267
- 'restrictions'?: {
8268
- /** Whether the credentials are restricted to specific projects. Example: true */
8269
- 'restricted'?: boolean;
8270
- /** An array of projects the credentials are restricted to, if applicable. */
8271
- 'projects'?: string[];
8431
+ 'aws'?: {
8432
+ /** The region of the docker registry. */
8433
+ 'region'?: string;
8434
+ };
8435
+ 'gcp'?: {
8436
+ /** The project ID of the GCP docker registry. */
8437
+ 'projectId'?: string;
8438
+ };
8439
+ 'azure'?: {
8440
+ /** The resource group of the Azure docker registry. */
8441
+ 'resourceGroup'?: string;
8442
+ };
8443
+ /** Integration to use for this registry. */
8444
+ 'integrationId'?: string;
8445
+ 'credentials'?: {
8446
+ /** Username for the docker registry. Required when `integrationId` is provided. */
8447
+ 'username'?: string;
8448
+ /** Password for the docker registry. Required when `integrationId` is provided. */
8449
+ 'password'?: string;
8450
+ 'scope': {
8451
+ /** Whether the credentials can pull images. */
8452
+ 'pull'?: boolean;
8453
+ /** Whether the credentials can push images. */
8454
+ 'push'?: boolean;
8455
+ };
8272
8456
  };
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
8457
  'restrictions'?: {
8286
- /** Whether the credentials are restricted to specific projects. Example: true */
8287
- 'restricted'?: boolean;
8288
- /** An array of projects the credentials are restricted to, if applicable. */
8458
+ /** Whether access to this credential is restricted. */
8459
+ 'restricted': boolean;
8460
+ /** List of projects that have access to this credential. */
8289
8461
  'projects'?: string[];
8290
8462
  };
8291
- /** The `auths` data extracted from your Docker config file. Example: {"https://index.docker.io/v1/":{"auth":"[YOUR AUTH KEY]"}} */
8292
- 'auths': any;
8463
+ /** time of update */
8464
+ 'updatedAt'?: string;
8465
+ /** time of creation */
8466
+ 'createdAt'?: string;
8293
8467
  };
8294
8468
  /** Adds a new set of container registry credentials to this account. */
8295
8469
  declare class AddRegistrycredentialsEndpoint extends PostApiEndpoint<AddRegistrycredentialsRequest, AddRegistrycredentialsResult> {
@@ -8301,23 +8475,50 @@ declare class AddRegistrycredentialsEndpoint extends PostApiEndpoint<AddRegistry
8301
8475
  }
8302
8476
 
8303
8477
  type GetRegistrycredentialsResult = {
8304
- /** Identifier for the credentials. Example: "example-credentials" */
8478
+ /** ID of the docker credentials Example: "example-credentials" */
8305
8479
  'id': string;
8306
- /** Name of the saved credentials. Example: "Example Credentials" */
8480
+ /** The name of the docker credentials. Example: "Example Docker Credentials" */
8307
8481
  'name': string;
8308
- /** Description of the saved credentials. Example: "This is a set of saved credentials." */
8309
- 'description': string;
8310
- /** Data about whether the credentials are restricted to certain projects. */
8311
- 'restrictions': {
8312
- /** Whether the credentials are restricted to specific projects. Example: true */
8482
+ /** The provider of the docker registry. */
8483
+ 'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
8484
+ /** The URL of the docker registry. */
8485
+ 'registryUrl'?: string;
8486
+ 'aws'?: {
8487
+ /** The region of the docker registry. */
8488
+ 'region'?: string;
8489
+ };
8490
+ 'gcp'?: {
8491
+ /** The project ID of the GCP docker registry. */
8492
+ 'projectId'?: string;
8493
+ };
8494
+ 'azure'?: {
8495
+ /** The resource group of the Azure docker registry. */
8496
+ 'resourceGroup'?: string;
8497
+ };
8498
+ /** Integration to use for this registry. */
8499
+ 'integrationId'?: string;
8500
+ 'credentials'?: {
8501
+ /** Username for the docker registry. Required when `integrationId` is provided. */
8502
+ 'username'?: string;
8503
+ /** Password for the docker registry. Required when `integrationId` is provided. */
8504
+ 'password'?: string;
8505
+ 'scope': {
8506
+ /** Whether the credentials can pull images. */
8507
+ 'pull'?: boolean;
8508
+ /** Whether the credentials can push images. */
8509
+ 'push'?: boolean;
8510
+ };
8511
+ };
8512
+ 'restrictions'?: {
8513
+ /** Whether access to this credential is restricted. */
8313
8514
  'restricted': boolean;
8314
- /** An array of projects the credentials are restricted to, if applicable. */
8315
- 'projects': string[];
8515
+ /** List of projects that have access to this credential. */
8516
+ 'projects'?: string[];
8316
8517
  };
8317
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
8318
- 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
8319
- /** The `auths` data extracted from your Docker config file. Example: {"https://index.docker.io/v1/":{"auth":"[YOUR AUTH KEY]"}} */
8320
- 'auths'?: any;
8518
+ /** time of update */
8519
+ 'updatedAt'?: string;
8520
+ /** time of creation */
8521
+ 'createdAt'?: string;
8321
8522
  };
8322
8523
  type GetRegistrycredentialsCall = (opts: GetRegistrycredentialsRequest) => Promise<ApiCallResponse<GetRegistrycredentialsResult>>;
8323
8524
  type GetRegistrycredentialsRequest = {
@@ -8335,23 +8536,6 @@ declare class GetRegistrycredentialsEndpoint extends GetApiEndpoint<GetRegistryc
8335
8536
  body: () => undefined;
8336
8537
  }
8337
8538
 
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
8539
  type UpdateRegistrycredentialsResult = any;
8356
8540
  type UpdateRegistrycredentialsCall = (opts: UpdateRegistrycredentialsRequest) => Promise<ApiCallResponse<UpdateRegistrycredentialsResult>>;
8357
8541
  type UpdateRegistrycredentialsRequest = {
@@ -8362,60 +8546,31 @@ type UpdateRegistrycredentialsParameters = {
8362
8546
  /** ID of the registry credential */ 'credentialId': string;
8363
8547
  };
8364
8548
  type UpdateRegistrycredentialsData = {
8365
- /** Description of the credentials. Example: "This is a set of saved credentials." */
8366
- 'description'?: string;
8367
- /** Data about whether the credentials are restricted to certain projects. */
8368
- 'restrictions'?: {
8369
- /** Whether the credentials are restricted to specific projects. Example: true */
8370
- 'restricted': boolean;
8371
- /** An array of projects the credentials are restricted to, if applicable. */
8372
- 'projects'?: string[];
8373
- };
8374
- } | {
8375
- /** Description of the credentials. Example: "This is a set of saved credentials." */
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[];
8549
+ 'credentials'?: {
8550
+ /** Username for the docker registry. Required when `integrationId` is provided. */
8551
+ 'username'?: string;
8552
+ /** Password for the docker registry. Required when `integrationId` is provided. */
8553
+ 'password'?: string;
8554
+ 'scope': {
8555
+ /** Whether the credentials can pull images. */
8556
+ 'pull'?: boolean;
8557
+ /** Whether the credentials can push images. */
8558
+ 'push'?: boolean;
8559
+ };
8399
8560
  };
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
8561
  'restrictions'?: {
8409
- /** Whether the credentials are restricted to specific projects. Example: true */
8562
+ /** Whether access to this credential is restricted. */
8410
8563
  'restricted': boolean;
8411
- /** An array of projects the credentials are restricted to, if applicable. */
8564
+ /** List of projects that have access to this credential. */
8412
8565
  'projects'?: string[];
8413
8566
  };
8414
- /** The `auths` data extracted from your Docker config file. Example: {"https://index.docker.io/v1/":{"auth":"[YOUR AUTH KEY]"}} */
8415
- 'auths': any;
8567
+ /** time of update */
8568
+ 'updatedAt'?: string;
8569
+ /** time of creation */
8570
+ 'createdAt'?: string;
8416
8571
  };
8417
8572
  /** Updates a set of registry credential data. */
8418
- declare class UpdateRegistrycredentialsEndpoint extends PostApiEndpoint<UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult> {
8573
+ declare class UpdateRegistrycredentialsEndpoint extends PatchApiEndpoint<UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult> {
8419
8574
  description: string;
8420
8575
  withAuth: boolean;
8421
8576
  requiredPermissions: string;
@@ -8423,6 +8578,23 @@ declare class UpdateRegistrycredentialsEndpoint extends PostApiEndpoint<UpdateRe
8423
8578
  body: (payload: UpdateRegistrycredentialsRequest) => string;
8424
8579
  }
8425
8580
 
8581
+ type DeleteRegistrycredentialsResult = any;
8582
+ type DeleteRegistrycredentialsCall = (opts: DeleteRegistrycredentialsRequest) => Promise<ApiCallResponse<DeleteRegistrycredentialsResult>>;
8583
+ type DeleteRegistrycredentialsRequest = {
8584
+ parameters: DeleteRegistrycredentialsParameters;
8585
+ };
8586
+ type DeleteRegistrycredentialsParameters = {
8587
+ /** ID of the registry credential */ 'credentialId': string;
8588
+ };
8589
+ /** Deletes a set of registry credential data. */
8590
+ declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult> {
8591
+ description: string;
8592
+ withAuth: boolean;
8593
+ requiredPermissions: string;
8594
+ endpointUrl: (opts: DeleteRegistrycredentialsRequest) => string;
8595
+ body: () => undefined;
8596
+ }
8597
+
8426
8598
  type ListVcsResult = {
8427
8599
  /** The version control accounts linked to this Northflank account. */
8428
8600
  'vcsAccountLinks': {
@@ -11396,6 +11568,8 @@ type CreateJobCronResult = {
11396
11568
  'buildArguments'?: any;
11397
11569
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
11398
11570
  'buildFiles'?: any;
11571
+ /** 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"}} */
11572
+ 'dockerSecretMounts'?: any;
11399
11573
  /** An array of health checks. */
11400
11574
  'healthChecks'?: {
11401
11575
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -11519,16 +11693,22 @@ type CreateJobCronResult = {
11519
11693
  };
11520
11694
  };
11521
11695
  'dockerfile': {
11522
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11523
- 'buildEngine'?: 'kaniko' | 'buildkit';
11696
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
11697
+ 'useCache'?: boolean;
11698
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
11699
+ 'buildEngine'?: 'buildkit' | 'kaniko';
11524
11700
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
11525
11701
  'dockerFilePath': string;
11526
11702
  /** The working directory of the Dockerfile. Example: "/" */
11527
11703
  'dockerWorkDir': string;
11528
- /** Should intermediate image layers be cached? */
11529
- 'useCache'?: boolean;
11530
11704
  'buildkit'?: {
11705
+ /** Use persistent storage to cache build layers. Example: true */
11706
+ 'useCache'?: boolean;
11707
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
11708
+ 'cacheStorageSize'?: number;
11709
+ /** DEPRECATED: This field will be removed in the near future. */
11531
11710
  'useInternalCache'?: boolean;
11711
+ /** DEPRECATED: This field will be removed in the near future. */
11532
11712
  'internalCacheStorage'?: number;
11533
11713
  };
11534
11714
  };
@@ -11555,7 +11735,7 @@ type CreateJobCronResult = {
11555
11735
  /** Details about the status of the most recent build. */
11556
11736
  'build'?: {
11557
11737
  /** The current status of the build. Example: "SUCCESS" */
11558
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
11738
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
11559
11739
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
11560
11740
  'lastTransitionTime'?: string;
11561
11741
  };
@@ -11818,16 +11998,22 @@ type CreateJobCronData = {
11818
11998
  };
11819
11999
  };
11820
12000
  'dockerfile': {
11821
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11822
- 'buildEngine'?: 'kaniko' | 'buildkit';
12001
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12002
+ 'useCache'?: boolean;
12003
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12004
+ 'buildEngine'?: 'buildkit' | 'kaniko';
11823
12005
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
11824
12006
  'dockerFilePath': string;
11825
12007
  /** The working directory of the Dockerfile. Example: "/" */
11826
12008
  'dockerWorkDir': string;
11827
- /** Should intermediate image layers be cached? */
11828
- 'useCache'?: boolean;
11829
12009
  'buildkit'?: {
12010
+ /** Use persistent storage to cache build layers. Example: true */
12011
+ 'useCache'?: boolean;
12012
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
12013
+ 'cacheStorageSize'?: number;
12014
+ /** DEPRECATED: This field will be removed in the near future. */
11830
12015
  'useInternalCache'?: boolean;
12016
+ /** DEPRECATED: This field will be removed in the near future. */
11831
12017
  'internalCacheStorage'?: number;
11832
12018
  };
11833
12019
  };
@@ -11857,6 +12043,8 @@ type CreateJobCronData = {
11857
12043
  'buildArguments'?: any;
11858
12044
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
11859
12045
  'buildFiles'?: any;
12046
+ /** 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"}} */
12047
+ 'dockerSecretMounts'?: any;
11860
12048
  /** An array of health checks. */
11861
12049
  'healthChecks'?: {
11862
12050
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -11959,6 +12147,8 @@ type PutJobCronResult = {
11959
12147
  'buildArguments'?: any;
11960
12148
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
11961
12149
  'buildFiles'?: any;
12150
+ /** 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"}} */
12151
+ 'dockerSecretMounts'?: any;
11962
12152
  /** An array of health checks. */
11963
12153
  'healthChecks'?: {
11964
12154
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -12082,16 +12272,22 @@ type PutJobCronResult = {
12082
12272
  };
12083
12273
  };
12084
12274
  'dockerfile': {
12085
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12086
- 'buildEngine'?: 'kaniko' | 'buildkit';
12275
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12276
+ 'useCache'?: boolean;
12277
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12278
+ 'buildEngine'?: 'buildkit' | 'kaniko';
12087
12279
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
12088
12280
  'dockerFilePath': string;
12089
12281
  /** The working directory of the Dockerfile. Example: "/" */
12090
12282
  'dockerWorkDir': string;
12091
- /** Should intermediate image layers be cached? */
12092
- 'useCache'?: boolean;
12093
12283
  'buildkit'?: {
12284
+ /** Use persistent storage to cache build layers. Example: true */
12285
+ 'useCache'?: boolean;
12286
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
12287
+ 'cacheStorageSize'?: number;
12288
+ /** DEPRECATED: This field will be removed in the near future. */
12094
12289
  'useInternalCache'?: boolean;
12290
+ /** DEPRECATED: This field will be removed in the near future. */
12095
12291
  'internalCacheStorage'?: number;
12096
12292
  };
12097
12293
  };
@@ -12118,7 +12314,7 @@ type PutJobCronResult = {
12118
12314
  /** Details about the status of the most recent build. */
12119
12315
  'build'?: {
12120
12316
  /** The current status of the build. Example: "SUCCESS" */
12121
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
12317
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
12122
12318
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
12123
12319
  'lastTransitionTime'?: string;
12124
12320
  };
@@ -12381,16 +12577,22 @@ type PutJobCronData = {
12381
12577
  };
12382
12578
  };
12383
12579
  'dockerfile': {
12384
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12385
- 'buildEngine'?: 'kaniko' | 'buildkit';
12580
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12581
+ 'useCache'?: boolean;
12582
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12583
+ 'buildEngine'?: 'buildkit' | 'kaniko';
12386
12584
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
12387
12585
  'dockerFilePath': string;
12388
12586
  /** The working directory of the Dockerfile. Example: "/" */
12389
12587
  'dockerWorkDir': string;
12390
- /** Should intermediate image layers be cached? */
12391
- 'useCache'?: boolean;
12392
12588
  'buildkit'?: {
12589
+ /** Use persistent storage to cache build layers. Example: true */
12590
+ 'useCache'?: boolean;
12591
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
12592
+ 'cacheStorageSize'?: number;
12593
+ /** DEPRECATED: This field will be removed in the near future. */
12393
12594
  'useInternalCache'?: boolean;
12595
+ /** DEPRECATED: This field will be removed in the near future. */
12394
12596
  'internalCacheStorage'?: number;
12395
12597
  };
12396
12598
  };
@@ -12420,6 +12622,8 @@ type PutJobCronData = {
12420
12622
  'buildArguments'?: any;
12421
12623
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12422
12624
  'buildFiles'?: any;
12625
+ /** 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"}} */
12626
+ 'dockerSecretMounts'?: any;
12423
12627
  /** An array of health checks. */
12424
12628
  'healthChecks'?: {
12425
12629
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -12522,6 +12726,8 @@ type PatchJobCronResult = {
12522
12726
  'buildArguments'?: any;
12523
12727
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12524
12728
  'buildFiles'?: any;
12729
+ /** 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"}} */
12730
+ 'dockerSecretMounts'?: any;
12525
12731
  /** An array of health checks. */
12526
12732
  'healthChecks'?: {
12527
12733
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -12645,16 +12851,22 @@ type PatchJobCronResult = {
12645
12851
  };
12646
12852
  };
12647
12853
  'dockerfile': {
12648
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12649
- 'buildEngine'?: 'kaniko' | 'buildkit';
12854
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12855
+ 'useCache'?: boolean;
12856
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12857
+ 'buildEngine'?: 'buildkit' | 'kaniko';
12650
12858
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
12651
12859
  'dockerFilePath': string;
12652
12860
  /** The working directory of the Dockerfile. Example: "/" */
12653
12861
  'dockerWorkDir': string;
12654
- /** Should intermediate image layers be cached? */
12655
- 'useCache'?: boolean;
12656
12862
  'buildkit'?: {
12863
+ /** Use persistent storage to cache build layers. Example: true */
12864
+ 'useCache'?: boolean;
12865
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
12866
+ 'cacheStorageSize'?: number;
12867
+ /** DEPRECATED: This field will be removed in the near future. */
12657
12868
  'useInternalCache'?: boolean;
12869
+ /** DEPRECATED: This field will be removed in the near future. */
12658
12870
  'internalCacheStorage'?: number;
12659
12871
  };
12660
12872
  };
@@ -12681,7 +12893,7 @@ type PatchJobCronResult = {
12681
12893
  /** Details about the status of the most recent build. */
12682
12894
  'build'?: {
12683
12895
  /** The current status of the build. Example: "SUCCESS" */
12684
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
12896
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
12685
12897
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
12686
12898
  'lastTransitionTime'?: string;
12687
12899
  };
@@ -12770,6 +12982,8 @@ type PatchJobCronData = {
12770
12982
  'buildArguments'?: any;
12771
12983
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12772
12984
  'buildFiles'?: any;
12985
+ /** 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"}} */
12986
+ 'dockerSecretMounts'?: any;
12773
12987
  /** An array of health checks. */
12774
12988
  'healthChecks'?: {
12775
12989
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -12872,6 +13086,8 @@ type CreateJobManualResult = {
12872
13086
  'buildArguments'?: any;
12873
13087
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12874
13088
  'buildFiles'?: any;
13089
+ /** 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"}} */
13090
+ 'dockerSecretMounts'?: any;
12875
13091
  /** An array of health checks. */
12876
13092
  'healthChecks'?: {
12877
13093
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -12989,16 +13205,22 @@ type CreateJobManualResult = {
12989
13205
  };
12990
13206
  };
12991
13207
  'dockerfile': {
12992
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12993
- 'buildEngine'?: 'kaniko' | 'buildkit';
13208
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
13209
+ 'useCache'?: boolean;
13210
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13211
+ 'buildEngine'?: 'buildkit' | 'kaniko';
12994
13212
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
12995
13213
  'dockerFilePath': string;
12996
13214
  /** The working directory of the Dockerfile. Example: "/" */
12997
13215
  'dockerWorkDir': string;
12998
- /** Should intermediate image layers be cached? */
12999
- 'useCache'?: boolean;
13000
13216
  'buildkit'?: {
13217
+ /** Use persistent storage to cache build layers. Example: true */
13218
+ 'useCache'?: boolean;
13219
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
13220
+ 'cacheStorageSize'?: number;
13221
+ /** DEPRECATED: This field will be removed in the near future. */
13001
13222
  'useInternalCache'?: boolean;
13223
+ /** DEPRECATED: This field will be removed in the near future. */
13002
13224
  'internalCacheStorage'?: number;
13003
13225
  };
13004
13226
  };
@@ -13025,7 +13247,7 @@ type CreateJobManualResult = {
13025
13247
  /** Details about the status of the most recent build. */
13026
13248
  'build'?: {
13027
13249
  /** The current status of the build. Example: "SUCCESS" */
13028
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
13250
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
13029
13251
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
13030
13252
  'lastTransitionTime'?: string;
13031
13253
  };
@@ -13288,16 +13510,22 @@ type CreateJobManualData = {
13288
13510
  };
13289
13511
  };
13290
13512
  'dockerfile': {
13291
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
13292
- 'buildEngine'?: 'kaniko' | 'buildkit';
13513
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
13514
+ 'useCache'?: boolean;
13515
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13516
+ 'buildEngine'?: 'buildkit' | 'kaniko';
13293
13517
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
13294
13518
  'dockerFilePath': string;
13295
13519
  /** The working directory of the Dockerfile. Example: "/" */
13296
13520
  'dockerWorkDir': string;
13297
- /** Should intermediate image layers be cached? */
13298
- 'useCache'?: boolean;
13299
13521
  'buildkit'?: {
13522
+ /** Use persistent storage to cache build layers. Example: true */
13523
+ 'useCache'?: boolean;
13524
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
13525
+ 'cacheStorageSize'?: number;
13526
+ /** DEPRECATED: This field will be removed in the near future. */
13300
13527
  'useInternalCache'?: boolean;
13528
+ /** DEPRECATED: This field will be removed in the near future. */
13301
13529
  'internalCacheStorage'?: number;
13302
13530
  };
13303
13531
  };
@@ -13327,6 +13555,8 @@ type CreateJobManualData = {
13327
13555
  'buildArguments'?: any;
13328
13556
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13329
13557
  'buildFiles'?: any;
13558
+ /** 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"}} */
13559
+ 'dockerSecretMounts'?: any;
13330
13560
  /** An array of health checks. */
13331
13561
  'healthChecks'?: {
13332
13562
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -13423,6 +13653,8 @@ type PutJobManualResult = {
13423
13653
  'buildArguments'?: any;
13424
13654
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13425
13655
  'buildFiles'?: any;
13656
+ /** 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"}} */
13657
+ 'dockerSecretMounts'?: any;
13426
13658
  /** An array of health checks. */
13427
13659
  'healthChecks'?: {
13428
13660
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -13540,16 +13772,22 @@ type PutJobManualResult = {
13540
13772
  };
13541
13773
  };
13542
13774
  'dockerfile': {
13543
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
13544
- 'buildEngine'?: 'kaniko' | 'buildkit';
13775
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
13776
+ 'useCache'?: boolean;
13777
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13778
+ 'buildEngine'?: 'buildkit' | 'kaniko';
13545
13779
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
13546
13780
  'dockerFilePath': string;
13547
13781
  /** The working directory of the Dockerfile. Example: "/" */
13548
13782
  'dockerWorkDir': string;
13549
- /** Should intermediate image layers be cached? */
13550
- 'useCache'?: boolean;
13551
13783
  'buildkit'?: {
13784
+ /** Use persistent storage to cache build layers. Example: true */
13785
+ 'useCache'?: boolean;
13786
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
13787
+ 'cacheStorageSize'?: number;
13788
+ /** DEPRECATED: This field will be removed in the near future. */
13552
13789
  'useInternalCache'?: boolean;
13790
+ /** DEPRECATED: This field will be removed in the near future. */
13553
13791
  'internalCacheStorage'?: number;
13554
13792
  };
13555
13793
  };
@@ -13576,7 +13814,7 @@ type PutJobManualResult = {
13576
13814
  /** Details about the status of the most recent build. */
13577
13815
  'build'?: {
13578
13816
  /** The current status of the build. Example: "SUCCESS" */
13579
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
13817
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
13580
13818
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
13581
13819
  'lastTransitionTime'?: string;
13582
13820
  };
@@ -13839,16 +14077,22 @@ type PutJobManualData = {
13839
14077
  };
13840
14078
  };
13841
14079
  'dockerfile': {
13842
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
13843
- 'buildEngine'?: 'kaniko' | 'buildkit';
14080
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
14081
+ 'useCache'?: boolean;
14082
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
14083
+ 'buildEngine'?: 'buildkit' | 'kaniko';
13844
14084
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
13845
14085
  'dockerFilePath': string;
13846
14086
  /** The working directory of the Dockerfile. Example: "/" */
13847
14087
  'dockerWorkDir': string;
13848
- /** Should intermediate image layers be cached? */
13849
- 'useCache'?: boolean;
13850
14088
  'buildkit'?: {
14089
+ /** Use persistent storage to cache build layers. Example: true */
14090
+ 'useCache'?: boolean;
14091
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
14092
+ 'cacheStorageSize'?: number;
14093
+ /** DEPRECATED: This field will be removed in the near future. */
13851
14094
  'useInternalCache'?: boolean;
14095
+ /** DEPRECATED: This field will be removed in the near future. */
13852
14096
  'internalCacheStorage'?: number;
13853
14097
  };
13854
14098
  };
@@ -13878,6 +14122,8 @@ type PutJobManualData = {
13878
14122
  'buildArguments'?: any;
13879
14123
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13880
14124
  'buildFiles'?: any;
14125
+ /** 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"}} */
14126
+ 'dockerSecretMounts'?: any;
13881
14127
  /** An array of health checks. */
13882
14128
  'healthChecks'?: {
13883
14129
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -13974,6 +14220,8 @@ type PatchJobManualResult = {
13974
14220
  'buildArguments'?: any;
13975
14221
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13976
14222
  'buildFiles'?: any;
14223
+ /** 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"}} */
14224
+ 'dockerSecretMounts'?: any;
13977
14225
  /** An array of health checks. */
13978
14226
  'healthChecks'?: {
13979
14227
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -14091,16 +14339,22 @@ type PatchJobManualResult = {
14091
14339
  };
14092
14340
  };
14093
14341
  'dockerfile': {
14094
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
14095
- 'buildEngine'?: 'kaniko' | 'buildkit';
14342
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
14343
+ 'useCache'?: boolean;
14344
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
14345
+ 'buildEngine'?: 'buildkit' | 'kaniko';
14096
14346
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
14097
14347
  'dockerFilePath': string;
14098
14348
  /** The working directory of the Dockerfile. Example: "/" */
14099
14349
  'dockerWorkDir': string;
14100
- /** Should intermediate image layers be cached? */
14101
- 'useCache'?: boolean;
14102
14350
  'buildkit'?: {
14351
+ /** Use persistent storage to cache build layers. Example: true */
14352
+ 'useCache'?: boolean;
14353
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
14354
+ 'cacheStorageSize'?: number;
14355
+ /** DEPRECATED: This field will be removed in the near future. */
14103
14356
  'useInternalCache'?: boolean;
14357
+ /** DEPRECATED: This field will be removed in the near future. */
14104
14358
  'internalCacheStorage'?: number;
14105
14359
  };
14106
14360
  };
@@ -14127,7 +14381,7 @@ type PatchJobManualResult = {
14127
14381
  /** Details about the status of the most recent build. */
14128
14382
  'build'?: {
14129
14383
  /** The current status of the build. Example: "SUCCESS" */
14130
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
14384
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
14131
14385
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
14132
14386
  'lastTransitionTime'?: string;
14133
14387
  };
@@ -14216,6 +14470,8 @@ type PatchJobManualData = {
14216
14470
  'buildArguments'?: any;
14217
14471
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14218
14472
  'buildFiles'?: any;
14473
+ /** 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"}} */
14474
+ 'dockerSecretMounts'?: any;
14219
14475
  /** An array of health checks. */
14220
14476
  'healthChecks'?: {
14221
14477
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -14307,7 +14563,7 @@ type GetJobResult = {
14307
14563
  };
14308
14564
  'buildEngineConfiguration'?: {
14309
14565
  /** The build engine used. Example: "buildpack" */
14310
- 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
14566
+ 'buildEngine'?: 'buildpack' | 'buildkit' | 'kaniko';
14311
14567
  /** Details about Buildpack settings. */
14312
14568
  'buildpack'?: {
14313
14569
  /** The Buildpack stack used. Example: "HEROKU_24" */
@@ -14500,7 +14756,7 @@ type GetJobBuildsResult = {
14500
14756
  /** ID of the pull request the commit belongs to. */
14501
14757
  'pullRequestId'?: number;
14502
14758
  /** The status of the build. Example: "SUCCESS" */
14503
- 'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
14759
+ 'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
14504
14760
  /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
14505
14761
  'sha'?: string;
14506
14762
  'registry'?: {
@@ -14590,6 +14846,8 @@ type StartJobBuildData = {
14590
14846
  'buildArguments'?: any;
14591
14847
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14592
14848
  'buildFiles'?: any;
14849
+ /** 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"}} */
14850
+ 'dockerSecretMounts'?: any;
14593
14851
  /** Overrides for docker build settings. */
14594
14852
  'docker'?: {
14595
14853
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -14654,9 +14912,11 @@ type UpdateJobBuildargumentsParameters = {
14654
14912
  };
14655
14913
  type UpdateJobBuildargumentsData = {
14656
14914
  /** 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': any;
14915
+ 'buildArguments'?: any;
14658
14916
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14659
14917
  'buildFiles'?: any;
14918
+ /** 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"}} */
14919
+ 'dockerSecretMounts'?: any;
14660
14920
  };
14661
14921
  /** Sets build arguments for the given job. */
14662
14922
  declare class UpdateJobBuildargumentsEndpoint extends PostApiEndpoint<UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult> {
@@ -14751,19 +15011,21 @@ type UpdateJobBuildoptionsParameters = {
14751
15011
  };
14752
15012
  type UpdateJobBuildoptionsData = {
14753
15013
  'dockerfile': {
14754
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
14755
- 'buildEngine'?: 'kaniko' | 'buildkit';
14756
- /** Should intermediate image layers be cached? */
14757
- 'useCache'?: boolean;
15014
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
15015
+ 'buildEngine'?: 'buildkit' | 'kaniko';
14758
15016
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
14759
15017
  'dockerFilePath'?: string;
14760
15018
  /** The working directory of the Dockerfile. Example: "/" */
14761
15019
  'dockerWorkDir'?: string;
14762
15020
  'buildkit'?: {
14763
- /** Should use persistent storage to store all layers? */
15021
+ /** Use persistent storage to cache build layers. */
15022
+ 'useCache'?: boolean;
15023
+ /** The amount of persistent storage available to each build in MB. */
15024
+ 'cacheStorageSize'?: number;
15025
+ /** DEPRECATED: This field will be removed in the near future. */
14764
15026
  'useInternalCache'?: boolean;
14765
- /** Persistent storage per build in MB */
14766
- 'internalCacheStorage': number;
15027
+ /** DEPRECATED: This field will be removed in the near future. */
15028
+ 'internalCacheStorage'?: number;
14767
15029
  };
14768
15030
  };
14769
15031
  /** 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 +15140,7 @@ type GetJobBuildResult = {
14878
15140
  /** ID of the pull request the commit belongs to. */
14879
15141
  'pullRequestId'?: number;
14880
15142
  /** The status of the build. Example: "SUCCESS" */
14881
- 'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
15143
+ 'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
14882
15144
  /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
14883
15145
  'sha'?: string;
14884
15146
  'registry'?: {
@@ -15084,7 +15346,7 @@ type GetJobDeploymentResult = {
15084
15346
  /** Path of the external image excluding the hostname Example: "nginx:latest" */
15085
15347
  'imagePath': string;
15086
15348
  /** Registry provider hosting the external image Example: "dockerhub" */
15087
- 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
15349
+ 'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
15088
15350
  /** Does the image require authentication */
15089
15351
  'privateImage': boolean;
15090
15352
  };
@@ -15461,6 +15723,8 @@ type StartJobRunData = {
15461
15723
  'runtimeEnvironment'?: any;
15462
15724
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
15463
15725
  'runtimeFiles'?: any;
15726
+ /** 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"}} */
15727
+ 'dockerSecretMounts'?: any;
15464
15728
  'billing'?: {
15465
15729
  /** The ID of the deployment plan override to use. Example: "nf-compute-20" */
15466
15730
  'deploymentPlan'?: string;
@@ -16083,7 +16347,7 @@ type UpdatePreviewtemplateData = {
16083
16347
  'spec': any;
16084
16348
  /** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
16085
16349
  'paused'?: boolean;
16086
- 'triggers': {
16350
+ 'triggers'?: {
16087
16351
  /** A reference that can be used to access the output of this trigger in the template. */
16088
16352
  'ref'?: string;
16089
16353
  /** The VCS provider to use. Example: "github" */
@@ -16967,6 +17231,8 @@ type CreateSecretResult = {
16967
17231
  'variables'?: any;
16968
17232
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
16969
17233
  'files'?: any;
17234
+ /** 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"}} */
17235
+ 'dockerSecretMounts'?: any;
16970
17236
  };
16971
17237
  /** Identifier for the secret group Example: "example-secret-group" */
16972
17238
  'id': string;
@@ -17029,6 +17295,8 @@ type CreateSecretData = {
17029
17295
  'variables'?: any;
17030
17296
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17031
17297
  'files'?: any;
17298
+ /** 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"}} */
17299
+ 'dockerSecretMounts'?: any;
17032
17300
  };
17033
17301
  };
17034
17302
  /** Creates a secret with the specified payload */
@@ -17086,6 +17354,8 @@ type PutSecretResult = {
17086
17354
  'variables'?: any;
17087
17355
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17088
17356
  'files'?: any;
17357
+ /** 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"}} */
17358
+ 'dockerSecretMounts'?: any;
17089
17359
  };
17090
17360
  /** Identifier for the secret group Example: "example-secret-group" */
17091
17361
  'id': string;
@@ -17148,6 +17418,8 @@ type PutSecretData = {
17148
17418
  'variables'?: any;
17149
17419
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17150
17420
  'files'?: any;
17421
+ /** 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"}} */
17422
+ 'dockerSecretMounts'?: any;
17151
17423
  };
17152
17424
  };
17153
17425
  /** Creates or updates a secret with the specified payload */
@@ -17205,6 +17477,8 @@ type PatchSecretResult = {
17205
17477
  'variables'?: any;
17206
17478
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17207
17479
  'files'?: any;
17480
+ /** 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"}} */
17481
+ 'dockerSecretMounts'?: any;
17208
17482
  };
17209
17483
  /** Identifier for the secret group Example: "example-secret-group" */
17210
17484
  'id': string;
@@ -17266,6 +17540,8 @@ type PatchSecretData = {
17266
17540
  'variables'?: any;
17267
17541
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17268
17542
  'files'?: any;
17543
+ /** 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"}} */
17544
+ 'dockerSecretMounts'?: any;
17269
17545
  };
17270
17546
  };
17271
17547
  /** Updates a secret with the specified payload */
@@ -17412,6 +17688,8 @@ type UpdateSecretData = {
17412
17688
  'variables'?: any;
17413
17689
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17414
17690
  'files'?: any;
17691
+ /** 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"}} */
17692
+ 'dockerSecretMounts'?: any;
17415
17693
  };
17416
17694
  };
17417
17695
  /** Update a secret */
@@ -17648,16 +17926,22 @@ type CreateServiceBuildResult = {
17648
17926
  };
17649
17927
  };
17650
17928
  'dockerfile': {
17651
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
17652
- 'buildEngine'?: 'kaniko' | 'buildkit';
17929
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
17930
+ 'useCache'?: boolean;
17931
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
17932
+ 'buildEngine'?: 'buildkit' | 'kaniko';
17653
17933
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
17654
17934
  'dockerFilePath': string;
17655
17935
  /** The working directory of the Dockerfile. Example: "/" */
17656
17936
  'dockerWorkDir': string;
17657
- /** Should intermediate image layers be cached? */
17658
- 'useCache'?: boolean;
17659
17937
  'buildkit'?: {
17938
+ /** Use persistent storage to cache build layers. Example: true */
17939
+ 'useCache'?: boolean;
17940
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
17941
+ 'cacheStorageSize'?: number;
17942
+ /** DEPRECATED: This field will be removed in the near future. */
17660
17943
  'useInternalCache'?: boolean;
17944
+ /** DEPRECATED: This field will be removed in the near future. */
17661
17945
  'internalCacheStorage'?: number;
17662
17946
  };
17663
17947
  };
@@ -17710,6 +17994,8 @@ type CreateServiceBuildResult = {
17710
17994
  'buildArguments'?: any;
17711
17995
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17712
17996
  'buildFiles'?: any;
17997
+ /** 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"}} */
17998
+ 'dockerSecretMounts'?: any;
17713
17999
  /** Type of the service (combined, build or deployment) Example: "build" */
17714
18000
  'serviceType': 'build';
17715
18001
  /** Identifier for the service Example: "example-service" */
@@ -17736,7 +18022,7 @@ type CreateServiceBuildResult = {
17736
18022
  /** Details about the status of the most recent build. */
17737
18023
  'build'?: {
17738
18024
  /** The current status of the build. Example: "SUCCESS" */
17739
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
18025
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
17740
18026
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
17741
18027
  'lastTransitionTime'?: string;
17742
18028
  };
@@ -17799,16 +18085,22 @@ type CreateServiceBuildData = {
17799
18085
  };
17800
18086
  };
17801
18087
  'dockerfile': {
17802
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
17803
- 'buildEngine'?: 'kaniko' | 'buildkit';
18088
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18089
+ 'useCache'?: boolean;
18090
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18091
+ 'buildEngine'?: 'buildkit' | 'kaniko';
17804
18092
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
17805
18093
  'dockerFilePath': string;
17806
18094
  /** The working directory of the Dockerfile. Example: "/" */
17807
18095
  'dockerWorkDir': string;
17808
- /** Should intermediate image layers be cached? */
17809
- 'useCache'?: boolean;
17810
18096
  'buildkit'?: {
18097
+ /** Use persistent storage to cache build layers. Example: true */
18098
+ 'useCache'?: boolean;
18099
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18100
+ 'cacheStorageSize'?: number;
18101
+ /** DEPRECATED: This field will be removed in the near future. */
17811
18102
  'useInternalCache'?: boolean;
18103
+ /** DEPRECATED: This field will be removed in the near future. */
17812
18104
  'internalCacheStorage'?: number;
17813
18105
  };
17814
18106
  };
@@ -17861,6 +18153,8 @@ type CreateServiceBuildData = {
17861
18153
  'buildArguments'?: any;
17862
18154
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17863
18155
  'buildFiles'?: any;
18156
+ /** 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"}} */
18157
+ 'dockerSecretMounts'?: any;
17864
18158
  };
17865
18159
  /** Creates a new build service. */
17866
18160
  declare class CreateServiceBuildEndpoint extends PostApiEndpoint<CreateServiceBuildRequest, CreateServiceBuildResult> {
@@ -17920,16 +18214,22 @@ type PutServiceBuildResult = {
17920
18214
  };
17921
18215
  };
17922
18216
  'dockerfile': {
17923
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
17924
- 'buildEngine'?: 'kaniko' | 'buildkit';
18217
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18218
+ 'useCache'?: boolean;
18219
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18220
+ 'buildEngine'?: 'buildkit' | 'kaniko';
17925
18221
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
17926
18222
  'dockerFilePath': string;
17927
18223
  /** The working directory of the Dockerfile. Example: "/" */
17928
18224
  'dockerWorkDir': string;
17929
- /** Should intermediate image layers be cached? */
17930
- 'useCache'?: boolean;
17931
18225
  'buildkit'?: {
18226
+ /** Use persistent storage to cache build layers. Example: true */
18227
+ 'useCache'?: boolean;
18228
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18229
+ 'cacheStorageSize'?: number;
18230
+ /** DEPRECATED: This field will be removed in the near future. */
17932
18231
  'useInternalCache'?: boolean;
18232
+ /** DEPRECATED: This field will be removed in the near future. */
17933
18233
  'internalCacheStorage'?: number;
17934
18234
  };
17935
18235
  };
@@ -17982,6 +18282,8 @@ type PutServiceBuildResult = {
17982
18282
  'buildArguments'?: any;
17983
18283
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17984
18284
  'buildFiles'?: any;
18285
+ /** 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"}} */
18286
+ 'dockerSecretMounts'?: any;
17985
18287
  /** Type of the service (combined, build or deployment) Example: "build" */
17986
18288
  'serviceType': 'build';
17987
18289
  /** Identifier for the service Example: "example-service" */
@@ -18008,7 +18310,7 @@ type PutServiceBuildResult = {
18008
18310
  /** Details about the status of the most recent build. */
18009
18311
  'build'?: {
18010
18312
  /** The current status of the build. Example: "SUCCESS" */
18011
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
18313
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
18012
18314
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
18013
18315
  'lastTransitionTime'?: string;
18014
18316
  };
@@ -18071,16 +18373,22 @@ type PutServiceBuildData = {
18071
18373
  };
18072
18374
  };
18073
18375
  'dockerfile': {
18074
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
18075
- 'buildEngine'?: 'kaniko' | 'buildkit';
18376
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18377
+ 'useCache'?: boolean;
18378
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18379
+ 'buildEngine'?: 'buildkit' | 'kaniko';
18076
18380
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
18077
18381
  'dockerFilePath': string;
18078
18382
  /** The working directory of the Dockerfile. Example: "/" */
18079
18383
  'dockerWorkDir': string;
18080
- /** Should intermediate image layers be cached? */
18081
- 'useCache'?: boolean;
18082
18384
  'buildkit'?: {
18385
+ /** Use persistent storage to cache build layers. Example: true */
18386
+ 'useCache'?: boolean;
18387
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18388
+ 'cacheStorageSize'?: number;
18389
+ /** DEPRECATED: This field will be removed in the near future. */
18083
18390
  'useInternalCache'?: boolean;
18391
+ /** DEPRECATED: This field will be removed in the near future. */
18084
18392
  'internalCacheStorage'?: number;
18085
18393
  };
18086
18394
  };
@@ -18133,6 +18441,8 @@ type PutServiceBuildData = {
18133
18441
  'buildArguments'?: any;
18134
18442
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18135
18443
  'buildFiles'?: any;
18444
+ /** 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"}} */
18445
+ 'dockerSecretMounts'?: any;
18136
18446
  };
18137
18447
  /** Creates or updates a build service. */
18138
18448
  declare class PutServiceBuildEndpoint extends PutApiEndpoint<PutServiceBuildRequest, PutServiceBuildResult> {
@@ -18192,16 +18502,22 @@ type PatchServiceBuildResult = {
18192
18502
  };
18193
18503
  };
18194
18504
  'dockerfile': {
18195
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
18196
- 'buildEngine'?: 'kaniko' | 'buildkit';
18505
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18506
+ 'useCache'?: boolean;
18507
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18508
+ 'buildEngine'?: 'buildkit' | 'kaniko';
18197
18509
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
18198
18510
  'dockerFilePath': string;
18199
18511
  /** The working directory of the Dockerfile. Example: "/" */
18200
18512
  'dockerWorkDir': string;
18201
- /** Should intermediate image layers be cached? */
18202
- 'useCache'?: boolean;
18203
18513
  'buildkit'?: {
18514
+ /** Use persistent storage to cache build layers. Example: true */
18515
+ 'useCache'?: boolean;
18516
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18517
+ 'cacheStorageSize'?: number;
18518
+ /** DEPRECATED: This field will be removed in the near future. */
18204
18519
  'useInternalCache'?: boolean;
18520
+ /** DEPRECATED: This field will be removed in the near future. */
18205
18521
  'internalCacheStorage'?: number;
18206
18522
  };
18207
18523
  };
@@ -18254,6 +18570,8 @@ type PatchServiceBuildResult = {
18254
18570
  'buildArguments'?: any;
18255
18571
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18256
18572
  'buildFiles'?: any;
18573
+ /** 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"}} */
18574
+ 'dockerSecretMounts'?: any;
18257
18575
  /** Type of the service (combined, build or deployment) Example: "build" */
18258
18576
  'serviceType': 'build';
18259
18577
  /** Identifier for the service Example: "example-service" */
@@ -18280,7 +18598,7 @@ type PatchServiceBuildResult = {
18280
18598
  /** Details about the status of the most recent build. */
18281
18599
  'build'?: {
18282
18600
  /** The current status of the build. Example: "SUCCESS" */
18283
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
18601
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
18284
18602
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
18285
18603
  'lastTransitionTime'?: string;
18286
18604
  };
@@ -18339,16 +18657,20 @@ type PatchServiceBuildData = {
18339
18657
  };
18340
18658
  };
18341
18659
  'dockerfile'?: {
18342
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
18343
- 'buildEngine'?: 'kaniko' | 'buildkit';
18660
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18661
+ 'buildEngine'?: 'buildkit' | 'kaniko';
18344
18662
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
18345
18663
  'dockerFilePath'?: string;
18346
18664
  /** The working directory of the Dockerfile. Example: "/" */
18347
18665
  'dockerWorkDir'?: string;
18348
- /** Should intermediate image layers be cached? */
18349
- 'useCache'?: boolean;
18350
18666
  'buildkit'?: {
18667
+ /** Use persistent storage to cache build layers. Example: true */
18668
+ 'useCache'?: boolean;
18669
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18670
+ 'cacheStorageSize'?: number;
18671
+ /** DEPRECATED: This field will be removed in the near future. */
18351
18672
  'useInternalCache'?: boolean;
18673
+ /** DEPRECATED: This field will be removed in the near future. */
18352
18674
  'internalCacheStorage'?: number;
18353
18675
  };
18354
18676
  };
@@ -18394,6 +18716,8 @@ type PatchServiceBuildData = {
18394
18716
  'buildArguments'?: any;
18395
18717
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18396
18718
  'buildFiles'?: any;
18719
+ /** 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"}} */
18720
+ 'dockerSecretMounts'?: any;
18397
18721
  };
18398
18722
  /** Updates a build service. */
18399
18723
  declare class PatchServiceBuildEndpoint extends PatchApiEndpoint<PatchServiceBuildRequest, PatchServiceBuildResult> {
@@ -18615,16 +18939,22 @@ type CreateServiceCombinedResult = {
18615
18939
  };
18616
18940
  };
18617
18941
  'dockerfile': {
18618
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
18619
- 'buildEngine'?: 'kaniko' | 'buildkit';
18942
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18943
+ 'useCache'?: boolean;
18944
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18945
+ 'buildEngine'?: 'buildkit' | 'kaniko';
18620
18946
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
18621
18947
  'dockerFilePath': string;
18622
18948
  /** The working directory of the Dockerfile. Example: "/" */
18623
18949
  'dockerWorkDir': string;
18624
- /** Should intermediate image layers be cached? */
18625
- 'useCache'?: boolean;
18626
18950
  'buildkit'?: {
18951
+ /** Use persistent storage to cache build layers. Example: true */
18952
+ 'useCache'?: boolean;
18953
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18954
+ 'cacheStorageSize'?: number;
18955
+ /** DEPRECATED: This field will be removed in the near future. */
18627
18956
  'useInternalCache'?: boolean;
18957
+ /** DEPRECATED: This field will be removed in the near future. */
18628
18958
  'internalCacheStorage'?: number;
18629
18959
  };
18630
18960
  };
@@ -18677,6 +19007,8 @@ type CreateServiceCombinedResult = {
18677
19007
  'buildArguments'?: any;
18678
19008
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18679
19009
  'buildFiles'?: any;
19010
+ /** 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"}} */
19011
+ 'dockerSecretMounts'?: any;
18680
19012
  /** An array of health checks. */
18681
19013
  'healthChecks'?: {
18682
19014
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -18850,7 +19182,7 @@ type CreateServiceCombinedResult = {
18850
19182
  /** Details about the status of the most recent build. */
18851
19183
  'build'?: {
18852
19184
  /** The current status of the build. Example: "SUCCESS" */
18853
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
19185
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
18854
19186
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
18855
19187
  'lastTransitionTime'?: string;
18856
19188
  };
@@ -19146,16 +19478,22 @@ type CreateServiceCombinedData = {
19146
19478
  };
19147
19479
  };
19148
19480
  'dockerfile': {
19149
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
19150
- 'buildEngine'?: 'kaniko' | 'buildkit';
19481
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
19482
+ 'useCache'?: boolean;
19483
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
19484
+ 'buildEngine'?: 'buildkit' | 'kaniko';
19151
19485
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
19152
19486
  'dockerFilePath': string;
19153
19487
  /** The working directory of the Dockerfile. Example: "/" */
19154
19488
  'dockerWorkDir': string;
19155
- /** Should intermediate image layers be cached? */
19156
- 'useCache'?: boolean;
19157
19489
  'buildkit'?: {
19490
+ /** Use persistent storage to cache build layers. Example: true */
19491
+ 'useCache'?: boolean;
19492
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
19493
+ 'cacheStorageSize'?: number;
19494
+ /** DEPRECATED: This field will be removed in the near future. */
19158
19495
  'useInternalCache'?: boolean;
19496
+ /** DEPRECATED: This field will be removed in the near future. */
19159
19497
  'internalCacheStorage'?: number;
19160
19498
  };
19161
19499
  };
@@ -19208,6 +19546,8 @@ type CreateServiceCombinedData = {
19208
19546
  'buildArguments'?: any;
19209
19547
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
19210
19548
  'buildFiles'?: any;
19549
+ /** 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"}} */
19550
+ 'dockerSecretMounts'?: any;
19211
19551
  /** An array of health checks. */
19212
19552
  'healthChecks'?: {
19213
19553
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -19509,16 +19849,22 @@ type PutServiceCombinedResult = {
19509
19849
  };
19510
19850
  };
19511
19851
  'dockerfile': {
19512
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
19513
- 'buildEngine'?: 'kaniko' | 'buildkit';
19852
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
19853
+ 'useCache'?: boolean;
19854
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
19855
+ 'buildEngine'?: 'buildkit' | 'kaniko';
19514
19856
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
19515
19857
  'dockerFilePath': string;
19516
19858
  /** The working directory of the Dockerfile. Example: "/" */
19517
19859
  'dockerWorkDir': string;
19518
- /** Should intermediate image layers be cached? */
19519
- 'useCache'?: boolean;
19520
19860
  'buildkit'?: {
19861
+ /** Use persistent storage to cache build layers. Example: true */
19862
+ 'useCache'?: boolean;
19863
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
19864
+ 'cacheStorageSize'?: number;
19865
+ /** DEPRECATED: This field will be removed in the near future. */
19521
19866
  'useInternalCache'?: boolean;
19867
+ /** DEPRECATED: This field will be removed in the near future. */
19522
19868
  'internalCacheStorage'?: number;
19523
19869
  };
19524
19870
  };
@@ -19571,6 +19917,8 @@ type PutServiceCombinedResult = {
19571
19917
  'buildArguments'?: any;
19572
19918
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
19573
19919
  'buildFiles'?: any;
19920
+ /** 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"}} */
19921
+ 'dockerSecretMounts'?: any;
19574
19922
  /** An array of health checks. */
19575
19923
  'healthChecks'?: {
19576
19924
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -19744,7 +20092,7 @@ type PutServiceCombinedResult = {
19744
20092
  /** Details about the status of the most recent build. */
19745
20093
  'build'?: {
19746
20094
  /** The current status of the build. Example: "SUCCESS" */
19747
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
20095
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
19748
20096
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
19749
20097
  'lastTransitionTime'?: string;
19750
20098
  };
@@ -20040,16 +20388,22 @@ type PutServiceCombinedData = {
20040
20388
  };
20041
20389
  };
20042
20390
  'dockerfile': {
20043
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
20044
- 'buildEngine'?: 'kaniko' | 'buildkit';
20391
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
20392
+ 'useCache'?: boolean;
20393
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
20394
+ 'buildEngine'?: 'buildkit' | 'kaniko';
20045
20395
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
20046
20396
  'dockerFilePath': string;
20047
20397
  /** The working directory of the Dockerfile. Example: "/" */
20048
20398
  'dockerWorkDir': string;
20049
- /** Should intermediate image layers be cached? */
20050
- 'useCache'?: boolean;
20051
20399
  'buildkit'?: {
20400
+ /** Use persistent storage to cache build layers. Example: true */
20401
+ 'useCache'?: boolean;
20402
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
20403
+ 'cacheStorageSize'?: number;
20404
+ /** DEPRECATED: This field will be removed in the near future. */
20052
20405
  'useInternalCache'?: boolean;
20406
+ /** DEPRECATED: This field will be removed in the near future. */
20053
20407
  'internalCacheStorage'?: number;
20054
20408
  };
20055
20409
  };
@@ -20102,6 +20456,8 @@ type PutServiceCombinedData = {
20102
20456
  'buildArguments'?: any;
20103
20457
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
20104
20458
  'buildFiles'?: any;
20459
+ /** 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"}} */
20460
+ 'dockerSecretMounts'?: any;
20105
20461
  /** An array of health checks. */
20106
20462
  'healthChecks'?: {
20107
20463
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -20403,16 +20759,22 @@ type PatchServiceCombinedResult = {
20403
20759
  };
20404
20760
  };
20405
20761
  'dockerfile': {
20406
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
20407
- 'buildEngine'?: 'kaniko' | 'buildkit';
20762
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
20763
+ 'useCache'?: boolean;
20764
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
20765
+ 'buildEngine'?: 'buildkit' | 'kaniko';
20408
20766
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
20409
20767
  'dockerFilePath': string;
20410
20768
  /** The working directory of the Dockerfile. Example: "/" */
20411
20769
  'dockerWorkDir': string;
20412
- /** Should intermediate image layers be cached? */
20413
- 'useCache'?: boolean;
20414
20770
  'buildkit'?: {
20771
+ /** Use persistent storage to cache build layers. Example: true */
20772
+ 'useCache'?: boolean;
20773
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
20774
+ 'cacheStorageSize'?: number;
20775
+ /** DEPRECATED: This field will be removed in the near future. */
20415
20776
  'useInternalCache'?: boolean;
20777
+ /** DEPRECATED: This field will be removed in the near future. */
20416
20778
  'internalCacheStorage'?: number;
20417
20779
  };
20418
20780
  };
@@ -20465,6 +20827,8 @@ type PatchServiceCombinedResult = {
20465
20827
  'buildArguments'?: any;
20466
20828
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
20467
20829
  'buildFiles'?: any;
20830
+ /** 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"}} */
20831
+ 'dockerSecretMounts'?: any;
20468
20832
  /** An array of health checks. */
20469
20833
  'healthChecks'?: {
20470
20834
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -20638,7 +21002,7 @@ type PatchServiceCombinedResult = {
20638
21002
  /** Details about the status of the most recent build. */
20639
21003
  'build'?: {
20640
21004
  /** The current status of the build. Example: "SUCCESS" */
20641
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
21005
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
20642
21006
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
20643
21007
  'lastTransitionTime'?: string;
20644
21008
  };
@@ -20926,16 +21290,20 @@ type PatchServiceCombinedData = {
20926
21290
  };
20927
21291
  };
20928
21292
  'dockerfile'?: {
20929
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
20930
- 'buildEngine'?: 'kaniko' | 'buildkit';
21293
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
21294
+ 'buildEngine'?: 'buildkit' | 'kaniko';
20931
21295
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
20932
21296
  'dockerFilePath'?: string;
20933
21297
  /** The working directory of the Dockerfile. Example: "/" */
20934
21298
  'dockerWorkDir'?: string;
20935
- /** Should intermediate image layers be cached? */
20936
- 'useCache'?: boolean;
20937
21299
  'buildkit'?: {
21300
+ /** Use persistent storage to cache build layers. Example: true */
21301
+ 'useCache'?: boolean;
21302
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
21303
+ 'cacheStorageSize'?: number;
21304
+ /** DEPRECATED: This field will be removed in the near future. */
20938
21305
  'useInternalCache'?: boolean;
21306
+ /** DEPRECATED: This field will be removed in the near future. */
20939
21307
  'internalCacheStorage'?: number;
20940
21308
  };
20941
21309
  };
@@ -20981,6 +21349,8 @@ type PatchServiceCombinedData = {
20981
21349
  'buildArguments'?: any;
20982
21350
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
20983
21351
  'buildFiles'?: any;
21352
+ /** 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"}} */
21353
+ 'dockerSecretMounts'?: any;
20984
21354
  /** An array of health checks. */
20985
21355
  'healthChecks'?: {
20986
21356
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -23662,7 +24032,7 @@ type GetServiceResult = {
23662
24032
  /** Details about the status of the most recent build. */
23663
24033
  'build'?: {
23664
24034
  /** The current status of the build. Example: "SUCCESS" */
23665
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
24035
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
23666
24036
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
23667
24037
  'lastTransitionTime'?: string;
23668
24038
  };
@@ -23716,7 +24086,7 @@ type GetServiceResult = {
23716
24086
  /** Path of the external image excluding the hostname */
23717
24087
  'imagePath': string;
23718
24088
  /** Registry provider hosting the external image */
23719
- 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
24089
+ 'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
23720
24090
  /** Does the image require authentication */
23721
24091
  'privateImage': boolean;
23722
24092
  };
@@ -23834,7 +24204,7 @@ type GetServiceResult = {
23834
24204
  };
23835
24205
  'buildEngineConfiguration'?: {
23836
24206
  /** The build engine used. Example: "buildpack" */
23837
- 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
24207
+ 'buildEngine'?: 'buildpack' | 'buildkit' | 'kaniko';
23838
24208
  /** Details about Buildpack settings. */
23839
24209
  'buildpack'?: {
23840
24210
  /** The Buildpack stack used. Example: "HEROKU_24" */
@@ -24092,7 +24462,7 @@ type GetServiceBuildsResult = {
24092
24462
  /** ID of the pull request the commit belongs to. */
24093
24463
  'pullRequestId'?: number;
24094
24464
  /** The status of the build. Example: "SUCCESS" */
24095
- 'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
24465
+ 'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
24096
24466
  /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
24097
24467
  'sha'?: string;
24098
24468
  'registry'?: {
@@ -24188,6 +24558,8 @@ type StartServiceBuildData = {
24188
24558
  'buildArguments'?: any;
24189
24559
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
24190
24560
  'buildFiles'?: any;
24561
+ /** 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"}} */
24562
+ 'dockerSecretMounts'?: any;
24191
24563
  /** Overrides for docker build settings. */
24192
24564
  'docker'?: {
24193
24565
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -24252,9 +24624,11 @@ type UpdateServiceBuildargumentsParameters = {
24252
24624
  };
24253
24625
  type UpdateServiceBuildargumentsData = {
24254
24626
  /** 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': any;
24627
+ 'buildArguments'?: any;
24256
24628
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
24257
24629
  'buildFiles'?: any;
24630
+ /** 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"}} */
24631
+ 'dockerSecretMounts'?: any;
24258
24632
  };
24259
24633
  /** Sets the build arguments for the given service. */
24260
24634
  declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult> {
@@ -24349,19 +24723,21 @@ type UpdateServiceBuildoptionsParameters = {
24349
24723
  };
24350
24724
  type UpdateServiceBuildoptionsData = {
24351
24725
  'dockerfile': {
24352
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
24353
- 'buildEngine'?: 'kaniko' | 'buildkit';
24354
- /** Should intermediate image layers be cached? */
24355
- 'useCache'?: boolean;
24726
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
24727
+ 'buildEngine'?: 'buildkit' | 'kaniko';
24356
24728
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
24357
24729
  'dockerFilePath'?: string;
24358
24730
  /** The working directory of the Dockerfile. Example: "/" */
24359
24731
  'dockerWorkDir'?: string;
24360
24732
  'buildkit'?: {
24361
- /** Should use persistent storage to store all layers? */
24733
+ /** Use persistent storage to cache build layers. */
24734
+ 'useCache'?: boolean;
24735
+ /** The amount of persistent storage available to each build in MB. */
24736
+ 'cacheStorageSize'?: number;
24737
+ /** DEPRECATED: This field will be removed in the near future. */
24362
24738
  'useInternalCache'?: boolean;
24363
- /** Persistent storage per build in MB */
24364
- 'internalCacheStorage': number;
24739
+ /** DEPRECATED: This field will be removed in the near future. */
24740
+ 'internalCacheStorage'?: number;
24365
24741
  };
24366
24742
  };
24367
24743
  /** 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 +24860,7 @@ type GetServiceBuildResult = {
24484
24860
  /** ID of the pull request the commit belongs to. */
24485
24861
  'pullRequestId'?: number;
24486
24862
  /** The status of the build. Example: "SUCCESS" */
24487
- 'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
24863
+ 'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
24488
24864
  /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
24489
24865
  'sha'?: string;
24490
24866
  'registry'?: {
@@ -24686,7 +25062,7 @@ type GetServiceDeploymentResult = {
24686
25062
  /** Path of the external image excluding the hostname Example: "nginx:latest" */
24687
25063
  'imagePath': string;
24688
25064
  /** Registry provider hosting the external image Example: "dockerhub" */
24689
- 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
25065
+ 'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
24690
25066
  /** Does the image require authentication */
24691
25067
  'privateImage': boolean;
24692
25068
  };
@@ -26816,7 +27192,6 @@ declare class ApiClient {
26816
27192
  };
26817
27193
  cloud: {
26818
27194
  cluster: GetCloudClusterCall;
26819
- dockerRegistry: GetCloudDockerregistryCall;
26820
27195
  integration: GetCloudIntegrationCall;
26821
27196
  };
26822
27197
  dnsId: GetDnsidCall;
@@ -26897,7 +27272,6 @@ declare class ApiClient {
26897
27272
  cluster: {
26898
27273
  nodes: ListCloudClusterNodesCall;
26899
27274
  };
26900
- dockerRegistry: ListCloudDockerregistryCall;
26901
27275
  integrations: ListCloudIntegrationsCall;
26902
27276
  nodeTypes: ListCloudNodetypesCall;
26903
27277
  regions: ListCloudRegionsCall;
@@ -26943,7 +27317,6 @@ declare class ApiClient {
26943
27317
  backupDestination: PatchBackupdestinationCall;
26944
27318
  cloud: {
26945
27319
  cluster: PatchCloudClusterCall;
26946
- dockerRegistry: PatchCloudDockerregistryCall;
26947
27320
  integration: PatchCloudIntegrationCall;
26948
27321
  };
26949
27322
  project: PatchProjectCall;
@@ -26964,7 +27337,6 @@ declare class ApiClient {
26964
27337
  backupDestination: DeleteBackupdestinationCall;
26965
27338
  cloud: {
26966
27339
  cluster: DeleteCloudClusterCall;
26967
- dockerRegistry: DeleteCloudDockerregistryCall;
26968
27340
  integration: DeleteCloudIntegrationCall;
26969
27341
  };
26970
27342
  domain: DeleteDomainCall;
@@ -26991,7 +27363,6 @@ declare class ApiClient {
26991
27363
  create: {
26992
27364
  cloud: {
26993
27365
  cluster: CreateCloudClusterCall;
26994
- dockerRegistry: CreateCloudDockerregistryCall;
26995
27366
  integration: CreateCloudIntegrationCall;
26996
27367
  };
26997
27368
  domain: CreateDomainCall;
@@ -27020,7 +27391,6 @@ declare class ApiClient {
27020
27391
  put: {
27021
27392
  cloud: {
27022
27393
  cluster: PutCloudClusterCall;
27023
- dockerRegistry: PutCloudDockerregistryCall;
27024
27394
  integration: PutCloudIntegrationCall;
27025
27395
  };
27026
27396
  project: PutProjectCall;
@@ -27237,7 +27607,6 @@ declare class ApiClient {
27237
27607
  };
27238
27608
  cloud: {
27239
27609
  cluster: GetCloudClusterEndpoint;
27240
- dockerRegistry: GetCloudDockerregistryEndpoint;
27241
27610
  integration: GetCloudIntegrationEndpoint;
27242
27611
  };
27243
27612
  dnsId: GetDnsidEndpoint;
@@ -27302,7 +27671,6 @@ declare class ApiClient {
27302
27671
  cluster: {
27303
27672
  nodes: ListCloudClusterNodesEndpoint;
27304
27673
  };
27305
- dockerRegistry: ListCloudDockerregistryEndpoint;
27306
27674
  integrations: ListCloudIntegrationsEndpoint;
27307
27675
  nodeTypes: ListCloudNodetypesEndpoint;
27308
27676
  regions: ListCloudRegionsEndpoint;
@@ -27348,7 +27716,6 @@ declare class ApiClient {
27348
27716
  backupDestination: PatchBackupdestinationEndpoint;
27349
27717
  cloud: {
27350
27718
  cluster: PatchCloudClusterEndpoint;
27351
- dockerRegistry: PatchCloudDockerregistryEndpoint;
27352
27719
  integration: PatchCloudIntegrationEndpoint;
27353
27720
  };
27354
27721
  project: PatchProjectEndpoint;
@@ -27369,7 +27736,6 @@ declare class ApiClient {
27369
27736
  backupDestination: DeleteBackupdestinationEndpoint;
27370
27737
  cloud: {
27371
27738
  cluster: DeleteCloudClusterEndpoint;
27372
- dockerRegistry: DeleteCloudDockerregistryEndpoint;
27373
27739
  integration: DeleteCloudIntegrationEndpoint;
27374
27740
  };
27375
27741
  domain: DeleteDomainEndpoint;
@@ -27396,7 +27762,6 @@ declare class ApiClient {
27396
27762
  create: {
27397
27763
  cloud: {
27398
27764
  cluster: CreateCloudClusterEndpoint;
27399
- dockerRegistry: CreateCloudDockerregistryEndpoint;
27400
27765
  integration: CreateCloudIntegrationEndpoint;
27401
27766
  };
27402
27767
  domain: CreateDomainEndpoint;
@@ -27425,7 +27790,6 @@ declare class ApiClient {
27425
27790
  put: {
27426
27791
  cloud: {
27427
27792
  cluster: PutCloudClusterEndpoint;
27428
- dockerRegistry: PutCloudDockerregistryEndpoint;
27429
27793
  integration: PutCloudIntegrationEndpoint;
27430
27794
  };
27431
27795
  project: PutProjectEndpoint;
@@ -27615,4 +27979,4 @@ type ApiClientOpts = {
27615
27979
  agent?: any;
27616
27980
  };
27617
27981
 
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 };
27982
+ 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 };