@northflank/js-client 0.5.3 → 0.5.6

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.
@@ -1534,6 +1534,8 @@ declare type CreateJobManualData = {
1534
1534
  'activeDeadlineSeconds'?: number;
1535
1535
  /** Where to deploy the job from. */
1536
1536
  'deployment'?: {
1537
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1538
+ 'cmdOverride'?: string;
1537
1539
  'vcs': {
1538
1540
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
1539
1541
  'projectUrl': string;
@@ -1547,6 +1549,8 @@ declare type CreateJobManualData = {
1547
1549
  'projectBranch': string;
1548
1550
  };
1549
1551
  } | {
1552
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1553
+ 'cmdOverride'?: string;
1550
1554
  'external': {
1551
1555
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
1552
1556
  'imagePath': string;
@@ -1554,6 +1558,8 @@ declare type CreateJobManualData = {
1554
1558
  'credentials'?: string;
1555
1559
  };
1556
1560
  } | {
1561
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1562
+ 'cmdOverride'?: string;
1557
1563
  'internal': {
1558
1564
  /** ID of the build service to deploy Example: "example-build-service" */
1559
1565
  'id'?: string;
@@ -1562,7 +1568,7 @@ declare type CreateJobManualData = {
1562
1568
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1563
1569
  'buildSHA'?: any;
1564
1570
  };
1565
- };
1571
+ } | any;
1566
1572
  'buildConfiguration'?: {
1567
1573
  /** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
1568
1574
  'pathIgnoreRules'?: string[];
@@ -1571,6 +1577,8 @@ declare type CreateJobManualData = {
1571
1577
  'dockerfile': {
1572
1578
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
1573
1579
  'buildEngine'?: 'kaniko' | 'buildkit';
1580
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
1581
+ 'useCache'?: boolean;
1574
1582
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
1575
1583
  'dockerFilePath': string;
1576
1584
  /** The working directory of the Dockerfile. Example: "/" */
@@ -1586,8 +1594,8 @@ declare type CreateJobManualData = {
1586
1594
  'buildContext'?: string;
1587
1595
  };
1588
1596
  };
1589
- /** An object containing the environment variables 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"} */
1590
- 'environment'?: any;
1597
+ /** 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"} */
1598
+ 'runtimeEnvironment'?: any;
1591
1599
  /** 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"} */
1592
1600
  'buildArguments'?: any;
1593
1601
  };
@@ -1704,6 +1712,8 @@ declare type CreateJobCronData = {
1704
1712
  'activeDeadlineSeconds'?: number;
1705
1713
  /** Where to deploy the job from. */
1706
1714
  'deployment'?: {
1715
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1716
+ 'cmdOverride'?: string;
1707
1717
  'vcs': {
1708
1718
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
1709
1719
  'projectUrl': string;
@@ -1717,6 +1727,8 @@ declare type CreateJobCronData = {
1717
1727
  'projectBranch': string;
1718
1728
  };
1719
1729
  } | {
1730
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1731
+ 'cmdOverride'?: string;
1720
1732
  'external': {
1721
1733
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
1722
1734
  'imagePath': string;
@@ -1724,6 +1736,8 @@ declare type CreateJobCronData = {
1724
1736
  'credentials'?: string;
1725
1737
  };
1726
1738
  } | {
1739
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1740
+ 'cmdOverride'?: string;
1727
1741
  'internal': {
1728
1742
  /** ID of the build service to deploy Example: "example-build-service" */
1729
1743
  'id'?: string;
@@ -1732,7 +1746,7 @@ declare type CreateJobCronData = {
1732
1746
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1733
1747
  'buildSHA'?: any;
1734
1748
  };
1735
- };
1749
+ } | any;
1736
1750
  'buildConfiguration'?: {
1737
1751
  /** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
1738
1752
  'pathIgnoreRules'?: string[];
@@ -1741,6 +1755,8 @@ declare type CreateJobCronData = {
1741
1755
  'dockerfile': {
1742
1756
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
1743
1757
  'buildEngine'?: 'kaniko' | 'buildkit';
1758
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
1759
+ 'useCache'?: boolean;
1744
1760
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
1745
1761
  'dockerFilePath': string;
1746
1762
  /** The working directory of the Dockerfile. Example: "/" */
@@ -1756,8 +1772,8 @@ declare type CreateJobCronData = {
1756
1772
  'buildContext'?: string;
1757
1773
  };
1758
1774
  };
1759
- /** An object containing the environment variables 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"} */
1760
- 'environment'?: any;
1775
+ /** 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"} */
1776
+ 'runtimeEnvironment'?: any;
1761
1777
  /** 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"} */
1762
1778
  'buildArguments'?: any;
1763
1779
  /** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
@@ -1843,12 +1859,27 @@ declare type StartJobRunParameters = {
1843
1859
  declare type StartJobRunData = {
1844
1860
  /** An object containing the environment variables overrides to use when running the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
1845
1861
  'runtimeEnvironment'?: any;
1846
- /** Details about the addon's deployment. */
1847
1862
  'deployment'?: {
1848
- /** Details about the addon's Docker deployment. */
1849
- 'docker'?: {
1850
- /** The CMD override to use when running the job. Example: "nginx -g" */
1851
- 'cmd'?: string;
1863
+ /** The CMD override to use when running the job. Example: "nginx -g" */
1864
+ 'cmdOverride'?: string;
1865
+ /** Optional: Specify the commit to run */
1866
+ 'internal'?: {
1867
+ /** ID of the build service to deploy Example: "example-build-service" */
1868
+ 'id'?: string;
1869
+ /** Branch to deploy Example: "master" */
1870
+ 'branch'?: string;
1871
+ /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1872
+ 'buildSHA'?: any;
1873
+ };
1874
+ } | {
1875
+ /** The CMD override to use when running the job. Example: "nginx -g" */
1876
+ 'cmdOverride'?: string;
1877
+ /** Optional: Specify the external image to run */
1878
+ 'external'?: {
1879
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
1880
+ 'imagePath': string;
1881
+ /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
1882
+ 'credentials'?: string;
1852
1883
  };
1853
1884
  };
1854
1885
  };
@@ -2119,6 +2150,9 @@ declare type StartJobBuildParameters = {
2119
2150
  declare type StartJobBuildData = {
2120
2151
  /** Commit sha to build. If not provided, will build the most recent commit of the job's branch. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
2121
2152
  'sha'?: string;
2153
+ 'overrides'?: {
2154
+ 'buildArguments'?: any;
2155
+ };
2122
2156
  };
2123
2157
  /** Start a new build for the given job. Given a commit sha, it will build that commit. */
2124
2158
  declare class StartJobBuildEndpoint extends PostApiEndpoint<StartJobBuildRequest, StartJobBuildResult> {
@@ -2204,6 +2238,8 @@ declare type UpdateJobBuildoptionsData = {
2204
2238
  'dockerfile': {
2205
2239
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
2206
2240
  'buildEngine'?: 'kaniko' | 'buildkit';
2241
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
2242
+ 'useCache'?: boolean;
2207
2243
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
2208
2244
  'dockerFilePath'?: string;
2209
2245
  /** The working directory of the Dockerfile. Example: "/" */
@@ -2278,7 +2314,7 @@ declare type UpdateJobCmdoverrideParameters = {
2278
2314
  };
2279
2315
  declare type UpdateJobCmdoverrideData = {
2280
2316
  /** The CMD to run, or null to disable the override. Example: "nginx -g" */
2281
- 'cmd': string;
2317
+ 'cmdOverride': string;
2282
2318
  };
2283
2319
  /** Sets the Docker CMD override for the given job. */
2284
2320
  declare class UpdateJobCmdoverrideEndpoint extends PostApiEndpoint<UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult> {
@@ -2375,53 +2411,53 @@ declare class GetJobBuildargumentdetailsEndpoint extends GetApiEndpoint<GetJobBu
2375
2411
  body: () => undefined;
2376
2412
  }
2377
2413
 
2378
- declare type GetJobEnvironmentResult = any;
2379
- declare type GetJobEnvironmentCall = (opts: GetJobEnvironmentRequest) => Promise<ApiCallResponse<GetJobEnvironmentResult>>;
2380
- declare type GetJobEnvironmentRequest = {
2381
- parameters: GetJobEnvironmentParameters;
2382
- options?: GetJobEnvironmentOptions;
2414
+ declare type GetJobRuntimeenvironmentResult = any;
2415
+ declare type GetJobRuntimeenvironmentCall = (opts: GetJobRuntimeenvironmentRequest) => Promise<ApiCallResponse<GetJobRuntimeenvironmentResult>>;
2416
+ declare type GetJobRuntimeenvironmentRequest = {
2417
+ parameters: GetJobRuntimeenvironmentParameters;
2418
+ options?: GetJobRuntimeenvironmentOptions;
2383
2419
  };
2384
- declare type GetJobEnvironmentParameters = {
2420
+ declare type GetJobRuntimeenvironmentParameters = {
2385
2421
  /** ID of the project */ 'projectId': string;
2386
2422
  /** ID of the job */
2387
2423
  'jobId': string;
2388
2424
  };
2389
- declare type GetJobEnvironmentOptions = {
2425
+ declare type GetJobRuntimeenvironmentOptions = {
2390
2426
  /** Which secrets to display - if set to `this` only the group's secrets are displayed, if set to `inherited` only secrets from linked addons are displayed, if set to `all` or not provided, both are displayed. */
2391
2427
  'show'?: string;
2392
2428
  };
2393
- /** Returns the environment variables for the given job. If the API key does not have the permission 'Project > Secrets > General > Read', secrets inherited from secret groups will not be displayed. */
2394
- declare class GetJobEnvironmentEndpoint extends GetApiEndpoint<GetJobEnvironmentRequest, GetJobEnvironmentResult> {
2429
+ /** Returns the runtime environment for the given job. If the API key does not have the permission 'Project > Secrets > General > Read', secrets inherited from secret groups will not be displayed. */
2430
+ declare class GetJobRuntimeenvironmentEndpoint extends GetApiEndpoint<GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult> {
2395
2431
  description: string;
2396
2432
  withAuth: boolean;
2397
- endpointUrl: (opts: GetJobEnvironmentRequest) => string;
2433
+ endpointUrl: (opts: GetJobRuntimeenvironmentRequest) => string;
2398
2434
  body: () => undefined;
2399
2435
  }
2400
2436
 
2401
- declare type UpdateJobEnvironmentResult = any;
2402
- declare type UpdateJobEnvironmentCall = (opts: UpdateJobEnvironmentRequest) => Promise<ApiCallResponse<UpdateJobEnvironmentResult>>;
2403
- declare type UpdateJobEnvironmentRequest = {
2404
- parameters: UpdateJobEnvironmentParameters;
2405
- data: UpdateJobEnvironmentData;
2437
+ declare type UpdateJobRuntimeenvironmentResult = any;
2438
+ declare type UpdateJobRuntimeenvironmentCall = (opts: UpdateJobRuntimeenvironmentRequest) => Promise<ApiCallResponse<UpdateJobRuntimeenvironmentResult>>;
2439
+ declare type UpdateJobRuntimeenvironmentRequest = {
2440
+ parameters: UpdateJobRuntimeenvironmentParameters;
2441
+ data: UpdateJobRuntimeenvironmentData;
2406
2442
  };
2407
- declare type UpdateJobEnvironmentParameters = {
2443
+ declare type UpdateJobRuntimeenvironmentParameters = {
2408
2444
  /** ID of the project */ 'projectId': string;
2409
2445
  /** ID of the job */
2410
2446
  'jobId': string;
2411
2447
  };
2412
- declare type UpdateJobEnvironmentData = {
2448
+ declare type UpdateJobRuntimeenvironmentData = {
2413
2449
  /** 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"} */
2414
2450
  'runtimeEnvironment': any;
2415
2451
  };
2416
- /** Sets the environment variables for the given job. */
2417
- declare class UpdateJobEnvironmentEndpoint extends PostApiEndpoint<UpdateJobEnvironmentRequest, UpdateJobEnvironmentResult> {
2452
+ /** Sets the runtime environment for the given job. */
2453
+ declare class UpdateJobRuntimeenvironmentEndpoint extends PostApiEndpoint<UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult> {
2418
2454
  description: string;
2419
2455
  withAuth: boolean;
2420
- endpointUrl: (opts: UpdateJobEnvironmentRequest) => string;
2421
- body: (payload: UpdateJobEnvironmentRequest) => string;
2456
+ endpointUrl: (opts: UpdateJobRuntimeenvironmentRequest) => string;
2457
+ body: (payload: UpdateJobRuntimeenvironmentRequest) => string;
2422
2458
  }
2423
2459
 
2424
- declare type GetJobEnvironmentdetailsResult = {
2460
+ declare type GetJobRuntimeenvironmentdetailsResult = {
2425
2461
  /** A stored secret and details about it and its value. This can have the name of any saved secret. */
2426
2462
  'MY_VARIABLE_NAME'?: {
2427
2463
  /** The value of the secret. Example: "abcdef123456" */
@@ -2445,20 +2481,20 @@ declare type GetJobEnvironmentdetailsResult = {
2445
2481
  }[];
2446
2482
  };
2447
2483
  };
2448
- declare type GetJobEnvironmentdetailsCall = (opts: GetJobEnvironmentdetailsRequest) => Promise<ApiCallResponse<GetJobEnvironmentdetailsResult>>;
2449
- declare type GetJobEnvironmentdetailsRequest = {
2450
- parameters: GetJobEnvironmentdetailsParameters;
2484
+ declare type GetJobRuntimeenvironmentdetailsCall = (opts: GetJobRuntimeenvironmentdetailsRequest) => Promise<ApiCallResponse<GetJobRuntimeenvironmentdetailsResult>>;
2485
+ declare type GetJobRuntimeenvironmentdetailsRequest = {
2486
+ parameters: GetJobRuntimeenvironmentdetailsParameters;
2451
2487
  };
2452
- declare type GetJobEnvironmentdetailsParameters = {
2488
+ declare type GetJobRuntimeenvironmentdetailsParameters = {
2453
2489
  /** ID of the project */ 'projectId': string;
2454
2490
  /** ID of the job */
2455
2491
  'jobId': string;
2456
2492
  };
2457
- /** Get details about the environment variables accessible by the given job. Also requires the permission 'Project > Secrets > General > Read' */
2458
- declare class GetJobEnvironmentdetailsEndpoint extends GetApiEndpoint<GetJobEnvironmentdetailsRequest, GetJobEnvironmentdetailsResult> {
2493
+ /** Get details about the runtime environment accessible by the given job. Also requires the permission 'Project > Secrets > General > Read' */
2494
+ declare class GetJobRuntimeenvironmentdetailsEndpoint extends GetApiEndpoint<GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult> {
2459
2495
  description: string;
2460
2496
  withAuth: boolean;
2461
- endpointUrl: (opts: GetJobEnvironmentdetailsRequest) => string;
2497
+ endpointUrl: (opts: GetJobRuntimeenvironmentdetailsRequest) => string;
2462
2498
  body: () => undefined;
2463
2499
  }
2464
2500
 
@@ -3297,7 +3333,7 @@ declare type CreateSecretData = {
3297
3333
  /** A description of the secret. Example: "A description" */
3298
3334
  'description'?: string;
3299
3335
  /** The type of the created secret Example: "environment" */
3300
- 'secretType': 'environment' | 'arguments';
3336
+ 'secretType': 'environment-arguments' | 'environment' | 'arguments';
3301
3337
  /** The priority with which different secrets will be merged. Example: 10 */
3302
3338
  'priority': number;
3303
3339
  /** Restriction settings of the secret */
@@ -3448,7 +3484,7 @@ declare type UpdateSecretData = {
3448
3484
  }[];
3449
3485
  }[];
3450
3486
  /** The type of the created secret Example: "environment" */
3451
- 'secretType'?: 'environment' | 'arguments';
3487
+ 'secretType'?: 'environment-arguments' | 'environment' | 'arguments';
3452
3488
  /** 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"} */
3453
3489
  'data'?: any;
3454
3490
  };
@@ -3798,6 +3834,8 @@ declare type CreateServiceCombinedData = {
3798
3834
  'dockerfile': {
3799
3835
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
3800
3836
  'buildEngine'?: 'kaniko' | 'buildkit';
3837
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
3838
+ 'useCache'?: boolean;
3801
3839
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
3802
3840
  'dockerFilePath': string;
3803
3841
  /** The working directory of the Dockerfile. Example: "/" */
@@ -3817,8 +3855,8 @@ declare type CreateServiceCombinedData = {
3817
3855
  /** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
3818
3856
  'pathIgnoreRules'?: string[];
3819
3857
  };
3820
- /** An object containing 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"} */
3821
- 'environment'?: any;
3858
+ /** 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"} */
3859
+ 'runtimeEnvironment'?: any;
3822
3860
  /** 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"} */
3823
3861
  'buildArguments'?: any;
3824
3862
  };
@@ -3982,8 +4020,8 @@ declare type CreateServiceDeploymentData = {
3982
4020
  /** The protocol to use for the port. Example: "HTTP" */
3983
4021
  'protocol': 'HTTP' | 'TCP' | 'UDP';
3984
4022
  }[];
3985
- /** An object containing the environment variables to set for the service Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
3986
- 'environment'?: any;
4023
+ /** An object containing the runtime environment to set for the service Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
4024
+ 'runtimeEnvironment'?: any;
3987
4025
  };
3988
4026
  /** Creates a new deployment service. */
3989
4027
  declare class CreateServiceDeploymentEndpoint extends PostApiEndpoint<CreateServiceDeploymentRequest, CreateServiceDeploymentResult> {
@@ -4106,6 +4144,8 @@ declare type CreateServiceBuildData = {
4106
4144
  'dockerfile': {
4107
4145
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
4108
4146
  'buildEngine'?: 'kaniko' | 'buildkit';
4147
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
4148
+ 'useCache'?: boolean;
4109
4149
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
4110
4150
  'dockerFilePath': string;
4111
4151
  /** The working directory of the Dockerfile. Example: "/" */
@@ -4640,6 +4680,8 @@ declare type UpdateServiceBuildoptionsData = {
4640
4680
  'dockerfile': {
4641
4681
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
4642
4682
  'buildEngine'?: 'kaniko' | 'buildkit';
4683
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
4684
+ 'useCache'?: boolean;
4643
4685
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
4644
4686
  'dockerFilePath'?: string;
4645
4687
  /** The working directory of the Dockerfile. Example: "/" */
@@ -4726,7 +4768,7 @@ declare type UpdateServiceCmdoverrideParameters = {
4726
4768
  };
4727
4769
  declare type UpdateServiceCmdoverrideData = {
4728
4770
  /** The CMD to run, or null to disable the override. Example: "nginx -g" */
4729
- 'cmd': string;
4771
+ 'cmdOverride': string;
4730
4772
  };
4731
4773
  /** Sets the Docker CMD override for the given service. */
4732
4774
  declare class UpdateServiceCmdoverrideEndpoint extends PostApiEndpoint<UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult> {
@@ -4907,6 +4949,9 @@ declare type StartServiceBuildData = {
4907
4949
  'branch'?: string;
4908
4950
  /** 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. */
4909
4951
  'pullRequestId'?: number;
4952
+ 'overrides'?: {
4953
+ 'buildArguments'?: any;
4954
+ };
4910
4955
  };
4911
4956
  /** Start a new build for the given combined or build service. If given a commit sha, it will build that commit. Otherwise, the most recent relevant commit will be built. If the service provided is a build service, a branch name or pull request to build from is required. */
4912
4957
  declare class StartServiceBuildEndpoint extends PostApiEndpoint<StartServiceBuildRequest, StartServiceBuildResult> {
@@ -5488,8 +5533,8 @@ declare type UpdateServiceBuildargumentsParameters = {
5488
5533
  'serviceId': string;
5489
5534
  };
5490
5535
  declare type UpdateServiceBuildargumentsData = {
5491
- /** 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"} */
5492
- 'buildParameters': any;
5536
+ /** An object containing the all of the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
5537
+ 'buildArguments': any;
5493
5538
  };
5494
5539
  /** Sets the build arguments for the given service. */
5495
5540
  declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult> {
@@ -5540,58 +5585,58 @@ declare class GetServiceBuildargumentdetailsEndpoint extends GetApiEndpoint<GetS
5540
5585
  body: () => undefined;
5541
5586
  }
5542
5587
 
5543
- declare type GetServiceEnvironmentvariablesResult = any;
5544
- declare type GetServiceEnvironmentvariablesCall = (opts: GetServiceEnvironmentvariablesRequest) => Promise<ApiCallResponse<GetServiceEnvironmentvariablesResult>>;
5545
- declare type GetServiceEnvironmentvariablesRequest = {
5546
- parameters: GetServiceEnvironmentvariablesParameters;
5547
- options?: GetServiceEnvironmentvariablesOptions;
5588
+ declare type GetServiceRuntimeenvironmentResult = any;
5589
+ declare type GetServiceRuntimeenvironmentCall = (opts: GetServiceRuntimeenvironmentRequest) => Promise<ApiCallResponse<GetServiceRuntimeenvironmentResult>>;
5590
+ declare type GetServiceRuntimeenvironmentRequest = {
5591
+ parameters: GetServiceRuntimeenvironmentParameters;
5592
+ options?: GetServiceRuntimeenvironmentOptions;
5548
5593
  };
5549
- declare type GetServiceEnvironmentvariablesParameters = {
5594
+ declare type GetServiceRuntimeenvironmentParameters = {
5550
5595
  /** ID of the project */ 'projectId': string;
5551
5596
  /** ID of the service */
5552
5597
  'serviceId': string;
5553
5598
  };
5554
- declare type GetServiceEnvironmentvariablesOptions = {
5599
+ declare type GetServiceRuntimeenvironmentOptions = {
5555
5600
  /** Which secrets to display - if set to `this` only the group's secrets are displayed, if set to `inherited` only secrets from linked addons are displayed, if set to `all` or not provided, both are displayed. */
5556
5601
  'show'?: string;
5557
5602
  };
5558
- /** Gets the environment variables of the given service. If the API key does not have the permission 'Project > Secrets > General > Read', secrets inherited from secret groups will not be displayed. */
5559
- declare class GetServiceEnvironmentvariablesEndpoint extends GetApiEndpoint<GetServiceEnvironmentvariablesRequest, GetServiceEnvironmentvariablesResult> {
5603
+ /** Gets the runtime environment of the given service. If the API key does not have the permission 'Project > Secrets > General > Read', secrets inherited from secret groups will not be displayed. */
5604
+ declare class GetServiceRuntimeenvironmentEndpoint extends GetApiEndpoint<GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult> {
5560
5605
  description: string;
5561
5606
  withAuth: boolean;
5562
- endpointUrl: (opts: GetServiceEnvironmentvariablesRequest) => string;
5607
+ endpointUrl: (opts: GetServiceRuntimeenvironmentRequest) => string;
5563
5608
  body: () => undefined;
5564
5609
  }
5565
5610
 
5566
- declare type UpdateServiceEnvironmentvariablesResult = {
5611
+ declare type UpdateServiceRuntimeenvironmentResult = {
5567
5612
  /** True if the operation was successful. Example: true */
5568
5613
  'success': boolean;
5569
5614
  /** Did the service successfully restart with the new environment variables? Example: true */
5570
5615
  'restartSuccessful': boolean;
5571
5616
  };
5572
- declare type UpdateServiceEnvironmentvariablesCall = (opts: UpdateServiceEnvironmentvariablesRequest) => Promise<ApiCallResponse<UpdateServiceEnvironmentvariablesResult>>;
5573
- declare type UpdateServiceEnvironmentvariablesRequest = {
5574
- parameters: UpdateServiceEnvironmentvariablesParameters;
5575
- data: UpdateServiceEnvironmentvariablesData;
5617
+ declare type UpdateServiceRuntimeenvironmentCall = (opts: UpdateServiceRuntimeenvironmentRequest) => Promise<ApiCallResponse<UpdateServiceRuntimeenvironmentResult>>;
5618
+ declare type UpdateServiceRuntimeenvironmentRequest = {
5619
+ parameters: UpdateServiceRuntimeenvironmentParameters;
5620
+ data: UpdateServiceRuntimeenvironmentData;
5576
5621
  };
5577
- declare type UpdateServiceEnvironmentvariablesParameters = {
5622
+ declare type UpdateServiceRuntimeenvironmentParameters = {
5578
5623
  /** ID of the project */ 'projectId': string;
5579
5624
  /** ID of the service */
5580
5625
  'serviceId': string;
5581
5626
  };
5582
- declare type UpdateServiceEnvironmentvariablesData = {
5627
+ declare type UpdateServiceRuntimeenvironmentData = {
5583
5628
  /** 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"} */
5584
5629
  'runtimeEnvironment': any;
5585
5630
  };
5586
- /** Sets the environment variables for the given service. */
5587
- declare class UpdateServiceEnvironmentvariablesEndpoint extends PostApiEndpoint<UpdateServiceEnvironmentvariablesRequest, UpdateServiceEnvironmentvariablesResult> {
5631
+ /** Sets the runtime environment for the given service. */
5632
+ declare class UpdateServiceRuntimeenvironmentEndpoint extends PostApiEndpoint<UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult> {
5588
5633
  description: string;
5589
5634
  withAuth: boolean;
5590
- endpointUrl: (opts: UpdateServiceEnvironmentvariablesRequest) => string;
5591
- body: (payload: UpdateServiceEnvironmentvariablesRequest) => string;
5635
+ endpointUrl: (opts: UpdateServiceRuntimeenvironmentRequest) => string;
5636
+ body: (payload: UpdateServiceRuntimeenvironmentRequest) => string;
5592
5637
  }
5593
5638
 
5594
- declare type GetServiceEnvironmentvariabledetailsResult = {
5639
+ declare type GetServiceRuntimeenvironmentdetailsResult = {
5595
5640
  /** A stored secret and details about it and its value. This can have the name of any saved secret. */
5596
5641
  'MY_VARIABLE_NAME'?: {
5597
5642
  /** The value of the secret. Example: "abcdef123456" */
@@ -5615,20 +5660,20 @@ declare type GetServiceEnvironmentvariabledetailsResult = {
5615
5660
  }[];
5616
5661
  };
5617
5662
  };
5618
- declare type GetServiceEnvironmentvariabledetailsCall = (opts: GetServiceEnvironmentvariabledetailsRequest) => Promise<ApiCallResponse<GetServiceEnvironmentvariabledetailsResult>>;
5619
- declare type GetServiceEnvironmentvariabledetailsRequest = {
5620
- parameters: GetServiceEnvironmentvariabledetailsParameters;
5663
+ declare type GetServiceRuntimeenvironmentdetailsCall = (opts: GetServiceRuntimeenvironmentdetailsRequest) => Promise<ApiCallResponse<GetServiceRuntimeenvironmentdetailsResult>>;
5664
+ declare type GetServiceRuntimeenvironmentdetailsRequest = {
5665
+ parameters: GetServiceRuntimeenvironmentdetailsParameters;
5621
5666
  };
5622
- declare type GetServiceEnvironmentvariabledetailsParameters = {
5667
+ declare type GetServiceRuntimeenvironmentdetailsParameters = {
5623
5668
  /** ID of the project */ 'projectId': string;
5624
5669
  /** ID of the service */
5625
5670
  'serviceId': string;
5626
5671
  };
5627
- /** Get details about the environment variables accessible by the given service. Also requires the permission 'Project > Secrets > General > Read' */
5628
- declare class GetServiceEnvironmentvariabledetailsEndpoint extends GetApiEndpoint<GetServiceEnvironmentvariabledetailsRequest, GetServiceEnvironmentvariabledetailsResult> {
5672
+ /** Get details about the runtime environment accessible by the given service. Also requires the permission 'Project > Secrets > General > Read' */
5673
+ declare class GetServiceRuntimeenvironmentdetailsEndpoint extends GetApiEndpoint<GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult> {
5629
5674
  description: string;
5630
5675
  withAuth: boolean;
5631
- endpointUrl: (opts: GetServiceEnvironmentvariabledetailsRequest) => string;
5676
+ endpointUrl: (opts: GetServiceRuntimeenvironmentdetailsRequest) => string;
5632
5677
  body: () => undefined;
5633
5678
  }
5634
5679
 
@@ -5688,8 +5733,8 @@ declare class ApiClient {
5688
5733
  build: GetJobBuildCall;
5689
5734
  buildArguments: GetJobBuildargumentsCall;
5690
5735
  buildArgumentDetails: GetJobBuildargumentdetailsCall;
5691
- environment: GetJobEnvironmentCall;
5692
- environmentDetails: GetJobEnvironmentdetailsCall;
5736
+ runtimeEnvironment: GetJobRuntimeenvironmentCall;
5737
+ runtimeEnvironmentDetails: GetJobRuntimeenvironmentdetailsCall;
5693
5738
  deployment: GetJobDeploymentCall;
5694
5739
  containers: GetJobContainersCall;
5695
5740
  branches: GetJobBranchesCall;
@@ -5713,8 +5758,8 @@ declare class ApiClient {
5713
5758
  pullRequests: GetServicePullrequestsCall;
5714
5759
  buildArguments: GetServiceBuildargumentsCall;
5715
5760
  buildArgumentDetails: GetServiceBuildargumentdetailsCall;
5716
- environmentVariables: GetServiceEnvironmentvariablesCall;
5717
- environmentVariableDetails: GetServiceEnvironmentvariabledetailsCall;
5761
+ runtimeEnvironment: GetServiceRuntimeenvironmentCall;
5762
+ runtimeEnvironmentDetails: GetServiceRuntimeenvironmentdetailsCall;
5718
5763
  };
5719
5764
  volume: GetVolumeCall;
5720
5765
  };
@@ -5748,7 +5793,7 @@ declare class ApiClient {
5748
5793
  buildSource: UpdateJobBuildsourceCall;
5749
5794
  cmdOverride: UpdateJobCmdoverrideCall;
5750
5795
  buildArguments: UpdateJobBuildargumentsCall;
5751
- environment: UpdateJobEnvironmentCall;
5796
+ runtimeEnvironment: UpdateJobRuntimeenvironmentCall;
5752
5797
  deployment: UpdateJobDeploymentCall;
5753
5798
  };
5754
5799
  registryCredentials: UpdateRegistrycredentialsCall;
@@ -5762,7 +5807,7 @@ declare class ApiClient {
5762
5807
  cmdOverride: UpdateServiceCmdoverrideCall;
5763
5808
  healthChecks: UpdateServiceHealthchecksCall;
5764
5809
  buildArguments: UpdateServiceBuildargumentsCall;
5765
- environmentVariables: UpdateServiceEnvironmentvariablesCall;
5810
+ runtimeEnvironment: UpdateServiceRuntimeenvironmentCall;
5766
5811
  };
5767
5812
  volume: UpdateVolumeCall;
5768
5813
  };
@@ -5889,8 +5934,8 @@ declare class ApiClient {
5889
5934
  build: GetJobBuildEndpoint;
5890
5935
  buildArguments: GetJobBuildargumentsEndpoint;
5891
5936
  buildArgumentDetails: GetJobBuildargumentdetailsEndpoint;
5892
- environment: GetJobEnvironmentEndpoint;
5893
- environmentDetails: GetJobEnvironmentdetailsEndpoint;
5937
+ runtimeEnvironment: GetJobRuntimeenvironmentEndpoint;
5938
+ runtimeEnvironmentDetails: GetJobRuntimeenvironmentdetailsEndpoint;
5894
5939
  deployment: GetJobDeploymentEndpoint;
5895
5940
  containers: GetJobContainersEndpoint;
5896
5941
  branches: GetJobBranchesEndpoint;
@@ -5914,8 +5959,8 @@ declare class ApiClient {
5914
5959
  pullRequests: GetServicePullrequestsEndpoint;
5915
5960
  buildArguments: GetServiceBuildargumentsEndpoint;
5916
5961
  buildArgumentDetails: GetServiceBuildargumentdetailsEndpoint;
5917
- environmentVariables: GetServiceEnvironmentvariablesEndpoint;
5918
- environmentVariableDetails: GetServiceEnvironmentvariabledetailsEndpoint;
5962
+ runtimeEnvironment: GetServiceRuntimeenvironmentEndpoint;
5963
+ runtimeEnvironmentDetails: GetServiceRuntimeenvironmentdetailsEndpoint;
5919
5964
  };
5920
5965
  volume: GetVolumeEndpoint;
5921
5966
  };
@@ -5949,7 +5994,7 @@ declare class ApiClient {
5949
5994
  buildSource: UpdateJobBuildsourceEndpoint;
5950
5995
  cmdOverride: UpdateJobCmdoverrideEndpoint;
5951
5996
  buildArguments: UpdateJobBuildargumentsEndpoint;
5952
- environment: UpdateJobEnvironmentEndpoint;
5997
+ runtimeEnvironment: UpdateJobRuntimeenvironmentEndpoint;
5953
5998
  deployment: UpdateJobDeploymentEndpoint;
5954
5999
  };
5955
6000
  registryCredentials: UpdateRegistrycredentialsEndpoint;
@@ -5963,7 +6008,7 @@ declare class ApiClient {
5963
6008
  cmdOverride: UpdateServiceCmdoverrideEndpoint;
5964
6009
  healthChecks: UpdateServiceHealthchecksEndpoint;
5965
6010
  buildArguments: UpdateServiceBuildargumentsEndpoint;
5966
- environmentVariables: UpdateServiceEnvironmentvariablesEndpoint;
6011
+ runtimeEnvironment: UpdateServiceRuntimeenvironmentEndpoint;
5967
6012
  };
5968
6013
  volume: UpdateVolumeEndpoint;
5969
6014
  };
@@ -6047,4 +6092,4 @@ declare type ApiClientOpts = {
6047
6092
  customUserAgent?: string;
6048
6093
  };
6049
6094
 
6050
- 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, GetJobEnvironmentCall, GetJobEnvironmentEndpoint, GetJobEnvironmentOptions, GetJobEnvironmentParameters, GetJobEnvironmentRequest, GetJobEnvironmentResult, GetJobEnvironmentdetailsCall, GetJobEnvironmentdetailsEndpoint, GetJobEnvironmentdetailsParameters, GetJobEnvironmentdetailsRequest, GetJobEnvironmentdetailsResult, 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, 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, GetServiceEnvironmentvariabledetailsCall, GetServiceEnvironmentvariabledetailsEndpoint, GetServiceEnvironmentvariabledetailsParameters, GetServiceEnvironmentvariabledetailsRequest, GetServiceEnvironmentvariabledetailsResult, GetServiceEnvironmentvariablesCall, GetServiceEnvironmentvariablesEndpoint, GetServiceEnvironmentvariablesOptions, GetServiceEnvironmentvariablesParameters, GetServiceEnvironmentvariablesRequest, GetServiceEnvironmentvariablesResult, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, 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, UpdateJobEnvironmentCall, UpdateJobEnvironmentData, UpdateJobEnvironmentEndpoint, UpdateJobEnvironmentParameters, UpdateJobEnvironmentRequest, UpdateJobEnvironmentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, 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, UpdateServiceEnvironmentvariablesCall, UpdateServiceEnvironmentvariablesData, UpdateServiceEnvironmentvariablesEndpoint, UpdateServiceEnvironmentvariablesParameters, UpdateServiceEnvironmentvariablesRequest, UpdateServiceEnvironmentvariablesResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
6095
+ 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 };