@northflank/js-client 0.5.7 → 0.6.0-beta.2

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.
@@ -1,6 +1,7 @@
1
1
  /// <reference types="node" />
2
2
  import { EventEmitter } from 'events';
3
3
  import { Response } from 'node-fetch';
4
+ import * as stream from 'stream';
4
5
 
5
6
  declare type Optional<T, K extends keyof T> = Omit<T, K> & Partial<T>;
6
7
  declare abstract class ApiClientContextProvider {
@@ -15,7 +16,7 @@ declare abstract class ApiClientContextProvider {
15
16
  abstract loadContextWrapper(): ApiClientContextWrapper;
16
17
  getCurrentContext(): ApiClientContext | undefined;
17
18
  private findContext;
18
- getCurrentBaseUrl(): string | undefined;
19
+ getCurrentBaseUrl(throwIfNotPresent?: boolean): string | undefined;
19
20
  getCurrentProjectName(): string | undefined;
20
21
  getCurrentName(): string | undefined;
21
22
  getCurrentToken(): string | undefined;
@@ -346,6 +347,123 @@ declare class NorthflankPortForwarder extends EventEmitter {
346
347
  private assertStartedWithNodejs;
347
348
  }
348
349
 
350
+ interface ExecCommand extends EventEmitter {
351
+ on(event: 'command-started', listener: () => any): any;
352
+ on(event: 'command-completed', listener: () => any): any;
353
+ on(event: 'command-result', listener: (result: {
354
+ code: number;
355
+ message: string;
356
+ }) => any): any;
357
+ on(event: 'error', listener: (error: any) => any): any;
358
+ on(event: 'std-out-data', listener: (data: any) => any): any;
359
+ on(event: 'std-err-data', listener: (data: any) => any): any;
360
+ }
361
+
362
+ declare type ExecConfig = {
363
+ projectId: string;
364
+ entityType: 'service' | 'job' | 'addon' | 'build';
365
+ entityId: string;
366
+ containerName?: string;
367
+ command?: string | string[];
368
+ shell?: string;
369
+ user?: string | number;
370
+ group?: string | number;
371
+ ttyRows?: number;
372
+ ttyColumns?: number;
373
+ };
374
+ declare class ExecCommandStandard extends EventEmitter implements ExecCommand {
375
+ private readonly baseUrl;
376
+ readonly execConfig: ExecConfig;
377
+ private readonly token;
378
+ readonly stdOut: stream.PassThrough;
379
+ readonly stdErr: stream.PassThrough;
380
+ readonly stdIn: stream.PassThrough;
381
+ private remote;
382
+ private currentCommand;
383
+ private duplex;
384
+ constructor(baseUrl: string, execConfig: ExecConfig, token: string, // readonly timeout: number = 120 // Timeout in seconds
385
+ stdOut?: stream.PassThrough, stdErr?: stream.PassThrough, stdIn?: stream.PassThrough);
386
+ private get execEndpoint();
387
+ waitForCommandResult: () => Promise<CommandResult>;
388
+ sendInputToCurrentCommand: (input: string) => Promise<void>;
389
+ resizeTerminal: (size: {
390
+ rows?: number;
391
+ columns?: number;
392
+ }) => Promise<void>;
393
+ start(): Promise<CommandResult>;
394
+ private constructPayloadPacket;
395
+ private initialAuth;
396
+ private reset;
397
+ }
398
+
399
+ declare type CommandResult = {
400
+ exitCode: number;
401
+ status: 'Success' | 'Failure' | 'Unknown';
402
+ message?: string;
403
+ };
404
+ declare type ExecCommandData = {
405
+ command: string | string[];
406
+ containerName?: string;
407
+ shell?: string;
408
+ user?: string | number;
409
+ group?: string | number;
410
+ };
411
+ declare type ExecSessionData = Omit<ExecCommandData, 'command'> & {
412
+ command?: string | string[];
413
+ ttyRows?: number;
414
+ ttyColumns?: number;
415
+ };
416
+ declare class NorthflankExecCommand {
417
+ private readonly contextProvider;
418
+ constructor(contextProvider: ApiClientContextProvider);
419
+ /**
420
+ * Runs command on a Northflank service and waits for completion returning command result and
421
+ * standard output and standard error emitted during commmand execution.
422
+ */
423
+ execServiceCommand(parameters: {
424
+ projectId: string;
425
+ serviceId: string;
426
+ }, data: ExecCommandData): Promise<{
427
+ commandResult: CommandResult;
428
+ stdOut: string;
429
+ stdErr: string;
430
+ }>;
431
+ /**
432
+ * Starts a session on a Northflank service. This is usually a longer-running command. The returned object allows to listen to events as well
433
+ * as consume streams for standard output (stdOut) and standard error (stdErr). Input can be sent using the standard input (stdIn)
434
+ * writable stream.
435
+ */
436
+ execServiceSession(parameters: {
437
+ projectId: string;
438
+ serviceId: string;
439
+ }, data?: ExecSessionData): Promise<ExecCommandStandard>;
440
+ /**
441
+ * Runs command on a Northflank job and waits for completion returning command result and
442
+ * standard output and standard error emitted during commmand execution.
443
+ */
444
+ execJobCommand(parameters: {
445
+ projectId: string;
446
+ jobId: string;
447
+ }, data: ExecCommandData): Promise<{
448
+ commandResult: CommandResult;
449
+ stdOut: string;
450
+ stdErr: string;
451
+ }>;
452
+ /**
453
+ * Starts a session on a Northflank job. This is usually a longer-running command. The returned object allows to listen to events as well
454
+ * as consume streams for standard output (stdOut) and standard error (stdErr). Input can be sent using the standard input (stdIn)
455
+ * writable stream.
456
+ */
457
+ execJobSession(parameters: {
458
+ projectId: string;
459
+ jobId: string;
460
+ }, data?: ExecSessionData): Promise<ExecCommandStandard>;
461
+ private execCommand;
462
+ private shellSession;
463
+ private getCommandRunner;
464
+ private assertStartedWithNodejs;
465
+ }
466
+
349
467
  declare type ListProjectsResult = {
350
468
  /** An array of projects. */
351
469
  'projects': {
@@ -1066,7 +1184,10 @@ declare class DeleteBackupEndpoint extends DeleteApiEndpoint<DeleteBackupRequest
1066
1184
  body: () => undefined;
1067
1185
  }
1068
1186
 
1069
- declare type RestoreAddonBackupResult = any;
1187
+ declare type RestoreAddonBackupResult = {
1188
+ /** The ID of the initiated restore. Example: "1611305397038" */
1189
+ 'restoreId': string;
1190
+ };
1070
1191
  declare type RestoreAddonBackupCall = (opts: RestoreAddonBackupRequest) => Promise<ApiCallResponse<RestoreAddonBackupResult>>;
1071
1192
  declare type RestoreAddonBackupRequest = {
1072
1193
  parameters: RestoreAddonBackupParameters;
@@ -1536,6 +1657,12 @@ declare type CreateJobManualData = {
1536
1657
  'deployment'?: {
1537
1658
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1538
1659
  'cmdOverride'?: string;
1660
+ 'storage'?: {
1661
+ 'ephemeralStorage'?: {
1662
+ /** Ephemeral storage per container in MB */
1663
+ 'storageSize'?: number;
1664
+ };
1665
+ };
1539
1666
  'vcs': {
1540
1667
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
1541
1668
  'projectUrl': string;
@@ -1551,6 +1678,12 @@ declare type CreateJobManualData = {
1551
1678
  } | {
1552
1679
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1553
1680
  'cmdOverride'?: string;
1681
+ 'storage'?: {
1682
+ 'ephemeralStorage'?: {
1683
+ /** Ephemeral storage per container in MB */
1684
+ 'storageSize'?: number;
1685
+ };
1686
+ };
1554
1687
  'external': {
1555
1688
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
1556
1689
  'imagePath': string;
@@ -1560,6 +1693,12 @@ declare type CreateJobManualData = {
1560
1693
  } | {
1561
1694
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1562
1695
  'cmdOverride'?: string;
1696
+ 'storage'?: {
1697
+ 'ephemeralStorage'?: {
1698
+ /** Ephemeral storage per container in MB */
1699
+ 'storageSize'?: number;
1700
+ };
1701
+ };
1563
1702
  'internal': {
1564
1703
  /** ID of the build service to deploy Example: "example-build-service" */
1565
1704
  'id'?: string;
@@ -1598,8 +1737,12 @@ declare type CreateJobManualData = {
1598
1737
  };
1599
1738
  /** An object containing the runtime environment to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
1600
1739
  'runtimeEnvironment'?: any;
1740
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
1741
+ 'runtimeFiles'?: any;
1601
1742
  /** An object containing the build arguments to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
1602
1743
  'buildArguments'?: any;
1744
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
1745
+ 'buildFiles'?: any;
1603
1746
  };
1604
1747
  /** Creates a new manual job that only runs when initiated via the UI, CLI, API or JS client. */
1605
1748
  declare class CreateJobManualEndpoint extends PostApiEndpoint<CreateJobManualRequest, CreateJobManualResult> {
@@ -1716,6 +1859,12 @@ declare type CreateJobCronData = {
1716
1859
  'deployment'?: {
1717
1860
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1718
1861
  'cmdOverride'?: string;
1862
+ 'storage'?: {
1863
+ 'ephemeralStorage'?: {
1864
+ /** Ephemeral storage per container in MB */
1865
+ 'storageSize'?: number;
1866
+ };
1867
+ };
1719
1868
  'vcs': {
1720
1869
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
1721
1870
  'projectUrl': string;
@@ -1731,6 +1880,12 @@ declare type CreateJobCronData = {
1731
1880
  } | {
1732
1881
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1733
1882
  'cmdOverride'?: string;
1883
+ 'storage'?: {
1884
+ 'ephemeralStorage'?: {
1885
+ /** Ephemeral storage per container in MB */
1886
+ 'storageSize'?: number;
1887
+ };
1888
+ };
1734
1889
  'external': {
1735
1890
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
1736
1891
  'imagePath': string;
@@ -1740,6 +1895,12 @@ declare type CreateJobCronData = {
1740
1895
  } | {
1741
1896
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1742
1897
  'cmdOverride'?: string;
1898
+ 'storage'?: {
1899
+ 'ephemeralStorage'?: {
1900
+ /** Ephemeral storage per container in MB */
1901
+ 'storageSize'?: number;
1902
+ };
1903
+ };
1743
1904
  'internal': {
1744
1905
  /** ID of the build service to deploy Example: "example-build-service" */
1745
1906
  'id'?: string;
@@ -1778,8 +1939,12 @@ declare type CreateJobCronData = {
1778
1939
  };
1779
1940
  /** An object containing the runtime environment to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
1780
1941
  'runtimeEnvironment'?: any;
1942
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
1943
+ 'runtimeFiles'?: any;
1781
1944
  /** An object containing the build arguments to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
1782
1945
  'buildArguments'?: any;
1946
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
1947
+ 'buildFiles'?: any;
1783
1948
  /** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
1784
1949
  'schedule': string;
1785
1950
  /** Whether this job should run when another instance of the job is already running. `allow` will enable multiple instances of this job to run. `forbid` will keep the current instance of the job running and stop a new instance from being run. `replace` will terminate any currently running instance of the job and start a new one. Example: "forbid" */
@@ -1793,6 +1958,35 @@ declare class CreateJobCronEndpoint extends PostApiEndpoint<CreateJobCronRequest
1793
1958
  body: (payload: CreateJobCronRequest) => string;
1794
1959
  }
1795
1960
 
1961
+ declare type ScaleJobResult = any;
1962
+ declare type ScaleJobCall = (opts: ScaleJobRequest) => Promise<ApiCallResponse<ScaleJobResult>>;
1963
+ declare type ScaleJobRequest = {
1964
+ parameters: ScaleJobParameters;
1965
+ data: ScaleJobData;
1966
+ };
1967
+ declare type ScaleJobParameters = {
1968
+ /** ID of the project */ 'projectId': string;
1969
+ /** ID of the job */
1970
+ 'jobId': string;
1971
+ };
1972
+ declare type ScaleJobData = {
1973
+ /** ID of the deployment plan to switch to. Example: "nf-compute-20" */
1974
+ 'deploymentPlan'?: string;
1975
+ 'storage'?: {
1976
+ 'ephemeralStorage'?: {
1977
+ /** Ephemeral storage per container in MB */
1978
+ 'storageSize'?: number;
1979
+ };
1980
+ };
1981
+ };
1982
+ /** Modifies the scaling settings for the given job. */
1983
+ declare class ScaleJobEndpoint extends PostApiEndpoint<ScaleJobRequest, ScaleJobResult> {
1984
+ description: string;
1985
+ withAuth: boolean;
1986
+ endpointUrl: (opts: ScaleJobRequest) => string;
1987
+ body: (payload: ScaleJobRequest) => string;
1988
+ }
1989
+
1796
1990
  declare type GetJobRunsResult = {
1797
1991
  /** An array of job run objects. */
1798
1992
  'runs': {
@@ -1866,6 +2060,12 @@ declare type StartJobRunData = {
1866
2060
  'deployment'?: {
1867
2061
  /** The CMD override to use when running the job. Example: "nginx -g" */
1868
2062
  'cmdOverride'?: string;
2063
+ 'storage'?: {
2064
+ 'ephemeralStorage'?: {
2065
+ /** Ephemeral storage per container in MB */
2066
+ 'storageSize'?: number;
2067
+ };
2068
+ };
1869
2069
  /** Optional: Specify the commit to run */
1870
2070
  'internal'?: {
1871
2071
  /** ID of the build service to deploy Example: "example-build-service" */
@@ -1880,6 +2080,12 @@ declare type StartJobRunData = {
1880
2080
  } | {
1881
2081
  /** The CMD override to use when running the job. Example: "nginx -g" */
1882
2082
  'cmdOverride'?: string;
2083
+ 'storage'?: {
2084
+ 'ephemeralStorage'?: {
2085
+ /** Ephemeral storage per container in MB */
2086
+ 'storageSize'?: number;
2087
+ };
2088
+ };
1883
2089
  /** Optional: Specify the external image to run */
1884
2090
  'external'?: {
1885
2091
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
@@ -1993,7 +2199,7 @@ declare type GetJobHealthchecksResult = {
1993
2199
  /** An array of health checks. */
1994
2200
  'healthChecks': {
1995
2201
  /** The protocol to access the health check with. Example: "HTTP" */
1996
- 'protocol': 'HTTP' | 'CMD';
2202
+ 'protocol': 'HTTP' | 'CMD' | 'TCP';
1997
2203
  /** The type of health check. Example: "readinessProbe" */
1998
2204
  'type': 'livenessProbe' | 'readinessProbe';
1999
2205
  /** The path of the health check endpoint. Example: "/health-check" */
@@ -2047,7 +2253,7 @@ declare type UpdateJobHealthchecksData = {
2047
2253
  /** An array of health checks */
2048
2254
  'healthChecks': {
2049
2255
  /** The protocol to access the health check with. Example: "HTTP" */
2050
- 'protocol': 'HTTP' | 'CMD';
2256
+ 'protocol': 'HTTP' | 'CMD' | 'TCP';
2051
2257
  /** The type of health check. Example: "readinessProbe" */
2052
2258
  'type': 'livenessProbe' | 'readinessProbe' | 'startupProbe';
2053
2259
  /** The path of the health check endpoint. Required when protocol is HTTP. Example: "/health-check" */
@@ -2156,7 +2362,12 @@ declare type StartJobBuildParameters = {
2156
2362
  declare type StartJobBuildData = {
2157
2363
  /** Commit sha to build. If not provided, will build the most recent commit of the job's branch. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
2158
2364
  'sha'?: string;
2365
+ } | {
2366
+ /** Commit sha to build. If not provided, will build the most recent commit of the job's branch. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
2367
+ 'sha'?: string;
2368
+ /** An optional object that may specify several different overrides on the build level. */
2159
2369
  'overrides'?: {
2370
+ /** Build arguments that will be set on this build only. In case of conflicts these values take precedence. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
2160
2371
  'buildArguments'?: any;
2161
2372
  };
2162
2373
  };
@@ -2330,7 +2541,12 @@ declare class UpdateJobCmdoverrideEndpoint extends PostApiEndpoint<UpdateJobCmdo
2330
2541
  body: (payload: UpdateJobCmdoverrideRequest) => string;
2331
2542
  }
2332
2543
 
2333
- declare type GetJobBuildargumentsResult = any;
2544
+ declare type GetJobBuildargumentsResult = {
2545
+ /** The build arguments, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain secrets saved to this entity. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked secret groups. Otherwise, this will contain both. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
2546
+ 'buildArguments': any;
2547
+ /** The build secret files, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain files saved to this entity. If the `show` parameter is set to `inherited`, this will only contain files inherited from linked secret groups. Otherwise, this will contain both. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
2548
+ 'buildFiles': any;
2549
+ };
2334
2550
  declare type GetJobBuildargumentsCall = (opts: GetJobBuildargumentsRequest) => Promise<ApiCallResponse<GetJobBuildargumentsResult>>;
2335
2551
  declare type GetJobBuildargumentsRequest = {
2336
2552
  parameters: GetJobBuildargumentsParameters;
@@ -2365,8 +2581,13 @@ declare type UpdateJobBuildargumentsParameters = {
2365
2581
  'jobId': string;
2366
2582
  };
2367
2583
  declare type UpdateJobBuildargumentsData = {
2368
- /** An object containing the all of the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
2584
+ /** An object containing the all of the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
2585
+ 'buildArguments': any;
2586
+ } | {
2587
+ /** An object containing the all of the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
2369
2588
  'buildArguments': any;
2589
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
2590
+ 'buildFiles'?: any;
2370
2591
  };
2371
2592
  /** Sets build arguments for the given job. */
2372
2593
  declare class UpdateJobBuildargumentsEndpoint extends PostApiEndpoint<UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult> {
@@ -2377,27 +2598,56 @@ declare class UpdateJobBuildargumentsEndpoint extends PostApiEndpoint<UpdateJobB
2377
2598
  }
2378
2599
 
2379
2600
  declare type GetJobBuildargumentdetailsResult = {
2380
- /** A stored secret and details about it and its value. This can have the name of any saved secret. */
2381
- 'MY_VARIABLE_NAME'?: {
2382
- /** The value of the secret. Example: "abcdef123456" */
2383
- 'value': any;
2384
- /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
2385
- 'inheritedFrom'?: string;
2386
- /** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
2387
- 'addonId'?: string;
2388
- /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
2389
- 'priority'?: number;
2390
- /** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
2391
- 'overriding': {
2392
- /** The value of the secret. Example: "ffffffffffff" */
2601
+ /** Details about all the secrets accessible by the service. */
2602
+ 'buildArguments': {
2603
+ /** A stored secret and details about it and its value. This can have the name of any saved secret. */
2604
+ 'MY_VARIABLE_NAME'?: {
2605
+ /** The value of the secret. Example: "abcdef123456" */
2393
2606
  'value': any;
2394
- /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
2395
- 'inheritedFrom': string;
2396
- /** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
2607
+ /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
2608
+ 'inheritedFrom'?: string;
2609
+ /** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
2397
2610
  'addonId'?: string;
2398
- /** The priority of the secret group the secret is inherited from. */
2399
- 'priority': number;
2400
- }[];
2611
+ /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
2612
+ 'priority'?: number;
2613
+ /** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
2614
+ 'overriding': {
2615
+ /** The value of the secret. Example: "ffffffffffff" */
2616
+ 'value': any;
2617
+ /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
2618
+ 'inheritedFrom': string;
2619
+ /** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
2620
+ 'addonId'?: string;
2621
+ /** The priority of the secret group the secret is inherited from. */
2622
+ 'priority': number;
2623
+ }[];
2624
+ };
2625
+ };
2626
+ /** Details about all the secrets accessible by the service. */
2627
+ 'buildFiles': {
2628
+ /** A stored secret and details about it and its value. This can have the name of any saved secret. */
2629
+ '/dir/fileName'?: {
2630
+ /** The value of the secret. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
2631
+ 'value': {
2632
+ /** base64 encoded string of the file contents Example: "VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=" */
2633
+ 'data'?: string;
2634
+ /** Original encoding of the file Example: "utf-8" */
2635
+ 'encoding'?: string;
2636
+ };
2637
+ /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
2638
+ 'inheritedFrom'?: string;
2639
+ /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
2640
+ 'priority'?: number;
2641
+ /** An array containing data about other places the file has been inherited from, but that are not being used as a secret with the same file path exists with a higher priority. */
2642
+ 'overriding': {
2643
+ /** The value of the secret. Example: "ffffffffffff" */
2644
+ 'value': any;
2645
+ /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
2646
+ 'inheritedFrom': string;
2647
+ /** The priority of the secret group the secret is inherited from. */
2648
+ 'priority': number;
2649
+ }[];
2650
+ };
2401
2651
  };
2402
2652
  };
2403
2653
  declare type GetJobBuildargumentdetailsCall = (opts: GetJobBuildargumentdetailsRequest) => Promise<ApiCallResponse<GetJobBuildargumentdetailsResult>>;
@@ -2409,7 +2659,7 @@ declare type GetJobBuildargumentdetailsParameters = {
2409
2659
  /** ID of the job */
2410
2660
  'jobId': string;
2411
2661
  };
2412
- /** Get details about the build arguments accessible by the given service. Also requires the permission 'Project > Secrets > General > Read' */
2662
+ /** Get details about the build arguments accessible by the given job. Also requires the permission 'Project > Secrets > General > Read' */
2413
2663
  declare class GetJobBuildargumentdetailsEndpoint extends GetApiEndpoint<GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult> {
2414
2664
  description: string;
2415
2665
  withAuth: boolean;
@@ -2417,7 +2667,12 @@ declare class GetJobBuildargumentdetailsEndpoint extends GetApiEndpoint<GetJobBu
2417
2667
  body: () => undefined;
2418
2668
  }
2419
2669
 
2420
- declare type GetJobRuntimeenvironmentResult = any;
2670
+ declare type GetJobRuntimeenvironmentResult = {
2671
+ /** The runtime environment variables, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain secrets saved to this entity. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked secret groups. Otherwise, this will contain both. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
2672
+ 'runtimeEnvironment': any;
2673
+ /** The runtime secret files, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain files saved to this entity. If the `show` parameter is set to `inherited`, this will only contain files inherited from linked secret groups. Otherwise, this will contain both. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
2674
+ 'runtimeFiles': any;
2675
+ };
2421
2676
  declare type GetJobRuntimeenvironmentCall = (opts: GetJobRuntimeenvironmentRequest) => Promise<ApiCallResponse<GetJobRuntimeenvironmentResult>>;
2422
2677
  declare type GetJobRuntimeenvironmentRequest = {
2423
2678
  parameters: GetJobRuntimeenvironmentParameters;
@@ -2454,6 +2709,11 @@ declare type UpdateJobRuntimeenvironmentParameters = {
2454
2709
  declare type UpdateJobRuntimeenvironmentData = {
2455
2710
  /** An object containing the all of the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
2456
2711
  'runtimeEnvironment': any;
2712
+ } | {
2713
+ /** An object containing the all of the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
2714
+ 'runtimeEnvironment': any;
2715
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
2716
+ 'runtimeFiles'?: any;
2457
2717
  };
2458
2718
  /** Sets the runtime environment for the given job. */
2459
2719
  declare class UpdateJobRuntimeenvironmentEndpoint extends PostApiEndpoint<UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult> {
@@ -2464,27 +2724,56 @@ declare class UpdateJobRuntimeenvironmentEndpoint extends PostApiEndpoint<Update
2464
2724
  }
2465
2725
 
2466
2726
  declare type GetJobRuntimeenvironmentdetailsResult = {
2467
- /** A stored secret and details about it and its value. This can have the name of any saved secret. */
2468
- 'MY_VARIABLE_NAME'?: {
2469
- /** The value of the secret. Example: "abcdef123456" */
2470
- 'value': any;
2471
- /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
2472
- 'inheritedFrom'?: string;
2473
- /** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
2474
- 'addonId'?: string;
2475
- /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
2476
- 'priority'?: number;
2477
- /** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
2478
- 'overriding': {
2479
- /** The value of the secret. Example: "ffffffffffff" */
2727
+ /** Details about all the secrets accessible by the service. */
2728
+ 'runtimeEnvironment': {
2729
+ /** A stored secret and details about it and its value. This can have the name of any saved secret. */
2730
+ 'MY_VARIABLE_NAME'?: {
2731
+ /** The value of the secret. Example: "abcdef123456" */
2480
2732
  'value': any;
2481
- /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
2482
- 'inheritedFrom': string;
2483
- /** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
2733
+ /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
2734
+ 'inheritedFrom'?: string;
2735
+ /** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
2484
2736
  'addonId'?: string;
2485
- /** The priority of the secret group the secret is inherited from. */
2486
- 'priority': number;
2487
- }[];
2737
+ /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
2738
+ 'priority'?: number;
2739
+ /** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
2740
+ 'overriding': {
2741
+ /** The value of the secret. Example: "ffffffffffff" */
2742
+ 'value': any;
2743
+ /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
2744
+ 'inheritedFrom': string;
2745
+ /** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
2746
+ 'addonId'?: string;
2747
+ /** The priority of the secret group the secret is inherited from. */
2748
+ 'priority': number;
2749
+ }[];
2750
+ };
2751
+ };
2752
+ /** Details about all the secrets accessible by the service. */
2753
+ 'runtimeFiles': {
2754
+ /** A stored secret and details about it and its value. This can have the name of any saved secret. */
2755
+ '/dir/fileName'?: {
2756
+ /** The value of the secret. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
2757
+ 'value': {
2758
+ /** base64 encoded string of the file contents Example: "VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=" */
2759
+ 'data'?: string;
2760
+ /** Original encoding of the file Example: "utf-8" */
2761
+ 'encoding'?: string;
2762
+ };
2763
+ /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
2764
+ 'inheritedFrom'?: string;
2765
+ /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
2766
+ 'priority'?: number;
2767
+ /** An array containing data about other places the file has been inherited from, but that are not being used as a secret with the same file path exists with a higher priority. */
2768
+ 'overriding': {
2769
+ /** The value of the secret. Example: "ffffffffffff" */
2770
+ 'value': any;
2771
+ /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
2772
+ 'inheritedFrom': string;
2773
+ /** The priority of the secret group the secret is inherited from. */
2774
+ 'priority': number;
2775
+ }[];
2776
+ };
2488
2777
  };
2489
2778
  };
2490
2779
  declare type GetJobRuntimeenvironmentdetailsCall = (opts: GetJobRuntimeenvironmentdetailsRequest) => Promise<ApiCallResponse<GetJobRuntimeenvironmentdetailsResult>>;
@@ -2682,8 +2971,8 @@ declare class GetJobBranchesEndpoint extends GetApiEndpoint<GetJobBranchesReques
2682
2971
  declare type GetJobPullrequestsResult = {
2683
2972
  /** A list of pull requests for this repository. */
2684
2973
  'pullRequests'?: {
2685
- /** ID number of the pull request. Example: "1" */
2686
- 'id': string;
2974
+ /** ID number of the pull request. Example: 1 */
2975
+ 'id': number;
2687
2976
  /** Status of the pull request. Example: "OPEN" */
2688
2977
  'state': string;
2689
2978
  /** Title of the pull request. Example: "Add new feature handling" */
@@ -3368,8 +3657,12 @@ declare type CreateSecretData = {
3368
3657
  'aliases'?: string[];
3369
3658
  }[];
3370
3659
  }[];
3371
- /** Secret contents as JSON object, encrypted at rest. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
3372
- 'data'?: any;
3660
+ 'secrets'?: {
3661
+ /** Secret variables as JSON object, encrypted at rest. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
3662
+ 'variables'?: any;
3663
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
3664
+ 'files'?: any;
3665
+ };
3373
3666
  };
3374
3667
  /** Creates a secret with the specified payload */
3375
3668
  declare class CreateSecretEndpoint extends PostApiEndpoint<CreateSecretRequest, CreateSecretResult> {
@@ -3408,8 +3701,8 @@ declare type GetSecretResult = {
3408
3701
  'createdAt': string;
3409
3702
  /** The timestamp the secret group was last updated at Example: "2021-01-01 12:00:00.000Z" */
3410
3703
  'updatedAt': string;
3411
- /** Decrypted secret data. If the `show` parameter is set to `this`, this will only contain secrets saved to this group. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked addons. Otherwise, this will contain both. Example: {"a_key":"a_secret","b_key":"b_secret"} */
3412
- 'data': any;
3704
+ /** Decrypted secret data. If the `show` parameter is set to `this`, this will only contain secrets saved to this group. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked addons. Otherwise, this will contain both. Example: {"variables":{"a_key":"a_secret","b_key":"b_secret"},"files":{"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}}} */
3705
+ 'secrets': any;
3413
3706
  };
3414
3707
  declare type GetSecretCall = (opts: GetSecretRequest) => Promise<ApiCallResponse<GetSecretResult>>;
3415
3708
  declare type GetSecretRequest = {
@@ -3493,8 +3786,12 @@ declare type UpdateSecretData = {
3493
3786
  }[];
3494
3787
  /** The type of the created secret Example: "environment" */
3495
3788
  'secretType'?: 'environment-arguments' | 'environment' | 'arguments';
3496
- /** Secret contents as JSON object, encrypted at rest. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
3497
- 'data'?: any;
3789
+ 'secrets'?: {
3790
+ /** Secret variables as JSON object, encrypted at rest. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
3791
+ 'variables'?: any;
3792
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
3793
+ 'files'?: any;
3794
+ };
3498
3795
  };
3499
3796
  /** Update a secret */
3500
3797
  declare class UpdateSecretEndpoint extends PostApiEndpoint<UpdateSecretRequest, UpdateSecretResult> {
@@ -3533,8 +3830,8 @@ declare type GetSecretdetailsResult = {
3533
3830
  'createdAt': string;
3534
3831
  /** The timestamp the secret group was last updated at Example: "2021-01-01 12:00:00.000Z" */
3535
3832
  'updatedAt': string;
3536
- /** Decrypted secret data from secrets saved to this group. Example: {"a_key":"a_secret","b_key":"b_secret"} */
3537
- 'data': any;
3833
+ /** Decrypted secret data from secrets saved to this group. Example: {"variables":{"a_key":"a_secret","b_key":"b_secret"},"files":{"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}}} */
3834
+ 'secrets': any;
3538
3835
  /** Details about linked addons. */
3539
3836
  'addonSecrets': {
3540
3837
  /** The ID of the linked addon Example: "example-addon" */
@@ -3824,7 +4121,7 @@ declare type CreateServiceCombinedData = {
3824
4121
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
3825
4122
  'domains'?: string[];
3826
4123
  /** The protocol to use for the port. Example: "HTTP" */
3827
- 'protocol': 'HTTP' | 'TCP' | 'UDP';
4124
+ 'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
3828
4125
  }[];
3829
4126
  'vcsData': {
3830
4127
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -3865,8 +4162,12 @@ declare type CreateServiceCombinedData = {
3865
4162
  };
3866
4163
  /** An object containing the runtime environment to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
3867
4164
  'runtimeEnvironment'?: any;
4165
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
4166
+ 'runtimeFiles'?: any;
3868
4167
  /** An object containing the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
3869
4168
  'buildArguments'?: any;
4169
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
4170
+ 'buildFiles'?: any;
3870
4171
  };
3871
4172
  /** Creates a new combined service. */
3872
4173
  declare class CreateServiceCombinedEndpoint extends PostApiEndpoint<CreateServiceCombinedRequest, CreateServiceCombinedResult> {
@@ -3973,6 +4274,12 @@ declare type CreateServiceDeploymentData = {
3973
4274
  'instances': number;
3974
4275
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3975
4276
  'cmdOverride'?: string;
4277
+ 'storage'?: {
4278
+ 'ephemeralStorage'?: {
4279
+ /** Ephemeral storage per container in MB */
4280
+ 'storageSize'?: number;
4281
+ };
4282
+ };
3976
4283
  'internal': {
3977
4284
  /** Internal ID of the build service to deploy Example: "example-build-service" */
3978
4285
  'id': string;
@@ -3986,6 +4293,12 @@ declare type CreateServiceDeploymentData = {
3986
4293
  'instances': number;
3987
4294
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3988
4295
  'cmdOverride'?: string;
4296
+ 'storage'?: {
4297
+ 'ephemeralStorage'?: {
4298
+ /** Ephemeral storage per container in MB */
4299
+ 'storageSize'?: number;
4300
+ };
4301
+ };
3989
4302
  'external': {
3990
4303
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
3991
4304
  'imagePath': string;
@@ -3997,6 +4310,12 @@ declare type CreateServiceDeploymentData = {
3997
4310
  'instances': number;
3998
4311
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3999
4312
  'cmdOverride'?: string;
4313
+ 'storage'?: {
4314
+ 'ephemeralStorage'?: {
4315
+ /** Ephemeral storage per container in MB */
4316
+ 'storageSize'?: number;
4317
+ };
4318
+ };
4000
4319
  };
4001
4320
  'ports'?: {
4002
4321
  /** The name used to identify the port. Example: "port-1" */
@@ -4026,10 +4345,12 @@ declare type CreateServiceDeploymentData = {
4026
4345
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
4027
4346
  'domains'?: string[];
4028
4347
  /** The protocol to use for the port. Example: "HTTP" */
4029
- 'protocol': 'HTTP' | 'TCP' | 'UDP';
4348
+ 'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
4030
4349
  }[];
4031
4350
  /** An object containing the runtime environment to set for the service Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
4032
4351
  'runtimeEnvironment'?: any;
4352
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
4353
+ 'runtimeFiles'?: any;
4033
4354
  };
4034
4355
  /** Creates a new deployment service. */
4035
4356
  declare class CreateServiceDeploymentEndpoint extends PostApiEndpoint<CreateServiceDeploymentRequest, CreateServiceDeploymentResult> {
@@ -4179,6 +4500,8 @@ declare type CreateServiceBuildData = {
4179
4500
  };
4180
4501
  /** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
4181
4502
  'buildArguments'?: any;
4503
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
4504
+ 'buildFiles'?: any;
4182
4505
  };
4183
4506
  /** Creates a new build service. */
4184
4507
  declare class CreateServiceBuildEndpoint extends PostApiEndpoint<CreateServiceBuildRequest, CreateServiceBuildResult> {
@@ -4307,7 +4630,7 @@ declare type GetServiceResult = {
4307
4630
  /** The port number. Example: 8080 */
4308
4631
  'internalPort': number;
4309
4632
  /** The protocol used by the port. Example: "HTTP" */
4310
- 'protocol': 'HTTP' | 'TCP' | 'UDP';
4633
+ 'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
4311
4634
  /** If true, the port is exposed publicly. Example: true */
4312
4635
  'public': boolean;
4313
4636
  /** DNS entry for this port. Example: "port-1--example-service--default-service--user-abc1.salvo.code.run" */
@@ -4398,6 +4721,12 @@ declare type ScaleServiceData = {
4398
4721
  'instances'?: number;
4399
4722
  /** ID of the deployment plan to switch to. Example: "nf-compute-20" */
4400
4723
  'deploymentPlan'?: string;
4724
+ 'storage'?: {
4725
+ 'ephemeralStorage'?: {
4726
+ /** Ephemeral storage per container in MB */
4727
+ 'storageSize'?: number;
4728
+ };
4729
+ };
4401
4730
  };
4402
4731
  /** Modifies the scaling settings for the given service. */
4403
4732
  declare class ScaleServiceEndpoint extends PostApiEndpoint<ScaleServiceRequest, ScaleServiceResult> {
@@ -4564,7 +4893,7 @@ declare type GetServicePortsResult = {
4564
4893
  /** The port number. Example: 8080 */
4565
4894
  'internalPort': number;
4566
4895
  /** The protocol used by the port. Example: "HTTP" */
4567
- 'protocol': 'HTTP' | 'TCP' | 'UDP';
4896
+ 'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
4568
4897
  /** If true, the port is exposed publicly. Example: true */
4569
4898
  'public': boolean;
4570
4899
  /** DNS entry for this port. Example: "port-1--example-service--default-service--user-abc1.salvo.code.run" */
@@ -4643,8 +4972,8 @@ declare type UpdateServicePortsData = {
4643
4972
  'internalPort': number;
4644
4973
  /** If true, the port will be exposed publicly. Example: true */
4645
4974
  'public'?: boolean;
4646
- /** The protocol to use for the port. Public ports only support HTTP. Example: "HTTP" */
4647
- 'protocol': 'HTTP' | 'TCP' | 'UDP';
4975
+ /** The protocol to use for the port. Public ports only support `HTTP` and `HTTP/2`. Example: "HTTP" */
4976
+ 'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
4648
4977
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
4649
4978
  'domains'?: string[];
4650
4979
  'security'?: {
@@ -4792,7 +5121,7 @@ declare type GetServiceHealthchecksResult = {
4792
5121
  /** An array of health checks. */
4793
5122
  'healthChecks': {
4794
5123
  /** The protocol to access the health check with. Example: "HTTP" */
4795
- 'protocol': 'HTTP' | 'CMD';
5124
+ 'protocol': 'HTTP' | 'CMD' | 'TCP';
4796
5125
  /** The type of health check. Example: "readinessProbe" */
4797
5126
  'type': 'livenessProbe' | 'readinessProbe';
4798
5127
  /** The path of the health check endpoint. Example: "/health-check" */
@@ -4846,7 +5175,7 @@ declare type UpdateServiceHealthchecksData = {
4846
5175
  /** An array of health checks */
4847
5176
  'healthChecks': {
4848
5177
  /** The protocol to access the health check with. Example: "HTTP" */
4849
- 'protocol': 'HTTP' | 'CMD';
5178
+ 'protocol': 'HTTP' | 'CMD' | 'TCP';
4850
5179
  /** The type of health check. Example: "readinessProbe" */
4851
5180
  'type': 'livenessProbe' | 'readinessProbe' | 'startupProbe';
4852
5181
  /** The path of the health check endpoint. Required when protocol is HTTP. Example: "/health-check" */
@@ -4959,7 +5288,16 @@ declare type StartServiceBuildData = {
4959
5288
  'branch'?: string;
4960
5289
  /** ID of a pull request to build from. If `sha` is not provided, the latest commit of this pull request will be built. Only supported by build services. Build services require either `branch` or `pullRequestId` field, but cannot be provided with both. */
4961
5290
  'pullRequestId'?: number;
5291
+ } | {
5292
+ /** Commit sha to build. If not provided, builds the most recent relevant commit. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
5293
+ 'sha'?: string;
5294
+ /** Branch to build from. If `sha` is not provided, the latest commit of this branch will be built. Only supported by build services. Build services require either `branch` or `pullRequestId` field, but cannot be provided with both. */
5295
+ 'branch'?: string;
5296
+ /** ID of a pull request to build from. If `sha` is not provided, the latest commit of this pull request will be built. Only supported by build services. Build services require either `branch` or `pullRequestId` field, but cannot be provided with both. */
5297
+ 'pullRequestId'?: number;
5298
+ /** An optional object that may specify several different overrides on the build level. */
4962
5299
  'overrides'?: {
5300
+ /** Build arguments that will be set on this build only. In case of conflicts these values take precedence. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
4963
5301
  'buildArguments'?: any;
4964
5302
  };
4965
5303
  };
@@ -5122,8 +5460,8 @@ declare class GetServiceBranchesEndpoint extends GetApiEndpoint<GetServiceBranch
5122
5460
  declare type GetServicePullrequestsResult = {
5123
5461
  /** A list of pull requests for this repository. */
5124
5462
  'pullRequests'?: {
5125
- /** ID number of the pull request. Example: "1" */
5126
- 'id': string;
5463
+ /** ID number of the pull request. Example: 1 */
5464
+ 'id': number;
5127
5465
  /** Status of the pull request. Example: "OPEN" */
5128
5466
  'state': string;
5129
5467
  /** Title of the pull request. Example: "Add new feature handling" */
@@ -5508,7 +5846,12 @@ declare class DetachVolumeEndpoint extends PostApiEndpoint<DetachVolumeRequest,
5508
5846
  body: (payload: DetachVolumeRequest) => string;
5509
5847
  }
5510
5848
 
5511
- declare type GetServiceBuildargumentsResult = any;
5849
+ declare type GetServiceBuildargumentsResult = {
5850
+ /** The build arguments, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain secrets saved to this entity. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked secret groups. Otherwise, this will contain both. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
5851
+ 'buildArguments': any;
5852
+ /** The build secret files, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain files saved to this entity. If the `show` parameter is set to `inherited`, this will only contain files inherited from linked secret groups. Otherwise, this will contain both. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
5853
+ 'buildFiles': any;
5854
+ };
5512
5855
  declare type GetServiceBuildargumentsCall = (opts: GetServiceBuildargumentsRequest) => Promise<ApiCallResponse<GetServiceBuildargumentsResult>>;
5513
5856
  declare type GetServiceBuildargumentsRequest = {
5514
5857
  parameters: GetServiceBuildargumentsParameters;
@@ -5543,8 +5886,13 @@ declare type UpdateServiceBuildargumentsParameters = {
5543
5886
  'serviceId': string;
5544
5887
  };
5545
5888
  declare type UpdateServiceBuildargumentsData = {
5546
- /** An object containing the all of the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
5889
+ /** An object containing the all of the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
5890
+ 'buildArguments': any;
5891
+ } | {
5892
+ /** An object containing the all of the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
5547
5893
  'buildArguments': any;
5894
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
5895
+ 'buildFiles'?: any;
5548
5896
  };
5549
5897
  /** Sets the build arguments for the given service. */
5550
5898
  declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult> {
@@ -5555,27 +5903,56 @@ declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<Update
5555
5903
  }
5556
5904
 
5557
5905
  declare type GetServiceBuildargumentdetailsResult = {
5558
- /** A stored secret and details about it and its value. This can have the name of any saved secret. */
5559
- 'MY_VARIABLE_NAME'?: {
5560
- /** The value of the secret. Example: "abcdef123456" */
5561
- 'value': any;
5562
- /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
5563
- 'inheritedFrom'?: string;
5564
- /** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
5565
- 'addonId'?: string;
5566
- /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
5567
- 'priority'?: number;
5568
- /** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
5569
- 'overriding': {
5570
- /** The value of the secret. Example: "ffffffffffff" */
5906
+ /** Details about all the secrets accessible by the service. */
5907
+ 'buildArguments': {
5908
+ /** A stored secret and details about it and its value. This can have the name of any saved secret. */
5909
+ 'MY_VARIABLE_NAME'?: {
5910
+ /** The value of the secret. Example: "abcdef123456" */
5571
5911
  'value': any;
5572
- /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
5573
- 'inheritedFrom': string;
5574
- /** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
5912
+ /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
5913
+ 'inheritedFrom'?: string;
5914
+ /** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
5575
5915
  'addonId'?: string;
5576
- /** The priority of the secret group the secret is inherited from. */
5577
- 'priority': number;
5578
- }[];
5916
+ /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
5917
+ 'priority'?: number;
5918
+ /** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
5919
+ 'overriding': {
5920
+ /** The value of the secret. Example: "ffffffffffff" */
5921
+ 'value': any;
5922
+ /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
5923
+ 'inheritedFrom': string;
5924
+ /** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
5925
+ 'addonId'?: string;
5926
+ /** The priority of the secret group the secret is inherited from. */
5927
+ 'priority': number;
5928
+ }[];
5929
+ };
5930
+ };
5931
+ /** Details about all the secrets accessible by the service. */
5932
+ 'buildFiles': {
5933
+ /** A stored secret and details about it and its value. This can have the name of any saved secret. */
5934
+ '/dir/fileName'?: {
5935
+ /** The value of the secret. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
5936
+ 'value': {
5937
+ /** base64 encoded string of the file contents Example: "VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=" */
5938
+ 'data'?: string;
5939
+ /** Original encoding of the file Example: "utf-8" */
5940
+ 'encoding'?: string;
5941
+ };
5942
+ /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
5943
+ 'inheritedFrom'?: string;
5944
+ /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
5945
+ 'priority'?: number;
5946
+ /** An array containing data about other places the file has been inherited from, but that are not being used as a secret with the same file path exists with a higher priority. */
5947
+ 'overriding': {
5948
+ /** The value of the secret. Example: "ffffffffffff" */
5949
+ 'value': any;
5950
+ /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
5951
+ 'inheritedFrom': string;
5952
+ /** The priority of the secret group the secret is inherited from. */
5953
+ 'priority': number;
5954
+ }[];
5955
+ };
5579
5956
  };
5580
5957
  };
5581
5958
  declare type GetServiceBuildargumentdetailsCall = (opts: GetServiceBuildargumentdetailsRequest) => Promise<ApiCallResponse<GetServiceBuildargumentdetailsResult>>;
@@ -5595,7 +5972,12 @@ declare class GetServiceBuildargumentdetailsEndpoint extends GetApiEndpoint<GetS
5595
5972
  body: () => undefined;
5596
5973
  }
5597
5974
 
5598
- declare type GetServiceRuntimeenvironmentResult = any;
5975
+ declare type GetServiceRuntimeenvironmentResult = {
5976
+ /** The runtime environment variables, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain secrets saved to this entity. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked secret groups. Otherwise, this will contain both. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
5977
+ 'runtimeEnvironment': any;
5978
+ /** The runtime secret files, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain files saved to this entity. If the `show` parameter is set to `inherited`, this will only contain files inherited from linked secret groups. Otherwise, this will contain both. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
5979
+ 'runtimeFiles': any;
5980
+ };
5599
5981
  declare type GetServiceRuntimeenvironmentCall = (opts: GetServiceRuntimeenvironmentRequest) => Promise<ApiCallResponse<GetServiceRuntimeenvironmentResult>>;
5600
5982
  declare type GetServiceRuntimeenvironmentRequest = {
5601
5983
  parameters: GetServiceRuntimeenvironmentParameters;
@@ -5637,6 +6019,11 @@ declare type UpdateServiceRuntimeenvironmentParameters = {
5637
6019
  declare type UpdateServiceRuntimeenvironmentData = {
5638
6020
  /** An object containing the all of the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
5639
6021
  'runtimeEnvironment': any;
6022
+ } | {
6023
+ /** An object containing the all of the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
6024
+ 'runtimeEnvironment': any;
6025
+ /** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
6026
+ 'runtimeFiles'?: any;
5640
6027
  };
5641
6028
  /** Sets the runtime environment for the given service. */
5642
6029
  declare class UpdateServiceRuntimeenvironmentEndpoint extends PostApiEndpoint<UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult> {
@@ -5647,27 +6034,56 @@ declare class UpdateServiceRuntimeenvironmentEndpoint extends PostApiEndpoint<Up
5647
6034
  }
5648
6035
 
5649
6036
  declare type GetServiceRuntimeenvironmentdetailsResult = {
5650
- /** A stored secret and details about it and its value. This can have the name of any saved secret. */
5651
- 'MY_VARIABLE_NAME'?: {
5652
- /** The value of the secret. Example: "abcdef123456" */
5653
- 'value': any;
5654
- /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
5655
- 'inheritedFrom'?: string;
5656
- /** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
5657
- 'addonId'?: string;
5658
- /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
5659
- 'priority'?: number;
5660
- /** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
5661
- 'overriding': {
5662
- /** The value of the secret. Example: "ffffffffffff" */
6037
+ /** Details about all the secrets accessible by the service. */
6038
+ 'runtimeEnvironment': {
6039
+ /** A stored secret and details about it and its value. This can have the name of any saved secret. */
6040
+ 'MY_VARIABLE_NAME'?: {
6041
+ /** The value of the secret. Example: "abcdef123456" */
5663
6042
  'value': any;
5664
- /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
5665
- 'inheritedFrom': string;
5666
- /** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
6043
+ /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
6044
+ 'inheritedFrom'?: string;
6045
+ /** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
5667
6046
  'addonId'?: string;
5668
- /** The priority of the secret group the secret is inherited from. */
5669
- 'priority': number;
5670
- }[];
6047
+ /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
6048
+ 'priority'?: number;
6049
+ /** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
6050
+ 'overriding': {
6051
+ /** The value of the secret. Example: "ffffffffffff" */
6052
+ 'value': any;
6053
+ /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
6054
+ 'inheritedFrom': string;
6055
+ /** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
6056
+ 'addonId'?: string;
6057
+ /** The priority of the secret group the secret is inherited from. */
6058
+ 'priority': number;
6059
+ }[];
6060
+ };
6061
+ };
6062
+ /** Details about all the secrets accessible by the service. */
6063
+ 'runtimeFiles': {
6064
+ /** A stored secret and details about it and its value. This can have the name of any saved secret. */
6065
+ '/dir/fileName'?: {
6066
+ /** The value of the secret. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
6067
+ 'value': {
6068
+ /** base64 encoded string of the file contents Example: "VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=" */
6069
+ 'data'?: string;
6070
+ /** Original encoding of the file Example: "utf-8" */
6071
+ 'encoding'?: string;
6072
+ };
6073
+ /** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
6074
+ 'inheritedFrom'?: string;
6075
+ /** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
6076
+ 'priority'?: number;
6077
+ /** An array containing data about other places the file has been inherited from, but that are not being used as a secret with the same file path exists with a higher priority. */
6078
+ 'overriding': {
6079
+ /** The value of the secret. Example: "ffffffffffff" */
6080
+ 'value': any;
6081
+ /** The ID of the secret group the secret is inherited from. Example: "secret-2" */
6082
+ 'inheritedFrom': string;
6083
+ /** The priority of the secret group the secret is inherited from. */
6084
+ 'priority': number;
6085
+ }[];
6086
+ };
5671
6087
  };
5672
6088
  };
5673
6089
  declare type GetServiceRuntimeenvironmentdetailsCall = (opts: GetServiceRuntimeenvironmentdetailsRequest) => Promise<ApiCallResponse<GetServiceRuntimeenvironmentdetailsResult>>;
@@ -5692,6 +6108,7 @@ declare class GetServiceRuntimeenvironmentdetailsEndpoint extends GetApiEndpoint
5692
6108
  declare class ApiClient {
5693
6109
  contextProvider: ApiClientContextProvider;
5694
6110
  forwarding: NorthflankPortForwarder;
6111
+ exec: NorthflankExecCommand;
5695
6112
  list: {
5696
6113
  projects: ListProjectsCall;
5697
6114
  addons: ListAddonsCall;
@@ -5788,6 +6205,7 @@ declare class ApiClient {
5788
6205
  };
5789
6206
  scale: {
5790
6207
  addon: ScaleAddonCall;
6208
+ job: ScaleJobCall;
5791
6209
  service: ScaleServiceCall;
5792
6210
  };
5793
6211
  update: {
@@ -5989,6 +6407,7 @@ declare class ApiClient {
5989
6407
  };
5990
6408
  scale: {
5991
6409
  addon: ScaleAddonEndpoint;
6410
+ job: ScaleJobEndpoint;
5992
6411
  service: ScaleServiceEndpoint;
5993
6412
  };
5994
6413
  update: {
@@ -6102,4 +6521,4 @@ declare type ApiClientOpts = {
6102
6521
  customUserAgent?: string;
6103
6522
  };
6104
6523
 
6105
- export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, 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, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonParameters, GetAddonRequest, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, 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, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, NorthflankPortForwarder, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, 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, UpdateJobCmdoverrideCall, UpdateJobCmdoverrideData, UpdateJobCmdoverrideEndpoint, UpdateJobCmdoverrideParameters, UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, 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, UpdateServiceCmdoverrideCall, UpdateServiceCmdoverrideData, UpdateServiceCmdoverrideEndpoint, UpdateServiceCmdoverrideParameters, UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
6524
+ export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, 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, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonParameters, GetAddonRequest, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, 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, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, NorthflankExecCommand, NorthflankPortForwarder, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, 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, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, 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, UpdateJobCmdoverrideCall, UpdateJobCmdoverrideData, UpdateJobCmdoverrideEndpoint, UpdateJobCmdoverrideParameters, UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, 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, UpdateServiceCmdoverrideCall, UpdateServiceCmdoverrideData, UpdateServiceCmdoverrideEndpoint, UpdateServiceCmdoverrideParameters, UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };