@northflank/js-client 0.6.0-beta.2 → 0.6.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.
@@ -1239,14 +1239,14 @@ declare class ImportAddonBackupEndpoint extends PostApiEndpoint<ImportAddonBacku
1239
1239
 
1240
1240
  declare type GetAddonContainersResult = {
1241
1241
  /** An array of containers. */
1242
- 'pods': {
1243
- /** The timestamp the pod was created. Example: 1611241087 */
1242
+ 'containers': {
1243
+ /** The name of the container. Example: "example-service-78b4d4459d-sbtn8" */
1244
+ 'name': string;
1245
+ /** The timestamp the container was created. Example: 1611241087 */
1244
1246
  'createdAt': number;
1245
- /** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
1246
- 'podName': string;
1247
- /** The current status of the pod. Example: "TASK_RUNNING" */
1247
+ /** The current status of the container. Example: "TASK_RUNNING" */
1248
1248
  'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
1249
- /** The timestamp the pod was last updated. Example: 1611241087 */
1249
+ /** The timestamp the container was last updated. Example: 1611241087 */
1250
1250
  'updatedAt': number;
1251
1251
  }[];
1252
1252
  };
@@ -1412,7 +1412,7 @@ declare type ListJobsResult = {
1412
1412
  /** A short description of the job Example: "This is the job description" */
1413
1413
  'description'?: string;
1414
1414
  /** Type of the job (manual or cron) Example: "cron" */
1415
- 'jobType': 'cron' | 'manual';
1415
+ 'jobType': 'manual' | 'cron';
1416
1416
  /** Whether Continuous Integration is disabled */
1417
1417
  'disabledCI': boolean;
1418
1418
  /** Whether Continuous Deployment is disabled */
@@ -1455,7 +1455,7 @@ declare type GetJobResult = {
1455
1455
  /** ID of the project that the job belongs to Example: "default-project" */
1456
1456
  'projectId': string;
1457
1457
  /** Type of the job (manual or cron) Example: "cron" */
1458
- 'jobType': 'cron' | 'manual';
1458
+ 'jobType': 'manual' | 'cron';
1459
1459
  /** The time the job was created. Example: "2021-01-20T11:19:53.175Z" */
1460
1460
  'createdAt': string;
1461
1461
  'vcsData'?: {
@@ -1501,6 +1501,31 @@ declare type GetJobResult = {
1501
1501
  'deployment'?: {
1502
1502
  /** Region where this job is deployed and built Example: "europe-west" */
1503
1503
  'region'?: string;
1504
+ /** Details about the Docker overrides for this deployment. */
1505
+ 'docker'?: {
1506
+ /** Details about the CMD override for this deployment. */
1507
+ 'cmd': {
1508
+ /** Whether the CMD override is enabled. Example: true */
1509
+ 'enabled': boolean;
1510
+ /** The CMD to run instead of the default if CMD override is enabled. Example: "nginx -g" */
1511
+ 'value': string;
1512
+ };
1513
+ /** Details about the entrypoint override for this deployment. */
1514
+ 'entrypoint': {
1515
+ /** Whether the entrypoint override is enabled. Example: true */
1516
+ 'enabled': boolean;
1517
+ /** The CMD to run instead of the default if entrypoint override is enabled. Example: "/docker-entrypoint.sh" */
1518
+ 'value': string;
1519
+ };
1520
+ };
1521
+ /** Details about storage settings for this deployment. */
1522
+ 'storage'?: {
1523
+ /** Details about ephemeral storage settings for this deployment. */
1524
+ 'ephemeralStorage'?: {
1525
+ /** Ephemeral storage per container in MB Example: 1024 */
1526
+ 'storageSize': number;
1527
+ };
1528
+ };
1504
1529
  };
1505
1530
  'billing': {
1506
1531
  /** ID of the billing plan used by this job Example: "nf-compute-20" */
@@ -1612,13 +1637,38 @@ declare type CreateJobManualResult = {
1612
1637
  'deployment'?: {
1613
1638
  /** Region where this job is deployed and built Example: "europe-west" */
1614
1639
  'region'?: string;
1640
+ /** Details about the Docker overrides for this deployment. */
1641
+ 'docker'?: {
1642
+ /** Details about the CMD override for this deployment. */
1643
+ 'cmd': {
1644
+ /** Whether the CMD override is enabled. Example: true */
1645
+ 'enabled': boolean;
1646
+ /** The CMD to run instead of the default if CMD override is enabled. Example: "nginx -g" */
1647
+ 'value': string;
1648
+ };
1649
+ /** Details about the entrypoint override for this deployment. */
1650
+ 'entrypoint': {
1651
+ /** Whether the entrypoint override is enabled. Example: true */
1652
+ 'enabled': boolean;
1653
+ /** The CMD to run instead of the default if entrypoint override is enabled. Example: "/docker-entrypoint.sh" */
1654
+ 'value': string;
1655
+ };
1656
+ };
1657
+ /** Details about storage settings for this deployment. */
1658
+ 'storage'?: {
1659
+ /** Details about ephemeral storage settings for this deployment. */
1660
+ 'ephemeralStorage'?: {
1661
+ /** Ephemeral storage per container in MB Example: 1024 */
1662
+ 'storageSize': number;
1663
+ };
1664
+ };
1615
1665
  };
1616
1666
  'billing': {
1617
1667
  /** ID of the billing plan used by this job Example: "nf-compute-20" */
1618
1668
  'deploymentPlan': string;
1619
1669
  };
1620
1670
  /** Type of the job (manual or cron) Example: "manual" */
1621
- 'jobType': 'cron' | 'manual';
1671
+ 'jobType': 'manual' | 'cron';
1622
1672
  /** Job settings */
1623
1673
  'settings': {
1624
1674
  /** The number of attempts to rerun a job before it is marked as failed. */
@@ -1655,11 +1705,13 @@ declare type CreateJobManualData = {
1655
1705
  'activeDeadlineSeconds'?: number;
1656
1706
  /** Where to deploy the job from. */
1657
1707
  'deployment'?: {
1658
- /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1708
+ /** If set, the job runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1659
1709
  'cmdOverride'?: string;
1710
+ /** If set, the job runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
1711
+ 'entrypointOverride'?: string;
1660
1712
  'storage'?: {
1661
1713
  'ephemeralStorage'?: {
1662
- /** Ephemeral storage per container in MB */
1714
+ /** Ephemeral storage per container in MB Example: 1024 */
1663
1715
  'storageSize'?: number;
1664
1716
  };
1665
1717
  };
@@ -1676,11 +1728,13 @@ declare type CreateJobManualData = {
1676
1728
  'projectBranch': string;
1677
1729
  };
1678
1730
  } | {
1679
- /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1731
+ /** If set, the job runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1680
1732
  'cmdOverride'?: string;
1733
+ /** If set, the job runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
1734
+ 'entrypointOverride'?: string;
1681
1735
  'storage'?: {
1682
1736
  'ephemeralStorage'?: {
1683
- /** Ephemeral storage per container in MB */
1737
+ /** Ephemeral storage per container in MB Example: 1024 */
1684
1738
  'storageSize'?: number;
1685
1739
  };
1686
1740
  };
@@ -1691,11 +1745,13 @@ declare type CreateJobManualData = {
1691
1745
  'credentials'?: string;
1692
1746
  };
1693
1747
  } | {
1694
- /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1748
+ /** If set, the job runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1695
1749
  'cmdOverride'?: string;
1750
+ /** If set, the job runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
1751
+ 'entrypointOverride'?: string;
1696
1752
  'storage'?: {
1697
1753
  'ephemeralStorage'?: {
1698
- /** Ephemeral storage per container in MB */
1754
+ /** Ephemeral storage per container in MB Example: 1024 */
1699
1755
  'storageSize'?: number;
1700
1756
  };
1701
1757
  };
@@ -1705,7 +1761,7 @@ declare type CreateJobManualData = {
1705
1761
  /** Branch to deploy Example: "master" */
1706
1762
  'branch'?: string;
1707
1763
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1708
- 'buildSHA'?: any;
1764
+ 'buildSHA'?: string | 'latest';
1709
1765
  /** ID of the build that should be deployed Example: "premium-guide-6393" */
1710
1766
  'buildId'?: string;
1711
1767
  };
@@ -1808,6 +1864,31 @@ declare type CreateJobCronResult = {
1808
1864
  'deployment'?: {
1809
1865
  /** Region where this job is deployed and built Example: "europe-west" */
1810
1866
  'region'?: string;
1867
+ /** Details about the Docker overrides for this deployment. */
1868
+ 'docker'?: {
1869
+ /** Details about the CMD override for this deployment. */
1870
+ 'cmd': {
1871
+ /** Whether the CMD override is enabled. Example: true */
1872
+ 'enabled': boolean;
1873
+ /** The CMD to run instead of the default if CMD override is enabled. Example: "nginx -g" */
1874
+ 'value': string;
1875
+ };
1876
+ /** Details about the entrypoint override for this deployment. */
1877
+ 'entrypoint': {
1878
+ /** Whether the entrypoint override is enabled. Example: true */
1879
+ 'enabled': boolean;
1880
+ /** The CMD to run instead of the default if entrypoint override is enabled. Example: "/docker-entrypoint.sh" */
1881
+ 'value': string;
1882
+ };
1883
+ };
1884
+ /** Details about storage settings for this deployment. */
1885
+ 'storage'?: {
1886
+ /** Details about ephemeral storage settings for this deployment. */
1887
+ 'ephemeralStorage'?: {
1888
+ /** Ephemeral storage per container in MB Example: 1024 */
1889
+ 'storageSize': number;
1890
+ };
1891
+ };
1811
1892
  };
1812
1893
  'billing': {
1813
1894
  /** ID of the billing plan used by this job Example: "nf-compute-20" */
@@ -1828,7 +1909,7 @@ declare type CreateJobCronResult = {
1828
1909
  'activeDeadlineSeconds': number;
1829
1910
  };
1830
1911
  /** Type of the job (manual or cron) Example: "cron" */
1831
- 'jobType': 'cron' | 'manual';
1912
+ 'jobType': 'manual' | 'cron';
1832
1913
  /** Whether the job will be built immediately Example: true */
1833
1914
  'buildInitiated': boolean;
1834
1915
  };
@@ -1857,11 +1938,13 @@ declare type CreateJobCronData = {
1857
1938
  'activeDeadlineSeconds'?: number;
1858
1939
  /** Where to deploy the job from. */
1859
1940
  'deployment'?: {
1860
- /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1941
+ /** If set, the job runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1861
1942
  'cmdOverride'?: string;
1943
+ /** If set, the job runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
1944
+ 'entrypointOverride'?: string;
1862
1945
  'storage'?: {
1863
1946
  'ephemeralStorage'?: {
1864
- /** Ephemeral storage per container in MB */
1947
+ /** Ephemeral storage per container in MB Example: 1024 */
1865
1948
  'storageSize'?: number;
1866
1949
  };
1867
1950
  };
@@ -1878,11 +1961,13 @@ declare type CreateJobCronData = {
1878
1961
  'projectBranch': string;
1879
1962
  };
1880
1963
  } | {
1881
- /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1964
+ /** If set, the job runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1882
1965
  'cmdOverride'?: string;
1966
+ /** If set, the job runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
1967
+ 'entrypointOverride'?: string;
1883
1968
  'storage'?: {
1884
1969
  'ephemeralStorage'?: {
1885
- /** Ephemeral storage per container in MB */
1970
+ /** Ephemeral storage per container in MB Example: 1024 */
1886
1971
  'storageSize'?: number;
1887
1972
  };
1888
1973
  };
@@ -1893,11 +1978,13 @@ declare type CreateJobCronData = {
1893
1978
  'credentials'?: string;
1894
1979
  };
1895
1980
  } | {
1896
- /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1981
+ /** If set, the job runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1897
1982
  'cmdOverride'?: string;
1983
+ /** If set, the job runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
1984
+ 'entrypointOverride'?: string;
1898
1985
  'storage'?: {
1899
1986
  'ephemeralStorage'?: {
1900
- /** Ephemeral storage per container in MB */
1987
+ /** Ephemeral storage per container in MB Example: 1024 */
1901
1988
  'storageSize'?: number;
1902
1989
  };
1903
1990
  };
@@ -1907,7 +1994,7 @@ declare type CreateJobCronData = {
1907
1994
  /** Branch to deploy Example: "master" */
1908
1995
  'branch'?: string;
1909
1996
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1910
- 'buildSHA'?: any;
1997
+ 'buildSHA'?: string | 'latest';
1911
1998
  /** ID of the build that should be deployed Example: "premium-guide-6393" */
1912
1999
  'buildId'?: string;
1913
2000
  };
@@ -1974,7 +2061,7 @@ declare type ScaleJobData = {
1974
2061
  'deploymentPlan'?: string;
1975
2062
  'storage'?: {
1976
2063
  'ephemeralStorage'?: {
1977
- /** Ephemeral storage per container in MB */
2064
+ /** Ephemeral storage per container in MB Example: 1024 */
1978
2065
  'storageSize'?: number;
1979
2066
  };
1980
2067
  };
@@ -2010,6 +2097,8 @@ declare type GetJobRunsResult = {
2010
2097
  'succeeded': number;
2011
2098
  /** The timestamp when the job run started. Example: "2020-12-08T11:47:08Z" */
2012
2099
  'startedAt': string;
2100
+ /** The timestamp when the job run concluded. Example: "2020-12-08T11:52:08Z" */
2101
+ 'concludedAt': string;
2013
2102
  }[];
2014
2103
  };
2015
2104
  declare type GetJobRunsCall = (opts: GetJobRunsRequest) => Promise<ApiCallResponse<GetJobRunsResult>>;
@@ -2057,12 +2146,18 @@ declare type StartJobRunParameters = {
2057
2146
  declare type StartJobRunData = {
2058
2147
  /** 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"} */
2059
2148
  'runtimeEnvironment'?: any;
2149
+ 'billing'?: {
2150
+ /** The ID of the deployment plan override to use. Example: "nf-compute-20" */
2151
+ 'deploymentPlan'?: string;
2152
+ };
2060
2153
  'deployment'?: {
2061
2154
  /** The CMD override to use when running the job. Example: "nginx -g" */
2062
2155
  'cmdOverride'?: string;
2156
+ /** If set, the job runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
2157
+ 'entrypointOverride'?: string;
2063
2158
  'storage'?: {
2064
2159
  'ephemeralStorage'?: {
2065
- /** Ephemeral storage per container in MB */
2160
+ /** Ephemeral storage per container in MB Example: 1024 */
2066
2161
  'storageSize'?: number;
2067
2162
  };
2068
2163
  };
@@ -2073,16 +2168,18 @@ declare type StartJobRunData = {
2073
2168
  /** Branch to deploy Example: "master" */
2074
2169
  'branch'?: string;
2075
2170
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
2076
- 'buildSHA'?: any;
2171
+ 'buildSHA'?: string | 'latest';
2077
2172
  /** ID of the build that should be deployed Example: "premium-guide-6393" */
2078
2173
  'buildId'?: string;
2079
2174
  };
2080
2175
  } | {
2081
2176
  /** The CMD override to use when running the job. Example: "nginx -g" */
2082
2177
  'cmdOverride'?: string;
2178
+ /** If set, the job runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
2179
+ 'entrypointOverride'?: string;
2083
2180
  'storage'?: {
2084
2181
  'ephemeralStorage'?: {
2085
- /** Ephemeral storage per container in MB */
2182
+ /** Ephemeral storage per container in MB Example: 1024 */
2086
2183
  'storageSize'?: number;
2087
2184
  };
2088
2185
  };
@@ -2124,6 +2221,8 @@ declare type GetJobRunResult = {
2124
2221
  'succeeded': number;
2125
2222
  /** The timestamp when the job run started. Example: "2020-12-08T11:47:08Z" */
2126
2223
  'startedAt': string;
2224
+ /** The timestamp when the job run concluded. Example: "2020-12-08T11:52:08Z" */
2225
+ 'concludedAt': string;
2127
2226
  };
2128
2227
  declare type GetJobRunCall = (opts: GetJobRunRequest) => Promise<ApiCallResponse<GetJobRunResult>>;
2129
2228
  declare type GetJobRunRequest = {
@@ -2214,6 +2313,7 @@ declare type GetJobHealthchecksResult = {
2214
2313
  'initialDelaySeconds': number;
2215
2314
  /** The time between each check, in seconds. Example: 60 */
2216
2315
  'periodSeconds': number;
2316
+ /** The time to wait for a response before marking the health check as a failure. Example: 1 */
2217
2317
  'timeoutSeconds': number;
2218
2318
  /** The maximum number of allowed failures. Example: 3 */
2219
2319
  'failureThreshold': number;
@@ -2541,6 +2641,29 @@ declare class UpdateJobCmdoverrideEndpoint extends PostApiEndpoint<UpdateJobCmdo
2541
2641
  body: (payload: UpdateJobCmdoverrideRequest) => string;
2542
2642
  }
2543
2643
 
2644
+ declare type UpdateJobEntrypointoverrideResult = any;
2645
+ declare type UpdateJobEntrypointoverrideCall = (opts: UpdateJobEntrypointoverrideRequest) => Promise<ApiCallResponse<UpdateJobEntrypointoverrideResult>>;
2646
+ declare type UpdateJobEntrypointoverrideRequest = {
2647
+ parameters: UpdateJobEntrypointoverrideParameters;
2648
+ data: UpdateJobEntrypointoverrideData;
2649
+ };
2650
+ declare type UpdateJobEntrypointoverrideParameters = {
2651
+ /** ID of the project */ 'projectId': string;
2652
+ /** ID of the job */
2653
+ 'jobId': string;
2654
+ };
2655
+ declare type UpdateJobEntrypointoverrideData = {
2656
+ /** If set, the service runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
2657
+ 'entrypointOverride'?: string;
2658
+ };
2659
+ /** Sets the Docker entrypoint override for the given job. */
2660
+ declare class UpdateJobEntrypointoverrideEndpoint extends PostApiEndpoint<UpdateJobEntrypointoverrideRequest, UpdateJobEntrypointoverrideResult> {
2661
+ description: string;
2662
+ withAuth: boolean;
2663
+ endpointUrl: (opts: UpdateJobEntrypointoverrideRequest) => string;
2664
+ body: (payload: UpdateJobEntrypointoverrideRequest) => string;
2665
+ }
2666
+
2544
2667
  declare type GetJobBuildargumentsResult = {
2545
2668
  /** 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
2669
  'buildArguments': any;
@@ -2868,7 +2991,7 @@ declare type UpdateJobDeploymentData = {
2868
2991
  /** Branch to deploy Example: "master" */
2869
2992
  'branch'?: string;
2870
2993
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
2871
- 'buildSHA'?: any;
2994
+ 'buildSHA'?: string | 'latest';
2872
2995
  /** ID of the build that should be deployed Example: "premium-guide-6393" */
2873
2996
  'buildId'?: string;
2874
2997
  };
@@ -2883,14 +3006,14 @@ declare class UpdateJobDeploymentEndpoint extends PostApiEndpoint<UpdateJobDeplo
2883
3006
 
2884
3007
  declare type GetJobContainersResult = {
2885
3008
  /** An array of containers. */
2886
- 'pods': {
2887
- /** The timestamp the pod was created. Example: 1611241087 */
3009
+ 'containers': {
3010
+ /** The name of the container. Example: "example-service-78b4d4459d-sbtn8" */
3011
+ 'name': string;
3012
+ /** The timestamp the container was created. Example: 1611241087 */
2888
3013
  'createdAt': number;
2889
- /** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
2890
- 'podName': string;
2891
- /** The current status of the pod. Example: "TASK_RUNNING" */
3014
+ /** The current status of the container. Example: "TASK_RUNNING" */
2892
3015
  'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
2893
- /** The timestamp the pod was last updated. Example: 1611241087 */
3016
+ /** The timestamp the container was last updated. Example: 1611241087 */
2894
3017
  'updatedAt': number;
2895
3018
  }[];
2896
3019
  };
@@ -3651,7 +3774,7 @@ declare type CreateSecretData = {
3651
3774
  'addonId': string;
3652
3775
  /** An array of objects containing details about the keys to link to this secret group. */
3653
3776
  'keys': {
3654
- /** The name of the key to link. Example: "username" */
3777
+ /** The name of the key to link. Example: "USERNAME" */
3655
3778
  'keyName': string;
3656
3779
  /** An array of aliases for the key. */
3657
3780
  'aliases'?: string[];
@@ -3778,7 +3901,7 @@ declare type UpdateSecretData = {
3778
3901
  'addonId': string;
3779
3902
  /** An array of objects containing details about the keys to link to this secret group. */
3780
3903
  'keys': {
3781
- /** The name of the key to link. Example: "username" */
3904
+ /** The name of the key to link. Example: "USERNAME" */
3782
3905
  'keyName': string;
3783
3906
  /** An array of aliases for the key. */
3784
3907
  'aliases'?: string[];
@@ -3866,7 +3989,7 @@ declare class GetSecretdetailsEndpoint extends GetApiEndpoint<GetSecretdetailsRe
3866
3989
  declare type UpdateSecretlinkResult = {
3867
3990
  /** An array of objects containing details about the keys linked to this secret group. */
3868
3991
  'keys': {
3869
- /** The name of the key to link. Example: "username" */
3992
+ /** The name of the key to link. Example: "USERNAME" */
3870
3993
  'keyName': string;
3871
3994
  /** An array of aliases for the key. */
3872
3995
  'aliases'?: string[];
@@ -3888,7 +4011,7 @@ declare type UpdateSecretlinkParameters = {
3888
4011
  declare type UpdateSecretlinkData = {
3889
4012
  /** An array of objects containing details about the keys to link to this secret group. */
3890
4013
  'keys': {
3891
- /** The name of the key to link. Example: "username" */
4014
+ /** The name of the key to link. Example: "USERNAME" */
3892
4015
  'keyName': string;
3893
4016
  /** An array of aliases for the key. */
3894
4017
  'aliases'?: string[];
@@ -3917,7 +4040,7 @@ declare type GetSecretlinkResult = {
3917
4040
  'linked': boolean;
3918
4041
  /** An array of objects containing details about the keys linked to this secret group. */
3919
4042
  'linkedKeys'?: {
3920
- /** The name of the key to link. Example: "username" */
4043
+ /** The name of the key to link. Example: "USERNAME" */
3921
4044
  'keyName': string;
3922
4045
  /** An array of aliases for the key. */
3923
4046
  'aliases'?: string[];
@@ -4092,6 +4215,14 @@ declare type CreateServiceCombinedData = {
4092
4215
  'instances': number;
4093
4216
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
4094
4217
  'cmdOverride'?: string;
4218
+ /** If set, the service runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
4219
+ 'entrypointOverride'?: string;
4220
+ 'storage'?: {
4221
+ 'ephemeralStorage'?: {
4222
+ /** Ephemeral storage per container in MB Example: 1024 */
4223
+ 'storageSize'?: number;
4224
+ };
4225
+ };
4095
4226
  };
4096
4227
  'ports'?: {
4097
4228
  /** The name used to identify the port. Example: "port-1" */
@@ -4120,6 +4251,8 @@ declare type CreateServiceCombinedData = {
4120
4251
  };
4121
4252
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
4122
4253
  'domains'?: string[];
4254
+ /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
4255
+ 'disableNfDomain'?: boolean;
4123
4256
  /** The protocol to use for the port. Example: "HTTP" */
4124
4257
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
4125
4258
  }[];
@@ -4249,6 +4382,31 @@ declare type CreateServiceDeploymentResult = {
4249
4382
  /** Currently deployed commit SHA. If buildSHA is set to 'latest', this will show the SHA of the latest commit. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
4250
4383
  'deployedSHA': string;
4251
4384
  };
4385
+ /** Details about the Docker overrides for this deployment. */
4386
+ 'docker'?: {
4387
+ /** Details about the CMD override for this deployment. */
4388
+ 'cmd': {
4389
+ /** Whether the CMD override is enabled. Example: true */
4390
+ 'enabled': boolean;
4391
+ /** The CMD to run instead of the default if CMD override is enabled. Example: "nginx -g" */
4392
+ 'value': string;
4393
+ };
4394
+ /** Details about the entrypoint override for this deployment. */
4395
+ 'entrypoint': {
4396
+ /** Whether the entrypoint override is enabled. Example: true */
4397
+ 'enabled': boolean;
4398
+ /** The CMD to run instead of the default if entrypoint override is enabled. Example: "/docker-entrypoint.sh" */
4399
+ 'value': string;
4400
+ };
4401
+ };
4402
+ /** Details about storage settings for this deployment. */
4403
+ 'storage'?: {
4404
+ /** Details about ephemeral storage settings for this deployment. */
4405
+ 'ephemeralStorage'?: {
4406
+ /** Ephemeral storage per container in MB Example: 1024 */
4407
+ 'storageSize': number;
4408
+ };
4409
+ };
4252
4410
  };
4253
4411
  } | any;
4254
4412
  declare type CreateServiceDeploymentCall = (opts: CreateServiceDeploymentRequest) => Promise<ApiCallResponse<CreateServiceDeploymentResult>>;
@@ -4274,28 +4432,34 @@ declare type CreateServiceDeploymentData = {
4274
4432
  'instances': number;
4275
4433
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
4276
4434
  'cmdOverride'?: string;
4435
+ /** If set, the service runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
4436
+ 'entrypointOverride'?: string;
4277
4437
  'storage'?: {
4278
4438
  'ephemeralStorage'?: {
4279
- /** Ephemeral storage per container in MB */
4439
+ /** Ephemeral storage per container in MB Example: 1024 */
4280
4440
  'storageSize'?: number;
4281
4441
  };
4282
4442
  };
4283
4443
  'internal': {
4284
- /** Internal ID of the build service to deploy Example: "example-build-service" */
4285
- 'id': string;
4444
+ /** ID of the build service to deploy Example: "example-build-service" */
4445
+ 'id'?: string;
4286
4446
  /** Branch to deploy Example: "master" */
4287
4447
  'branch'?: string;
4288
4448
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
4289
- 'buildSHA'?: string;
4449
+ 'buildSHA'?: string | 'latest';
4450
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
4451
+ 'buildId'?: string;
4290
4452
  };
4291
4453
  } | {
4292
4454
  /** The number of instances to run the service on. Example: 1 */
4293
4455
  'instances': number;
4294
4456
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
4295
4457
  'cmdOverride'?: string;
4458
+ /** If set, the service runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
4459
+ 'entrypointOverride'?: string;
4296
4460
  'storage'?: {
4297
4461
  'ephemeralStorage'?: {
4298
- /** Ephemeral storage per container in MB */
4462
+ /** Ephemeral storage per container in MB Example: 1024 */
4299
4463
  'storageSize'?: number;
4300
4464
  };
4301
4465
  };
@@ -4310,9 +4474,11 @@ declare type CreateServiceDeploymentData = {
4310
4474
  'instances': number;
4311
4475
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
4312
4476
  'cmdOverride'?: string;
4477
+ /** If set, the service runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
4478
+ 'entrypointOverride'?: string;
4313
4479
  'storage'?: {
4314
4480
  'ephemeralStorage'?: {
4315
- /** Ephemeral storage per container in MB */
4481
+ /** Ephemeral storage per container in MB Example: 1024 */
4316
4482
  'storageSize'?: number;
4317
4483
  };
4318
4484
  };
@@ -4344,6 +4510,8 @@ declare type CreateServiceDeploymentData = {
4344
4510
  };
4345
4511
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
4346
4512
  'domains'?: string[];
4513
+ /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
4514
+ 'disableNfDomain'?: boolean;
4347
4515
  /** The protocol to use for the port. Example: "HTTP" */
4348
4516
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
4349
4517
  }[];
@@ -4599,6 +4767,31 @@ declare type GetServiceResult = {
4599
4767
  /** Currently deployed commit SHA. If buildSHA is set to 'latest', this will show the SHA of the latest commit. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
4600
4768
  'deployedSHA': string;
4601
4769
  };
4770
+ /** Details about the Docker overrides for this deployment. */
4771
+ 'docker'?: {
4772
+ /** Details about the CMD override for this deployment. */
4773
+ 'cmd': {
4774
+ /** Whether the CMD override is enabled. Example: true */
4775
+ 'enabled': boolean;
4776
+ /** The CMD to run instead of the default if CMD override is enabled. Example: "nginx -g" */
4777
+ 'value': string;
4778
+ };
4779
+ /** Details about the entrypoint override for this deployment. */
4780
+ 'entrypoint': {
4781
+ /** Whether the entrypoint override is enabled. Example: true */
4782
+ 'enabled': boolean;
4783
+ /** The CMD to run instead of the default if entrypoint override is enabled. Example: "/docker-entrypoint.sh" */
4784
+ 'value': string;
4785
+ };
4786
+ };
4787
+ /** Details about storage settings for this deployment. */
4788
+ 'storage'?: {
4789
+ /** Details about ephemeral storage settings for this deployment. */
4790
+ 'ephemeralStorage'?: {
4791
+ /** Ephemeral storage per container in MB Example: 1024 */
4792
+ 'storageSize': number;
4793
+ };
4794
+ };
4602
4795
  };
4603
4796
  'buildConfiguration'?: {
4604
4797
  'branchRestrictions'?: string[];
@@ -4668,6 +4861,8 @@ declare type GetServiceResult = {
4668
4861
  'action': 'ALLOW' | 'DENY';
4669
4862
  }[];
4670
4863
  };
4864
+ /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
4865
+ 'disableNfDomain'?: boolean;
4671
4866
  }[];
4672
4867
  };
4673
4868
  declare type GetServiceCall = (opts: GetServiceRequest) => Promise<ApiCallResponse<GetServiceResult>>;
@@ -4723,7 +4918,7 @@ declare type ScaleServiceData = {
4723
4918
  'deploymentPlan'?: string;
4724
4919
  'storage'?: {
4725
4920
  'ephemeralStorage'?: {
4726
- /** Ephemeral storage per container in MB */
4921
+ /** Ephemeral storage per container in MB Example: 1024 */
4727
4922
  'storageSize'?: number;
4728
4923
  };
4729
4924
  };
@@ -4811,7 +5006,7 @@ declare type UpdateServiceDeploymentData = {
4811
5006
  /** Branch to deploy Example: "master" */
4812
5007
  'branch'?: string;
4813
5008
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
4814
- 'buildSHA'?: any;
5009
+ 'buildSHA'?: string | 'latest';
4815
5010
  /** ID of the build that should be deployed Example: "premium-guide-6393" */
4816
5011
  'buildId'?: string;
4817
5012
  };
@@ -4931,6 +5126,8 @@ declare type GetServicePortsResult = {
4931
5126
  'action': 'ALLOW' | 'DENY';
4932
5127
  }[];
4933
5128
  };
5129
+ /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
5130
+ 'disableNfDomain'?: boolean;
4934
5131
  }[];
4935
5132
  };
4936
5133
  declare type GetServicePortsCall = (opts: GetServicePortsRequest) => Promise<ApiCallResponse<GetServicePortsResult>>;
@@ -4964,7 +5161,7 @@ declare type UpdateServicePortsParameters = {
4964
5161
  declare type UpdateServicePortsData = {
4965
5162
  /** An array of ports to replace or update existing ports with. */
4966
5163
  'ports': {
4967
- /** The id of an existing port. Pass this when changing in order to keep security configurations. Example: "eonyui" */
5164
+ /** The id of an existing port. Pass this when changing in order to keep security configurations. Example: "p01" */
4968
5165
  'id'?: string;
4969
5166
  /** The name used to identify the port. Example: "port-1" */
4970
5167
  'name': string;
@@ -4994,6 +5191,8 @@ declare type UpdateServicePortsData = {
4994
5191
  'action': 'ALLOW' | 'DENY';
4995
5192
  }[];
4996
5193
  };
5194
+ /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
5195
+ 'disableNfDomain'?: boolean;
4997
5196
  }[];
4998
5197
  };
4999
5198
  /** Updates the list of ports for the given service. */
@@ -5117,6 +5316,29 @@ declare class UpdateServiceCmdoverrideEndpoint extends PostApiEndpoint<UpdateSer
5117
5316
  body: (payload: UpdateServiceCmdoverrideRequest) => string;
5118
5317
  }
5119
5318
 
5319
+ declare type UpdateServiceEntrypointoverrideResult = any;
5320
+ declare type UpdateServiceEntrypointoverrideCall = (opts: UpdateServiceEntrypointoverrideRequest) => Promise<ApiCallResponse<UpdateServiceEntrypointoverrideResult>>;
5321
+ declare type UpdateServiceEntrypointoverrideRequest = {
5322
+ parameters: UpdateServiceEntrypointoverrideParameters;
5323
+ data: UpdateServiceEntrypointoverrideData;
5324
+ };
5325
+ declare type UpdateServiceEntrypointoverrideParameters = {
5326
+ /** ID of the project */ 'projectId': string;
5327
+ /** ID of the service */
5328
+ 'serviceId': string;
5329
+ };
5330
+ declare type UpdateServiceEntrypointoverrideData = {
5331
+ /** If set, the service runs a custom entrypoint rather than one defined in the Dockerfile. Example: "/custom-entrypoint.sh" */
5332
+ 'entrypointOverride'?: string;
5333
+ };
5334
+ /** Sets the Docker entrypoint override for the given service. */
5335
+ declare class UpdateServiceEntrypointoverrideEndpoint extends PostApiEndpoint<UpdateServiceEntrypointoverrideRequest, UpdateServiceEntrypointoverrideResult> {
5336
+ description: string;
5337
+ withAuth: boolean;
5338
+ endpointUrl: (opts: UpdateServiceEntrypointoverrideRequest) => string;
5339
+ body: (payload: UpdateServiceEntrypointoverrideRequest) => string;
5340
+ }
5341
+
5120
5342
  declare type GetServiceHealthchecksResult = {
5121
5343
  /** An array of health checks. */
5122
5344
  'healthChecks': {
@@ -5136,6 +5358,7 @@ declare type GetServiceHealthchecksResult = {
5136
5358
  'initialDelaySeconds': number;
5137
5359
  /** The time between each check, in seconds. Example: 60 */
5138
5360
  'periodSeconds': number;
5361
+ /** The time to wait for a response before marking the health check as a failure. Example: 1 */
5139
5362
  'timeoutSeconds': number;
5140
5363
  /** The maximum number of allowed failures. Example: 3 */
5141
5364
  'failureThreshold': number;
@@ -5372,14 +5595,14 @@ declare class AbortServiceBuildEndpoint extends DeleteApiEndpoint<AbortServiceBu
5372
5595
 
5373
5596
  declare type GetServiceContainersResult = {
5374
5597
  /** An array of containers. */
5375
- 'pods': {
5376
- /** The timestamp the pod was created. Example: 1611241087 */
5598
+ 'containers': {
5599
+ /** The name of the container. Example: "example-service-78b4d4459d-sbtn8" */
5600
+ 'name': string;
5601
+ /** The timestamp the container was created. Example: 1611241087 */
5377
5602
  'createdAt': number;
5378
- /** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
5379
- 'podName': string;
5380
- /** The current status of the pod. Example: "TASK_RUNNING" */
5603
+ /** The current status of the container. Example: "TASK_RUNNING" */
5381
5604
  'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
5382
- /** The timestamp the pod was last updated. Example: 1611241087 */
5605
+ /** The timestamp the container was last updated. Example: 1611241087 */
5383
5606
  'updatedAt': number;
5384
5607
  }[];
5385
5608
  };
@@ -6220,6 +6443,7 @@ declare class ApiClient {
6220
6443
  buildOptions: UpdateJobBuildoptionsCall;
6221
6444
  buildSource: UpdateJobBuildsourceCall;
6222
6445
  cmdOverride: UpdateJobCmdoverrideCall;
6446
+ entrypointOverride: UpdateJobEntrypointoverrideCall;
6223
6447
  buildArguments: UpdateJobBuildargumentsCall;
6224
6448
  runtimeEnvironment: UpdateJobRuntimeenvironmentCall;
6225
6449
  deployment: UpdateJobDeploymentCall;
@@ -6233,6 +6457,7 @@ declare class ApiClient {
6233
6457
  buildOptions: UpdateServiceBuildoptionsCall;
6234
6458
  buildSource: UpdateServiceBuildsourceCall;
6235
6459
  cmdOverride: UpdateServiceCmdoverrideCall;
6460
+ entrypointOverride: UpdateServiceEntrypointoverrideCall;
6236
6461
  healthChecks: UpdateServiceHealthchecksCall;
6237
6462
  buildArguments: UpdateServiceBuildargumentsCall;
6238
6463
  runtimeEnvironment: UpdateServiceRuntimeenvironmentCall;
@@ -6422,6 +6647,7 @@ declare class ApiClient {
6422
6647
  buildOptions: UpdateJobBuildoptionsEndpoint;
6423
6648
  buildSource: UpdateJobBuildsourceEndpoint;
6424
6649
  cmdOverride: UpdateJobCmdoverrideEndpoint;
6650
+ entrypointOverride: UpdateJobEntrypointoverrideEndpoint;
6425
6651
  buildArguments: UpdateJobBuildargumentsEndpoint;
6426
6652
  runtimeEnvironment: UpdateJobRuntimeenvironmentEndpoint;
6427
6653
  deployment: UpdateJobDeploymentEndpoint;
@@ -6435,6 +6661,7 @@ declare class ApiClient {
6435
6661
  buildOptions: UpdateServiceBuildoptionsEndpoint;
6436
6662
  buildSource: UpdateServiceBuildsourceEndpoint;
6437
6663
  cmdOverride: UpdateServiceCmdoverrideEndpoint;
6664
+ entrypointOverride: UpdateServiceEntrypointoverrideEndpoint;
6438
6665
  healthChecks: UpdateServiceHealthchecksEndpoint;
6439
6666
  buildArguments: UpdateServiceBuildargumentsEndpoint;
6440
6667
  runtimeEnvironment: UpdateServiceRuntimeenvironmentEndpoint;
@@ -6521,4 +6748,4 @@ declare type ApiClientOpts = {
6521
6748
  customUserAgent?: string;
6522
6749
  };
6523
6750
 
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 };
6751
+ 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, UpdateJobEntrypointoverrideCall, UpdateJobEntrypointoverrideData, UpdateJobEntrypointoverrideEndpoint, UpdateJobEntrypointoverrideParameters, UpdateJobEntrypointoverrideRequest, UpdateJobEntrypointoverrideResult, 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, UpdateServiceEntrypointoverrideCall, UpdateServiceEntrypointoverrideData, UpdateServiceEntrypointoverrideEndpoint, UpdateServiceEntrypointoverrideParameters, UpdateServiceEntrypointoverrideRequest, UpdateServiceEntrypointoverrideResult, 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 };