@northflank/js-client 0.6.1 → 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.
@@ -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
  };
@@ -2066,9 +2153,11 @@ declare type StartJobRunData = {
2066
2153
  'deployment'?: {
2067
2154
  /** The CMD override to use when running the job. Example: "nginx -g" */
2068
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;
2069
2158
  'storage'?: {
2070
2159
  'ephemeralStorage'?: {
2071
- /** Ephemeral storage per container in MB */
2160
+ /** Ephemeral storage per container in MB Example: 1024 */
2072
2161
  'storageSize'?: number;
2073
2162
  };
2074
2163
  };
@@ -2079,16 +2168,18 @@ declare type StartJobRunData = {
2079
2168
  /** Branch to deploy Example: "master" */
2080
2169
  'branch'?: string;
2081
2170
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
2082
- 'buildSHA'?: any;
2171
+ 'buildSHA'?: string | 'latest';
2083
2172
  /** ID of the build that should be deployed Example: "premium-guide-6393" */
2084
2173
  'buildId'?: string;
2085
2174
  };
2086
2175
  } | {
2087
2176
  /** The CMD override to use when running the job. Example: "nginx -g" */
2088
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;
2089
2180
  'storage'?: {
2090
2181
  'ephemeralStorage'?: {
2091
- /** Ephemeral storage per container in MB */
2182
+ /** Ephemeral storage per container in MB Example: 1024 */
2092
2183
  'storageSize'?: number;
2093
2184
  };
2094
2185
  };
@@ -2222,6 +2313,7 @@ declare type GetJobHealthchecksResult = {
2222
2313
  'initialDelaySeconds': number;
2223
2314
  /** The time between each check, in seconds. Example: 60 */
2224
2315
  'periodSeconds': number;
2316
+ /** The time to wait for a response before marking the health check as a failure. Example: 1 */
2225
2317
  'timeoutSeconds': number;
2226
2318
  /** The maximum number of allowed failures. Example: 3 */
2227
2319
  'failureThreshold': number;
@@ -2549,6 +2641,29 @@ declare class UpdateJobCmdoverrideEndpoint extends PostApiEndpoint<UpdateJobCmdo
2549
2641
  body: (payload: UpdateJobCmdoverrideRequest) => string;
2550
2642
  }
2551
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
+
2552
2667
  declare type GetJobBuildargumentsResult = {
2553
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"} */
2554
2669
  'buildArguments': any;
@@ -2876,7 +2991,7 @@ declare type UpdateJobDeploymentData = {
2876
2991
  /** Branch to deploy Example: "master" */
2877
2992
  'branch'?: string;
2878
2993
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
2879
- 'buildSHA'?: any;
2994
+ 'buildSHA'?: string | 'latest';
2880
2995
  /** ID of the build that should be deployed Example: "premium-guide-6393" */
2881
2996
  'buildId'?: string;
2882
2997
  };
@@ -3659,7 +3774,7 @@ declare type CreateSecretData = {
3659
3774
  'addonId': string;
3660
3775
  /** An array of objects containing details about the keys to link to this secret group. */
3661
3776
  'keys': {
3662
- /** The name of the key to link. Example: "username" */
3777
+ /** The name of the key to link. Example: "USERNAME" */
3663
3778
  'keyName': string;
3664
3779
  /** An array of aliases for the key. */
3665
3780
  'aliases'?: string[];
@@ -3786,7 +3901,7 @@ declare type UpdateSecretData = {
3786
3901
  'addonId': string;
3787
3902
  /** An array of objects containing details about the keys to link to this secret group. */
3788
3903
  'keys': {
3789
- /** The name of the key to link. Example: "username" */
3904
+ /** The name of the key to link. Example: "USERNAME" */
3790
3905
  'keyName': string;
3791
3906
  /** An array of aliases for the key. */
3792
3907
  'aliases'?: string[];
@@ -3874,7 +3989,7 @@ declare class GetSecretdetailsEndpoint extends GetApiEndpoint<GetSecretdetailsRe
3874
3989
  declare type UpdateSecretlinkResult = {
3875
3990
  /** An array of objects containing details about the keys linked to this secret group. */
3876
3991
  'keys': {
3877
- /** The name of the key to link. Example: "username" */
3992
+ /** The name of the key to link. Example: "USERNAME" */
3878
3993
  'keyName': string;
3879
3994
  /** An array of aliases for the key. */
3880
3995
  'aliases'?: string[];
@@ -3896,7 +4011,7 @@ declare type UpdateSecretlinkParameters = {
3896
4011
  declare type UpdateSecretlinkData = {
3897
4012
  /** An array of objects containing details about the keys to link to this secret group. */
3898
4013
  'keys': {
3899
- /** The name of the key to link. Example: "username" */
4014
+ /** The name of the key to link. Example: "USERNAME" */
3900
4015
  'keyName': string;
3901
4016
  /** An array of aliases for the key. */
3902
4017
  'aliases'?: string[];
@@ -3925,7 +4040,7 @@ declare type GetSecretlinkResult = {
3925
4040
  'linked': boolean;
3926
4041
  /** An array of objects containing details about the keys linked to this secret group. */
3927
4042
  'linkedKeys'?: {
3928
- /** The name of the key to link. Example: "username" */
4043
+ /** The name of the key to link. Example: "USERNAME" */
3929
4044
  'keyName': string;
3930
4045
  /** An array of aliases for the key. */
3931
4046
  'aliases'?: string[];
@@ -4100,6 +4215,14 @@ declare type CreateServiceCombinedData = {
4100
4215
  'instances': number;
4101
4216
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
4102
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
+ };
4103
4226
  };
4104
4227
  'ports'?: {
4105
4228
  /** The name used to identify the port. Example: "port-1" */
@@ -4128,6 +4251,8 @@ declare type CreateServiceCombinedData = {
4128
4251
  };
4129
4252
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
4130
4253
  'domains'?: string[];
4254
+ /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
4255
+ 'disableNfDomain'?: boolean;
4131
4256
  /** The protocol to use for the port. Example: "HTTP" */
4132
4257
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
4133
4258
  }[];
@@ -4257,6 +4382,31 @@ declare type CreateServiceDeploymentResult = {
4257
4382
  /** Currently deployed commit SHA. If buildSHA is set to 'latest', this will show the SHA of the latest commit. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
4258
4383
  'deployedSHA': string;
4259
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
+ };
4260
4410
  };
4261
4411
  } | any;
4262
4412
  declare type CreateServiceDeploymentCall = (opts: CreateServiceDeploymentRequest) => Promise<ApiCallResponse<CreateServiceDeploymentResult>>;
@@ -4282,28 +4432,34 @@ declare type CreateServiceDeploymentData = {
4282
4432
  'instances': number;
4283
4433
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
4284
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;
4285
4437
  'storage'?: {
4286
4438
  'ephemeralStorage'?: {
4287
- /** Ephemeral storage per container in MB */
4439
+ /** Ephemeral storage per container in MB Example: 1024 */
4288
4440
  'storageSize'?: number;
4289
4441
  };
4290
4442
  };
4291
4443
  'internal': {
4292
- /** Internal ID of the build service to deploy Example: "example-build-service" */
4293
- 'id': string;
4444
+ /** ID of the build service to deploy Example: "example-build-service" */
4445
+ 'id'?: string;
4294
4446
  /** Branch to deploy Example: "master" */
4295
4447
  'branch'?: string;
4296
4448
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
4297
- 'buildSHA'?: string;
4449
+ 'buildSHA'?: string | 'latest';
4450
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
4451
+ 'buildId'?: string;
4298
4452
  };
4299
4453
  } | {
4300
4454
  /** The number of instances to run the service on. Example: 1 */
4301
4455
  'instances': number;
4302
4456
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
4303
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;
4304
4460
  'storage'?: {
4305
4461
  'ephemeralStorage'?: {
4306
- /** Ephemeral storage per container in MB */
4462
+ /** Ephemeral storage per container in MB Example: 1024 */
4307
4463
  'storageSize'?: number;
4308
4464
  };
4309
4465
  };
@@ -4318,9 +4474,11 @@ declare type CreateServiceDeploymentData = {
4318
4474
  'instances': number;
4319
4475
  /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
4320
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;
4321
4479
  'storage'?: {
4322
4480
  'ephemeralStorage'?: {
4323
- /** Ephemeral storage per container in MB */
4481
+ /** Ephemeral storage per container in MB Example: 1024 */
4324
4482
  'storageSize'?: number;
4325
4483
  };
4326
4484
  };
@@ -4352,6 +4510,8 @@ declare type CreateServiceDeploymentData = {
4352
4510
  };
4353
4511
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
4354
4512
  'domains'?: string[];
4513
+ /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
4514
+ 'disableNfDomain'?: boolean;
4355
4515
  /** The protocol to use for the port. Example: "HTTP" */
4356
4516
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
4357
4517
  }[];
@@ -4607,6 +4767,31 @@ declare type GetServiceResult = {
4607
4767
  /** Currently deployed commit SHA. If buildSHA is set to 'latest', this will show the SHA of the latest commit. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
4608
4768
  'deployedSHA': string;
4609
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
+ };
4610
4795
  };
4611
4796
  'buildConfiguration'?: {
4612
4797
  'branchRestrictions'?: string[];
@@ -4676,6 +4861,8 @@ declare type GetServiceResult = {
4676
4861
  'action': 'ALLOW' | 'DENY';
4677
4862
  }[];
4678
4863
  };
4864
+ /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
4865
+ 'disableNfDomain'?: boolean;
4679
4866
  }[];
4680
4867
  };
4681
4868
  declare type GetServiceCall = (opts: GetServiceRequest) => Promise<ApiCallResponse<GetServiceResult>>;
@@ -4731,7 +4918,7 @@ declare type ScaleServiceData = {
4731
4918
  'deploymentPlan'?: string;
4732
4919
  'storage'?: {
4733
4920
  'ephemeralStorage'?: {
4734
- /** Ephemeral storage per container in MB */
4921
+ /** Ephemeral storage per container in MB Example: 1024 */
4735
4922
  'storageSize'?: number;
4736
4923
  };
4737
4924
  };
@@ -4819,7 +5006,7 @@ declare type UpdateServiceDeploymentData = {
4819
5006
  /** Branch to deploy Example: "master" */
4820
5007
  'branch'?: string;
4821
5008
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
4822
- 'buildSHA'?: any;
5009
+ 'buildSHA'?: string | 'latest';
4823
5010
  /** ID of the build that should be deployed Example: "premium-guide-6393" */
4824
5011
  'buildId'?: string;
4825
5012
  };
@@ -4939,6 +5126,8 @@ declare type GetServicePortsResult = {
4939
5126
  'action': 'ALLOW' | 'DENY';
4940
5127
  }[];
4941
5128
  };
5129
+ /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
5130
+ 'disableNfDomain'?: boolean;
4942
5131
  }[];
4943
5132
  };
4944
5133
  declare type GetServicePortsCall = (opts: GetServicePortsRequest) => Promise<ApiCallResponse<GetServicePortsResult>>;
@@ -4972,7 +5161,7 @@ declare type UpdateServicePortsParameters = {
4972
5161
  declare type UpdateServicePortsData = {
4973
5162
  /** An array of ports to replace or update existing ports with. */
4974
5163
  'ports': {
4975
- /** 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" */
4976
5165
  'id'?: string;
4977
5166
  /** The name used to identify the port. Example: "port-1" */
4978
5167
  'name': string;
@@ -5002,6 +5191,8 @@ declare type UpdateServicePortsData = {
5002
5191
  'action': 'ALLOW' | 'DENY';
5003
5192
  }[];
5004
5193
  };
5194
+ /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
5195
+ 'disableNfDomain'?: boolean;
5005
5196
  }[];
5006
5197
  };
5007
5198
  /** Updates the list of ports for the given service. */
@@ -5125,6 +5316,29 @@ declare class UpdateServiceCmdoverrideEndpoint extends PostApiEndpoint<UpdateSer
5125
5316
  body: (payload: UpdateServiceCmdoverrideRequest) => string;
5126
5317
  }
5127
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
+
5128
5342
  declare type GetServiceHealthchecksResult = {
5129
5343
  /** An array of health checks. */
5130
5344
  'healthChecks': {
@@ -5144,6 +5358,7 @@ declare type GetServiceHealthchecksResult = {
5144
5358
  'initialDelaySeconds': number;
5145
5359
  /** The time between each check, in seconds. Example: 60 */
5146
5360
  'periodSeconds': number;
5361
+ /** The time to wait for a response before marking the health check as a failure. Example: 1 */
5147
5362
  'timeoutSeconds': number;
5148
5363
  /** The maximum number of allowed failures. Example: 3 */
5149
5364
  'failureThreshold': number;
@@ -6228,6 +6443,7 @@ declare class ApiClient {
6228
6443
  buildOptions: UpdateJobBuildoptionsCall;
6229
6444
  buildSource: UpdateJobBuildsourceCall;
6230
6445
  cmdOverride: UpdateJobCmdoverrideCall;
6446
+ entrypointOverride: UpdateJobEntrypointoverrideCall;
6231
6447
  buildArguments: UpdateJobBuildargumentsCall;
6232
6448
  runtimeEnvironment: UpdateJobRuntimeenvironmentCall;
6233
6449
  deployment: UpdateJobDeploymentCall;
@@ -6241,6 +6457,7 @@ declare class ApiClient {
6241
6457
  buildOptions: UpdateServiceBuildoptionsCall;
6242
6458
  buildSource: UpdateServiceBuildsourceCall;
6243
6459
  cmdOverride: UpdateServiceCmdoverrideCall;
6460
+ entrypointOverride: UpdateServiceEntrypointoverrideCall;
6244
6461
  healthChecks: UpdateServiceHealthchecksCall;
6245
6462
  buildArguments: UpdateServiceBuildargumentsCall;
6246
6463
  runtimeEnvironment: UpdateServiceRuntimeenvironmentCall;
@@ -6430,6 +6647,7 @@ declare class ApiClient {
6430
6647
  buildOptions: UpdateJobBuildoptionsEndpoint;
6431
6648
  buildSource: UpdateJobBuildsourceEndpoint;
6432
6649
  cmdOverride: UpdateJobCmdoverrideEndpoint;
6650
+ entrypointOverride: UpdateJobEntrypointoverrideEndpoint;
6433
6651
  buildArguments: UpdateJobBuildargumentsEndpoint;
6434
6652
  runtimeEnvironment: UpdateJobRuntimeenvironmentEndpoint;
6435
6653
  deployment: UpdateJobDeploymentEndpoint;
@@ -6443,6 +6661,7 @@ declare class ApiClient {
6443
6661
  buildOptions: UpdateServiceBuildoptionsEndpoint;
6444
6662
  buildSource: UpdateServiceBuildsourceEndpoint;
6445
6663
  cmdOverride: UpdateServiceCmdoverrideEndpoint;
6664
+ entrypointOverride: UpdateServiceEntrypointoverrideEndpoint;
6446
6665
  healthChecks: UpdateServiceHealthchecksEndpoint;
6447
6666
  buildArguments: UpdateServiceBuildargumentsEndpoint;
6448
6667
  runtimeEnvironment: UpdateServiceRuntimeenvironmentEndpoint;
@@ -6529,4 +6748,4 @@ declare type ApiClientOpts = {
6529
6748
  customUserAgent?: string;
6530
6749
  };
6531
6750
 
6532
- 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 };