@northflank/js-client 0.8.1 → 0.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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,27 +1831,80 @@ 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" */
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" */
1805
1837
  'id': string;
1806
- /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
1807
- 'providerId': string;
1838
+ /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1839
+ 'nodeType': string;
1840
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
1841
+ 'oci'?: {
1842
+ 'ocpu': number;
1843
+ 'memory': number;
1844
+ };
1845
+ /** GCP specific settings. */
1846
+ 'gcp'?: {
1847
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
1848
+ 'enablePrivateNodes'?: boolean;
1849
+ };
1850
+ /** Azure specific settings. */
1851
+ 'azure'?: {
1852
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1853
+ 'systemPool'?: boolean;
1854
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
1855
+ 'enablePublicNodeIp'?: boolean;
1856
+ /** ID of the vnet subnet to use. */
1857
+ 'vnetSubnetId'?: string;
1858
+ };
1859
+ /** AWS specific node pool settings. */
1860
+ 'aws'?: {
1861
+ /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
1862
+ 'launchTemplate'?: {
1863
+ /** ID of the launch template to use. */
1864
+ 'id': string;
1865
+ /** Version of the launch template that should be used. */
1866
+ 'version': number;
1867
+ };
1868
+ };
1869
+ /** Number of nodes to the node pool should be provisioned with. Example: 3 */
1870
+ 'nodeCount': number;
1871
+ /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
1872
+ 'autoscaling'?: {
1873
+ 'enabled'?: boolean;
1874
+ 'min'?: number;
1875
+ 'max'?: number;
1876
+ };
1808
1877
  'computeResources'?: {
1809
1878
  'gpu'?: {
1810
- 'mig'?: {
1811
- 'enabled'?: boolean;
1812
- 'partitions'?: string[];
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
+ };
1813
1886
  };
1887
+ /** Number of GPUs per node. Example: 1 */
1888
+ 'count': number;
1889
+ /** Time-slicing configuration object. */
1814
1890
  'timeslicing'?: {
1891
+ /** Whether or not to enable time-slicing on the GPU. */
1815
1892
  'enabled'?: boolean;
1893
+ /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
1816
1894
  'numSlices'?: number;
1817
1895
  };
1818
1896
  };
1819
1897
  };
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
1898
  /** Configures node pool with preemptible / spot instances if enabled. */
1823
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[];
1824
1908
  /** Define basic workload scheduling restrictions for this node pool */
1825
1909
  'scheduling'?: {
1826
1910
  /** Allow jobs to schedule to this node pool */
@@ -1843,47 +1927,14 @@ type ListCloudClustersResult = {
1843
1927
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
1844
1928
  'labels'?: any;
1845
1929
  }[] | {
1846
- /** 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" */
1930
+ /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
1847
1931
  'id': string;
1848
- /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1849
- 'nodeType': string;
1850
- /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
1851
- 'oci'?: {
1852
- 'ocpu': number;
1853
- 'memory': number;
1854
- };
1855
- /** GCP specific settings. */
1856
- 'gcp'?: {
1857
- /** Set this flag to disable public IP assignment for nodes in this node pool. */
1858
- 'enablePrivateNodes'?: boolean;
1859
- };
1860
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1861
- 'systemPool'?: boolean;
1862
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
1863
- 'enablePublicNodeIp'?: boolean;
1864
- /** AWS specific node pool settings. */
1865
- 'aws'?: {
1866
- /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
1867
- 'launchTemplate'?: {
1868
- /** ID of the launch template to use. */
1869
- 'id': string;
1870
- /** Version of the launch template that should be used. */
1871
- 'version': number;
1872
- };
1873
- };
1874
- /** Number of nodes to the node pool should be provisioned with. Example: 3 */
1875
- 'nodeCount': number;
1876
- /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
1877
- 'autoscaling'?: {
1878
- 'enabled'?: boolean;
1879
- 'min'?: number;
1880
- 'max'?: number;
1881
- };
1882
- 'platform'?: {
1883
- 'architecture'?: 'amd64' | 'arm64';
1884
- };
1932
+ /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
1933
+ 'providerId': string;
1885
1934
  'computeResources'?: {
1886
1935
  'gpu'?: {
1936
+ /** Whether this node pool consists of GPU nodes . */
1937
+ 'supported'?: boolean;
1887
1938
  /** GPU type associated with the node pool. Example: "h100" */
1888
1939
  'type'?: string;
1889
1940
  'resources'?: {
@@ -1892,8 +1943,6 @@ type ListCloudClustersResult = {
1892
1943
  'sizeInGiB'?: number;
1893
1944
  };
1894
1945
  };
1895
- /** Number of GPUs per node. Example: 1 */
1896
- 'count'?: number;
1897
1946
  /** Multi-Instance GPU (MIG). configuration object. */
1898
1947
  'mig'?: {
1899
1948
  /** Whether or not to enable Multi-Instance GPU (MIG). */
@@ -1908,18 +1957,14 @@ type ListCloudClustersResult = {
1908
1957
  /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
1909
1958
  'numSlices'?: number;
1910
1959
  };
1960
+ /** Number of GPUs per node. Example: 1 */
1961
+ 'count'?: number;
1911
1962
  };
1912
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;
1913
1966
  /** Configures node pool with preemptible / spot instances if enabled. */
1914
1967
  'preemptible'?: boolean;
1915
- /** The disk type to use. */
1916
- 'diskType'?: string;
1917
- /** Disk size in GB Example: 100 */
1918
- 'diskSize': number;
1919
- /** Zones in which the node pool should be provisioned. */
1920
- 'availabilityZones': string[];
1921
- /** Subnets ids in which the node pool should be provisioned. */
1922
- 'subnets'?: string[];
1923
1968
  /** Define basic workload scheduling restrictions for this node pool */
1924
1969
  'scheduling'?: {
1925
1970
  /** Allow jobs to schedule to this node pool */
@@ -1955,8 +2000,23 @@ type ListCloudClustersResult = {
1955
2000
  /** Credentials to use for storing of images. Example: "my-registry-credentials" */
1956
2001
  'registryId'?: string;
1957
2002
  };
2003
+ /** Logging settings */
1958
2004
  'logging'?: {
1959
- '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
+ };
1960
2020
  };
1961
2021
  'vanityDomains'?: {
1962
2022
  'apps'?: {
@@ -2036,8 +2096,12 @@ type ListCloudClustersResult = {
2036
2096
  'teamId': string;
2037
2097
  }[];
2038
2098
  };
2039
- /** GCP specific data. Required when `provider` is `gcp`. */
2099
+ /** GCP specific data. Required when `provider` is `gcp` */
2040
2100
  'gcp'?: {
2101
+ 'networking'?: {
2102
+ 'network'?: string;
2103
+ 'subnetwork'?: string;
2104
+ };
2041
2105
  'enableAuthorizedIpRanges'?: boolean;
2042
2106
  'authorizedIpRanges'?: string[];
2043
2107
  /** GCP Project ID */
@@ -2048,7 +2112,7 @@ type ListCloudClustersResult = {
2048
2112
  'enablePublicAccessCidrs'?: boolean;
2049
2113
  'publicAccessCidrs'?: string[];
2050
2114
  'subnetConfiguration'?: {
2051
- /** The mode of the AWS subnet */
2115
+ /** The mode of the AWS subnet configuration */
2052
2116
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
2053
2117
  /** Id of the VPC */
2054
2118
  'vpcId'?: string;
@@ -2068,6 +2132,16 @@ type ListCloudClustersResult = {
2068
2132
  };
2069
2133
  /** Azure specific data. Required when `provider` is `azure`. */
2070
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
+ };
2071
2145
  'enableAuthorizedIpRanges'?: boolean;
2072
2146
  'authorizedIpRanges'?: string[];
2073
2147
  };
@@ -2133,27 +2207,70 @@ type CreateCloudClusterResult = {
2133
2207
  'kubernetesName': string;
2134
2208
  }[];
2135
2209
  };
2210
+ /** An array of node pools for BYOC or BYOK. */
2136
2211
  'nodePools': {
2137
- /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
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" */
2138
2213
  'id': string;
2139
- /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
2140
- 'providerId': string;
2214
+ /** Machine type to be used by the node pool. Example: "n2-standard-8" */
2215
+ 'nodeType': string;
2216
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
2217
+ 'oci'?: {
2218
+ 'ocpu': number;
2219
+ 'memory': number;
2220
+ };
2221
+ /** GCP specific settings. */
2222
+ 'gcp'?: {
2223
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
2224
+ 'enablePrivateNodes'?: boolean;
2225
+ };
2226
+ /** Azure specific settings. */
2227
+ 'azure'?: {
2228
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2229
+ 'systemPool'?: boolean;
2230
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
2231
+ 'enablePublicNodeIp'?: boolean;
2232
+ /** ID of the vnet subnet to use. */
2233
+ 'vnetSubnetId'?: string;
2234
+ };
2235
+ /** AWS specific node pool settings. */
2236
+ 'aws'?: {
2237
+ /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
2238
+ 'launchTemplate'?: {
2239
+ /** ID of the launch template to use. */
2240
+ 'id': string;
2241
+ /** Version of the launch template that should be used. */
2242
+ 'version': number;
2243
+ };
2244
+ };
2245
+ /** Number of nodes to the node pool should be provisioned with. Example: 3 */
2246
+ 'nodeCount': number;
2247
+ /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
2248
+ 'autoscaling'?: {
2249
+ 'enabled'?: boolean;
2250
+ 'min'?: number;
2251
+ 'max'?: number;
2252
+ };
2141
2253
  'computeResources'?: {
2142
2254
  'gpu'?: {
2143
- 'mig'?: {
2144
- 'enabled'?: boolean;
2145
- 'partitions'?: string[];
2146
- };
2255
+ /** Time-slicing configuration object. */
2147
2256
  'timeslicing'?: {
2257
+ /** Whether or not to enable time-slicing on the GPU. */
2148
2258
  'enabled'?: boolean;
2259
+ /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
2149
2260
  'numSlices'?: number;
2150
2261
  };
2151
2262
  };
2152
2263
  };
2153
- /** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
2154
- 'defaultPool'?: boolean;
2155
2264
  /** Configures node pool with preemptible / spot instances if enabled. */
2156
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[];
2157
2274
  /** Define basic workload scheduling restrictions for this node pool */
2158
2275
  'scheduling'?: {
2159
2276
  /** Allow jobs to schedule to this node pool */
@@ -2176,47 +2293,22 @@ type CreateCloudClusterResult = {
2176
2293
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
2177
2294
  'labels'?: any;
2178
2295
  }[] | {
2179
- /** 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" */
2296
+ /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
2180
2297
  'id': string;
2181
- /** Machine type to be used by the node pool. Example: "n2-standard-8" */
2182
- 'nodeType': string;
2183
- /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
2184
- 'oci'?: {
2185
- 'ocpu': number;
2186
- 'memory': number;
2187
- };
2188
- /** GCP specific settings. */
2189
- 'gcp'?: {
2190
- /** Set this flag to disable public IP assignment for nodes in this node pool. */
2191
- 'enablePrivateNodes'?: boolean;
2192
- };
2193
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2194
- 'systemPool'?: boolean;
2195
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
2196
- 'enablePublicNodeIp'?: boolean;
2197
- /** AWS specific node pool settings. */
2198
- 'aws'?: {
2199
- /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
2200
- 'launchTemplate'?: {
2201
- /** ID of the launch template to use. */
2202
- 'id': string;
2203
- /** Version of the launch template that should be used. */
2204
- 'version': number;
2205
- };
2206
- };
2207
- /** Number of nodes to the node pool should be provisioned with. Example: 3 */
2208
- 'nodeCount': number;
2209
- /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
2210
- 'autoscaling'?: {
2211
- 'enabled'?: boolean;
2212
- 'min'?: number;
2213
- 'max'?: number;
2214
- };
2215
- 'platform'?: {
2216
- 'architecture'?: 'amd64' | 'arm64';
2217
- };
2298
+ /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
2299
+ 'providerId': string;
2218
2300
  'computeResources'?: {
2219
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
+ };
2220
2312
  /** Multi-Instance GPU (MIG). configuration object. */
2221
2313
  'mig'?: {
2222
2314
  /** Whether or not to enable Multi-Instance GPU (MIG). */
@@ -2231,17 +2323,14 @@ type CreateCloudClusterResult = {
2231
2323
  /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
2232
2324
  'numSlices'?: number;
2233
2325
  };
2326
+ /** Number of GPUs per node. Example: 1 */
2327
+ 'count'?: number;
2234
2328
  };
2235
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;
2236
2332
  /** Configures node pool with preemptible / spot instances if enabled. */
2237
2333
  'preemptible'?: boolean;
2238
- /** The disk type to use. */
2239
- 'diskType'?: string;
2240
- /** Disk size in GB Example: 100 */
2241
- 'diskSize': number;
2242
- /** Zones in which the node pool should be provisioned. */
2243
- 'availabilityZones': string[];
2244
- 'subnets'?: string[];
2245
2334
  /** Define basic workload scheduling restrictions for this node pool */
2246
2335
  'scheduling'?: {
2247
2336
  /** Allow jobs to schedule to this node pool */
@@ -2277,15 +2366,25 @@ type CreateCloudClusterResult = {
2277
2366
  /** Credentials to use for storing of images. Example: "my-registry-credentials" */
2278
2367
  'registryId'?: string;
2279
2368
  };
2369
+ /** Logging settings */
2280
2370
  'logging'?: {
2281
- 'mode'?: 'paas' | 'loki';
2282
- /** Required data for the loki mode setting. */
2371
+ 'mode'?: 'paas';
2372
+ } | {
2373
+ 'mode': 'loki';
2283
2374
  'loki'?: {
2375
+ 'storageType': 's3';
2284
2376
  's3BucketName': string;
2285
2377
  's3AccessKey': string;
2286
2378
  's3SecretKey': string;
2287
2379
  's3Region': string;
2288
2380
  };
2381
+ } | {
2382
+ 'mode': 'loki';
2383
+ 'loki'?: {
2384
+ 'storageType': 'gcs';
2385
+ 'gcsBucketName': string;
2386
+ 'gcpIntegrationId': string;
2387
+ };
2289
2388
  };
2290
2389
  'vanityDomains'?: {
2291
2390
  'apps'?: {
@@ -2366,8 +2465,12 @@ type CreateCloudClusterResult = {
2366
2465
  'teamId': string;
2367
2466
  }[];
2368
2467
  };
2369
- /** GCP specific data. Required when `provider` is `gcp`. */
2468
+ /** GCP specific data. Required when `provider` is `gcp` */
2370
2469
  'gcp'?: {
2470
+ 'networking'?: {
2471
+ 'network'?: string;
2472
+ 'subnetwork'?: string;
2473
+ };
2371
2474
  'enableAuthorizedIpRanges'?: boolean;
2372
2475
  'authorizedIpRanges'?: string[];
2373
2476
  /** GCP Project ID */
@@ -2378,7 +2481,7 @@ type CreateCloudClusterResult = {
2378
2481
  'enablePublicAccessCidrs'?: boolean;
2379
2482
  'publicAccessCidrs'?: string[];
2380
2483
  'subnetConfiguration'?: {
2381
- /** The mode of the AWS subnet */
2484
+ /** The mode of the AWS subnet configuration */
2382
2485
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
2383
2486
  /** Id of the VPC */
2384
2487
  'vpcId'?: string;
@@ -2398,6 +2501,16 @@ type CreateCloudClusterResult = {
2398
2501
  };
2399
2502
  /** Azure specific data. Required when `provider` is `azure`. */
2400
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
+ };
2401
2514
  'enableAuthorizedIpRanges'?: boolean;
2402
2515
  'authorizedIpRanges'?: string[];
2403
2516
  };
@@ -2458,50 +2571,9 @@ type CreateCloudClusterData = {
2458
2571
  'kubernetesName': string;
2459
2572
  }[];
2460
2573
  };
2574
+ /** An array of node pools for BYOC or BYOK. */
2461
2575
  'nodePools': {
2462
- /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
2463
- 'id': string;
2464
- /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
2465
- 'providerId': string;
2466
- 'computeResources'?: {
2467
- 'gpu'?: {
2468
- 'mig'?: {
2469
- 'enabled'?: boolean;
2470
- 'partitions'?: string[];
2471
- };
2472
- 'timeslicing'?: {
2473
- 'enabled'?: boolean;
2474
- 'numSlices'?: number;
2475
- };
2476
- };
2477
- };
2478
- /** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
2479
- 'defaultPool'?: boolean;
2480
- /** Configures node pool with preemptible / spot instances if enabled. */
2481
- 'preemptible'?: boolean;
2482
- /** Define basic workload scheduling restrictions for this node pool */
2483
- 'scheduling'?: {
2484
- /** Allow jobs to schedule to this node pool */
2485
- 'allowJobs'?: boolean;
2486
- /** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
2487
- 'onlyGpuJobs'?: boolean;
2488
- /** Allow services to schedule to this node pool */
2489
- 'allowServices'?: boolean;
2490
- /** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
2491
- 'onlyGpuServices'?: boolean;
2492
- /** Allow addons to schedule to this node pool */
2493
- 'allowAddons'?: boolean;
2494
- /** Allow builds to schedule to this node pool */
2495
- 'allowBuilds'?: boolean;
2496
- /** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
2497
- 'onlyGpuBuilds'?: boolean;
2498
- /** Allow the placement of Ceph pods */
2499
- 'allowCeph'?: boolean;
2500
- };
2501
- /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
2502
- 'labels'?: any;
2503
- }[] | {
2504
- /** 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" */
2505
2577
  'id': string;
2506
2578
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
2507
2579
  'nodeType': string;
@@ -2515,10 +2587,15 @@ type CreateCloudClusterData = {
2515
2587
  /** Set this flag to disable public IP assignment for nodes in this node pool. */
2516
2588
  'enablePrivateNodes'?: boolean;
2517
2589
  };
2518
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2519
- 'systemPool'?: boolean;
2520
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
2521
- 'enablePublicNodeIp'?: boolean;
2590
+ /** Azure specific settings. */
2591
+ 'azure'?: {
2592
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2593
+ 'systemPool'?: boolean;
2594
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
2595
+ 'enablePublicNodeIp'?: boolean;
2596
+ /** ID of the vnet subnet to use. */
2597
+ 'vnetSubnetId'?: string;
2598
+ };
2522
2599
  /** AWS specific node pool settings. */
2523
2600
  'aws'?: {
2524
2601
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -2537,11 +2614,65 @@ type CreateCloudClusterData = {
2537
2614
  'min'?: number;
2538
2615
  'max'?: number;
2539
2616
  };
2540
- 'platform'?: {
2541
- '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;
2542
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;
2543
2664
  'computeResources'?: {
2544
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
+ };
2545
2676
  /** Multi-Instance GPU (MIG). configuration object. */
2546
2677
  'mig'?: {
2547
2678
  /** Whether or not to enable Multi-Instance GPU (MIG). */
@@ -2556,17 +2687,14 @@ type CreateCloudClusterData = {
2556
2687
  /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
2557
2688
  'numSlices'?: number;
2558
2689
  };
2690
+ /** Number of GPUs per node. Example: 1 */
2691
+ 'count'?: number;
2559
2692
  };
2560
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;
2561
2696
  /** Configures node pool with preemptible / spot instances if enabled. */
2562
2697
  'preemptible'?: boolean;
2563
- /** The disk type to use. */
2564
- 'diskType'?: string;
2565
- /** Disk size in GB Example: 100 */
2566
- 'diskSize': number;
2567
- /** Zones in which the node pool should be provisioned. */
2568
- 'availabilityZones': string[];
2569
- 'subnets'?: string[];
2570
2698
  /** Define basic workload scheduling restrictions for this node pool */
2571
2699
  'scheduling'?: {
2572
2700
  /** Allow jobs to schedule to this node pool */
@@ -2602,15 +2730,25 @@ type CreateCloudClusterData = {
2602
2730
  /** Credentials to use for storing of images. Example: "my-registry-credentials" */
2603
2731
  'registryId'?: string;
2604
2732
  };
2733
+ /** Logging settings */
2605
2734
  'logging'?: {
2606
- 'mode'?: 'paas' | 'loki';
2607
- /** Required data for the loki mode setting. */
2735
+ 'mode'?: 'paas';
2736
+ } | {
2737
+ 'mode': 'loki';
2608
2738
  'loki'?: {
2739
+ 'storageType': 's3';
2609
2740
  's3BucketName': string;
2610
2741
  's3AccessKey': string;
2611
2742
  's3SecretKey': string;
2612
2743
  's3Region': string;
2613
2744
  };
2745
+ } | {
2746
+ 'mode': 'loki';
2747
+ 'loki'?: {
2748
+ 'storageType': 'gcs';
2749
+ 'gcsBucketName': string;
2750
+ 'gcpIntegrationId': string;
2751
+ };
2614
2752
  };
2615
2753
  'vanityDomains'?: {
2616
2754
  'apps'?: {
@@ -2691,8 +2829,12 @@ type CreateCloudClusterData = {
2691
2829
  'teamId': string;
2692
2830
  }[];
2693
2831
  };
2694
- /** GCP specific data. Required when `provider` is `gcp`. */
2832
+ /** GCP specific data. Required when `provider` is `gcp` */
2695
2833
  'gcp'?: {
2834
+ 'networking'?: {
2835
+ 'network'?: string;
2836
+ 'subnetwork'?: string;
2837
+ };
2696
2838
  'enableAuthorizedIpRanges'?: boolean;
2697
2839
  'authorizedIpRanges'?: string[];
2698
2840
  /** GCP Project ID */
@@ -2703,7 +2845,7 @@ type CreateCloudClusterData = {
2703
2845
  'enablePublicAccessCidrs'?: boolean;
2704
2846
  'publicAccessCidrs'?: string[];
2705
2847
  'subnetConfiguration'?: {
2706
- /** The mode of the AWS subnet */
2848
+ /** The mode of the AWS subnet configuration */
2707
2849
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
2708
2850
  /** Id of the VPC */
2709
2851
  'vpcId'?: string;
@@ -2723,6 +2865,16 @@ type CreateCloudClusterData = {
2723
2865
  };
2724
2866
  /** Azure specific data. Required when `provider` is `azure`. */
2725
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
+ };
2726
2878
  'enableAuthorizedIpRanges'?: boolean;
2727
2879
  'authorizedIpRanges'?: string[];
2728
2880
  };
@@ -2771,27 +2923,70 @@ type PutCloudClusterResult = {
2771
2923
  'kubernetesName': string;
2772
2924
  }[];
2773
2925
  };
2926
+ /** An array of node pools for BYOC or BYOK. */
2774
2927
  'nodePools': {
2775
- /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
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" */
2776
2929
  'id': string;
2777
- /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
2778
- 'providerId': string;
2930
+ /** Machine type to be used by the node pool. Example: "n2-standard-8" */
2931
+ 'nodeType': string;
2932
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
2933
+ 'oci'?: {
2934
+ 'ocpu': number;
2935
+ 'memory': number;
2936
+ };
2937
+ /** GCP specific settings. */
2938
+ 'gcp'?: {
2939
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
2940
+ 'enablePrivateNodes'?: boolean;
2941
+ };
2942
+ /** Azure specific settings. */
2943
+ 'azure'?: {
2944
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2945
+ 'systemPool'?: boolean;
2946
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
2947
+ 'enablePublicNodeIp'?: boolean;
2948
+ /** ID of the vnet subnet to use. */
2949
+ 'vnetSubnetId'?: string;
2950
+ };
2951
+ /** AWS specific node pool settings. */
2952
+ 'aws'?: {
2953
+ /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
2954
+ 'launchTemplate'?: {
2955
+ /** ID of the launch template to use. */
2956
+ 'id': string;
2957
+ /** Version of the launch template that should be used. */
2958
+ 'version': number;
2959
+ };
2960
+ };
2961
+ /** Number of nodes to the node pool should be provisioned with. Example: 3 */
2962
+ 'nodeCount': number;
2963
+ /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
2964
+ 'autoscaling'?: {
2965
+ 'enabled'?: boolean;
2966
+ 'min'?: number;
2967
+ 'max'?: number;
2968
+ };
2779
2969
  'computeResources'?: {
2780
2970
  'gpu'?: {
2781
- 'mig'?: {
2782
- 'enabled'?: boolean;
2783
- 'partitions'?: string[];
2784
- };
2971
+ /** Time-slicing configuration object. */
2785
2972
  'timeslicing'?: {
2973
+ /** Whether or not to enable time-slicing on the GPU. */
2786
2974
  'enabled'?: boolean;
2975
+ /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
2787
2976
  'numSlices'?: number;
2788
2977
  };
2789
2978
  };
2790
2979
  };
2791
- /** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
2792
- 'defaultPool'?: boolean;
2793
2980
  /** Configures node pool with preemptible / spot instances if enabled. */
2794
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[];
2795
2990
  /** Define basic workload scheduling restrictions for this node pool */
2796
2991
  'scheduling'?: {
2797
2992
  /** Allow jobs to schedule to this node pool */
@@ -2814,47 +3009,22 @@ type PutCloudClusterResult = {
2814
3009
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
2815
3010
  'labels'?: any;
2816
3011
  }[] | {
2817
- /** 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" */
3012
+ /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
2818
3013
  'id': string;
2819
- /** Machine type to be used by the node pool. Example: "n2-standard-8" */
2820
- 'nodeType': string;
2821
- /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
2822
- 'oci'?: {
2823
- 'ocpu': number;
2824
- 'memory': number;
2825
- };
2826
- /** GCP specific settings. */
2827
- 'gcp'?: {
2828
- /** Set this flag to disable public IP assignment for nodes in this node pool. */
2829
- 'enablePrivateNodes'?: boolean;
2830
- };
2831
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2832
- 'systemPool'?: boolean;
2833
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
2834
- 'enablePublicNodeIp'?: boolean;
2835
- /** AWS specific node pool settings. */
2836
- 'aws'?: {
2837
- /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
2838
- 'launchTemplate'?: {
2839
- /** ID of the launch template to use. */
2840
- 'id': string;
2841
- /** Version of the launch template that should be used. */
2842
- 'version': number;
2843
- };
2844
- };
2845
- /** Number of nodes to the node pool should be provisioned with. Example: 3 */
2846
- 'nodeCount': number;
2847
- /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
2848
- 'autoscaling'?: {
2849
- 'enabled'?: boolean;
2850
- 'min'?: number;
2851
- 'max'?: number;
2852
- };
2853
- 'platform'?: {
2854
- 'architecture'?: 'amd64' | 'arm64';
2855
- };
3014
+ /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
3015
+ 'providerId': string;
2856
3016
  'computeResources'?: {
2857
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
+ };
2858
3028
  /** Multi-Instance GPU (MIG). configuration object. */
2859
3029
  'mig'?: {
2860
3030
  /** Whether or not to enable Multi-Instance GPU (MIG). */
@@ -2869,17 +3039,14 @@ type PutCloudClusterResult = {
2869
3039
  /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
2870
3040
  'numSlices'?: number;
2871
3041
  };
3042
+ /** Number of GPUs per node. Example: 1 */
3043
+ 'count'?: number;
2872
3044
  };
2873
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;
2874
3048
  /** Configures node pool with preemptible / spot instances if enabled. */
2875
3049
  'preemptible'?: boolean;
2876
- /** The disk type to use. */
2877
- 'diskType'?: string;
2878
- /** Disk size in GB Example: 100 */
2879
- 'diskSize': number;
2880
- /** Zones in which the node pool should be provisioned. */
2881
- 'availabilityZones': string[];
2882
- 'subnets'?: string[];
2883
3050
  /** Define basic workload scheduling restrictions for this node pool */
2884
3051
  'scheduling'?: {
2885
3052
  /** Allow jobs to schedule to this node pool */
@@ -2915,15 +3082,25 @@ type PutCloudClusterResult = {
2915
3082
  /** Credentials to use for storing of images. Example: "my-registry-credentials" */
2916
3083
  'registryId'?: string;
2917
3084
  };
3085
+ /** Logging settings */
2918
3086
  'logging'?: {
2919
- 'mode'?: 'paas' | 'loki';
2920
- /** Required data for the loki mode setting. */
3087
+ 'mode'?: 'paas';
3088
+ } | {
3089
+ 'mode': 'loki';
2921
3090
  'loki'?: {
3091
+ 'storageType': 's3';
2922
3092
  's3BucketName': string;
2923
3093
  's3AccessKey': string;
2924
3094
  's3SecretKey': string;
2925
3095
  's3Region': string;
2926
3096
  };
3097
+ } | {
3098
+ 'mode': 'loki';
3099
+ 'loki'?: {
3100
+ 'storageType': 'gcs';
3101
+ 'gcsBucketName': string;
3102
+ 'gcpIntegrationId': string;
3103
+ };
2927
3104
  };
2928
3105
  'vanityDomains'?: {
2929
3106
  'apps'?: {
@@ -3004,8 +3181,12 @@ type PutCloudClusterResult = {
3004
3181
  'teamId': string;
3005
3182
  }[];
3006
3183
  };
3007
- /** GCP specific data. Required when `provider` is `gcp`. */
3184
+ /** GCP specific data. Required when `provider` is `gcp` */
3008
3185
  'gcp'?: {
3186
+ 'networking'?: {
3187
+ 'network'?: string;
3188
+ 'subnetwork'?: string;
3189
+ };
3009
3190
  'enableAuthorizedIpRanges'?: boolean;
3010
3191
  'authorizedIpRanges'?: string[];
3011
3192
  /** GCP Project ID */
@@ -3016,7 +3197,7 @@ type PutCloudClusterResult = {
3016
3197
  'enablePublicAccessCidrs'?: boolean;
3017
3198
  'publicAccessCidrs'?: string[];
3018
3199
  'subnetConfiguration'?: {
3019
- /** The mode of the AWS subnet */
3200
+ /** The mode of the AWS subnet configuration */
3020
3201
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
3021
3202
  /** Id of the VPC */
3022
3203
  'vpcId'?: string;
@@ -3036,6 +3217,16 @@ type PutCloudClusterResult = {
3036
3217
  };
3037
3218
  /** Azure specific data. Required when `provider` is `azure`. */
3038
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
+ };
3039
3230
  'enableAuthorizedIpRanges'?: boolean;
3040
3231
  'authorizedIpRanges'?: string[];
3041
3232
  };
@@ -3096,27 +3287,70 @@ type PutCloudClusterData = {
3096
3287
  'kubernetesName': string;
3097
3288
  }[];
3098
3289
  };
3290
+ /** An array of node pools for BYOC or BYOK. */
3099
3291
  'nodePools': {
3100
- /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
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" */
3101
3293
  'id': string;
3102
- /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
3103
- 'providerId': string;
3294
+ /** Machine type to be used by the node pool. Example: "n2-standard-8" */
3295
+ 'nodeType': string;
3296
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
3297
+ 'oci'?: {
3298
+ 'ocpu': number;
3299
+ 'memory': number;
3300
+ };
3301
+ /** GCP specific settings. */
3302
+ 'gcp'?: {
3303
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
3304
+ 'enablePrivateNodes'?: boolean;
3305
+ };
3306
+ /** Azure specific settings. */
3307
+ 'azure'?: {
3308
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3309
+ 'systemPool'?: boolean;
3310
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
3311
+ 'enablePublicNodeIp'?: boolean;
3312
+ /** ID of the vnet subnet to use. */
3313
+ 'vnetSubnetId'?: string;
3314
+ };
3315
+ /** AWS specific node pool settings. */
3316
+ 'aws'?: {
3317
+ /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
3318
+ 'launchTemplate'?: {
3319
+ /** ID of the launch template to use. */
3320
+ 'id': string;
3321
+ /** Version of the launch template that should be used. */
3322
+ 'version': number;
3323
+ };
3324
+ };
3325
+ /** Number of nodes to the node pool should be provisioned with. Example: 3 */
3326
+ 'nodeCount': number;
3327
+ /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
3328
+ 'autoscaling'?: {
3329
+ 'enabled'?: boolean;
3330
+ 'min'?: number;
3331
+ 'max'?: number;
3332
+ };
3104
3333
  'computeResources'?: {
3105
3334
  'gpu'?: {
3106
- 'mig'?: {
3107
- 'enabled'?: boolean;
3108
- 'partitions'?: string[];
3109
- };
3335
+ /** Time-slicing configuration object. */
3110
3336
  'timeslicing'?: {
3337
+ /** Whether or not to enable time-slicing on the GPU. */
3111
3338
  'enabled'?: boolean;
3339
+ /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
3112
3340
  'numSlices'?: number;
3113
3341
  };
3114
3342
  };
3115
3343
  };
3116
- /** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
3117
- 'defaultPool'?: boolean;
3118
3344
  /** Configures node pool with preemptible / spot instances if enabled. */
3119
3345
  'preemptible'?: boolean;
3346
+ /** The disk type to use. */
3347
+ 'diskType'?: string;
3348
+ /** Disk size in GB Example: 100 */
3349
+ 'diskSize': number;
3350
+ /** Zones in which the node pool should be provisioned. */
3351
+ 'availabilityZones': string[];
3352
+ /** Subnets in which the node pool should be provisioned. Required if provider is `oci`. */
3353
+ 'subnets'?: string[];
3120
3354
  /** Define basic workload scheduling restrictions for this node pool */
3121
3355
  'scheduling'?: {
3122
3356
  /** Allow jobs to schedule to this node pool */
@@ -3139,47 +3373,22 @@ type PutCloudClusterData = {
3139
3373
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
3140
3374
  'labels'?: any;
3141
3375
  }[] | {
3142
- /** 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" */
3376
+ /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
3143
3377
  'id': string;
3144
- /** Machine type to be used by the node pool. Example: "n2-standard-8" */
3145
- 'nodeType': string;
3146
- /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
3147
- 'oci'?: {
3148
- 'ocpu': number;
3149
- 'memory': number;
3150
- };
3151
- /** GCP specific settings. */
3152
- 'gcp'?: {
3153
- /** Set this flag to disable public IP assignment for nodes in this node pool. */
3154
- 'enablePrivateNodes'?: boolean;
3155
- };
3156
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3157
- 'systemPool'?: boolean;
3158
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
3159
- 'enablePublicNodeIp'?: boolean;
3160
- /** AWS specific node pool settings. */
3161
- 'aws'?: {
3162
- /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
3163
- 'launchTemplate'?: {
3164
- /** ID of the launch template to use. */
3165
- 'id': string;
3166
- /** Version of the launch template that should be used. */
3167
- 'version': number;
3168
- };
3169
- };
3170
- /** Number of nodes to the node pool should be provisioned with. Example: 3 */
3171
- 'nodeCount': number;
3172
- /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
3173
- 'autoscaling'?: {
3174
- 'enabled'?: boolean;
3175
- 'min'?: number;
3176
- 'max'?: number;
3177
- };
3178
- 'platform'?: {
3179
- 'architecture'?: 'amd64' | 'arm64';
3180
- };
3378
+ /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
3379
+ 'providerId': string;
3181
3380
  'computeResources'?: {
3182
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
+ };
3183
3392
  /** Multi-Instance GPU (MIG). configuration object. */
3184
3393
  'mig'?: {
3185
3394
  /** Whether or not to enable Multi-Instance GPU (MIG). */
@@ -3194,17 +3403,14 @@ type PutCloudClusterData = {
3194
3403
  /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
3195
3404
  'numSlices'?: number;
3196
3405
  };
3406
+ /** Number of GPUs per node. Example: 1 */
3407
+ 'count'?: number;
3197
3408
  };
3198
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;
3199
3412
  /** Configures node pool with preemptible / spot instances if enabled. */
3200
3413
  'preemptible'?: boolean;
3201
- /** The disk type to use. */
3202
- 'diskType'?: string;
3203
- /** Disk size in GB Example: 100 */
3204
- 'diskSize': number;
3205
- /** Zones in which the node pool should be provisioned. */
3206
- 'availabilityZones': string[];
3207
- 'subnets'?: string[];
3208
3414
  /** Define basic workload scheduling restrictions for this node pool */
3209
3415
  'scheduling'?: {
3210
3416
  /** Allow jobs to schedule to this node pool */
@@ -3240,15 +3446,25 @@ type PutCloudClusterData = {
3240
3446
  /** Credentials to use for storing of images. Example: "my-registry-credentials" */
3241
3447
  'registryId'?: string;
3242
3448
  };
3449
+ /** Logging settings */
3243
3450
  'logging'?: {
3244
- 'mode'?: 'paas' | 'loki';
3245
- /** Required data for the loki mode setting. */
3451
+ 'mode'?: 'paas';
3452
+ } | {
3453
+ 'mode': 'loki';
3246
3454
  'loki'?: {
3455
+ 'storageType': 's3';
3247
3456
  's3BucketName': string;
3248
3457
  's3AccessKey': string;
3249
3458
  's3SecretKey': string;
3250
3459
  's3Region': string;
3251
3460
  };
3461
+ } | {
3462
+ 'mode': 'loki';
3463
+ 'loki'?: {
3464
+ 'storageType': 'gcs';
3465
+ 'gcsBucketName': string;
3466
+ 'gcpIntegrationId': string;
3467
+ };
3252
3468
  };
3253
3469
  'vanityDomains'?: {
3254
3470
  'apps'?: {
@@ -3329,8 +3545,12 @@ type PutCloudClusterData = {
3329
3545
  'teamId': string;
3330
3546
  }[];
3331
3547
  };
3332
- /** GCP specific data. Required when `provider` is `gcp`. */
3548
+ /** GCP specific data. Required when `provider` is `gcp` */
3333
3549
  'gcp'?: {
3550
+ 'networking'?: {
3551
+ 'network'?: string;
3552
+ 'subnetwork'?: string;
3553
+ };
3334
3554
  'enableAuthorizedIpRanges'?: boolean;
3335
3555
  'authorizedIpRanges'?: string[];
3336
3556
  /** GCP Project ID */
@@ -3341,7 +3561,7 @@ type PutCloudClusterData = {
3341
3561
  'enablePublicAccessCidrs'?: boolean;
3342
3562
  'publicAccessCidrs'?: string[];
3343
3563
  'subnetConfiguration'?: {
3344
- /** The mode of the AWS subnet */
3564
+ /** The mode of the AWS subnet configuration */
3345
3565
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
3346
3566
  /** Id of the VPC */
3347
3567
  'vpcId'?: string;
@@ -3361,6 +3581,16 @@ type PutCloudClusterData = {
3361
3581
  };
3362
3582
  /** Azure specific data. Required when `provider` is `azure`. */
3363
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
+ };
3364
3594
  'enableAuthorizedIpRanges'?: boolean;
3365
3595
  'authorizedIpRanges'?: string[];
3366
3596
  };
@@ -3409,49 +3639,8 @@ type GetCloudClusterResult = {
3409
3639
  'kubernetesName': string;
3410
3640
  }[];
3411
3641
  };
3642
+ /** An array of node pools for BYOC or BYOK. */
3412
3643
  'nodePools': {
3413
- /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
3414
- 'id': string;
3415
- /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
3416
- 'providerId': string;
3417
- 'computeResources'?: {
3418
- 'gpu'?: {
3419
- 'mig'?: {
3420
- 'enabled'?: boolean;
3421
- 'partitions'?: string[];
3422
- };
3423
- 'timeslicing'?: {
3424
- 'enabled'?: boolean;
3425
- 'numSlices'?: number;
3426
- };
3427
- };
3428
- };
3429
- /** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
3430
- 'defaultPool'?: boolean;
3431
- /** Configures node pool with preemptible / spot instances if enabled. */
3432
- 'preemptible'?: boolean;
3433
- /** Define basic workload scheduling restrictions for this node pool */
3434
- 'scheduling'?: {
3435
- /** Allow jobs to schedule to this node pool */
3436
- 'allowJobs'?: boolean;
3437
- /** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
3438
- 'onlyGpuJobs'?: boolean;
3439
- /** Allow services to schedule to this node pool */
3440
- 'allowServices'?: boolean;
3441
- /** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
3442
- 'onlyGpuServices'?: boolean;
3443
- /** Allow addons to schedule to this node pool */
3444
- 'allowAddons'?: boolean;
3445
- /** Allow builds to schedule to this node pool */
3446
- 'allowBuilds'?: boolean;
3447
- /** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
3448
- 'onlyGpuBuilds'?: boolean;
3449
- /** Allow the placement of Ceph pods */
3450
- 'allowCeph'?: boolean;
3451
- };
3452
- /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
3453
- 'labels'?: any;
3454
- }[] | {
3455
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" */
3456
3645
  'id': string;
3457
3646
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
@@ -3466,10 +3655,15 @@ type GetCloudClusterResult = {
3466
3655
  /** Set this flag to disable public IP assignment for nodes in this node pool. */
3467
3656
  'enablePrivateNodes'?: boolean;
3468
3657
  };
3469
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3470
- 'systemPool'?: boolean;
3471
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
3472
- 'enablePublicNodeIp'?: boolean;
3658
+ /** Azure specific settings. */
3659
+ 'azure'?: {
3660
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3661
+ 'systemPool'?: boolean;
3662
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
3663
+ 'enablePublicNodeIp'?: boolean;
3664
+ /** ID of the vnet subnet to use. */
3665
+ 'vnetSubnetId'?: string;
3666
+ };
3473
3667
  /** AWS specific node pool settings. */
3474
3668
  'aws'?: {
3475
3669
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -3488,11 +3682,65 @@ type GetCloudClusterResult = {
3488
3682
  'min'?: number;
3489
3683
  'max'?: number;
3490
3684
  };
3491
- 'platform'?: {
3492
- '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
+ };
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;
3493
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;
3494
3732
  'computeResources'?: {
3495
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
+ };
3496
3744
  /** Multi-Instance GPU (MIG). configuration object. */
3497
3745
  'mig'?: {
3498
3746
  /** Whether or not to enable Multi-Instance GPU (MIG). */
@@ -3507,17 +3755,14 @@ type GetCloudClusterResult = {
3507
3755
  /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
3508
3756
  'numSlices'?: number;
3509
3757
  };
3758
+ /** Number of GPUs per node. Example: 1 */
3759
+ 'count'?: number;
3510
3760
  };
3511
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;
3512
3764
  /** Configures node pool with preemptible / spot instances if enabled. */
3513
3765
  'preemptible'?: boolean;
3514
- /** The disk type to use. */
3515
- 'diskType'?: string;
3516
- /** Disk size in GB Example: 100 */
3517
- 'diskSize': number;
3518
- /** Zones in which the node pool should be provisioned. */
3519
- 'availabilityZones': string[];
3520
- 'subnets'?: string[];
3521
3766
  /** Define basic workload scheduling restrictions for this node pool */
3522
3767
  'scheduling'?: {
3523
3768
  /** Allow jobs to schedule to this node pool */
@@ -3553,15 +3798,25 @@ type GetCloudClusterResult = {
3553
3798
  /** Credentials to use for storing of images. Example: "my-registry-credentials" */
3554
3799
  'registryId'?: string;
3555
3800
  };
3801
+ /** Logging settings */
3556
3802
  'logging'?: {
3557
- 'mode'?: 'paas' | 'loki';
3558
- /** Required data for the loki mode setting. */
3803
+ 'mode'?: 'paas';
3804
+ } | {
3805
+ 'mode': 'loki';
3559
3806
  'loki'?: {
3807
+ 'storageType': 's3';
3560
3808
  's3BucketName': string;
3561
3809
  's3AccessKey': string;
3562
3810
  's3SecretKey': string;
3563
3811
  's3Region': string;
3564
3812
  };
3813
+ } | {
3814
+ 'mode': 'loki';
3815
+ 'loki'?: {
3816
+ 'storageType': 'gcs';
3817
+ 'gcsBucketName': string;
3818
+ 'gcpIntegrationId': string;
3819
+ };
3565
3820
  };
3566
3821
  'vanityDomains'?: {
3567
3822
  'apps'?: {
@@ -3642,8 +3897,12 @@ type GetCloudClusterResult = {
3642
3897
  'teamId': string;
3643
3898
  }[];
3644
3899
  };
3645
- /** GCP specific data. Required when `provider` is `gcp`. */
3900
+ /** GCP specific data. Required when `provider` is `gcp` */
3646
3901
  'gcp'?: {
3902
+ 'networking'?: {
3903
+ 'network'?: string;
3904
+ 'subnetwork'?: string;
3905
+ };
3647
3906
  'enableAuthorizedIpRanges'?: boolean;
3648
3907
  'authorizedIpRanges'?: string[];
3649
3908
  /** GCP Project ID */
@@ -3654,7 +3913,7 @@ type GetCloudClusterResult = {
3654
3913
  'enablePublicAccessCidrs'?: boolean;
3655
3914
  'publicAccessCidrs'?: string[];
3656
3915
  'subnetConfiguration'?: {
3657
- /** The mode of the AWS subnet */
3916
+ /** The mode of the AWS subnet configuration */
3658
3917
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
3659
3918
  /** Id of the VPC */
3660
3919
  'vpcId'?: string;
@@ -3674,6 +3933,16 @@ type GetCloudClusterResult = {
3674
3933
  };
3675
3934
  /** Azure specific data. Required when `provider` is `azure`. */
3676
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
+ };
3677
3946
  'enableAuthorizedIpRanges'?: boolean;
3678
3947
  'authorizedIpRanges'?: string[];
3679
3948
  };
@@ -3746,27 +4015,70 @@ type PatchCloudClusterResult = {
3746
4015
  'kubernetesName': string;
3747
4016
  }[];
3748
4017
  };
4018
+ /** An array of node pools for BYOC or BYOK. */
3749
4019
  'nodePools': {
3750
- /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
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" */
3751
4021
  'id': string;
3752
- /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
3753
- 'providerId': string;
4022
+ /** Machine type to be used by the node pool. Example: "n2-standard-8" */
4023
+ 'nodeType': string;
4024
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
4025
+ 'oci'?: {
4026
+ 'ocpu': number;
4027
+ 'memory': number;
4028
+ };
4029
+ /** GCP specific settings. */
4030
+ 'gcp'?: {
4031
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
4032
+ 'enablePrivateNodes'?: boolean;
4033
+ };
4034
+ /** Azure specific settings. */
4035
+ 'azure'?: {
4036
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
4037
+ 'systemPool'?: boolean;
4038
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
4039
+ 'enablePublicNodeIp'?: boolean;
4040
+ /** ID of the vnet subnet to use. */
4041
+ 'vnetSubnetId'?: string;
4042
+ };
4043
+ /** AWS specific node pool settings. */
4044
+ 'aws'?: {
4045
+ /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
4046
+ 'launchTemplate'?: {
4047
+ /** ID of the launch template to use. */
4048
+ 'id': string;
4049
+ /** Version of the launch template that should be used. */
4050
+ 'version': number;
4051
+ };
4052
+ };
4053
+ /** Number of nodes to the node pool should be provisioned with. Example: 3 */
4054
+ 'nodeCount': number;
4055
+ /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
4056
+ 'autoscaling'?: {
4057
+ 'enabled'?: boolean;
4058
+ 'min'?: number;
4059
+ 'max'?: number;
4060
+ };
3754
4061
  'computeResources'?: {
3755
4062
  'gpu'?: {
3756
- 'mig'?: {
3757
- 'enabled'?: boolean;
3758
- 'partitions'?: string[];
3759
- };
4063
+ /** Time-slicing configuration object. */
3760
4064
  'timeslicing'?: {
4065
+ /** Whether or not to enable time-slicing on the GPU. */
3761
4066
  'enabled'?: boolean;
4067
+ /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
3762
4068
  'numSlices'?: number;
3763
4069
  };
3764
4070
  };
3765
4071
  };
3766
- /** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
3767
- 'defaultPool'?: boolean;
3768
4072
  /** Configures node pool with preemptible / spot instances if enabled. */
3769
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[];
3770
4082
  /** Define basic workload scheduling restrictions for this node pool */
3771
4083
  'scheduling'?: {
3772
4084
  /** Allow jobs to schedule to this node pool */
@@ -3789,47 +4101,22 @@ type PatchCloudClusterResult = {
3789
4101
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
3790
4102
  'labels'?: any;
3791
4103
  }[] | {
3792
- /** 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" */
4104
+ /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
3793
4105
  'id': string;
3794
- /** Machine type to be used by the node pool. Example: "n2-standard-8" */
3795
- 'nodeType': string;
3796
- /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
3797
- 'oci'?: {
3798
- 'ocpu': number;
3799
- 'memory': number;
3800
- };
3801
- /** GCP specific settings. */
3802
- 'gcp'?: {
3803
- /** Set this flag to disable public IP assignment for nodes in this node pool. */
3804
- 'enablePrivateNodes'?: boolean;
3805
- };
3806
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3807
- 'systemPool'?: boolean;
3808
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
3809
- 'enablePublicNodeIp'?: boolean;
3810
- /** AWS specific node pool settings. */
3811
- 'aws'?: {
3812
- /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
3813
- 'launchTemplate'?: {
3814
- /** ID of the launch template to use. */
3815
- 'id': string;
3816
- /** Version of the launch template that should be used. */
3817
- 'version': number;
3818
- };
3819
- };
3820
- /** Number of nodes to the node pool should be provisioned with. Example: 3 */
3821
- 'nodeCount': number;
3822
- /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
3823
- 'autoscaling'?: {
3824
- 'enabled'?: boolean;
3825
- 'min'?: number;
3826
- 'max'?: number;
3827
- };
3828
- 'platform'?: {
3829
- 'architecture'?: 'amd64' | 'arm64';
3830
- };
4106
+ /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
4107
+ 'providerId': string;
3831
4108
  'computeResources'?: {
3832
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
+ };
3833
4120
  /** Multi-Instance GPU (MIG). configuration object. */
3834
4121
  'mig'?: {
3835
4122
  /** Whether or not to enable Multi-Instance GPU (MIG). */
@@ -3844,17 +4131,14 @@ type PatchCloudClusterResult = {
3844
4131
  /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
3845
4132
  'numSlices'?: number;
3846
4133
  };
4134
+ /** Number of GPUs per node. Example: 1 */
4135
+ 'count'?: number;
3847
4136
  };
3848
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;
3849
4140
  /** Configures node pool with preemptible / spot instances if enabled. */
3850
4141
  'preemptible'?: boolean;
3851
- /** The disk type to use. */
3852
- 'diskType'?: string;
3853
- /** Disk size in GB Example: 100 */
3854
- 'diskSize': number;
3855
- /** Zones in which the node pool should be provisioned. */
3856
- 'availabilityZones': string[];
3857
- 'subnets'?: string[];
3858
4142
  /** Define basic workload scheduling restrictions for this node pool */
3859
4143
  'scheduling'?: {
3860
4144
  /** Allow jobs to schedule to this node pool */
@@ -3890,15 +4174,25 @@ type PatchCloudClusterResult = {
3890
4174
  /** Credentials to use for storing of images. Example: "my-registry-credentials" */
3891
4175
  'registryId'?: string;
3892
4176
  };
4177
+ /** Logging settings */
3893
4178
  'logging'?: {
3894
- 'mode'?: 'paas' | 'loki';
3895
- /** Required data for the loki mode setting. */
4179
+ 'mode'?: 'paas';
4180
+ } | {
4181
+ 'mode': 'loki';
3896
4182
  'loki'?: {
4183
+ 'storageType': 's3';
3897
4184
  's3BucketName': string;
3898
4185
  's3AccessKey': string;
3899
4186
  's3SecretKey': string;
3900
4187
  's3Region': string;
3901
4188
  };
4189
+ } | {
4190
+ 'mode': 'loki';
4191
+ 'loki'?: {
4192
+ 'storageType': 'gcs';
4193
+ 'gcsBucketName': string;
4194
+ 'gcpIntegrationId': string;
4195
+ };
3902
4196
  };
3903
4197
  'vanityDomains'?: {
3904
4198
  'apps'?: {
@@ -3979,8 +4273,12 @@ type PatchCloudClusterResult = {
3979
4273
  'teamId': string;
3980
4274
  }[];
3981
4275
  };
3982
- /** GCP specific data. Required when `provider` is `gcp`. */
4276
+ /** GCP specific data. Required when `provider` is `gcp` */
3983
4277
  'gcp'?: {
4278
+ 'networking'?: {
4279
+ 'network'?: string;
4280
+ 'subnetwork'?: string;
4281
+ };
3984
4282
  'enableAuthorizedIpRanges'?: boolean;
3985
4283
  'authorizedIpRanges'?: string[];
3986
4284
  /** GCP Project ID */
@@ -3991,7 +4289,7 @@ type PatchCloudClusterResult = {
3991
4289
  'enablePublicAccessCidrs'?: boolean;
3992
4290
  'publicAccessCidrs'?: string[];
3993
4291
  'subnetConfiguration'?: {
3994
- /** The mode of the AWS subnet */
4292
+ /** The mode of the AWS subnet configuration */
3995
4293
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
3996
4294
  /** Id of the VPC */
3997
4295
  'vpcId'?: string;
@@ -4011,6 +4309,16 @@ type PatchCloudClusterResult = {
4011
4309
  };
4012
4310
  /** Azure specific data. Required when `provider` is `azure`. */
4013
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
+ };
4014
4322
  'enableAuthorizedIpRanges'?: boolean;
4015
4323
  'authorizedIpRanges'?: string[];
4016
4324
  };
@@ -4051,49 +4359,8 @@ type PatchCloudClusterData = {
4051
4359
  'description'?: string;
4052
4360
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
4053
4361
  'kubernetesVersion'?: string;
4362
+ /** An array of node pools for BYOC or BYOK. */
4054
4363
  'nodePools'?: {
4055
- /** ID of the node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "node-pool-1" */
4056
- 'id': string;
4057
- /** ID which identifies kubernetes nodes as belonging to this pool. Example: "6aa96121-0345-43ad-bade-af36d540c222" */
4058
- 'providerId': string;
4059
- 'computeResources'?: {
4060
- 'gpu'?: {
4061
- 'mig'?: {
4062
- 'enabled'?: boolean;
4063
- 'partitions'?: string[];
4064
- };
4065
- 'timeslicing'?: {
4066
- 'enabled'?: boolean;
4067
- 'numSlices'?: number;
4068
- };
4069
- };
4070
- };
4071
- /** Fallback pool to which nodes which do not match any defined node pool are assigned. Exactly one default pool is required. */
4072
- 'defaultPool'?: boolean;
4073
- /** Configures node pool with preemptible / spot instances if enabled. */
4074
- 'preemptible'?: boolean;
4075
- /** Define basic workload scheduling restrictions for this node pool */
4076
- 'scheduling'?: {
4077
- /** Allow jobs to schedule to this node pool */
4078
- 'allowJobs'?: boolean;
4079
- /** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
4080
- 'onlyGpuJobs'?: boolean;
4081
- /** Allow services to schedule to this node pool */
4082
- 'allowServices'?: boolean;
4083
- /** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
4084
- 'onlyGpuServices'?: boolean;
4085
- /** Allow addons to schedule to this node pool */
4086
- 'allowAddons'?: boolean;
4087
- /** Allow builds to schedule to this node pool */
4088
- 'allowBuilds'?: boolean;
4089
- /** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
4090
- 'onlyGpuBuilds'?: boolean;
4091
- /** Allow the placement of Ceph pods */
4092
- 'allowCeph'?: boolean;
4093
- };
4094
- /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
4095
- 'labels'?: any;
4096
- }[] | {
4097
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" */
4098
4365
  'id': string;
4099
4366
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
@@ -4108,10 +4375,15 @@ type PatchCloudClusterData = {
4108
4375
  /** Set this flag to disable public IP assignment for nodes in this node pool. */
4109
4376
  'enablePrivateNodes'?: boolean;
4110
4377
  };
4111
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
4112
- 'systemPool'?: boolean;
4113
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
4114
- 'enablePublicNodeIp'?: boolean;
4378
+ /** Azure specific settings. */
4379
+ 'azure'?: {
4380
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
4381
+ 'systemPool'?: boolean;
4382
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
4383
+ 'enablePublicNodeIp'?: boolean;
4384
+ /** ID of the vnet subnet to use. */
4385
+ 'vnetSubnetId'?: string;
4386
+ };
4115
4387
  /** AWS specific node pool settings. */
4116
4388
  'aws'?: {
4117
4389
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -4130,18 +4402,8 @@ type PatchCloudClusterData = {
4130
4402
  'min'?: number;
4131
4403
  'max'?: number;
4132
4404
  };
4133
- 'platform'?: {
4134
- 'architecture'?: 'amd64' | 'arm64';
4135
- };
4136
4405
  'computeResources'?: {
4137
4406
  'gpu'?: {
4138
- /** Multi-Instance GPU (MIG). configuration object. */
4139
- 'mig'?: {
4140
- /** Whether or not to enable Multi-Instance GPU (MIG). */
4141
- 'enabled'?: boolean;
4142
- /** The partitions to configure on the GPU. */
4143
- 'partitions'?: string[];
4144
- };
4145
4407
  /** Time-slicing configuration object. */
4146
4408
  'timeslicing'?: {
4147
4409
  /** Whether or not to enable time-slicing on the GPU. */
@@ -4159,6 +4421,7 @@ type PatchCloudClusterData = {
4159
4421
  'diskSize': number;
4160
4422
  /** Zones in which the node pool should be provisioned. */
4161
4423
  'availabilityZones': string[];
4424
+ /** Subnets in which the node pool should be provisioned. Required if provider is `oci`. */
4162
4425
  'subnets'?: string[];
4163
4426
  /** Define basic workload scheduling restrictions for this node pool */
4164
4427
  'scheduling'?: {
@@ -4181,6 +4444,66 @@ type PatchCloudClusterData = {
4181
4444
  };
4182
4445
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
4183
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;
4452
+ 'computeResources'?: {
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
+ };
4464
+ /** Multi-Instance GPU (MIG). configuration object. */
4465
+ 'mig'?: {
4466
+ /** Whether or not to enable Multi-Instance GPU (MIG). */
4467
+ 'enabled'?: boolean;
4468
+ /** The partitions to configure on the GPU. */
4469
+ 'partitions'?: string[];
4470
+ };
4471
+ /** Time-slicing configuration object. */
4472
+ 'timeslicing'?: {
4473
+ /** Whether or not to enable time-slicing on the GPU. */
4474
+ 'enabled'?: boolean;
4475
+ /** Sets the amount of slices per GPU, e.g. how many pods may be scheduled concurrently on each GPU. */
4476
+ 'numSlices'?: number;
4477
+ };
4478
+ /** Number of GPUs per node. Example: 1 */
4479
+ 'count'?: number;
4480
+ };
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;
4484
+ /** Configures node pool with preemptible / spot instances if enabled. */
4485
+ 'preemptible'?: boolean;
4486
+ /** Define basic workload scheduling restrictions for this node pool */
4487
+ 'scheduling'?: {
4488
+ /** Allow jobs to schedule to this node pool */
4489
+ 'allowJobs'?: boolean;
4490
+ /** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
4491
+ 'onlyGpuJobs'?: boolean;
4492
+ /** Allow services to schedule to this node pool */
4493
+ 'allowServices'?: boolean;
4494
+ /** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
4495
+ 'onlyGpuServices'?: boolean;
4496
+ /** Allow addons to schedule to this node pool */
4497
+ 'allowAddons'?: boolean;
4498
+ /** Allow builds to schedule to this node pool */
4499
+ 'allowBuilds'?: boolean;
4500
+ /** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
4501
+ 'onlyGpuBuilds'?: boolean;
4502
+ /** Allow the placement of Ceph pods */
4503
+ 'allowCeph'?: boolean;
4504
+ };
4505
+ /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
4506
+ 'labels'?: any;
4184
4507
  }[];
4185
4508
  'settings'?: {
4186
4509
  'builds'?: {
@@ -4195,9 +4518,25 @@ type PatchCloudClusterData = {
4195
4518
  /** Credentials to use for storing of images. Example: "my-registry-credentials" */
4196
4519
  'registryId'?: string;
4197
4520
  };
4521
+ /** Logging settings */
4198
4522
  'logging'?: {
4199
- 'mode'?: 'paas' | 'loki';
4200
- '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
+ };
4201
4540
  };
4202
4541
  'vanityDomains'?: {
4203
4542
  'apps'?: {
@@ -4278,8 +4617,12 @@ type PatchCloudClusterData = {
4278
4617
  'teamId': string;
4279
4618
  }[];
4280
4619
  };
4281
- /** GCP specific data. Required when `provider` is `gcp`. */
4620
+ /** GCP specific data. Required when `provider` is `gcp` */
4282
4621
  'gcp'?: {
4622
+ 'networking'?: {
4623
+ 'network'?: string;
4624
+ 'subnetwork'?: string;
4625
+ };
4283
4626
  'enableAuthorizedIpRanges'?: boolean;
4284
4627
  'authorizedIpRanges'?: string[];
4285
4628
  /** GCP Project ID */
@@ -4290,7 +4633,7 @@ type PatchCloudClusterData = {
4290
4633
  'enablePublicAccessCidrs'?: boolean;
4291
4634
  'publicAccessCidrs'?: string[];
4292
4635
  'subnetConfiguration'?: {
4293
- /** The mode of the AWS subnet */
4636
+ /** The mode of the AWS subnet configuration */
4294
4637
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
4295
4638
  /** Id of the VPC */
4296
4639
  'vpcId'?: string;
@@ -4302,6 +4645,16 @@ type PatchCloudClusterData = {
4302
4645
  };
4303
4646
  /** Azure specific data. Required when `provider` is `azure`. */
4304
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
+ };
4305
4658
  'enableAuthorizedIpRanges'?: boolean;
4306
4659
  'authorizedIpRanges'?: string[];
4307
4660
  };
@@ -4442,322 +4795,6 @@ declare class UncordonCloudClusterNodeEndpoint extends PostApiEndpoint<UncordonC
4442
4795
  body: () => undefined;
4443
4796
  }
4444
4797
 
4445
- type ListCloudDockerregistryResult = {
4446
- /** ID of the registry Example: "example-registry" */
4447
- 'id': string;
4448
- /** The name of the cloud provider registry. Example: "Example Registry" */
4449
- 'name': string;
4450
- /** The description of the integration. Example: "This is a new cloud provider registry." */
4451
- 'description'?: string;
4452
- /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4453
- 'uid'?: string;
4454
- /** Cloud provider to be used for the selected resource Example: "gcp" */
4455
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4456
- 'region': string;
4457
- /** BYOC restrictions configuration for controlling team access */
4458
- 'restrictions'?: {
4459
- /** Enable or disable BYOC restrictions for this entity */
4460
- 'enabled': boolean;
4461
- /** List of teams that have access to this BYOC cluster */
4462
- 'teams'?: {
4463
- /** The ID of the team that has access to this BYOC cluster */
4464
- 'teamId': string;
4465
- }[];
4466
- };
4467
- /** time of update */
4468
- 'updatedAt'?: string;
4469
- /** time of creation */
4470
- 'createdAt'?: string;
4471
- };
4472
- type ListCloudDockerregistryCall = ((opts: ListCloudDockerregistryRequest) => Promise<ApiCallResponse<ListCloudDockerregistryResult>>) & {
4473
- all: (opts: ListCloudDockerregistryRequest) => Promise<ApiCallResponse<ListCloudDockerregistryResult>>;
4474
- };
4475
- type ListCloudDockerregistryRequest = {
4476
- options?: ListCloudDockerregistryOptions;
4477
- };
4478
- type ListCloudDockerregistryOptions = {
4479
- /** The number of results to display per request. Maximum of 100 results per page. */
4480
- 'per_page'?: number;
4481
- /** The page number to access. */
4482
- 'page'?: number;
4483
- /** The cursor returned from the previous page of results, used to request the next page. */
4484
- 'cursor'?: string;
4485
- };
4486
- /** Lists docker registries for the authenticated user or team. */
4487
- declare class ListCloudDockerregistryEndpoint extends GetApiEndpointPaginated<ListCloudDockerregistryRequest, ListCloudDockerregistryResult> {
4488
- description: string;
4489
- withAuth: boolean;
4490
- requiredPermissions: string;
4491
- endpointUrl: (opts: ListCloudDockerregistryRequest) => string;
4492
- body: () => undefined;
4493
- }
4494
-
4495
- type CreateCloudDockerregistryResult = {
4496
- /** The name of the cloud provider registry. Example: "Example Registry" */
4497
- 'name': string;
4498
- /** The description of the integration. Example: "This is a new cloud provider registry." */
4499
- 'description'?: string;
4500
- /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4501
- 'uid'?: string;
4502
- /** Cloud provider to be used for the selected resource Example: "gcp" */
4503
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4504
- 'region': string;
4505
- /** Integration to use for this registry. Example: "gcp-integration" */
4506
- 'integrationId'?: string;
4507
- /** BYOC restrictions configuration for controlling team access */
4508
- 'restrictions'?: {
4509
- /** Enable or disable BYOC restrictions for this entity */
4510
- 'enabled': boolean;
4511
- /** List of teams that have access to this BYOC cluster */
4512
- 'teams'?: {
4513
- /** The ID of the team that has access to this BYOC cluster */
4514
- 'teamId': string;
4515
- }[];
4516
- };
4517
- /** time of update */
4518
- 'updatedAt'?: string;
4519
- /** time of creation */
4520
- 'createdAt'?: string;
4521
- };
4522
- type CreateCloudDockerregistryCall = (opts: CreateCloudDockerregistryRequest) => Promise<ApiCallResponse<CreateCloudDockerregistryResult>>;
4523
- type CreateCloudDockerregistryRequest = {
4524
- data: CreateCloudDockerregistryData;
4525
- };
4526
- type CreateCloudDockerregistryData = {
4527
- /** The name of the cloud provider registry. Example: "Example Registry" */
4528
- 'name': string;
4529
- /** The description of the integration. Example: "This is a new cloud provider registry." */
4530
- 'description'?: string;
4531
- /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4532
- 'uid'?: string;
4533
- /** Cloud provider to be used for the selected resource Example: "gcp" */
4534
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4535
- 'region': string;
4536
- /** Integration to use for this registry. Example: "gcp-integration" */
4537
- 'integrationId'?: string;
4538
- /** BYOC restrictions configuration for controlling team access */
4539
- 'restrictions'?: {
4540
- /** Enable or disable BYOC restrictions for this entity */
4541
- 'enabled': boolean;
4542
- /** List of teams that have access to this BYOC cluster */
4543
- 'teams'?: {
4544
- /** The ID of the team that has access to this BYOC cluster */
4545
- 'teamId': string;
4546
- }[];
4547
- };
4548
- /** time of update */
4549
- 'updatedAt'?: string;
4550
- /** time of creation */
4551
- 'createdAt'?: string;
4552
- };
4553
- /** Creates a new docker registry. */
4554
- declare class CreateCloudDockerregistryEndpoint extends PostApiEndpoint<CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult> {
4555
- description: string;
4556
- withAuth: boolean;
4557
- requiredPermissions: string;
4558
- endpointUrl: (opts: CreateCloudDockerregistryRequest) => string;
4559
- body: (payload: CreateCloudDockerregistryRequest) => string;
4560
- }
4561
-
4562
- type PutCloudDockerregistryResult = {
4563
- /** ID of the registry Example: "example-registry" */
4564
- 'id': string;
4565
- /** The name of the cloud provider registry. Example: "Example Registry" */
4566
- 'name': string;
4567
- /** The description of the integration. Example: "This is a new cloud provider registry." */
4568
- 'description'?: string;
4569
- /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4570
- 'uid'?: string;
4571
- /** Cloud provider to be used for the selected resource Example: "gcp" */
4572
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4573
- 'region': string;
4574
- /** Integration to use for this registry. Example: "gcp-integration" */
4575
- 'integrationId'?: string;
4576
- /** BYOC restrictions configuration for controlling team access */
4577
- 'restrictions'?: {
4578
- /** Enable or disable BYOC restrictions for this entity */
4579
- 'enabled': boolean;
4580
- /** List of teams that have access to this BYOC cluster */
4581
- 'teams'?: {
4582
- /** The ID of the team that has access to this BYOC cluster */
4583
- 'teamId': string;
4584
- }[];
4585
- };
4586
- /** time of update */
4587
- 'updatedAt'?: string;
4588
- /** time of creation */
4589
- 'createdAt'?: string;
4590
- };
4591
- type PutCloudDockerregistryCall = (opts: PutCloudDockerregistryRequest) => Promise<ApiCallResponse<PutCloudDockerregistryResult>>;
4592
- type PutCloudDockerregistryRequest = {
4593
- parameters: PutCloudDockerregistryParameters;
4594
- data: PutCloudDockerregistryData;
4595
- };
4596
- type PutCloudDockerregistryParameters = {
4597
- /** ID of the docker registry */ 'registryId': string;
4598
- };
4599
- type PutCloudDockerregistryData = {
4600
- /** The name of the cloud provider registry. Example: "Example Registry" */
4601
- 'name': string;
4602
- /** The description of the integration. Example: "This is a new cloud provider registry." */
4603
- 'description'?: string;
4604
- /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4605
- 'uid'?: string;
4606
- /** Cloud provider to be used for the selected resource Example: "gcp" */
4607
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4608
- 'region': string;
4609
- /** Integration to use for this registry. Example: "gcp-integration" */
4610
- 'integrationId'?: string;
4611
- /** BYOC restrictions configuration for controlling team access */
4612
- 'restrictions'?: {
4613
- /** Enable or disable BYOC restrictions for this entity */
4614
- 'enabled': boolean;
4615
- /** List of teams that have access to this BYOC cluster */
4616
- 'teams'?: {
4617
- /** The ID of the team that has access to this BYOC cluster */
4618
- 'teamId': string;
4619
- }[];
4620
- };
4621
- /** time of update */
4622
- 'updatedAt'?: string;
4623
- /** time of creation */
4624
- 'createdAt'?: string;
4625
- };
4626
- /** Creates or updates a docker registry. */
4627
- declare class PutCloudDockerregistryEndpoint extends PutApiEndpoint<PutCloudDockerregistryRequest, PutCloudDockerregistryResult> {
4628
- description: string;
4629
- withAuth: boolean;
4630
- requiredPermissions: string;
4631
- endpointUrl: (opts: PutCloudDockerregistryRequest) => string;
4632
- body: (payload: PutCloudDockerregistryRequest) => string;
4633
- }
4634
-
4635
- type GetCloudDockerregistryResult = {
4636
- /** ID of the registry Example: "example-registry" */
4637
- 'id': string;
4638
- /** The name of the cloud provider registry. Example: "Example Registry" */
4639
- 'name': string;
4640
- /** The description of the integration. Example: "This is a new cloud provider registry." */
4641
- 'description'?: string;
4642
- /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4643
- 'uid'?: string;
4644
- /** Cloud provider to be used for the selected resource Example: "gcp" */
4645
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4646
- 'region': string;
4647
- /** Integration to use for this registry. Example: "gcp-integration" */
4648
- 'integrationId'?: string;
4649
- /** BYOC restrictions configuration for controlling team access */
4650
- 'restrictions'?: {
4651
- /** Enable or disable BYOC restrictions for this entity */
4652
- 'enabled': boolean;
4653
- /** List of teams that have access to this BYOC cluster */
4654
- 'teams'?: {
4655
- /** The ID of the team that has access to this BYOC cluster */
4656
- 'teamId': string;
4657
- }[];
4658
- };
4659
- /** time of update */
4660
- 'updatedAt'?: string;
4661
- /** time of creation */
4662
- 'createdAt'?: string;
4663
- };
4664
- type GetCloudDockerregistryCall = (opts: GetCloudDockerregistryRequest) => Promise<ApiCallResponse<GetCloudDockerregistryResult>>;
4665
- type GetCloudDockerregistryRequest = {
4666
- parameters: GetCloudDockerregistryParameters;
4667
- };
4668
- type GetCloudDockerregistryParameters = {
4669
- /** ID of the docker registry */ 'registryId': string;
4670
- };
4671
- /** Get information about the given docker registry */
4672
- declare class GetCloudDockerregistryEndpoint extends GetApiEndpoint<GetCloudDockerregistryRequest, GetCloudDockerregistryResult> {
4673
- description: string;
4674
- withAuth: boolean;
4675
- requiredPermissions: string;
4676
- endpointUrl: (opts: GetCloudDockerregistryRequest) => string;
4677
- body: () => undefined;
4678
- }
4679
-
4680
- type PatchCloudDockerregistryResult = {
4681
- /** ID of the registry Example: "example-registry" */
4682
- 'id': string;
4683
- /** The name of the cloud provider registry. Example: "Example Registry" */
4684
- 'name': string;
4685
- /** The description of the integration. Example: "This is a new cloud provider registry." */
4686
- 'description'?: string;
4687
- /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4688
- 'uid'?: string;
4689
- /** Cloud provider to be used for the selected resource Example: "gcp" */
4690
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4691
- 'region': string;
4692
- /** Integration to use for this registry. Example: "gcp-integration" */
4693
- 'integrationId'?: string;
4694
- /** BYOC restrictions configuration for controlling team access */
4695
- 'restrictions'?: {
4696
- /** Enable or disable BYOC restrictions for this entity */
4697
- 'enabled': boolean;
4698
- /** List of teams that have access to this BYOC cluster */
4699
- 'teams'?: {
4700
- /** The ID of the team that has access to this BYOC cluster */
4701
- 'teamId': string;
4702
- }[];
4703
- };
4704
- /** time of update */
4705
- 'updatedAt'?: string;
4706
- /** time of creation */
4707
- 'createdAt'?: string;
4708
- };
4709
- type PatchCloudDockerregistryCall = (opts: PatchCloudDockerregistryRequest) => Promise<ApiCallResponse<PatchCloudDockerregistryResult>>;
4710
- type PatchCloudDockerregistryRequest = {
4711
- parameters: PatchCloudDockerregistryParameters;
4712
- data: PatchCloudDockerregistryData;
4713
- };
4714
- type PatchCloudDockerregistryParameters = {
4715
- /** ID of the docker registry */ 'registryId': string;
4716
- };
4717
- type PatchCloudDockerregistryData = {
4718
- /** The description of the integration. Example: "This is a new cloud provider registry." */
4719
- 'description'?: string;
4720
- /** BYOC restrictions configuration for controlling team access */
4721
- 'restrictions'?: {
4722
- /** Enable or disable BYOC restrictions for this entity */
4723
- 'enabled': boolean;
4724
- /** List of teams that have access to this BYOC cluster */
4725
- 'teams'?: {
4726
- /** The ID of the team that has access to this BYOC cluster */
4727
- 'teamId': string;
4728
- }[];
4729
- };
4730
- /** time of update */
4731
- 'updatedAt'?: string;
4732
- /** time of creation */
4733
- 'createdAt'?: string;
4734
- };
4735
- /** Updates a docker registry. */
4736
- declare class PatchCloudDockerregistryEndpoint extends PatchApiEndpoint<PatchCloudDockerregistryRequest, PatchCloudDockerregistryResult> {
4737
- description: string;
4738
- withAuth: boolean;
4739
- requiredPermissions: string;
4740
- endpointUrl: (opts: PatchCloudDockerregistryRequest) => string;
4741
- body: (payload: PatchCloudDockerregistryRequest) => string;
4742
- }
4743
-
4744
- type DeleteCloudDockerregistryResult = any | any;
4745
- type DeleteCloudDockerregistryCall = (opts: DeleteCloudDockerregistryRequest) => Promise<ApiCallResponse<DeleteCloudDockerregistryResult>>;
4746
- type DeleteCloudDockerregistryRequest = {
4747
- parameters: DeleteCloudDockerregistryParameters;
4748
- };
4749
- type DeleteCloudDockerregistryParameters = {
4750
- /** ID of the docker registry */ 'registryId': string;
4751
- };
4752
- /** Delete the given docker registry. Fails if the docker registry is associated with existing clusters. */
4753
- declare class DeleteCloudDockerregistryEndpoint extends DeleteApiEndpoint<DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult> {
4754
- description: string;
4755
- withAuth: boolean;
4756
- requiredPermissions: string;
4757
- endpointUrl: (opts: DeleteCloudDockerregistryRequest) => string;
4758
- body: () => undefined;
4759
- }
4760
-
4761
4798
  type ListCloudIntegrationsResult = {
4762
4799
  /** An array of integrations. */
4763
4800
  'integrations': {
@@ -4767,7 +4804,7 @@ type ListCloudIntegrationsResult = {
4767
4804
  'description'?: string;
4768
4805
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4769
4806
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4770
- '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'[];
4771
4808
  /** BYOC restrictions configuration for controlling team access */
4772
4809
  'restrictions'?: {
4773
4810
  /** Enable or disable BYOC restrictions for this entity */
@@ -4833,7 +4870,7 @@ type CreateCloudIntegrationResult = {
4833
4870
  'description'?: string;
4834
4871
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4835
4872
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4836
- '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'[];
4837
4874
  /** BYOC restrictions configuration for controlling team access */
4838
4875
  'restrictions'?: {
4839
4876
  /** Enable or disable BYOC restrictions for this entity */
@@ -4920,7 +4957,7 @@ type CreateCloudIntegrationData = {
4920
4957
  'description'?: string;
4921
4958
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4922
4959
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4923
- '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'[];
4924
4961
  /** BYOC restrictions configuration for controlling team access */
4925
4962
  'restrictions'?: {
4926
4963
  /** Enable or disable BYOC restrictions for this entity */
@@ -5010,7 +5047,7 @@ type PutCloudIntegrationResult = {
5010
5047
  'description'?: string;
5011
5048
  /** Cloud provider to be used for the selected resource Example: "gcp" */
5012
5049
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5013
- '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'[];
5014
5051
  /** BYOC restrictions configuration for controlling team access */
5015
5052
  'restrictions'?: {
5016
5053
  /** Enable or disable BYOC restrictions for this entity */
@@ -5101,7 +5138,7 @@ type PutCloudIntegrationData = {
5101
5138
  'description'?: string;
5102
5139
  /** Cloud provider to be used for the selected resource Example: "gcp" */
5103
5140
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5104
- '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'[];
5105
5142
  /** BYOC restrictions configuration for controlling team access */
5106
5143
  'restrictions'?: {
5107
5144
  /** Enable or disable BYOC restrictions for this entity */
@@ -5191,7 +5228,7 @@ type GetCloudIntegrationResult = {
5191
5228
  'description'?: string;
5192
5229
  /** Cloud provider to be used for the selected resource Example: "gcp" */
5193
5230
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5194
- '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'[];
5195
5232
  /** BYOC restrictions configuration for controlling team access */
5196
5233
  'restrictions'?: {
5197
5234
  /** Enable or disable BYOC restrictions for this entity */
@@ -5292,7 +5329,7 @@ type PatchCloudIntegrationResult = {
5292
5329
  'description'?: string;
5293
5330
  /** Cloud provider to be used for the selected resource Example: "gcp" */
5294
5331
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5295
- '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'[];
5296
5333
  /** BYOC restrictions configuration for controlling team access */
5297
5334
  'restrictions'?: {
5298
5335
  /** Enable or disable BYOC restrictions for this entity */
@@ -5379,7 +5416,7 @@ type PatchCloudIntegrationParameters = {
5379
5416
  type PatchCloudIntegrationData = {
5380
5417
  /** The description of the integration. Example: "This is a new cloud provider integration." */
5381
5418
  'description'?: string;
5382
- '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'[];
5383
5420
  /** BYOC restrictions configuration for controlling team access */
5384
5421
  'restrictions'?: {
5385
5422
  /** Enable or disable BYOC restrictions for this entity */
@@ -6700,6 +6737,18 @@ type CreateLogsinkData = {
6700
6737
  'restricted'?: boolean;
6701
6738
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
6702
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
+ };
6703
6752
  'options'?: {
6704
6753
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
6705
6754
  'useCustomLabels'?: boolean;
@@ -6740,6 +6789,18 @@ type CreateLogsinkData = {
6740
6789
  'restricted'?: boolean;
6741
6790
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
6742
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
+ };
6743
6804
  'options'?: {
6744
6805
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
6745
6806
  'useCustomLabels'?: boolean;
@@ -6768,6 +6829,18 @@ type CreateLogsinkData = {
6768
6829
  'restricted'?: boolean;
6769
6830
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
6770
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
+ };
6771
6844
  'options'?: {
6772
6845
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
6773
6846
  'useCustomLabels'?: boolean;
@@ -6805,6 +6878,18 @@ type CreateLogsinkData = {
6805
6878
  'restricted'?: boolean;
6806
6879
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
6807
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
+ };
6808
6893
  'options'?: {
6809
6894
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
6810
6895
  'useCustomLabels'?: boolean;
@@ -6844,6 +6929,18 @@ type CreateLogsinkData = {
6844
6929
  'restricted'?: boolean;
6845
6930
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
6846
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
+ };
6847
6944
  'options'?: {
6848
6945
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
6849
6946
  'useCustomLabels'?: boolean;
@@ -6901,6 +6998,18 @@ type CreateLogsinkData = {
6901
6998
  'restricted'?: boolean;
6902
6999
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
6903
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
+ };
6904
7013
  'options'?: {
6905
7014
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
6906
7015
  'useCustomLabels'?: boolean;
@@ -6927,6 +7036,18 @@ type CreateLogsinkData = {
6927
7036
  'restricted'?: boolean;
6928
7037
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
6929
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
+ };
6930
7051
  'options'?: {
6931
7052
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
6932
7053
  'useCustomLabels'?: boolean;
@@ -6955,6 +7076,18 @@ type CreateLogsinkData = {
6955
7076
  'restricted'?: boolean;
6956
7077
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
6957
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
+ };
6958
7091
  'options'?: {
6959
7092
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
6960
7093
  'useCustomLabels'?: boolean;
@@ -6983,6 +7116,18 @@ type CreateLogsinkData = {
6983
7116
  'restricted'?: boolean;
6984
7117
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
6985
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
+ };
6986
7131
  'options'?: {
6987
7132
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
6988
7133
  'useCustomLabels'?: boolean;
@@ -7011,6 +7156,18 @@ type CreateLogsinkData = {
7011
7156
  'restricted'?: boolean;
7012
7157
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
7013
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
+ };
7014
7171
  'options'?: {
7015
7172
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
7016
7173
  'useCustomLabels'?: boolean;
@@ -7045,6 +7202,18 @@ type CreateLogsinkData = {
7045
7202
  'restricted'?: boolean;
7046
7203
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
7047
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
+ };
7048
7217
  'options'?: {
7049
7218
  /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
7050
7219
  'useCustomLabels'?: boolean;
@@ -7809,6 +7978,18 @@ type CreateNotificationData = {
7809
7978
  'secret'?: string;
7810
7979
  /** Should notifications be sent only for specific projects? Example: true */
7811
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
+ };
7812
7993
  /** An array of projects that notifications will be sent for. */
7813
7994
  'projects'?: string[];
7814
7995
  /** Which events should notifications be sent for? */
@@ -8021,6 +8202,18 @@ type UpdateNotificationData = {
8021
8202
  'restricted'?: boolean;
8022
8203
  /** An array of projects that notifications will be sent for. */
8023
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
+ };
8024
8217
  /** Which events should notifications be sent for? */
8025
8218
  'events'?: {
8026
8219
  'trigger:service:autoscaling:event'?: boolean;
@@ -8117,23 +8310,41 @@ declare class DeleteNotificationEndpoint extends DeleteApiEndpoint<DeleteNotific
8117
8310
  }
8118
8311
 
8119
8312
  type ListRegistrycredentialsResult = {
8120
- /** An array of credentials saved to this account. */
8121
- 'credentials': {
8122
- /** Identifier for the credentials. Example: "example-credentials" */
8313
+ 'credentials'?: {
8314
+ /** ID of the docker credentials Example: "example-credentials" */
8123
8315
  'id': string;
8124
- /** Name of the saved credentials. Example: "Example Credentials" */
8316
+ /** The name of the docker credentials. Example: "Example Docker Credentials" */
8125
8317
  'name': string;
8126
- /** Description of the saved credentials. Example: "This is a set of saved credentials." */
8127
- 'description': string;
8128
- /** Data about whether the credentials are restricted to certain projects. */
8129
- 'restrictions': {
8130
- /** Whether the credentials are restricted to specific projects. Example: true */
8131
- 'restricted': boolean;
8132
- /** An array of projects the credentials are restricted to, if applicable. */
8133
- 'projects': string[];
8318
+ /** The provider of the docker registry. */
8319
+ 'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
8320
+ /** The URL of the docker registry. */
8321
+ 'registryUrl'?: string;
8322
+ 'aws'?: {
8323
+ /** The region of the docker registry. */
8324
+ 'region'?: string;
8134
8325
  };
8135
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
8136
- 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
8326
+ 'gcp'?: {
8327
+ /** The project ID of the GCP docker registry. */
8328
+ 'projectId'?: string;
8329
+ };
8330
+ 'azure'?: {
8331
+ /** The resource group of the Azure docker registry. */
8332
+ 'resourceGroup'?: string;
8333
+ };
8334
+ /** Integration to use for this registry. */
8335
+ 'integrationId'?: string;
8336
+ 'credentials'?: {
8337
+ 'scope': {
8338
+ /** Whether the credentials can pull images. */
8339
+ 'pull'?: boolean;
8340
+ /** Whether the credentials can push images. */
8341
+ 'push'?: boolean;
8342
+ };
8343
+ };
8344
+ /** time of update */
8345
+ 'updatedAt'?: string;
8346
+ /** time of creation */
8347
+ 'createdAt'?: string;
8137
8348
  }[];
8138
8349
  };
8139
8350
  type ListRegistrycredentialsCall = ((opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>) & {
@@ -8160,80 +8371,98 @@ declare class ListRegistrycredentialsEndpoint extends GetApiEndpointPaginated<Li
8160
8371
  }
8161
8372
 
8162
8373
  type AddRegistrycredentialsResult = {
8163
- /** Identifier for the credentials. Example: "example-credentials" */
8374
+ /** ID of the docker credentials Example: "example-credentials" */
8164
8375
  'id': string;
8165
- /** Name of the saved credentials. Example: "Example Credentials" */
8376
+ /** The name of the docker credentials. Example: "Example Docker Credentials" */
8166
8377
  'name': string;
8167
- /** Description of the saved credentials. Example: "This is a set of saved credentials." */
8168
- 'description': string;
8169
- /** Data about whether the credentials are restricted to certain projects. */
8170
- 'restrictions': {
8171
- /** Whether the credentials are restricted to specific projects. Example: true */
8378
+ /** The provider of the docker registry. */
8379
+ 'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
8380
+ /** The URL of the docker registry. */
8381
+ 'registryUrl'?: string;
8382
+ 'aws'?: {
8383
+ /** The region of the docker registry. */
8384
+ 'region'?: string;
8385
+ };
8386
+ 'gcp'?: {
8387
+ /** The project ID of the GCP docker registry. */
8388
+ 'projectId'?: string;
8389
+ };
8390
+ 'azure'?: {
8391
+ /** The resource group of the Azure docker registry. */
8392
+ 'resourceGroup'?: string;
8393
+ };
8394
+ /** Integration to use for this registry. */
8395
+ 'integrationId'?: string;
8396
+ 'credentials'?: {
8397
+ /** Username for the docker registry. Required when `integrationId` is provided. */
8398
+ 'username'?: string;
8399
+ /** Password for the docker registry. Required when `integrationId` is provided. */
8400
+ 'password'?: string;
8401
+ 'scope': {
8402
+ /** Whether the credentials can pull images. */
8403
+ 'pull'?: boolean;
8404
+ /** Whether the credentials can push images. */
8405
+ 'push'?: boolean;
8406
+ };
8407
+ };
8408
+ 'restrictions'?: {
8409
+ /** Whether access to this credential is restricted. */
8172
8410
  'restricted': boolean;
8173
- /** An array of projects the credentials are restricted to, if applicable. */
8174
- 'projects': string[];
8411
+ /** List of projects that have access to this credential. */
8412
+ 'projects'?: string[];
8175
8413
  };
8176
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
8177
- 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
8414
+ /** time of update */
8415
+ 'updatedAt'?: string;
8416
+ /** time of creation */
8417
+ 'createdAt'?: string;
8178
8418
  };
8179
8419
  type AddRegistrycredentialsCall = (opts: AddRegistrycredentialsRequest) => Promise<ApiCallResponse<AddRegistrycredentialsResult>>;
8180
8420
  type AddRegistrycredentialsRequest = {
8181
8421
  data: AddRegistrycredentialsData;
8182
8422
  };
8183
8423
  type AddRegistrycredentialsData = {
8184
- /** Name of the credentials. Example: "Example Credentials" */
8424
+ /** The name of the docker credentials. Example: "Example Docker Credentials" */
8185
8425
  'name': string;
8186
- /** Description of the credentials. Example: "This is a set of saved credentials." */
8187
- 'description': string;
8188
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
8189
- 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
8190
- /** Data about whether the credentials are restricted to certain projects. */
8191
- 'restrictions'?: {
8192
- /** Whether the credentials are restricted to specific projects. Example: true */
8193
- 'restricted'?: boolean;
8194
- /** An array of projects the credentials are restricted to, if applicable. */
8195
- 'projects'?: string[];
8196
- };
8197
- /** Custom url for the container registry. Only usable (and required) when `provider` is `custom`. Example: "https://example.com" */
8426
+ /** The provider of the docker registry. */
8427
+ 'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
8428
+ /** The URL of the docker registry. */
8198
8429
  'registryUrl'?: string;
8199
- /** Username for the container registry. Example: "test-user" */
8200
- 'username': string;
8201
- /** Password, Personal Access Token, or API key for the container registry. Example: "password1234" */
8202
- 'password': string;
8203
- } | {
8204
- /** Name of the credentials. Example: "Example Credentials" */
8205
- 'name': string;
8206
- /** Description of the credentials. Example: "This is a set of saved credentials." */
8207
- 'description': string;
8208
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
8209
- 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
8210
- /** Data about whether the credentials are restricted to certain projects. */
8211
- 'restrictions'?: {
8212
- /** Whether the credentials are restricted to specific projects. Example: true */
8213
- 'restricted'?: boolean;
8214
- /** An array of projects the credentials are restricted to, if applicable. */
8215
- 'projects'?: string[];
8430
+ 'aws'?: {
8431
+ /** The region of the docker registry. */
8432
+ 'region'?: string;
8433
+ };
8434
+ 'gcp'?: {
8435
+ /** The project ID of the GCP docker registry. */
8436
+ 'projectId'?: string;
8437
+ };
8438
+ 'azure'?: {
8439
+ /** The resource group of the Azure docker registry. */
8440
+ 'resourceGroup'?: string;
8441
+ };
8442
+ /** Integration to use for this registry. */
8443
+ 'integrationId'?: string;
8444
+ 'credentials'?: {
8445
+ /** Username for the docker registry. Required when `integrationId` is provided. */
8446
+ 'username'?: string;
8447
+ /** Password for the docker registry. Required when `integrationId` is provided. */
8448
+ 'password'?: string;
8449
+ 'scope': {
8450
+ /** Whether the credentials can pull images. */
8451
+ 'pull'?: boolean;
8452
+ /** Whether the credentials can push images. */
8453
+ 'push'?: boolean;
8454
+ };
8216
8455
  };
8217
- /** Custom url for the container registry. Only usable (and required) when `provider` is `custom`. Example: "https://example.com" */
8218
- 'registryUrl'?: string;
8219
- /** 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]"} */
8220
- 'keyfile': any;
8221
- } | {
8222
- /** Name of the credentials. Example: "Example Credentials" */
8223
- 'name': string;
8224
- /** Description of the credentials. Example: "This is a set of saved credentials." */
8225
- 'description': string;
8226
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
8227
- 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
8228
- /** Data about whether the credentials are restricted to certain projects. */
8229
8456
  'restrictions'?: {
8230
- /** Whether the credentials are restricted to specific projects. Example: true */
8231
- 'restricted'?: boolean;
8232
- /** An array of projects the credentials are restricted to, if applicable. */
8457
+ /** Whether access to this credential is restricted. */
8458
+ 'restricted': boolean;
8459
+ /** List of projects that have access to this credential. */
8233
8460
  'projects'?: string[];
8234
8461
  };
8235
- /** The `auths` data extracted from your Docker config file. Example: {"https://index.docker.io/v1/":{"auth":"[YOUR AUTH KEY]"}} */
8236
- 'auths': any;
8462
+ /** time of update */
8463
+ 'updatedAt'?: string;
8464
+ /** time of creation */
8465
+ 'createdAt'?: string;
8237
8466
  };
8238
8467
  /** Adds a new set of container registry credentials to this account. */
8239
8468
  declare class AddRegistrycredentialsEndpoint extends PostApiEndpoint<AddRegistrycredentialsRequest, AddRegistrycredentialsResult> {
@@ -8245,23 +8474,50 @@ declare class AddRegistrycredentialsEndpoint extends PostApiEndpoint<AddRegistry
8245
8474
  }
8246
8475
 
8247
8476
  type GetRegistrycredentialsResult = {
8248
- /** Identifier for the credentials. Example: "example-credentials" */
8477
+ /** ID of the docker credentials Example: "example-credentials" */
8249
8478
  'id': string;
8250
- /** Name of the saved credentials. Example: "Example Credentials" */
8479
+ /** The name of the docker credentials. Example: "Example Docker Credentials" */
8251
8480
  'name': string;
8252
- /** Description of the saved credentials. Example: "This is a set of saved credentials." */
8253
- 'description': string;
8254
- /** Data about whether the credentials are restricted to certain projects. */
8255
- 'restrictions': {
8256
- /** Whether the credentials are restricted to specific projects. Example: true */
8481
+ /** The provider of the docker registry. */
8482
+ 'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
8483
+ /** The URL of the docker registry. */
8484
+ 'registryUrl'?: string;
8485
+ 'aws'?: {
8486
+ /** The region of the docker registry. */
8487
+ 'region'?: string;
8488
+ };
8489
+ 'gcp'?: {
8490
+ /** The project ID of the GCP docker registry. */
8491
+ 'projectId'?: string;
8492
+ };
8493
+ 'azure'?: {
8494
+ /** The resource group of the Azure docker registry. */
8495
+ 'resourceGroup'?: string;
8496
+ };
8497
+ /** Integration to use for this registry. */
8498
+ 'integrationId'?: string;
8499
+ 'credentials'?: {
8500
+ /** Username for the docker registry. Required when `integrationId` is provided. */
8501
+ 'username'?: string;
8502
+ /** Password for the docker registry. Required when `integrationId` is provided. */
8503
+ 'password'?: string;
8504
+ 'scope': {
8505
+ /** Whether the credentials can pull images. */
8506
+ 'pull'?: boolean;
8507
+ /** Whether the credentials can push images. */
8508
+ 'push'?: boolean;
8509
+ };
8510
+ };
8511
+ 'restrictions'?: {
8512
+ /** Whether access to this credential is restricted. */
8257
8513
  'restricted': boolean;
8258
- /** An array of projects the credentials are restricted to, if applicable. */
8259
- 'projects': string[];
8514
+ /** List of projects that have access to this credential. */
8515
+ 'projects'?: string[];
8260
8516
  };
8261
- /** The registry provider associated with this set of credentials. Example: "dockerhub" */
8262
- 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
8263
- /** The `auths` data extracted from your Docker config file. Example: {"https://index.docker.io/v1/":{"auth":"[YOUR AUTH KEY]"}} */
8264
- 'auths'?: any;
8517
+ /** time of update */
8518
+ 'updatedAt'?: string;
8519
+ /** time of creation */
8520
+ 'createdAt'?: string;
8265
8521
  };
8266
8522
  type GetRegistrycredentialsCall = (opts: GetRegistrycredentialsRequest) => Promise<ApiCallResponse<GetRegistrycredentialsResult>>;
8267
8523
  type GetRegistrycredentialsRequest = {
@@ -8279,23 +8535,6 @@ declare class GetRegistrycredentialsEndpoint extends GetApiEndpoint<GetRegistryc
8279
8535
  body: () => undefined;
8280
8536
  }
8281
8537
 
8282
- type DeleteRegistrycredentialsResult = any;
8283
- type DeleteRegistrycredentialsCall = (opts: DeleteRegistrycredentialsRequest) => Promise<ApiCallResponse<DeleteRegistrycredentialsResult>>;
8284
- type DeleteRegistrycredentialsRequest = {
8285
- parameters: DeleteRegistrycredentialsParameters;
8286
- };
8287
- type DeleteRegistrycredentialsParameters = {
8288
- /** ID of the registry credential */ 'credentialId': string;
8289
- };
8290
- /** Deletes a set of registry credential data. */
8291
- declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult> {
8292
- description: string;
8293
- withAuth: boolean;
8294
- requiredPermissions: string;
8295
- endpointUrl: (opts: DeleteRegistrycredentialsRequest) => string;
8296
- body: () => undefined;
8297
- }
8298
-
8299
8538
  type UpdateRegistrycredentialsResult = any;
8300
8539
  type UpdateRegistrycredentialsCall = (opts: UpdateRegistrycredentialsRequest) => Promise<ApiCallResponse<UpdateRegistrycredentialsResult>>;
8301
8540
  type UpdateRegistrycredentialsRequest = {
@@ -8306,60 +8545,31 @@ type UpdateRegistrycredentialsParameters = {
8306
8545
  /** ID of the registry credential */ 'credentialId': string;
8307
8546
  };
8308
8547
  type UpdateRegistrycredentialsData = {
8309
- /** Description of the credentials. Example: "This is a set of saved credentials." */
8310
- 'description'?: string;
8311
- /** Data about whether the credentials are restricted to certain projects. */
8312
- 'restrictions'?: {
8313
- /** Whether the credentials are restricted to specific projects. Example: true */
8314
- 'restricted': boolean;
8315
- /** An array of projects the credentials are restricted to, if applicable. */
8316
- 'projects'?: string[];
8317
- };
8318
- } | {
8319
- /** Description of the credentials. Example: "This is a set of saved credentials." */
8320
- 'description'?: string;
8321
- /** Data about whether the credentials are restricted to certain projects. */
8322
- 'restrictions'?: {
8323
- /** Whether the credentials are restricted to specific projects. Example: true */
8324
- 'restricted': boolean;
8325
- /** An array of projects the credentials are restricted to, if applicable. */
8326
- 'projects'?: string[];
8327
- };
8328
- /** Custom url for the container registry. Only usable (and required) when `provider` is `custom`. Example: "https://example.com" */
8329
- 'registryUrl'?: string;
8330
- /** Username for the container registry. Example: "test-user" */
8331
- 'username': string;
8332
- /** Password, Personal Access Token, or API key for the container registry. Example: "password1234" */
8333
- 'password': string;
8334
- } | {
8335
- /** Description of the credentials. Example: "This is a set of saved credentials." */
8336
- 'description'?: string;
8337
- /** Data about whether the credentials are restricted to certain projects. */
8338
- 'restrictions'?: {
8339
- /** Whether the credentials are restricted to specific projects. Example: true */
8340
- 'restricted': boolean;
8341
- /** An array of projects the credentials are restricted to, if applicable. */
8342
- 'projects'?: string[];
8548
+ 'credentials'?: {
8549
+ /** Username for the docker registry. Required when `integrationId` is provided. */
8550
+ 'username'?: string;
8551
+ /** Password for the docker registry. Required when `integrationId` is provided. */
8552
+ 'password'?: string;
8553
+ 'scope': {
8554
+ /** Whether the credentials can pull images. */
8555
+ 'pull'?: boolean;
8556
+ /** Whether the credentials can push images. */
8557
+ 'push'?: boolean;
8558
+ };
8343
8559
  };
8344
- /** Custom url for the container registry. Only usable (and required) when `provider` is `custom`. Example: "https://example.com" */
8345
- 'registryUrl'?: string;
8346
- /** 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]"} */
8347
- 'keyfile': any;
8348
- } | {
8349
- /** Description of the credentials. Example: "This is a set of saved credentials." */
8350
- 'description'?: string;
8351
- /** Data about whether the credentials are restricted to certain projects. */
8352
8560
  'restrictions'?: {
8353
- /** Whether the credentials are restricted to specific projects. Example: true */
8561
+ /** Whether access to this credential is restricted. */
8354
8562
  'restricted': boolean;
8355
- /** An array of projects the credentials are restricted to, if applicable. */
8563
+ /** List of projects that have access to this credential. */
8356
8564
  'projects'?: string[];
8357
8565
  };
8358
- /** The `auths` data extracted from your Docker config file. Example: {"https://index.docker.io/v1/":{"auth":"[YOUR AUTH KEY]"}} */
8359
- 'auths': any;
8566
+ /** time of update */
8567
+ 'updatedAt'?: string;
8568
+ /** time of creation */
8569
+ 'createdAt'?: string;
8360
8570
  };
8361
8571
  /** Updates a set of registry credential data. */
8362
- declare class UpdateRegistrycredentialsEndpoint extends PostApiEndpoint<UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult> {
8572
+ declare class UpdateRegistrycredentialsEndpoint extends PatchApiEndpoint<UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult> {
8363
8573
  description: string;
8364
8574
  withAuth: boolean;
8365
8575
  requiredPermissions: string;
@@ -8367,6 +8577,23 @@ declare class UpdateRegistrycredentialsEndpoint extends PostApiEndpoint<UpdateRe
8367
8577
  body: (payload: UpdateRegistrycredentialsRequest) => string;
8368
8578
  }
8369
8579
 
8580
+ type DeleteRegistrycredentialsResult = any;
8581
+ type DeleteRegistrycredentialsCall = (opts: DeleteRegistrycredentialsRequest) => Promise<ApiCallResponse<DeleteRegistrycredentialsResult>>;
8582
+ type DeleteRegistrycredentialsRequest = {
8583
+ parameters: DeleteRegistrycredentialsParameters;
8584
+ };
8585
+ type DeleteRegistrycredentialsParameters = {
8586
+ /** ID of the registry credential */ 'credentialId': string;
8587
+ };
8588
+ /** Deletes a set of registry credential data. */
8589
+ declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult> {
8590
+ description: string;
8591
+ withAuth: boolean;
8592
+ requiredPermissions: string;
8593
+ endpointUrl: (opts: DeleteRegistrycredentialsRequest) => string;
8594
+ body: () => undefined;
8595
+ }
8596
+
8370
8597
  type ListVcsResult = {
8371
8598
  /** The version control accounts linked to this Northflank account. */
8372
8599
  'vcsAccountLinks': {
@@ -9389,11 +9616,14 @@ type CreateAddonResult = {
9389
9616
  };
9390
9617
  /** The type of the backup to be performed. Example: "snapshot" */
9391
9618
  'backupType': 'dump' | 'snapshot';
9619
+ 'customDestinationId'?: string;
9392
9620
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
9393
9621
  'additionalDestinations'?: {
9622
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
9394
9623
  'destinationId': string;
9395
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
9624
+ /** Retention time of the additional back up in days. */
9396
9625
  'retentionTime'?: number;
9626
+ /** The type of backup destination to use Example: "custom" */
9397
9627
  'type': 'custom';
9398
9628
  }[];
9399
9629
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -9561,11 +9791,14 @@ type CreateAddonData = {
9561
9791
  };
9562
9792
  /** The type of the backup to be performed. Example: "snapshot" */
9563
9793
  'backupType': 'dump' | 'snapshot';
9794
+ 'customDestinationId'?: string;
9564
9795
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
9565
9796
  'additionalDestinations'?: {
9797
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
9566
9798
  'destinationId': string;
9567
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
9799
+ /** Retention time of the additional back up in days. */
9568
9800
  'retentionTime'?: number;
9801
+ /** The type of backup destination to use Example: "custom" */
9569
9802
  'type': 'custom';
9570
9803
  }[];
9571
9804
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -9692,11 +9925,14 @@ type PutAddonResult = {
9692
9925
  };
9693
9926
  /** The type of the backup to be performed. Example: "snapshot" */
9694
9927
  'backupType': 'dump' | 'snapshot';
9928
+ 'customDestinationId'?: string;
9695
9929
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
9696
9930
  'additionalDestinations'?: {
9931
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
9697
9932
  'destinationId': string;
9698
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
9933
+ /** Retention time of the additional back up in days. */
9699
9934
  'retentionTime'?: number;
9935
+ /** The type of backup destination to use Example: "custom" */
9700
9936
  'type': 'custom';
9701
9937
  }[];
9702
9938
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -9864,11 +10100,14 @@ type PutAddonData = {
9864
10100
  };
9865
10101
  /** The type of the backup to be performed. Example: "snapshot" */
9866
10102
  'backupType': 'dump' | 'snapshot';
10103
+ 'customDestinationId'?: string;
9867
10104
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
9868
10105
  'additionalDestinations'?: {
10106
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
9869
10107
  'destinationId': string;
9870
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
10108
+ /** Retention time of the additional back up in days. */
9871
10109
  'retentionTime'?: number;
10110
+ /** The type of backup destination to use Example: "custom" */
9872
10111
  'type': 'custom';
9873
10112
  }[];
9874
10113
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -10082,11 +10321,14 @@ type PatchAddonResult = {
10082
10321
  };
10083
10322
  /** The type of the backup to be performed. Example: "snapshot" */
10084
10323
  'backupType': 'dump' | 'snapshot';
10324
+ 'customDestinationId'?: string;
10085
10325
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
10086
10326
  'additionalDestinations'?: {
10327
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
10087
10328
  'destinationId': string;
10088
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
10329
+ /** Retention time of the additional back up in days. */
10089
10330
  'retentionTime'?: number;
10331
+ /** The type of backup destination to use Example: "custom" */
10090
10332
  'type': 'custom';
10091
10333
  }[];
10092
10334
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -10230,11 +10472,14 @@ type PatchAddonData = {
10230
10472
  };
10231
10473
  /** The type of the backup to be performed. Example: "snapshot" */
10232
10474
  'backupType': 'dump' | 'snapshot';
10475
+ 'customDestinationId'?: string;
10233
10476
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
10234
10477
  'additionalDestinations'?: {
10478
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
10235
10479
  'destinationId': string;
10236
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
10480
+ /** Retention time of the additional back up in days. */
10237
10481
  'retentionTime'?: number;
10482
+ /** The type of backup destination to use Example: "custom" */
10238
10483
  'type': 'custom';
10239
10484
  }[];
10240
10485
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -10291,6 +10536,19 @@ type GetAddonBackupschedulesResult = {
10291
10536
  'id': string;
10292
10537
  /** The type of backup being performed. Example: "snapshot" */
10293
10538
  'backupType': 'dump' | 'snapshot';
10539
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
10540
+ 'backupCompressionType'?: 'gz' | 'zstd';
10541
+ /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
10542
+ 'additionalDestinations'?: {
10543
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
10544
+ 'destinationId': string;
10545
+ /** Retention time of the additional back up in days. */
10546
+ 'retentionTime'?: number;
10547
+ /** The type of backup destination to use Example: "custom" */
10548
+ 'type': 'custom';
10549
+ }[];
10550
+ /** Custom backup destination in which the dump back up should be stored. Example: "example-backup-destination" */
10551
+ 'customDestinationId'?: string;
10294
10552
  /** Information about the scheduling for the backup schedule. */
10295
10553
  'scheduling': {
10296
10554
  /** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
@@ -10367,11 +10625,14 @@ type CreateAddonBackupscheduleData = {
10367
10625
  };
10368
10626
  /** The type of the backup to be performed. Example: "snapshot" */
10369
10627
  'backupType': 'dump' | 'snapshot';
10628
+ 'customDestinationId'?: string;
10370
10629
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
10371
10630
  'additionalDestinations'?: {
10631
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
10372
10632
  'destinationId': string;
10373
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
10633
+ /** Retention time of the additional back up in days. */
10374
10634
  'retentionTime'?: number;
10635
+ /** The type of backup destination to use Example: "custom" */
10375
10636
  'type': 'custom';
10376
10637
  }[];
10377
10638
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -10431,9 +10692,22 @@ type GetAddonBackupsResult = {
10431
10692
  };
10432
10693
  /** The size of the backup, in bytes Example: "1234" */
10433
10694
  'size': string;
10695
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
10696
+ 'compressionType'?: 'gz' | 'zstd';
10697
+ /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
10698
+ 'additionalDestinations'?: {
10699
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
10700
+ 'destinationId': string;
10701
+ /** Retention time of the additional back up in days. */
10702
+ 'retentionTime'?: number;
10703
+ /** The type of backup destination to use Example: "custom" */
10704
+ 'type': 'custom';
10705
+ }[];
10434
10706
  /** The version of the addon at the time of the backup. If the backup type is `snapshot`, the addon will be restored to this version when the backup is restored. Example: "4.4.8" */
10435
10707
  'addonVersion'?: string;
10436
10708
  };
10709
+ /** Custom backup destination in which the dump back up should be stored. Example: "example-backup-destination" */
10710
+ 'customDestinationId'?: string;
10437
10711
  }[];
10438
10712
  };
10439
10713
  type GetAddonBackupsCall = ((opts: GetAddonBackupsRequest) => Promise<ApiCallResponse<GetAddonBackupsResult>>) & {
@@ -10515,11 +10789,15 @@ type BackupAddonData = {
10515
10789
  'backupType'?: 'dump' | 'snapshot';
10516
10790
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
10517
10791
  'compressionType'?: 'gz' | 'zstd';
10792
+ /** Custom destination to store the backup in. Only applicable for dump backups. If not specified, backup is stored in Northflank-managed destination. */
10793
+ 'customDestinationId'?: string;
10518
10794
  /** List of destinations for which a backup should additionally be created. Only applicable for snapshot backups. */
10519
10795
  'additionalDestinations'?: {
10796
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
10520
10797
  'destinationId': string;
10521
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
10798
+ /** Retention time of the additional back up in days. */
10522
10799
  'retentionTime'?: number;
10800
+ /** The type of backup destination to use Example: "custom" */
10523
10801
  'type': 'custom';
10524
10802
  }[];
10525
10803
  };
@@ -10875,11 +11153,15 @@ type ImportAddonBackupData = {
10875
11153
  'connectionString': string;
10876
11154
  /** The compression algorithm for storing the imported file. Defaults to `gz`. Example: "gz" */
10877
11155
  'compressionType'?: 'gz' | 'zstd';
11156
+ /** Custom destination to store the imported backup in. If not specified, backup is stored in Northflank-managed destination. */
11157
+ 'customDestinationId': string;
10878
11158
  } | {
10879
11159
  /** The name of the backup. If not provided, a default name will be generated containing the current date. Example: "Example Backup" */
10880
11160
  'name'?: string;
10881
11161
  /** A url pointing to an existing backup stored as a GNU zip (.gz) file. Example: "https://example.com/backup.db.gz" */
10882
11162
  'importUrl': string;
11163
+ /** Custom destination to store the imported backup in. If not specified, backup is stored in Northflank-managed destination. */
11164
+ 'customDestinationId': string;
10883
11165
  };
10884
11166
  /** Imports a database from an external archive or existing live database. */
10885
11167
  declare class ImportAddonBackupEndpoint extends PostApiEndpoint<ImportAddonBackupRequest, ImportAddonBackupResult> {
@@ -11285,6 +11567,8 @@ type CreateJobCronResult = {
11285
11567
  'buildArguments'?: any;
11286
11568
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
11287
11569
  'buildFiles'?: any;
11570
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
11571
+ 'dockerSecretMounts'?: any;
11288
11572
  /** An array of health checks. */
11289
11573
  'healthChecks'?: {
11290
11574
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -11408,16 +11692,20 @@ type CreateJobCronResult = {
11408
11692
  };
11409
11693
  };
11410
11694
  'dockerfile': {
11411
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11412
- 'buildEngine'?: 'kaniko' | 'buildkit';
11695
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
11696
+ 'buildEngine'?: 'buildkit' | 'kaniko';
11413
11697
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
11414
11698
  'dockerFilePath': string;
11415
11699
  /** The working directory of the Dockerfile. Example: "/" */
11416
11700
  'dockerWorkDir': string;
11417
- /** Should intermediate image layers be cached? */
11418
- 'useCache'?: boolean;
11419
11701
  'buildkit'?: {
11702
+ /** Use persistent storage to cache build layers. Example: true */
11703
+ 'useCache'?: boolean;
11704
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
11705
+ 'cacheStorageSize'?: number;
11706
+ /** DEPRECATED: This field will be removed in the near future. */
11420
11707
  'useInternalCache'?: boolean;
11708
+ /** DEPRECATED: This field will be removed in the near future. */
11421
11709
  'internalCacheStorage'?: number;
11422
11710
  };
11423
11711
  };
@@ -11444,7 +11732,7 @@ type CreateJobCronResult = {
11444
11732
  /** Details about the status of the most recent build. */
11445
11733
  'build'?: {
11446
11734
  /** The current status of the build. Example: "SUCCESS" */
11447
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
11735
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
11448
11736
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
11449
11737
  'lastTransitionTime'?: string;
11450
11738
  };
@@ -11707,16 +11995,20 @@ type CreateJobCronData = {
11707
11995
  };
11708
11996
  };
11709
11997
  'dockerfile': {
11710
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11711
- 'buildEngine'?: 'kaniko' | 'buildkit';
11998
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
11999
+ 'buildEngine'?: 'buildkit' | 'kaniko';
11712
12000
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
11713
12001
  'dockerFilePath': string;
11714
12002
  /** The working directory of the Dockerfile. Example: "/" */
11715
12003
  'dockerWorkDir': string;
11716
- /** Should intermediate image layers be cached? */
11717
- 'useCache'?: boolean;
11718
12004
  'buildkit'?: {
12005
+ /** Use persistent storage to cache build layers. Example: true */
12006
+ 'useCache'?: boolean;
12007
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
12008
+ 'cacheStorageSize'?: number;
12009
+ /** DEPRECATED: This field will be removed in the near future. */
11719
12010
  'useInternalCache'?: boolean;
12011
+ /** DEPRECATED: This field will be removed in the near future. */
11720
12012
  'internalCacheStorage'?: number;
11721
12013
  };
11722
12014
  };
@@ -11746,6 +12038,8 @@ type CreateJobCronData = {
11746
12038
  'buildArguments'?: any;
11747
12039
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
11748
12040
  'buildFiles'?: any;
12041
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12042
+ 'dockerSecretMounts'?: any;
11749
12043
  /** An array of health checks. */
11750
12044
  'healthChecks'?: {
11751
12045
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -11848,6 +12142,8 @@ type PutJobCronResult = {
11848
12142
  'buildArguments'?: any;
11849
12143
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
11850
12144
  'buildFiles'?: any;
12145
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12146
+ 'dockerSecretMounts'?: any;
11851
12147
  /** An array of health checks. */
11852
12148
  'healthChecks'?: {
11853
12149
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -11971,16 +12267,20 @@ type PutJobCronResult = {
11971
12267
  };
11972
12268
  };
11973
12269
  'dockerfile': {
11974
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11975
- 'buildEngine'?: 'kaniko' | 'buildkit';
12270
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12271
+ 'buildEngine'?: 'buildkit' | 'kaniko';
11976
12272
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
11977
12273
  'dockerFilePath': string;
11978
12274
  /** The working directory of the Dockerfile. Example: "/" */
11979
12275
  'dockerWorkDir': string;
11980
- /** Should intermediate image layers be cached? */
11981
- 'useCache'?: boolean;
11982
12276
  'buildkit'?: {
12277
+ /** Use persistent storage to cache build layers. Example: true */
12278
+ 'useCache'?: boolean;
12279
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
12280
+ 'cacheStorageSize'?: number;
12281
+ /** DEPRECATED: This field will be removed in the near future. */
11983
12282
  'useInternalCache'?: boolean;
12283
+ /** DEPRECATED: This field will be removed in the near future. */
11984
12284
  'internalCacheStorage'?: number;
11985
12285
  };
11986
12286
  };
@@ -12007,7 +12307,7 @@ type PutJobCronResult = {
12007
12307
  /** Details about the status of the most recent build. */
12008
12308
  'build'?: {
12009
12309
  /** The current status of the build. Example: "SUCCESS" */
12010
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
12310
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
12011
12311
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
12012
12312
  'lastTransitionTime'?: string;
12013
12313
  };
@@ -12270,16 +12570,20 @@ type PutJobCronData = {
12270
12570
  };
12271
12571
  };
12272
12572
  'dockerfile': {
12273
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12274
- 'buildEngine'?: 'kaniko' | 'buildkit';
12573
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12574
+ 'buildEngine'?: 'buildkit' | 'kaniko';
12275
12575
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
12276
12576
  'dockerFilePath': string;
12277
12577
  /** The working directory of the Dockerfile. Example: "/" */
12278
12578
  'dockerWorkDir': string;
12279
- /** Should intermediate image layers be cached? */
12280
- 'useCache'?: boolean;
12281
12579
  'buildkit'?: {
12580
+ /** Use persistent storage to cache build layers. Example: true */
12581
+ 'useCache'?: boolean;
12582
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
12583
+ 'cacheStorageSize'?: number;
12584
+ /** DEPRECATED: This field will be removed in the near future. */
12282
12585
  'useInternalCache'?: boolean;
12586
+ /** DEPRECATED: This field will be removed in the near future. */
12283
12587
  'internalCacheStorage'?: number;
12284
12588
  };
12285
12589
  };
@@ -12309,6 +12613,8 @@ type PutJobCronData = {
12309
12613
  'buildArguments'?: any;
12310
12614
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12311
12615
  'buildFiles'?: any;
12616
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12617
+ 'dockerSecretMounts'?: any;
12312
12618
  /** An array of health checks. */
12313
12619
  'healthChecks'?: {
12314
12620
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -12411,6 +12717,8 @@ type PatchJobCronResult = {
12411
12717
  'buildArguments'?: any;
12412
12718
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12413
12719
  'buildFiles'?: any;
12720
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12721
+ 'dockerSecretMounts'?: any;
12414
12722
  /** An array of health checks. */
12415
12723
  'healthChecks'?: {
12416
12724
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -12534,16 +12842,20 @@ type PatchJobCronResult = {
12534
12842
  };
12535
12843
  };
12536
12844
  'dockerfile': {
12537
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12538
- 'buildEngine'?: 'kaniko' | 'buildkit';
12845
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12846
+ 'buildEngine'?: 'buildkit' | 'kaniko';
12539
12847
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
12540
12848
  'dockerFilePath': string;
12541
12849
  /** The working directory of the Dockerfile. Example: "/" */
12542
12850
  'dockerWorkDir': string;
12543
- /** Should intermediate image layers be cached? */
12544
- 'useCache'?: boolean;
12545
12851
  'buildkit'?: {
12852
+ /** Use persistent storage to cache build layers. Example: true */
12853
+ 'useCache'?: boolean;
12854
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
12855
+ 'cacheStorageSize'?: number;
12856
+ /** DEPRECATED: This field will be removed in the near future. */
12546
12857
  'useInternalCache'?: boolean;
12858
+ /** DEPRECATED: This field will be removed in the near future. */
12547
12859
  'internalCacheStorage'?: number;
12548
12860
  };
12549
12861
  };
@@ -12570,7 +12882,7 @@ type PatchJobCronResult = {
12570
12882
  /** Details about the status of the most recent build. */
12571
12883
  'build'?: {
12572
12884
  /** The current status of the build. Example: "SUCCESS" */
12573
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
12885
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
12574
12886
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
12575
12887
  'lastTransitionTime'?: string;
12576
12888
  };
@@ -12659,6 +12971,8 @@ type PatchJobCronData = {
12659
12971
  'buildArguments'?: any;
12660
12972
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12661
12973
  'buildFiles'?: any;
12974
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12975
+ 'dockerSecretMounts'?: any;
12662
12976
  /** An array of health checks. */
12663
12977
  'healthChecks'?: {
12664
12978
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -12761,6 +13075,8 @@ type CreateJobManualResult = {
12761
13075
  'buildArguments'?: any;
12762
13076
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
12763
13077
  'buildFiles'?: any;
13078
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13079
+ 'dockerSecretMounts'?: any;
12764
13080
  /** An array of health checks. */
12765
13081
  'healthChecks'?: {
12766
13082
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -12878,16 +13194,20 @@ type CreateJobManualResult = {
12878
13194
  };
12879
13195
  };
12880
13196
  'dockerfile': {
12881
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12882
- 'buildEngine'?: 'kaniko' | 'buildkit';
13197
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13198
+ 'buildEngine'?: 'buildkit' | 'kaniko';
12883
13199
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
12884
13200
  'dockerFilePath': string;
12885
13201
  /** The working directory of the Dockerfile. Example: "/" */
12886
13202
  'dockerWorkDir': string;
12887
- /** Should intermediate image layers be cached? */
12888
- 'useCache'?: boolean;
12889
13203
  'buildkit'?: {
13204
+ /** Use persistent storage to cache build layers. Example: true */
13205
+ 'useCache'?: boolean;
13206
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
13207
+ 'cacheStorageSize'?: number;
13208
+ /** DEPRECATED: This field will be removed in the near future. */
12890
13209
  'useInternalCache'?: boolean;
13210
+ /** DEPRECATED: This field will be removed in the near future. */
12891
13211
  'internalCacheStorage'?: number;
12892
13212
  };
12893
13213
  };
@@ -12914,7 +13234,7 @@ type CreateJobManualResult = {
12914
13234
  /** Details about the status of the most recent build. */
12915
13235
  'build'?: {
12916
13236
  /** The current status of the build. Example: "SUCCESS" */
12917
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
13237
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
12918
13238
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
12919
13239
  'lastTransitionTime'?: string;
12920
13240
  };
@@ -13177,16 +13497,20 @@ type CreateJobManualData = {
13177
13497
  };
13178
13498
  };
13179
13499
  'dockerfile': {
13180
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
13181
- 'buildEngine'?: 'kaniko' | 'buildkit';
13500
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13501
+ 'buildEngine'?: 'buildkit' | 'kaniko';
13182
13502
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
13183
13503
  'dockerFilePath': string;
13184
13504
  /** The working directory of the Dockerfile. Example: "/" */
13185
13505
  'dockerWorkDir': string;
13186
- /** Should intermediate image layers be cached? */
13187
- 'useCache'?: boolean;
13188
13506
  'buildkit'?: {
13507
+ /** Use persistent storage to cache build layers. Example: true */
13508
+ 'useCache'?: boolean;
13509
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
13510
+ 'cacheStorageSize'?: number;
13511
+ /** DEPRECATED: This field will be removed in the near future. */
13189
13512
  'useInternalCache'?: boolean;
13513
+ /** DEPRECATED: This field will be removed in the near future. */
13190
13514
  'internalCacheStorage'?: number;
13191
13515
  };
13192
13516
  };
@@ -13216,6 +13540,8 @@ type CreateJobManualData = {
13216
13540
  'buildArguments'?: any;
13217
13541
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13218
13542
  'buildFiles'?: any;
13543
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13544
+ 'dockerSecretMounts'?: any;
13219
13545
  /** An array of health checks. */
13220
13546
  'healthChecks'?: {
13221
13547
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -13312,6 +13638,8 @@ type PutJobManualResult = {
13312
13638
  'buildArguments'?: any;
13313
13639
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13314
13640
  'buildFiles'?: any;
13641
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13642
+ 'dockerSecretMounts'?: any;
13315
13643
  /** An array of health checks. */
13316
13644
  'healthChecks'?: {
13317
13645
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -13429,16 +13757,20 @@ type PutJobManualResult = {
13429
13757
  };
13430
13758
  };
13431
13759
  'dockerfile': {
13432
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
13433
- 'buildEngine'?: 'kaniko' | 'buildkit';
13760
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13761
+ 'buildEngine'?: 'buildkit' | 'kaniko';
13434
13762
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
13435
13763
  'dockerFilePath': string;
13436
13764
  /** The working directory of the Dockerfile. Example: "/" */
13437
13765
  'dockerWorkDir': string;
13438
- /** Should intermediate image layers be cached? */
13439
- 'useCache'?: boolean;
13440
13766
  'buildkit'?: {
13767
+ /** Use persistent storage to cache build layers. Example: true */
13768
+ 'useCache'?: boolean;
13769
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
13770
+ 'cacheStorageSize'?: number;
13771
+ /** DEPRECATED: This field will be removed in the near future. */
13441
13772
  'useInternalCache'?: boolean;
13773
+ /** DEPRECATED: This field will be removed in the near future. */
13442
13774
  'internalCacheStorage'?: number;
13443
13775
  };
13444
13776
  };
@@ -13465,7 +13797,7 @@ type PutJobManualResult = {
13465
13797
  /** Details about the status of the most recent build. */
13466
13798
  'build'?: {
13467
13799
  /** The current status of the build. Example: "SUCCESS" */
13468
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
13800
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
13469
13801
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
13470
13802
  'lastTransitionTime'?: string;
13471
13803
  };
@@ -13728,16 +14060,20 @@ type PutJobManualData = {
13728
14060
  };
13729
14061
  };
13730
14062
  'dockerfile': {
13731
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
13732
- 'buildEngine'?: 'kaniko' | 'buildkit';
14063
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
14064
+ 'buildEngine'?: 'buildkit' | 'kaniko';
13733
14065
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
13734
14066
  'dockerFilePath': string;
13735
14067
  /** The working directory of the Dockerfile. Example: "/" */
13736
14068
  'dockerWorkDir': string;
13737
- /** Should intermediate image layers be cached? */
13738
- 'useCache'?: boolean;
13739
14069
  'buildkit'?: {
14070
+ /** Use persistent storage to cache build layers. Example: true */
14071
+ 'useCache'?: boolean;
14072
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
14073
+ 'cacheStorageSize'?: number;
14074
+ /** DEPRECATED: This field will be removed in the near future. */
13740
14075
  'useInternalCache'?: boolean;
14076
+ /** DEPRECATED: This field will be removed in the near future. */
13741
14077
  'internalCacheStorage'?: number;
13742
14078
  };
13743
14079
  };
@@ -13767,6 +14103,8 @@ type PutJobManualData = {
13767
14103
  'buildArguments'?: any;
13768
14104
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13769
14105
  'buildFiles'?: any;
14106
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14107
+ 'dockerSecretMounts'?: any;
13770
14108
  /** An array of health checks. */
13771
14109
  'healthChecks'?: {
13772
14110
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -13863,6 +14201,8 @@ type PatchJobManualResult = {
13863
14201
  'buildArguments'?: any;
13864
14202
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
13865
14203
  'buildFiles'?: any;
14204
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14205
+ 'dockerSecretMounts'?: any;
13866
14206
  /** An array of health checks. */
13867
14207
  'healthChecks'?: {
13868
14208
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -13980,16 +14320,20 @@ type PatchJobManualResult = {
13980
14320
  };
13981
14321
  };
13982
14322
  'dockerfile': {
13983
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
13984
- 'buildEngine'?: 'kaniko' | 'buildkit';
14323
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
14324
+ 'buildEngine'?: 'buildkit' | 'kaniko';
13985
14325
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
13986
14326
  'dockerFilePath': string;
13987
14327
  /** The working directory of the Dockerfile. Example: "/" */
13988
14328
  'dockerWorkDir': string;
13989
- /** Should intermediate image layers be cached? */
13990
- 'useCache'?: boolean;
13991
14329
  'buildkit'?: {
14330
+ /** Use persistent storage to cache build layers. Example: true */
14331
+ 'useCache'?: boolean;
14332
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
14333
+ 'cacheStorageSize'?: number;
14334
+ /** DEPRECATED: This field will be removed in the near future. */
13992
14335
  'useInternalCache'?: boolean;
14336
+ /** DEPRECATED: This field will be removed in the near future. */
13993
14337
  'internalCacheStorage'?: number;
13994
14338
  };
13995
14339
  };
@@ -14016,7 +14360,7 @@ type PatchJobManualResult = {
14016
14360
  /** Details about the status of the most recent build. */
14017
14361
  'build'?: {
14018
14362
  /** The current status of the build. Example: "SUCCESS" */
14019
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
14363
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
14020
14364
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
14021
14365
  'lastTransitionTime'?: string;
14022
14366
  };
@@ -14105,6 +14449,8 @@ type PatchJobManualData = {
14105
14449
  'buildArguments'?: any;
14106
14450
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14107
14451
  'buildFiles'?: any;
14452
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14453
+ 'dockerSecretMounts'?: any;
14108
14454
  /** An array of health checks. */
14109
14455
  'healthChecks'?: {
14110
14456
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -14196,7 +14542,7 @@ type GetJobResult = {
14196
14542
  };
14197
14543
  'buildEngineConfiguration'?: {
14198
14544
  /** The build engine used. Example: "buildpack" */
14199
- 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
14545
+ 'buildEngine'?: 'buildpack' | 'buildkit' | 'kaniko';
14200
14546
  /** Details about Buildpack settings. */
14201
14547
  'buildpack'?: {
14202
14548
  /** The Buildpack stack used. Example: "HEROKU_24" */
@@ -14389,7 +14735,7 @@ type GetJobBuildsResult = {
14389
14735
  /** ID of the pull request the commit belongs to. */
14390
14736
  'pullRequestId'?: number;
14391
14737
  /** The status of the build. Example: "SUCCESS" */
14392
- 'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
14738
+ 'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
14393
14739
  /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
14394
14740
  'sha'?: string;
14395
14741
  'registry'?: {
@@ -14479,6 +14825,8 @@ type StartJobBuildData = {
14479
14825
  'buildArguments'?: any;
14480
14826
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14481
14827
  'buildFiles'?: any;
14828
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14829
+ 'dockerSecretMounts'?: any;
14482
14830
  /** Overrides for docker build settings. */
14483
14831
  'docker'?: {
14484
14832
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -14543,9 +14891,11 @@ type UpdateJobBuildargumentsParameters = {
14543
14891
  };
14544
14892
  type UpdateJobBuildargumentsData = {
14545
14893
  /** An object containing the all of the build arguments to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
14546
- 'buildArguments': any;
14894
+ 'buildArguments'?: any;
14547
14895
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14548
14896
  'buildFiles'?: any;
14897
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
14898
+ 'dockerSecretMounts'?: any;
14549
14899
  };
14550
14900
  /** Sets build arguments for the given job. */
14551
14901
  declare class UpdateJobBuildargumentsEndpoint extends PostApiEndpoint<UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult> {
@@ -14640,19 +14990,21 @@ type UpdateJobBuildoptionsParameters = {
14640
14990
  };
14641
14991
  type UpdateJobBuildoptionsData = {
14642
14992
  'dockerfile': {
14643
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
14644
- 'buildEngine'?: 'kaniko' | 'buildkit';
14645
- /** Should intermediate image layers be cached? */
14646
- 'useCache'?: boolean;
14993
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
14994
+ 'buildEngine'?: 'buildkit' | 'kaniko';
14647
14995
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
14648
14996
  'dockerFilePath'?: string;
14649
14997
  /** The working directory of the Dockerfile. Example: "/" */
14650
14998
  'dockerWorkDir'?: string;
14651
14999
  'buildkit'?: {
14652
- /** Should use persistent storage to store all layers? */
15000
+ /** Use persistent storage to cache build layers. */
15001
+ 'useCache'?: boolean;
15002
+ /** The amount of persistent storage available to each build in MB. */
15003
+ 'cacheStorageSize'?: number;
15004
+ /** DEPRECATED: This field will be removed in the near future. */
14653
15005
  'useInternalCache'?: boolean;
14654
- /** Persistent storage per build in MB */
14655
- 'internalCacheStorage': number;
15006
+ /** DEPRECATED: This field will be removed in the near future. */
15007
+ 'internalCacheStorage'?: number;
14656
15008
  };
14657
15009
  };
14658
15010
  /** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
@@ -14767,7 +15119,7 @@ type GetJobBuildResult = {
14767
15119
  /** ID of the pull request the commit belongs to. */
14768
15120
  'pullRequestId'?: number;
14769
15121
  /** The status of the build. Example: "SUCCESS" */
14770
- 'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
15122
+ 'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
14771
15123
  /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
14772
15124
  'sha'?: string;
14773
15125
  'registry'?: {
@@ -14973,7 +15325,7 @@ type GetJobDeploymentResult = {
14973
15325
  /** Path of the external image excluding the hostname Example: "nginx:latest" */
14974
15326
  'imagePath': string;
14975
15327
  /** Registry provider hosting the external image Example: "dockerhub" */
14976
- 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
15328
+ 'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
14977
15329
  /** Does the image require authentication */
14978
15330
  'privateImage': boolean;
14979
15331
  };
@@ -15350,6 +15702,8 @@ type StartJobRunData = {
15350
15702
  'runtimeEnvironment'?: any;
15351
15703
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
15352
15704
  'runtimeFiles'?: any;
15705
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
15706
+ 'dockerSecretMounts'?: any;
15353
15707
  'billing'?: {
15354
15708
  /** The ID of the deployment plan override to use. Example: "nf-compute-20" */
15355
15709
  'deploymentPlan'?: string;
@@ -15972,7 +16326,7 @@ type UpdatePreviewtemplateData = {
15972
16326
  'spec': any;
15973
16327
  /** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
15974
16328
  'paused'?: boolean;
15975
- 'triggers': {
16329
+ 'triggers'?: {
15976
16330
  /** A reference that can be used to access the output of this trigger in the template. */
15977
16331
  'ref'?: string;
15978
16332
  /** The VCS provider to use. Example: "github" */
@@ -16856,6 +17210,8 @@ type CreateSecretResult = {
16856
17210
  'variables'?: any;
16857
17211
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
16858
17212
  'files'?: any;
17213
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17214
+ 'dockerSecretMounts'?: any;
16859
17215
  };
16860
17216
  /** Identifier for the secret group Example: "example-secret-group" */
16861
17217
  'id': string;
@@ -16918,6 +17274,8 @@ type CreateSecretData = {
16918
17274
  'variables'?: any;
16919
17275
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
16920
17276
  'files'?: any;
17277
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17278
+ 'dockerSecretMounts'?: any;
16921
17279
  };
16922
17280
  };
16923
17281
  /** Creates a secret with the specified payload */
@@ -16975,6 +17333,8 @@ type PutSecretResult = {
16975
17333
  'variables'?: any;
16976
17334
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
16977
17335
  'files'?: any;
17336
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17337
+ 'dockerSecretMounts'?: any;
16978
17338
  };
16979
17339
  /** Identifier for the secret group Example: "example-secret-group" */
16980
17340
  'id': string;
@@ -17037,6 +17397,8 @@ type PutSecretData = {
17037
17397
  'variables'?: any;
17038
17398
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17039
17399
  'files'?: any;
17400
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17401
+ 'dockerSecretMounts'?: any;
17040
17402
  };
17041
17403
  };
17042
17404
  /** Creates or updates a secret with the specified payload */
@@ -17094,6 +17456,8 @@ type PatchSecretResult = {
17094
17456
  'variables'?: any;
17095
17457
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17096
17458
  'files'?: any;
17459
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17460
+ 'dockerSecretMounts'?: any;
17097
17461
  };
17098
17462
  /** Identifier for the secret group Example: "example-secret-group" */
17099
17463
  'id': string;
@@ -17155,6 +17519,8 @@ type PatchSecretData = {
17155
17519
  'variables'?: any;
17156
17520
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17157
17521
  'files'?: any;
17522
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17523
+ 'dockerSecretMounts'?: any;
17158
17524
  };
17159
17525
  };
17160
17526
  /** Updates a secret with the specified payload */
@@ -17301,6 +17667,8 @@ type UpdateSecretData = {
17301
17667
  'variables'?: any;
17302
17668
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17303
17669
  'files'?: any;
17670
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17671
+ 'dockerSecretMounts'?: any;
17304
17672
  };
17305
17673
  };
17306
17674
  /** Update a secret */
@@ -17537,16 +17905,20 @@ type CreateServiceBuildResult = {
17537
17905
  };
17538
17906
  };
17539
17907
  'dockerfile': {
17540
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
17541
- 'buildEngine'?: 'kaniko' | 'buildkit';
17908
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
17909
+ 'buildEngine'?: 'buildkit' | 'kaniko';
17542
17910
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
17543
17911
  'dockerFilePath': string;
17544
17912
  /** The working directory of the Dockerfile. Example: "/" */
17545
17913
  'dockerWorkDir': string;
17546
- /** Should intermediate image layers be cached? */
17547
- 'useCache'?: boolean;
17548
17914
  'buildkit'?: {
17915
+ /** Use persistent storage to cache build layers. Example: true */
17916
+ 'useCache'?: boolean;
17917
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
17918
+ 'cacheStorageSize'?: number;
17919
+ /** DEPRECATED: This field will be removed in the near future. */
17549
17920
  'useInternalCache'?: boolean;
17921
+ /** DEPRECATED: This field will be removed in the near future. */
17550
17922
  'internalCacheStorage'?: number;
17551
17923
  };
17552
17924
  };
@@ -17599,6 +17971,8 @@ type CreateServiceBuildResult = {
17599
17971
  'buildArguments'?: any;
17600
17972
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17601
17973
  'buildFiles'?: any;
17974
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17975
+ 'dockerSecretMounts'?: any;
17602
17976
  /** Type of the service (combined, build or deployment) Example: "build" */
17603
17977
  'serviceType': 'build';
17604
17978
  /** Identifier for the service Example: "example-service" */
@@ -17625,7 +17999,7 @@ type CreateServiceBuildResult = {
17625
17999
  /** Details about the status of the most recent build. */
17626
18000
  'build'?: {
17627
18001
  /** The current status of the build. Example: "SUCCESS" */
17628
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
18002
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
17629
18003
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
17630
18004
  'lastTransitionTime'?: string;
17631
18005
  };
@@ -17688,16 +18062,20 @@ type CreateServiceBuildData = {
17688
18062
  };
17689
18063
  };
17690
18064
  'dockerfile': {
17691
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
17692
- 'buildEngine'?: 'kaniko' | 'buildkit';
18065
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18066
+ 'buildEngine'?: 'buildkit' | 'kaniko';
17693
18067
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
17694
18068
  'dockerFilePath': string;
17695
18069
  /** The working directory of the Dockerfile. Example: "/" */
17696
18070
  'dockerWorkDir': string;
17697
- /** Should intermediate image layers be cached? */
17698
- 'useCache'?: boolean;
17699
18071
  'buildkit'?: {
18072
+ /** Use persistent storage to cache build layers. Example: true */
18073
+ 'useCache'?: boolean;
18074
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18075
+ 'cacheStorageSize'?: number;
18076
+ /** DEPRECATED: This field will be removed in the near future. */
17700
18077
  'useInternalCache'?: boolean;
18078
+ /** DEPRECATED: This field will be removed in the near future. */
17701
18079
  'internalCacheStorage'?: number;
17702
18080
  };
17703
18081
  };
@@ -17750,6 +18128,8 @@ type CreateServiceBuildData = {
17750
18128
  'buildArguments'?: any;
17751
18129
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17752
18130
  'buildFiles'?: any;
18131
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18132
+ 'dockerSecretMounts'?: any;
17753
18133
  };
17754
18134
  /** Creates a new build service. */
17755
18135
  declare class CreateServiceBuildEndpoint extends PostApiEndpoint<CreateServiceBuildRequest, CreateServiceBuildResult> {
@@ -17809,16 +18189,20 @@ type PutServiceBuildResult = {
17809
18189
  };
17810
18190
  };
17811
18191
  'dockerfile': {
17812
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
17813
- 'buildEngine'?: 'kaniko' | 'buildkit';
18192
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18193
+ 'buildEngine'?: 'buildkit' | 'kaniko';
17814
18194
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
17815
18195
  'dockerFilePath': string;
17816
18196
  /** The working directory of the Dockerfile. Example: "/" */
17817
18197
  'dockerWorkDir': string;
17818
- /** Should intermediate image layers be cached? */
17819
- 'useCache'?: boolean;
17820
18198
  'buildkit'?: {
18199
+ /** Use persistent storage to cache build layers. Example: true */
18200
+ 'useCache'?: boolean;
18201
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18202
+ 'cacheStorageSize'?: number;
18203
+ /** DEPRECATED: This field will be removed in the near future. */
17821
18204
  'useInternalCache'?: boolean;
18205
+ /** DEPRECATED: This field will be removed in the near future. */
17822
18206
  'internalCacheStorage'?: number;
17823
18207
  };
17824
18208
  };
@@ -17871,6 +18255,8 @@ type PutServiceBuildResult = {
17871
18255
  'buildArguments'?: any;
17872
18256
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
17873
18257
  'buildFiles'?: any;
18258
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18259
+ 'dockerSecretMounts'?: any;
17874
18260
  /** Type of the service (combined, build or deployment) Example: "build" */
17875
18261
  'serviceType': 'build';
17876
18262
  /** Identifier for the service Example: "example-service" */
@@ -17897,7 +18283,7 @@ type PutServiceBuildResult = {
17897
18283
  /** Details about the status of the most recent build. */
17898
18284
  'build'?: {
17899
18285
  /** The current status of the build. Example: "SUCCESS" */
17900
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
18286
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
17901
18287
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
17902
18288
  'lastTransitionTime'?: string;
17903
18289
  };
@@ -17960,16 +18346,20 @@ type PutServiceBuildData = {
17960
18346
  };
17961
18347
  };
17962
18348
  'dockerfile': {
17963
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
17964
- 'buildEngine'?: 'kaniko' | 'buildkit';
18349
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18350
+ 'buildEngine'?: 'buildkit' | 'kaniko';
17965
18351
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
17966
18352
  'dockerFilePath': string;
17967
18353
  /** The working directory of the Dockerfile. Example: "/" */
17968
18354
  'dockerWorkDir': string;
17969
- /** Should intermediate image layers be cached? */
17970
- 'useCache'?: boolean;
17971
18355
  'buildkit'?: {
18356
+ /** Use persistent storage to cache build layers. Example: true */
18357
+ 'useCache'?: boolean;
18358
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18359
+ 'cacheStorageSize'?: number;
18360
+ /** DEPRECATED: This field will be removed in the near future. */
17972
18361
  'useInternalCache'?: boolean;
18362
+ /** DEPRECATED: This field will be removed in the near future. */
17973
18363
  'internalCacheStorage'?: number;
17974
18364
  };
17975
18365
  };
@@ -18022,6 +18412,8 @@ type PutServiceBuildData = {
18022
18412
  'buildArguments'?: any;
18023
18413
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18024
18414
  'buildFiles'?: any;
18415
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18416
+ 'dockerSecretMounts'?: any;
18025
18417
  };
18026
18418
  /** Creates or updates a build service. */
18027
18419
  declare class PutServiceBuildEndpoint extends PutApiEndpoint<PutServiceBuildRequest, PutServiceBuildResult> {
@@ -18081,16 +18473,20 @@ type PatchServiceBuildResult = {
18081
18473
  };
18082
18474
  };
18083
18475
  'dockerfile': {
18084
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
18085
- 'buildEngine'?: 'kaniko' | 'buildkit';
18476
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18477
+ 'buildEngine'?: 'buildkit' | 'kaniko';
18086
18478
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
18087
18479
  'dockerFilePath': string;
18088
18480
  /** The working directory of the Dockerfile. Example: "/" */
18089
18481
  'dockerWorkDir': string;
18090
- /** Should intermediate image layers be cached? */
18091
- 'useCache'?: boolean;
18092
18482
  'buildkit'?: {
18483
+ /** Use persistent storage to cache build layers. Example: true */
18484
+ 'useCache'?: boolean;
18485
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18486
+ 'cacheStorageSize'?: number;
18487
+ /** DEPRECATED: This field will be removed in the near future. */
18093
18488
  'useInternalCache'?: boolean;
18489
+ /** DEPRECATED: This field will be removed in the near future. */
18094
18490
  'internalCacheStorage'?: number;
18095
18491
  };
18096
18492
  };
@@ -18143,6 +18539,8 @@ type PatchServiceBuildResult = {
18143
18539
  'buildArguments'?: any;
18144
18540
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18145
18541
  'buildFiles'?: any;
18542
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18543
+ 'dockerSecretMounts'?: any;
18146
18544
  /** Type of the service (combined, build or deployment) Example: "build" */
18147
18545
  'serviceType': 'build';
18148
18546
  /** Identifier for the service Example: "example-service" */
@@ -18169,7 +18567,7 @@ type PatchServiceBuildResult = {
18169
18567
  /** Details about the status of the most recent build. */
18170
18568
  'build'?: {
18171
18569
  /** The current status of the build. Example: "SUCCESS" */
18172
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
18570
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
18173
18571
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
18174
18572
  'lastTransitionTime'?: string;
18175
18573
  };
@@ -18228,16 +18626,20 @@ type PatchServiceBuildData = {
18228
18626
  };
18229
18627
  };
18230
18628
  'dockerfile'?: {
18231
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
18232
- 'buildEngine'?: 'kaniko' | 'buildkit';
18629
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18630
+ 'buildEngine'?: 'buildkit' | 'kaniko';
18233
18631
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
18234
18632
  'dockerFilePath'?: string;
18235
18633
  /** The working directory of the Dockerfile. Example: "/" */
18236
18634
  'dockerWorkDir'?: string;
18237
- /** Should intermediate image layers be cached? */
18238
- 'useCache'?: boolean;
18239
18635
  'buildkit'?: {
18636
+ /** Use persistent storage to cache build layers. Example: true */
18637
+ 'useCache'?: boolean;
18638
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18639
+ 'cacheStorageSize'?: number;
18640
+ /** DEPRECATED: This field will be removed in the near future. */
18240
18641
  'useInternalCache'?: boolean;
18642
+ /** DEPRECATED: This field will be removed in the near future. */
18241
18643
  'internalCacheStorage'?: number;
18242
18644
  };
18243
18645
  };
@@ -18283,6 +18685,8 @@ type PatchServiceBuildData = {
18283
18685
  'buildArguments'?: any;
18284
18686
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18285
18687
  'buildFiles'?: any;
18688
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18689
+ 'dockerSecretMounts'?: any;
18286
18690
  };
18287
18691
  /** Updates a build service. */
18288
18692
  declare class PatchServiceBuildEndpoint extends PatchApiEndpoint<PatchServiceBuildRequest, PatchServiceBuildResult> {
@@ -18504,16 +18908,20 @@ type CreateServiceCombinedResult = {
18504
18908
  };
18505
18909
  };
18506
18910
  'dockerfile': {
18507
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
18508
- 'buildEngine'?: 'kaniko' | 'buildkit';
18911
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18912
+ 'buildEngine'?: 'buildkit' | 'kaniko';
18509
18913
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
18510
18914
  'dockerFilePath': string;
18511
18915
  /** The working directory of the Dockerfile. Example: "/" */
18512
18916
  'dockerWorkDir': string;
18513
- /** Should intermediate image layers be cached? */
18514
- 'useCache'?: boolean;
18515
18917
  'buildkit'?: {
18918
+ /** Use persistent storage to cache build layers. Example: true */
18919
+ 'useCache'?: boolean;
18920
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
18921
+ 'cacheStorageSize'?: number;
18922
+ /** DEPRECATED: This field will be removed in the near future. */
18516
18923
  'useInternalCache'?: boolean;
18924
+ /** DEPRECATED: This field will be removed in the near future. */
18517
18925
  'internalCacheStorage'?: number;
18518
18926
  };
18519
18927
  };
@@ -18566,6 +18974,8 @@ type CreateServiceCombinedResult = {
18566
18974
  'buildArguments'?: any;
18567
18975
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18568
18976
  'buildFiles'?: any;
18977
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
18978
+ 'dockerSecretMounts'?: any;
18569
18979
  /** An array of health checks. */
18570
18980
  'healthChecks'?: {
18571
18981
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -18739,7 +19149,7 @@ type CreateServiceCombinedResult = {
18739
19149
  /** Details about the status of the most recent build. */
18740
19150
  'build'?: {
18741
19151
  /** The current status of the build. Example: "SUCCESS" */
18742
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
19152
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
18743
19153
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
18744
19154
  'lastTransitionTime'?: string;
18745
19155
  };
@@ -19035,16 +19445,20 @@ type CreateServiceCombinedData = {
19035
19445
  };
19036
19446
  };
19037
19447
  'dockerfile': {
19038
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
19039
- 'buildEngine'?: 'kaniko' | 'buildkit';
19448
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
19449
+ 'buildEngine'?: 'buildkit' | 'kaniko';
19040
19450
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
19041
19451
  'dockerFilePath': string;
19042
19452
  /** The working directory of the Dockerfile. Example: "/" */
19043
19453
  'dockerWorkDir': string;
19044
- /** Should intermediate image layers be cached? */
19045
- 'useCache'?: boolean;
19046
19454
  'buildkit'?: {
19455
+ /** Use persistent storage to cache build layers. Example: true */
19456
+ 'useCache'?: boolean;
19457
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
19458
+ 'cacheStorageSize'?: number;
19459
+ /** DEPRECATED: This field will be removed in the near future. */
19047
19460
  'useInternalCache'?: boolean;
19461
+ /** DEPRECATED: This field will be removed in the near future. */
19048
19462
  'internalCacheStorage'?: number;
19049
19463
  };
19050
19464
  };
@@ -19097,6 +19511,8 @@ type CreateServiceCombinedData = {
19097
19511
  'buildArguments'?: any;
19098
19512
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
19099
19513
  'buildFiles'?: any;
19514
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
19515
+ 'dockerSecretMounts'?: any;
19100
19516
  /** An array of health checks. */
19101
19517
  'healthChecks'?: {
19102
19518
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -19398,16 +19814,20 @@ type PutServiceCombinedResult = {
19398
19814
  };
19399
19815
  };
19400
19816
  'dockerfile': {
19401
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
19402
- 'buildEngine'?: 'kaniko' | 'buildkit';
19817
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
19818
+ 'buildEngine'?: 'buildkit' | 'kaniko';
19403
19819
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
19404
19820
  'dockerFilePath': string;
19405
19821
  /** The working directory of the Dockerfile. Example: "/" */
19406
19822
  'dockerWorkDir': string;
19407
- /** Should intermediate image layers be cached? */
19408
- 'useCache'?: boolean;
19409
19823
  'buildkit'?: {
19824
+ /** Use persistent storage to cache build layers. Example: true */
19825
+ 'useCache'?: boolean;
19826
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
19827
+ 'cacheStorageSize'?: number;
19828
+ /** DEPRECATED: This field will be removed in the near future. */
19410
19829
  'useInternalCache'?: boolean;
19830
+ /** DEPRECATED: This field will be removed in the near future. */
19411
19831
  'internalCacheStorage'?: number;
19412
19832
  };
19413
19833
  };
@@ -19460,6 +19880,8 @@ type PutServiceCombinedResult = {
19460
19880
  'buildArguments'?: any;
19461
19881
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
19462
19882
  'buildFiles'?: any;
19883
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
19884
+ 'dockerSecretMounts'?: any;
19463
19885
  /** An array of health checks. */
19464
19886
  'healthChecks'?: {
19465
19887
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -19633,7 +20055,7 @@ type PutServiceCombinedResult = {
19633
20055
  /** Details about the status of the most recent build. */
19634
20056
  'build'?: {
19635
20057
  /** The current status of the build. Example: "SUCCESS" */
19636
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
20058
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
19637
20059
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
19638
20060
  'lastTransitionTime'?: string;
19639
20061
  };
@@ -19929,16 +20351,20 @@ type PutServiceCombinedData = {
19929
20351
  };
19930
20352
  };
19931
20353
  'dockerfile': {
19932
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
19933
- 'buildEngine'?: 'kaniko' | 'buildkit';
20354
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
20355
+ 'buildEngine'?: 'buildkit' | 'kaniko';
19934
20356
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
19935
20357
  'dockerFilePath': string;
19936
20358
  /** The working directory of the Dockerfile. Example: "/" */
19937
20359
  'dockerWorkDir': string;
19938
- /** Should intermediate image layers be cached? */
19939
- 'useCache'?: boolean;
19940
20360
  'buildkit'?: {
20361
+ /** Use persistent storage to cache build layers. Example: true */
20362
+ 'useCache'?: boolean;
20363
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
20364
+ 'cacheStorageSize'?: number;
20365
+ /** DEPRECATED: This field will be removed in the near future. */
19941
20366
  'useInternalCache'?: boolean;
20367
+ /** DEPRECATED: This field will be removed in the near future. */
19942
20368
  'internalCacheStorage'?: number;
19943
20369
  };
19944
20370
  };
@@ -19991,6 +20417,8 @@ type PutServiceCombinedData = {
19991
20417
  'buildArguments'?: any;
19992
20418
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
19993
20419
  'buildFiles'?: any;
20420
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
20421
+ 'dockerSecretMounts'?: any;
19994
20422
  /** An array of health checks. */
19995
20423
  'healthChecks'?: {
19996
20424
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -20292,16 +20720,20 @@ type PatchServiceCombinedResult = {
20292
20720
  };
20293
20721
  };
20294
20722
  'dockerfile': {
20295
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
20296
- 'buildEngine'?: 'kaniko' | 'buildkit';
20723
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
20724
+ 'buildEngine'?: 'buildkit' | 'kaniko';
20297
20725
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
20298
20726
  'dockerFilePath': string;
20299
20727
  /** The working directory of the Dockerfile. Example: "/" */
20300
20728
  'dockerWorkDir': string;
20301
- /** Should intermediate image layers be cached? */
20302
- 'useCache'?: boolean;
20303
20729
  'buildkit'?: {
20730
+ /** Use persistent storage to cache build layers. Example: true */
20731
+ 'useCache'?: boolean;
20732
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
20733
+ 'cacheStorageSize'?: number;
20734
+ /** DEPRECATED: This field will be removed in the near future. */
20304
20735
  'useInternalCache'?: boolean;
20736
+ /** DEPRECATED: This field will be removed in the near future. */
20305
20737
  'internalCacheStorage'?: number;
20306
20738
  };
20307
20739
  };
@@ -20354,6 +20786,8 @@ type PatchServiceCombinedResult = {
20354
20786
  'buildArguments'?: any;
20355
20787
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
20356
20788
  'buildFiles'?: any;
20789
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
20790
+ 'dockerSecretMounts'?: any;
20357
20791
  /** An array of health checks. */
20358
20792
  'healthChecks'?: {
20359
20793
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -20527,7 +20961,7 @@ type PatchServiceCombinedResult = {
20527
20961
  /** Details about the status of the most recent build. */
20528
20962
  'build'?: {
20529
20963
  /** The current status of the build. Example: "SUCCESS" */
20530
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
20964
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
20531
20965
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
20532
20966
  'lastTransitionTime'?: string;
20533
20967
  };
@@ -20815,16 +21249,20 @@ type PatchServiceCombinedData = {
20815
21249
  };
20816
21250
  };
20817
21251
  'dockerfile'?: {
20818
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
20819
- 'buildEngine'?: 'kaniko' | 'buildkit';
21252
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
21253
+ 'buildEngine'?: 'buildkit' | 'kaniko';
20820
21254
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
20821
21255
  'dockerFilePath'?: string;
20822
21256
  /** The working directory of the Dockerfile. Example: "/" */
20823
21257
  'dockerWorkDir'?: string;
20824
- /** Should intermediate image layers be cached? */
20825
- 'useCache'?: boolean;
20826
21258
  'buildkit'?: {
21259
+ /** Use persistent storage to cache build layers. Example: true */
21260
+ 'useCache'?: boolean;
21261
+ /** The amount of persistent storage available to each build in MB. Example: 32768 */
21262
+ 'cacheStorageSize'?: number;
21263
+ /** DEPRECATED: This field will be removed in the near future. */
20827
21264
  'useInternalCache'?: boolean;
21265
+ /** DEPRECATED: This field will be removed in the near future. */
20828
21266
  'internalCacheStorage'?: number;
20829
21267
  };
20830
21268
  };
@@ -20870,6 +21308,8 @@ type PatchServiceCombinedData = {
20870
21308
  'buildArguments'?: any;
20871
21309
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
20872
21310
  'buildFiles'?: any;
21311
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
21312
+ 'dockerSecretMounts'?: any;
20873
21313
  /** An array of health checks. */
20874
21314
  'healthChecks'?: {
20875
21315
  /** The protocol to access the health check with. Example: "HTTP" */
@@ -23551,7 +23991,7 @@ type GetServiceResult = {
23551
23991
  /** Details about the status of the most recent build. */
23552
23992
  'build'?: {
23553
23993
  /** The current status of the build. Example: "SUCCESS" */
23554
- 'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
23994
+ 'status': 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
23555
23995
  /** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
23556
23996
  'lastTransitionTime'?: string;
23557
23997
  };
@@ -23605,7 +24045,7 @@ type GetServiceResult = {
23605
24045
  /** Path of the external image excluding the hostname */
23606
24046
  'imagePath': string;
23607
24047
  /** Registry provider hosting the external image */
23608
- 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
24048
+ 'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
23609
24049
  /** Does the image require authentication */
23610
24050
  'privateImage': boolean;
23611
24051
  };
@@ -23723,7 +24163,7 @@ type GetServiceResult = {
23723
24163
  };
23724
24164
  'buildEngineConfiguration'?: {
23725
24165
  /** The build engine used. Example: "buildpack" */
23726
- 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
24166
+ 'buildEngine'?: 'buildpack' | 'buildkit' | 'kaniko';
23727
24167
  /** Details about Buildpack settings. */
23728
24168
  'buildpack'?: {
23729
24169
  /** The Buildpack stack used. Example: "HEROKU_24" */
@@ -23981,7 +24421,7 @@ type GetServiceBuildsResult = {
23981
24421
  /** ID of the pull request the commit belongs to. */
23982
24422
  'pullRequestId'?: number;
23983
24423
  /** The status of the build. Example: "SUCCESS" */
23984
- 'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
24424
+ 'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
23985
24425
  /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
23986
24426
  'sha'?: string;
23987
24427
  'registry'?: {
@@ -24077,6 +24517,8 @@ type StartServiceBuildData = {
24077
24517
  'buildArguments'?: any;
24078
24518
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
24079
24519
  'buildFiles'?: any;
24520
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
24521
+ 'dockerSecretMounts'?: any;
24080
24522
  /** Overrides for docker build settings. */
24081
24523
  'docker'?: {
24082
24524
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -24141,9 +24583,11 @@ type UpdateServiceBuildargumentsParameters = {
24141
24583
  };
24142
24584
  type UpdateServiceBuildargumentsData = {
24143
24585
  /** An object containing the all of the build arguments to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
24144
- 'buildArguments': any;
24586
+ 'buildArguments'?: any;
24145
24587
  /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
24146
24588
  'buildFiles'?: any;
24589
+ /** Docker secret mount contents as JSON object, encrypted at rest. Must be a valid Docker secret mount identifier Example: {"example-secret-mount_1":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
24590
+ 'dockerSecretMounts'?: any;
24147
24591
  };
24148
24592
  /** Sets the build arguments for the given service. */
24149
24593
  declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult> {
@@ -24238,19 +24682,21 @@ type UpdateServiceBuildoptionsParameters = {
24238
24682
  };
24239
24683
  type UpdateServiceBuildoptionsData = {
24240
24684
  'dockerfile': {
24241
- /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
24242
- 'buildEngine'?: 'kaniko' | 'buildkit';
24243
- /** Should intermediate image layers be cached? */
24244
- 'useCache'?: boolean;
24685
+ /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
24686
+ 'buildEngine'?: 'buildkit' | 'kaniko';
24245
24687
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
24246
24688
  'dockerFilePath'?: string;
24247
24689
  /** The working directory of the Dockerfile. Example: "/" */
24248
24690
  'dockerWorkDir'?: string;
24249
24691
  'buildkit'?: {
24250
- /** Should use persistent storage to store all layers? */
24692
+ /** Use persistent storage to cache build layers. */
24693
+ 'useCache'?: boolean;
24694
+ /** The amount of persistent storage available to each build in MB. */
24695
+ 'cacheStorageSize'?: number;
24696
+ /** DEPRECATED: This field will be removed in the near future. */
24251
24697
  'useInternalCache'?: boolean;
24252
- /** Persistent storage per build in MB */
24253
- 'internalCacheStorage': number;
24698
+ /** DEPRECATED: This field will be removed in the near future. */
24699
+ 'internalCacheStorage'?: number;
24254
24700
  };
24255
24701
  };
24256
24702
  /** An array of pull request build rules. Only supported for build services. Each commit belonging to a pull request on a branch that matches one of the provided build rules will be built automatically. */
@@ -24373,7 +24819,7 @@ type GetServiceBuildResult = {
24373
24819
  /** ID of the pull request the commit belongs to. */
24374
24820
  'pullRequestId'?: number;
24375
24821
  /** The status of the build. Example: "SUCCESS" */
24376
- 'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
24822
+ 'status'?: 'QUEUED' | 'PENDING' | 'UNSCHEDULABLE' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED' | 'IN_PROGRESS';
24377
24823
  /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
24378
24824
  'sha'?: string;
24379
24825
  'registry'?: {
@@ -24575,7 +25021,7 @@ type GetServiceDeploymentResult = {
24575
25021
  /** Path of the external image excluding the hostname Example: "nginx:latest" */
24576
25022
  'imagePath': string;
24577
25023
  /** Registry provider hosting the external image Example: "dockerhub" */
24578
- 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
25024
+ 'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
24579
25025
  /** Does the image require authentication */
24580
25026
  'privateImage': boolean;
24581
25027
  };
@@ -26705,7 +27151,6 @@ declare class ApiClient {
26705
27151
  };
26706
27152
  cloud: {
26707
27153
  cluster: GetCloudClusterCall;
26708
- dockerRegistry: GetCloudDockerregistryCall;
26709
27154
  integration: GetCloudIntegrationCall;
26710
27155
  };
26711
27156
  dnsId: GetDnsidCall;
@@ -26786,7 +27231,6 @@ declare class ApiClient {
26786
27231
  cluster: {
26787
27232
  nodes: ListCloudClusterNodesCall;
26788
27233
  };
26789
- dockerRegistry: ListCloudDockerregistryCall;
26790
27234
  integrations: ListCloudIntegrationsCall;
26791
27235
  nodeTypes: ListCloudNodetypesCall;
26792
27236
  regions: ListCloudRegionsCall;
@@ -26832,7 +27276,6 @@ declare class ApiClient {
26832
27276
  backupDestination: PatchBackupdestinationCall;
26833
27277
  cloud: {
26834
27278
  cluster: PatchCloudClusterCall;
26835
- dockerRegistry: PatchCloudDockerregistryCall;
26836
27279
  integration: PatchCloudIntegrationCall;
26837
27280
  };
26838
27281
  project: PatchProjectCall;
@@ -26853,7 +27296,6 @@ declare class ApiClient {
26853
27296
  backupDestination: DeleteBackupdestinationCall;
26854
27297
  cloud: {
26855
27298
  cluster: DeleteCloudClusterCall;
26856
- dockerRegistry: DeleteCloudDockerregistryCall;
26857
27299
  integration: DeleteCloudIntegrationCall;
26858
27300
  };
26859
27301
  domain: DeleteDomainCall;
@@ -26880,7 +27322,6 @@ declare class ApiClient {
26880
27322
  create: {
26881
27323
  cloud: {
26882
27324
  cluster: CreateCloudClusterCall;
26883
- dockerRegistry: CreateCloudDockerregistryCall;
26884
27325
  integration: CreateCloudIntegrationCall;
26885
27326
  };
26886
27327
  domain: CreateDomainCall;
@@ -26909,7 +27350,6 @@ declare class ApiClient {
26909
27350
  put: {
26910
27351
  cloud: {
26911
27352
  cluster: PutCloudClusterCall;
26912
- dockerRegistry: PutCloudDockerregistryCall;
26913
27353
  integration: PutCloudIntegrationCall;
26914
27354
  };
26915
27355
  project: PutProjectCall;
@@ -27126,7 +27566,6 @@ declare class ApiClient {
27126
27566
  };
27127
27567
  cloud: {
27128
27568
  cluster: GetCloudClusterEndpoint;
27129
- dockerRegistry: GetCloudDockerregistryEndpoint;
27130
27569
  integration: GetCloudIntegrationEndpoint;
27131
27570
  };
27132
27571
  dnsId: GetDnsidEndpoint;
@@ -27191,7 +27630,6 @@ declare class ApiClient {
27191
27630
  cluster: {
27192
27631
  nodes: ListCloudClusterNodesEndpoint;
27193
27632
  };
27194
- dockerRegistry: ListCloudDockerregistryEndpoint;
27195
27633
  integrations: ListCloudIntegrationsEndpoint;
27196
27634
  nodeTypes: ListCloudNodetypesEndpoint;
27197
27635
  regions: ListCloudRegionsEndpoint;
@@ -27237,7 +27675,6 @@ declare class ApiClient {
27237
27675
  backupDestination: PatchBackupdestinationEndpoint;
27238
27676
  cloud: {
27239
27677
  cluster: PatchCloudClusterEndpoint;
27240
- dockerRegistry: PatchCloudDockerregistryEndpoint;
27241
27678
  integration: PatchCloudIntegrationEndpoint;
27242
27679
  };
27243
27680
  project: PatchProjectEndpoint;
@@ -27258,7 +27695,6 @@ declare class ApiClient {
27258
27695
  backupDestination: DeleteBackupdestinationEndpoint;
27259
27696
  cloud: {
27260
27697
  cluster: DeleteCloudClusterEndpoint;
27261
- dockerRegistry: DeleteCloudDockerregistryEndpoint;
27262
27698
  integration: DeleteCloudIntegrationEndpoint;
27263
27699
  };
27264
27700
  domain: DeleteDomainEndpoint;
@@ -27285,7 +27721,6 @@ declare class ApiClient {
27285
27721
  create: {
27286
27722
  cloud: {
27287
27723
  cluster: CreateCloudClusterEndpoint;
27288
- dockerRegistry: CreateCloudDockerregistryEndpoint;
27289
27724
  integration: CreateCloudIntegrationEndpoint;
27290
27725
  };
27291
27726
  domain: CreateDomainEndpoint;
@@ -27314,7 +27749,6 @@ declare class ApiClient {
27314
27749
  put: {
27315
27750
  cloud: {
27316
27751
  cluster: PutCloudClusterEndpoint;
27317
- dockerRegistry: PutCloudDockerregistryEndpoint;
27318
27752
  integration: PutCloudIntegrationEndpoint;
27319
27753
  };
27320
27754
  project: PutProjectEndpoint;
@@ -27504,4 +27938,4 @@ type ApiClientOpts = {
27504
27938
  agent?: any;
27505
27939
  };
27506
27940
 
27507
- export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreOptions, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationEndpoint, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CopyType, CordonCloudClusterNodeCall, CordonCloudClusterNodeEndpoint, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteBackupdestinationCall, DeleteBackupdestinationEndpoint, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DownloadOptions, DrainCloudClusterNodeCall, DrainCloudClusterNodeEndpoint, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresEndpoint, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetApiEndpointPaginated, GetBackupdestinationCall, GetBackupdestinationEndpoint, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateEndpoint, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBackupdestinationsCall, ListBackupdestinationsEndpoint, ListBackupdestinationsOptions, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsEndpoint, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationEndpoint, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, PatchCloudClusterCall, PatchCloudClusterData, PatchCloudClusterEndpoint, PatchCloudClusterParameters, PatchCloudClusterRequest, PatchCloudClusterResult, PatchCloudDockerregistryCall, PatchCloudDockerregistryData, PatchCloudDockerregistryEndpoint, PatchCloudDockerregistryParameters, PatchCloudDockerregistryRequest, PatchCloudDockerregistryResult, PatchCloudIntegrationCall, PatchCloudIntegrationData, PatchCloudIntegrationEndpoint, PatchCloudIntegrationParameters, PatchCloudIntegrationRequest, PatchCloudIntegrationResult, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutCloudClusterCall, PutCloudClusterData, PutCloudClusterEndpoint, PutCloudClusterRequest, PutCloudClusterResult, PutCloudDockerregistryCall, PutCloudDockerregistryData, PutCloudDockerregistryEndpoint, PutCloudDockerregistryParameters, PutCloudDockerregistryRequest, PutCloudDockerregistryResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationEndpoint, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupOptions, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeEndpoint, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, UploadOptions, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
27941
+ export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreOptions, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationEndpoint, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CopyType, CordonCloudClusterNodeCall, CordonCloudClusterNodeEndpoint, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteBackupdestinationCall, DeleteBackupdestinationEndpoint, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DownloadOptions, DrainCloudClusterNodeCall, DrainCloudClusterNodeEndpoint, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresEndpoint, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetApiEndpointPaginated, GetBackupdestinationCall, GetBackupdestinationEndpoint, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateEndpoint, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBackupdestinationsCall, ListBackupdestinationsEndpoint, ListBackupdestinationsOptions, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsEndpoint, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationEndpoint, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, PatchCloudClusterCall, PatchCloudClusterData, PatchCloudClusterEndpoint, PatchCloudClusterParameters, PatchCloudClusterRequest, PatchCloudClusterResult, PatchCloudIntegrationCall, PatchCloudIntegrationData, PatchCloudIntegrationEndpoint, PatchCloudIntegrationParameters, PatchCloudIntegrationRequest, PatchCloudIntegrationResult, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutCloudClusterCall, PutCloudClusterData, PutCloudClusterEndpoint, PutCloudClusterRequest, PutCloudClusterResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationEndpoint, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupOptions, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeEndpoint, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, UploadOptions, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };