@northflank/js-client 0.5.2 → 0.5.5

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.
@@ -164,6 +164,8 @@ declare type ListServicesResult = {
164
164
  'id': string;
165
165
  /** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
166
166
  'appId': string;
167
+ /** ID of the project the service belongs to. Example: "default-project" */
168
+ 'projectId': string;
167
169
  /** Service name Example: "Example Service" */
168
170
  'name': string;
169
171
  /** A short description of the service Example: "This is the service description" */
@@ -794,7 +796,7 @@ declare type GetAddonVersionResult = {
794
796
  /** The time the upgrade was initiated. Example: "2021-08-18 13:39:49.475Z" */
795
797
  'createdAt': string;
796
798
  /** Whether the version updated to is a major or minor version. Example: "minor" */
797
- 'type': 'major' | 'minor' | 'patch';
799
+ 'upgradeType': 'major' | 'minor' | 'patch';
798
800
  /** The version upgraded from. Example: "4.2.14" */
799
801
  'previousVersion': string;
800
802
  /** The version upgraded to. Example: "4.2.15" */
@@ -1121,10 +1123,10 @@ declare type GetAddonContainersResult = {
1121
1123
  'createdAt': number;
1122
1124
  /** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
1123
1125
  'podName': string;
1124
- /** The region where the pod is deployed. Example: "europe-west" */
1125
- 'region': string;
1126
1126
  /** The current status of the pod. Example: "TASK_RUNNING" */
1127
1127
  'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
1128
+ /** The timestamp the pod was last updated. Example: 1611241087 */
1129
+ 'updatedAt': number;
1128
1130
  }[];
1129
1131
  };
1130
1132
  declare type GetAddonContainersCall = (opts: GetAddonContainersRequest) => Promise<ApiCallResponse<GetAddonContainersResult>>;
@@ -1280,6 +1282,8 @@ declare type ListJobsResult = {
1280
1282
  'jobs': {
1281
1283
  /** Identifier for the job Example: "example-job" */
1282
1284
  'id': string;
1285
+ /** ID of the project that the job belongs to Example: "default-project" */
1286
+ 'projectId': string;
1283
1287
  /** Full identifier used for job deployment Example: "/example-user/default-project/example-job" */
1284
1288
  'appId': string;
1285
1289
  /** Job name Example: "Example Job" */
@@ -1327,7 +1331,7 @@ declare type GetJobResult = {
1327
1331
  'name': string;
1328
1332
  /** A short description of the job Example: "This is the job description" */
1329
1333
  'description'?: string;
1330
- /** ID of the project that the service belongs to Example: "default-project" */
1334
+ /** ID of the project that the job belongs to Example: "default-project" */
1331
1335
  'projectId': string;
1332
1336
  /** Type of the job (manual or cron) Example: "cron" */
1333
1337
  'jobType': 'cron' | 'manual';
@@ -1355,13 +1359,19 @@ declare type GetJobResult = {
1355
1359
  };
1356
1360
  'buildEngineConfiguration'?: {
1357
1361
  /** The build engine used. Example: "buildpack" */
1358
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
1362
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
1363
+ /** Details about Buildpack settings. */
1359
1364
  'buildpack'?: {
1360
1365
  /** The Buildpack stack used. Example: "HEROKU_20" */
1361
1366
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1362
1367
  /** Array of custom Buildpacks used. */
1363
1368
  'buildpackLocators'?: string[];
1364
1369
  };
1370
+ /** Details about Kaniko settings. */
1371
+ 'kaniko'?: {
1372
+ /** Should intermediate image layers be cached? */
1373
+ 'useCache'?: boolean;
1374
+ };
1365
1375
  };
1366
1376
  /** Whether Continuous Integration is disabled */
1367
1377
  'disabledCI': boolean;
@@ -1434,7 +1444,7 @@ declare type CreateJobManualResult = {
1434
1444
  'name': string;
1435
1445
  /** A short description of the job Example: "This is the job description" */
1436
1446
  'description'?: string;
1437
- /** ID of the project that the service belongs to Example: "default-project" */
1447
+ /** ID of the project that the job belongs to Example: "default-project" */
1438
1448
  'projectId': string;
1439
1449
  /** The time the job was created. Example: "2021-01-20T11:19:53.175Z" */
1440
1450
  'createdAt': string;
@@ -1460,13 +1470,19 @@ declare type CreateJobManualResult = {
1460
1470
  };
1461
1471
  'buildEngineConfiguration'?: {
1462
1472
  /** The build engine used. Example: "buildpack" */
1463
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
1473
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
1474
+ /** Details about Buildpack settings. */
1464
1475
  'buildpack'?: {
1465
1476
  /** The Buildpack stack used. Example: "HEROKU_20" */
1466
1477
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1467
1478
  /** Array of custom Buildpacks used. */
1468
1479
  'buildpackLocators'?: string[];
1469
1480
  };
1481
+ /** Details about Kaniko settings. */
1482
+ 'kaniko'?: {
1483
+ /** Should intermediate image layers be cached? */
1484
+ 'useCache'?: boolean;
1485
+ };
1470
1486
  };
1471
1487
  /** Whether Continuous Integration is disabled */
1472
1488
  'disabledCI': boolean;
@@ -1512,10 +1528,14 @@ declare type CreateJobManualData = {
1512
1528
  };
1513
1529
  /** The number of attempts to rerun a job before it is marked as failed. */
1514
1530
  'backoffLimit': number;
1531
+ /** Configure when the job should be run if the source image changes. Example: "never" */
1532
+ 'runOnSourceChange'?: 'never' | 'cd-promote' | 'always';
1515
1533
  /** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
1516
1534
  'activeDeadlineSeconds'?: number;
1517
1535
  /** Where to deploy the job from. */
1518
1536
  'deployment'?: {
1537
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1538
+ 'cmdOverride'?: string;
1519
1539
  'vcs': {
1520
1540
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
1521
1541
  'projectUrl': string;
@@ -1529,13 +1549,17 @@ declare type CreateJobManualData = {
1529
1549
  'projectBranch': string;
1530
1550
  };
1531
1551
  } | {
1552
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1553
+ 'cmdOverride'?: string;
1532
1554
  'external': {
1533
- /** Path of the external image excluding the hostname Example: "nginx:latest" */
1555
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
1534
1556
  'imagePath': string;
1535
1557
  /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
1536
1558
  'credentials'?: string;
1537
1559
  };
1538
1560
  } | {
1561
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1562
+ 'cmdOverride'?: string;
1539
1563
  'internal': {
1540
1564
  /** ID of the build service to deploy Example: "example-build-service" */
1541
1565
  'id'?: string;
@@ -1544,7 +1568,7 @@ declare type CreateJobManualData = {
1544
1568
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1545
1569
  'buildSHA'?: any;
1546
1570
  };
1547
- };
1571
+ } | any;
1548
1572
  'buildConfiguration'?: {
1549
1573
  /** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
1550
1574
  'pathIgnoreRules'?: string[];
@@ -1553,6 +1577,8 @@ declare type CreateJobManualData = {
1553
1577
  'dockerfile': {
1554
1578
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
1555
1579
  'buildEngine'?: 'kaniko' | 'buildkit';
1580
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
1581
+ 'useCache'?: boolean;
1556
1582
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
1557
1583
  'dockerFilePath': string;
1558
1584
  /** The working directory of the Dockerfile. Example: "/" */
@@ -1590,7 +1616,7 @@ declare type CreateJobCronResult = {
1590
1616
  'name': string;
1591
1617
  /** A short description of the job Example: "This is the job description" */
1592
1618
  'description'?: string;
1593
- /** ID of the project that the service belongs to Example: "default-project" */
1619
+ /** ID of the project that the job belongs to Example: "default-project" */
1594
1620
  'projectId': string;
1595
1621
  /** The time the job was created. Example: "2021-01-20T11:19:53.175Z" */
1596
1622
  'createdAt': string;
@@ -1616,13 +1642,19 @@ declare type CreateJobCronResult = {
1616
1642
  };
1617
1643
  'buildEngineConfiguration'?: {
1618
1644
  /** The build engine used. Example: "buildpack" */
1619
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
1645
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
1646
+ /** Details about Buildpack settings. */
1620
1647
  'buildpack'?: {
1621
1648
  /** The Buildpack stack used. Example: "HEROKU_20" */
1622
1649
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1623
1650
  /** Array of custom Buildpacks used. */
1624
1651
  'buildpackLocators'?: string[];
1625
1652
  };
1653
+ /** Details about Kaniko settings. */
1654
+ 'kaniko'?: {
1655
+ /** Should intermediate image layers be cached? */
1656
+ 'useCache'?: boolean;
1657
+ };
1626
1658
  };
1627
1659
  /** Whether Continuous Integration is disabled */
1628
1660
  'disabledCI': boolean;
@@ -1674,10 +1706,14 @@ declare type CreateJobCronData = {
1674
1706
  };
1675
1707
  /** The number of attempts to rerun a job before it is marked as failed. */
1676
1708
  'backoffLimit': number;
1709
+ /** Configure when the job should be run if the source image changes. Example: "never" */
1710
+ 'runOnSourceChange'?: 'never' | 'cd-promote' | 'always';
1677
1711
  /** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
1678
1712
  'activeDeadlineSeconds'?: number;
1679
1713
  /** Where to deploy the job from. */
1680
1714
  'deployment'?: {
1715
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1716
+ 'cmdOverride'?: string;
1681
1717
  'vcs': {
1682
1718
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
1683
1719
  'projectUrl': string;
@@ -1691,13 +1727,17 @@ declare type CreateJobCronData = {
1691
1727
  'projectBranch': string;
1692
1728
  };
1693
1729
  } | {
1730
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1731
+ 'cmdOverride'?: string;
1694
1732
  'external': {
1695
- /** Path of the external image excluding the hostname Example: "nginx:latest" */
1733
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
1696
1734
  'imagePath': string;
1697
1735
  /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
1698
1736
  'credentials'?: string;
1699
1737
  };
1700
1738
  } | {
1739
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
1740
+ 'cmdOverride'?: string;
1701
1741
  'internal': {
1702
1742
  /** ID of the build service to deploy Example: "example-build-service" */
1703
1743
  'id'?: string;
@@ -1706,7 +1746,7 @@ declare type CreateJobCronData = {
1706
1746
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1707
1747
  'buildSHA'?: any;
1708
1748
  };
1709
- };
1749
+ } | any;
1710
1750
  'buildConfiguration'?: {
1711
1751
  /** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
1712
1752
  'pathIgnoreRules'?: string[];
@@ -1715,6 +1755,8 @@ declare type CreateJobCronData = {
1715
1755
  'dockerfile': {
1716
1756
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
1717
1757
  'buildEngine'?: 'kaniko' | 'buildkit';
1758
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
1759
+ 'useCache'?: boolean;
1718
1760
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
1719
1761
  'dockerFilePath': string;
1720
1762
  /** The working directory of the Dockerfile. Example: "/" */
@@ -1817,12 +1859,27 @@ declare type StartJobRunParameters = {
1817
1859
  declare type StartJobRunData = {
1818
1860
  /** An object containing the environment variables overrides to use when running the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
1819
1861
  'runtimeEnvironment'?: any;
1820
- /** Details about the addon's deployment. */
1821
1862
  'deployment'?: {
1822
- /** Details about the addon's Docker deployment. */
1823
- 'docker'?: {
1824
- /** The CMD override to use when running the job. Example: "nginx -g" */
1825
- 'cmd'?: string;
1863
+ /** The CMD override to use when running the job. Example: "nginx -g" */
1864
+ 'cmdOverride'?: string;
1865
+ /** Optional: Specify the commit to run */
1866
+ 'internal'?: {
1867
+ /** ID of the build service to deploy Example: "example-build-service" */
1868
+ 'id'?: string;
1869
+ /** Branch to deploy Example: "master" */
1870
+ 'branch'?: string;
1871
+ /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1872
+ 'buildSHA'?: any;
1873
+ };
1874
+ } | {
1875
+ /** The CMD override to use when running the job. Example: "nginx -g" */
1876
+ 'cmdOverride'?: string;
1877
+ /** Optional: Specify the external image to run */
1878
+ 'external'?: {
1879
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
1880
+ 'imagePath': string;
1881
+ /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
1882
+ 'credentials'?: string;
1826
1883
  };
1827
1884
  };
1828
1885
  };
@@ -1909,6 +1966,8 @@ declare type UpdateJobSettingsParameters = {
1909
1966
  declare type UpdateJobSettingsData = {
1910
1967
  /** The number of attempts to rerun a job before it is marked as failed. */
1911
1968
  'backoffLimit'?: number;
1969
+ /** Configure when the job should be run if the source image changes. Example: "never" */
1970
+ 'runOnSourceChange'?: 'never' | 'cd-promote' | 'always';
1912
1971
  /** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
1913
1972
  'activeDeadlineSeconds'?: number;
1914
1973
  /** The cron timer scheduling when to run the job. Required for cron jobs and unavailable for other job types. Example: "30 8 * * *" */
@@ -2015,7 +2074,7 @@ declare type GetJobBuildsResult = {
2015
2074
  /** An array of builds. */
2016
2075
  'builds': {
2017
2076
  /** ID of the build. Example: "joyous-view-6290" */
2018
- 'id'?: string;
2077
+ 'id': string;
2019
2078
  /** Name of the branch the built commit belongs to. Example: "main" */
2020
2079
  'branch'?: string;
2021
2080
  /** ID of the pull request the commit belongs to. */
@@ -2064,7 +2123,7 @@ declare class GetJobBuildsEndpoint extends GetApiEndpoint<GetJobBuildsRequest, G
2064
2123
 
2065
2124
  declare type StartJobBuildResult = {
2066
2125
  /** ID of the build. Example: "joyous-view-6290" */
2067
- 'id'?: string;
2126
+ 'id': string;
2068
2127
  /** Name of the branch the built commit belongs to. Example: "main" */
2069
2128
  'branch'?: string;
2070
2129
  /** ID of the pull request the commit belongs to. */
@@ -2091,6 +2150,9 @@ declare type StartJobBuildParameters = {
2091
2150
  declare type StartJobBuildData = {
2092
2151
  /** Commit sha to build. If not provided, will build the most recent commit of the job's branch. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
2093
2152
  'sha'?: string;
2153
+ 'overrides'?: {
2154
+ 'buildArguments'?: any;
2155
+ };
2094
2156
  };
2095
2157
  /** Start a new build for the given job. Given a commit sha, it will build that commit. */
2096
2158
  declare class StartJobBuildEndpoint extends PostApiEndpoint<StartJobBuildRequest, StartJobBuildResult> {
@@ -2100,6 +2162,47 @@ declare class StartJobBuildEndpoint extends PostApiEndpoint<StartJobBuildRequest
2100
2162
  body: (payload: StartJobBuildRequest) => string;
2101
2163
  }
2102
2164
 
2165
+ declare type GetJobBuildResult = {
2166
+ /** ID of the build. Example: "joyous-view-6290" */
2167
+ 'id': string;
2168
+ /** Name of the branch the built commit belongs to. Example: "main" */
2169
+ 'branch'?: string;
2170
+ /** ID of the pull request the commit belongs to. */
2171
+ 'pullRequestId'?: number;
2172
+ /** The status of the build. Example: "SUCCESS" */
2173
+ 'status'?: 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
2174
+ /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
2175
+ 'sha'?: string;
2176
+ /** Whether the build has finished. Example: true */
2177
+ 'concluded'?: boolean;
2178
+ /** Timestamp of the build initiation. Example: "2021-07-28T15:55:38.296Z" */
2179
+ 'createdAt'?: string;
2180
+ /** Whether the build was successful. Example: true */
2181
+ 'success'?: boolean;
2182
+ /** Description of the build status. Example: "Image successfully built" */
2183
+ 'message'?: string;
2184
+ /** Timestamp of the build concluding. Example: 1606237973 */
2185
+ 'buildConcludedAt'?: number;
2186
+ };
2187
+ declare type GetJobBuildCall = (opts: GetJobBuildRequest) => Promise<ApiCallResponse<GetJobBuildResult>>;
2188
+ declare type GetJobBuildRequest = {
2189
+ parameters: GetJobBuildParameters;
2190
+ };
2191
+ declare type GetJobBuildParameters = {
2192
+ /** ID of the project */ 'projectId': string;
2193
+ /** ID of the job */
2194
+ 'jobId': string;
2195
+ /** ID of the job build */
2196
+ 'buildId': string;
2197
+ };
2198
+ /** Gets information about a build for the job */
2199
+ declare class GetJobBuildEndpoint extends GetApiEndpoint<GetJobBuildRequest, GetJobBuildResult> {
2200
+ description: string;
2201
+ withAuth: boolean;
2202
+ endpointUrl: (opts: GetJobBuildRequest) => string;
2203
+ body: () => undefined;
2204
+ }
2205
+
2103
2206
  declare type AbortJobBuildResult = any;
2104
2207
  declare type AbortJobBuildCall = (opts: AbortJobBuildRequest) => Promise<ApiCallResponse<AbortJobBuildResult>>;
2105
2208
  declare type AbortJobBuildRequest = {
@@ -2135,6 +2238,8 @@ declare type UpdateJobBuildoptionsData = {
2135
2238
  'dockerfile': {
2136
2239
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
2137
2240
  'buildEngine'?: 'kaniko' | 'buildkit';
2241
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
2242
+ 'useCache'?: boolean;
2138
2243
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
2139
2244
  'dockerFilePath'?: string;
2140
2245
  /** The working directory of the Dockerfile. Example: "/" */
@@ -2209,7 +2314,7 @@ declare type UpdateJobCmdoverrideParameters = {
2209
2314
  };
2210
2315
  declare type UpdateJobCmdoverrideData = {
2211
2316
  /** The CMD to run, or null to disable the override. Example: "nginx -g" */
2212
- 'cmd': string;
2317
+ 'cmdOverride': string;
2213
2318
  };
2214
2319
  /** Sets the Docker CMD override for the given job. */
2215
2320
  declare class UpdateJobCmdoverrideEndpoint extends PostApiEndpoint<UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult> {
@@ -2421,7 +2526,7 @@ declare type GetJobDeploymentResult = {
2421
2526
  /** Path of the external image excluding the hostname Example: "nginx:latest" */
2422
2527
  'imagePath': string;
2423
2528
  /** Registry provider hosting the external image Example: "dockerhub" */
2424
- 'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2529
+ 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2425
2530
  /** Does the image require authentication */
2426
2531
  'privateImage': boolean;
2427
2532
  };
@@ -2456,7 +2561,7 @@ declare type UpdateJobDeploymentParameters = {
2456
2561
  };
2457
2562
  declare type UpdateJobDeploymentData = {
2458
2563
  'external': {
2459
- /** Path of the external image excluding the hostname Example: "nginx:latest" */
2564
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
2460
2565
  'imagePath': string;
2461
2566
  /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
2462
2567
  'credentials'?: string;
@@ -2486,10 +2591,10 @@ declare type GetJobContainersResult = {
2486
2591
  'createdAt': number;
2487
2592
  /** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
2488
2593
  'podName': string;
2489
- /** The region where the pod is deployed. Example: "europe-west" */
2490
- 'region': string;
2491
2594
  /** The current status of the pod. Example: "TASK_RUNNING" */
2492
2595
  'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
2596
+ /** The timestamp the pod was last updated. Example: 1611241087 */
2597
+ 'updatedAt': number;
2493
2598
  }[];
2494
2599
  };
2495
2600
  declare type GetJobContainersCall = (opts: GetJobContainersRequest) => Promise<ApiCallResponse<GetJobContainersResult>>;
@@ -2631,7 +2736,7 @@ declare type ListRegistrycredentialsResult = {
2631
2736
  'projects': string[];
2632
2737
  };
2633
2738
  /** The registry provider associated with this set of credentials. Example: "dockerhub" */
2634
- 'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2739
+ 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2635
2740
  }[];
2636
2741
  };
2637
2742
  declare type ListRegistrycredentialsCall = (opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>;
@@ -2669,7 +2774,7 @@ declare type AddRegistrycredentialsResult = {
2669
2774
  'projects': string[];
2670
2775
  };
2671
2776
  /** The registry provider associated with this set of credentials. Example: "dockerhub" */
2672
- 'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2777
+ 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2673
2778
  };
2674
2779
  declare type AddRegistrycredentialsCall = (opts: AddRegistrycredentialsRequest) => Promise<ApiCallResponse<AddRegistrycredentialsResult>>;
2675
2780
  declare type AddRegistrycredentialsRequest = {
@@ -2681,7 +2786,7 @@ declare type AddRegistrycredentialsData = {
2681
2786
  /** Description of the credentials. Example: "This is a set of saved credentials." */
2682
2787
  'description': string;
2683
2788
  /** The registry provider associated with this set of credentials. Example: "dockerhub" */
2684
- 'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2789
+ 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2685
2790
  /** Data about whether the credentials are restricted to certain projects. */
2686
2791
  'restrictions'?: {
2687
2792
  /** Whether the credentials are restricted to specific projects. Example: true */
@@ -2715,7 +2820,7 @@ declare type GetRegistrycredentialsResult = {
2715
2820
  'projects': string[];
2716
2821
  };
2717
2822
  /** The registry provider associated with this set of credentials. Example: "dockerhub" */
2718
- 'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2823
+ 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2719
2824
  'data'?: any;
2720
2825
  };
2721
2826
  declare type GetRegistrycredentialsCall = (opts: GetRegistrycredentialsRequest) => Promise<ApiCallResponse<GetRegistrycredentialsResult>>;
@@ -3116,13 +3221,13 @@ declare type ListVcsResult = {
3116
3221
  /** The name of the version control provider. Only returned for self-hosted links. Example: "Self-hosted VCS" */
3117
3222
  'name'?: string;
3118
3223
  /** The url of the version control provider. Only returned for self-hosted links. Example: "https://git.example.com" */
3119
- 'vcsUrl': string;
3224
+ 'vcsUrl'?: string;
3120
3225
  /** The type of the self-hosted vcs provider. Only returned for self-hosted links. Example: "gitlab-ee" */
3121
- 'vcsType': 'gitlab-ee';
3226
+ 'vcsType'?: 'gitlab-ee';
3122
3227
  /** The ID of the self-hosted vcs provider. Only returned for self-hosted links. Example: "example-team/self-hosted-vcs" */
3123
- 'internalId': string;
3228
+ 'internalId'?: string;
3124
3229
  /** The name of the team the self-hosted vcs belongs to. Only returned for self-hosted links. Example: "Example Team" */
3125
- 'entityName': string;
3230
+ 'entityName'?: string;
3126
3231
  }[];
3127
3232
  };
3128
3233
  declare type ListVcsCall = (opts: ListVcsRequest) => Promise<ApiCallResponse<ListVcsResult>>;
@@ -3140,6 +3245,8 @@ declare type ListSecretsResult = {
3140
3245
  'secrets': {
3141
3246
  /** Identifier for the secret group Example: "example-secret-group" */
3142
3247
  'id': string;
3248
+ /** ID of the project that the secret group belongs to Example: "default-project" */
3249
+ 'projectId': string;
3143
3250
  /** Secret group name Example: "Example secret group" */
3144
3251
  'name': string;
3145
3252
  /** A short description of the secret group Example: "This is the secret group description" */
@@ -3226,7 +3333,7 @@ declare type CreateSecretData = {
3226
3333
  /** A description of the secret. Example: "A description" */
3227
3334
  'description'?: string;
3228
3335
  /** The type of the created secret Example: "environment" */
3229
- 'secretType': 'environment' | 'arguments';
3336
+ 'secretType': 'environment-arguments' | 'environment' | 'arguments';
3230
3337
  /** The priority with which different secrets will be merged. Example: 10 */
3231
3338
  'priority': number;
3232
3339
  /** Restriction settings of the secret */
@@ -3377,7 +3484,7 @@ declare type UpdateSecretData = {
3377
3484
  }[];
3378
3485
  }[];
3379
3486
  /** The type of the created secret Example: "environment" */
3380
- 'secretType'?: 'environment' | 'arguments';
3487
+ 'secretType'?: 'environment-arguments' | 'environment' | 'arguments';
3381
3488
  /** Secret contents as JSON object, encrypted at rest. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
3382
3489
  'data'?: any;
3383
3490
  };
@@ -3593,6 +3700,8 @@ declare type CreateServiceCombinedResult = {
3593
3700
  'lastTransitionTime'?: string;
3594
3701
  };
3595
3702
  };
3703
+ /** Is the service paused? */
3704
+ 'servicePaused': boolean;
3596
3705
  /** Type of the service (combined, build or deployment) Example: "combined" */
3597
3706
  'serviceType': 'combined' | 'build' | 'deployment';
3598
3707
  'vcsData'?: {
@@ -3617,8 +3726,6 @@ declare type CreateServiceCombinedResult = {
3617
3726
  /** Number of instances/replicas running Example: 1 */
3618
3727
  'instances'?: number;
3619
3728
  'internal'?: {
3620
- /** Full identifier of deployed entity Example: "/example-user/default-project/example-service" */
3621
- 'appId': string;
3622
3729
  /** Database ID of deployed entity Example: "5f3bd676b84798d54472d1cc" */
3623
3730
  'nfObjectId': string;
3624
3731
  /** Type of deployed entity Example: "service" */
@@ -3639,16 +3746,24 @@ declare type CreateServiceCombinedResult = {
3639
3746
  };
3640
3747
  'buildEngineConfiguration': {
3641
3748
  /** The build engine used. Example: "buildpack" */
3642
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
3749
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
3750
+ /** Details about Buildpack settings. */
3643
3751
  'buildpack'?: {
3644
3752
  /** The Buildpack stack used. Example: "HEROKU_20" */
3645
3753
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
3646
3754
  /** Array of custom Buildpacks used. */
3647
3755
  'buildpackLocators'?: string[];
3648
3756
  };
3757
+ /** Details about Kaniko settings. */
3758
+ 'kaniko'?: {
3759
+ /** Should intermediate image layers be cached? */
3760
+ 'useCache'?: boolean;
3761
+ };
3649
3762
  };
3650
3763
  /** Whether the service will be built immediately Example: true */
3651
3764
  'buildInitiated': boolean;
3765
+ /** The ID of the initial build of the service. Example: "joyous-view-6290" */
3766
+ 'buildId'?: string;
3652
3767
  } | any;
3653
3768
  declare type CreateServiceCombinedCall = (opts: CreateServiceCombinedRequest) => Promise<ApiCallResponse<CreateServiceCombinedResult>>;
3654
3769
  declare type CreateServiceCombinedRequest = {
@@ -3670,6 +3785,8 @@ declare type CreateServiceCombinedData = {
3670
3785
  'deployment': {
3671
3786
  /** The number of instances to run the service on. Example: 1 */
3672
3787
  'instances': number;
3788
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3789
+ 'cmdOverride'?: string;
3673
3790
  };
3674
3791
  'ports'?: {
3675
3792
  /** The name used to identify the port. Example: "port-1" */
@@ -3696,6 +3813,8 @@ declare type CreateServiceCombinedData = {
3696
3813
  'action': 'ALLOW' | 'DENY';
3697
3814
  }[];
3698
3815
  };
3816
+ /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
3817
+ 'domains'?: string[];
3699
3818
  /** The protocol to use for the port. Example: "HTTP" */
3700
3819
  'protocol': 'HTTP' | 'TCP' | 'UDP';
3701
3820
  }[];
@@ -3715,6 +3834,8 @@ declare type CreateServiceCombinedData = {
3715
3834
  'dockerfile': {
3716
3835
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
3717
3836
  'buildEngine'?: 'kaniko' | 'buildkit';
3837
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
3838
+ 'useCache'?: boolean;
3718
3839
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
3719
3840
  'dockerFilePath': string;
3720
3841
  /** The working directory of the Dockerfile. Example: "/" */
@@ -3787,6 +3908,8 @@ declare type CreateServiceDeploymentResult = {
3787
3908
  'lastTransitionTime'?: string;
3788
3909
  };
3789
3910
  };
3911
+ /** Is the service paused? */
3912
+ 'servicePaused': boolean;
3790
3913
  /** Type of the service (combined, build or deployment) Example: "deployment" */
3791
3914
  'serviceType': 'combined' | 'build' | 'deployment';
3792
3915
  'deployment'?: {
@@ -3799,13 +3922,11 @@ declare type CreateServiceDeploymentResult = {
3799
3922
  /** Path of the external image excluding the hostname */
3800
3923
  'imagePath': string;
3801
3924
  /** Registry provider hosting the external image */
3802
- 'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
3925
+ 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
3803
3926
  /** Does the image require authentication */
3804
3927
  'privateImage': boolean;
3805
3928
  };
3806
3929
  'internal'?: {
3807
- /** Full identifier of deployed entity Example: "/example-user/default-project/example-service" */
3808
- 'appId': string;
3809
3930
  /** Database ID of deployed entity Example: "5f3bd676b84798d54472d1cc" */
3810
3931
  'nfObjectId': string;
3811
3932
  /** Type of deployed entity Example: "service" */
@@ -3842,6 +3963,8 @@ declare type CreateServiceDeploymentData = {
3842
3963
  'deployment': {
3843
3964
  /** The number of instances to run the service on. Example: 1 */
3844
3965
  'instances': number;
3966
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3967
+ 'cmdOverride'?: string;
3845
3968
  'internal': {
3846
3969
  /** Internal ID of the build service to deploy Example: "example-build-service" */
3847
3970
  'id': string;
@@ -3853,8 +3976,10 @@ declare type CreateServiceDeploymentData = {
3853
3976
  } | {
3854
3977
  /** The number of instances to run the service on. Example: 1 */
3855
3978
  'instances': number;
3979
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3980
+ 'cmdOverride'?: string;
3856
3981
  'external': {
3857
- /** Path of the external image Example: "nginx:latest" */
3982
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
3858
3983
  'imagePath': string;
3859
3984
  /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
3860
3985
  'credentials'?: string;
@@ -3862,6 +3987,8 @@ declare type CreateServiceDeploymentData = {
3862
3987
  } | {
3863
3988
  /** The number of instances to run the service on. Example: 1 */
3864
3989
  'instances': number;
3990
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3991
+ 'cmdOverride'?: string;
3865
3992
  };
3866
3993
  'ports'?: {
3867
3994
  /** The name used to identify the port. Example: "port-1" */
@@ -3888,6 +4015,8 @@ declare type CreateServiceDeploymentData = {
3888
4015
  'action': 'ALLOW' | 'DENY';
3889
4016
  }[];
3890
4017
  };
4018
+ /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
4019
+ 'domains'?: string[];
3891
4020
  /** The protocol to use for the port. Example: "HTTP" */
3892
4021
  'protocol': 'HTTP' | 'TCP' | 'UDP';
3893
4022
  }[];
@@ -3942,6 +4071,8 @@ declare type CreateServiceBuildResult = {
3942
4071
  'lastTransitionTime'?: string;
3943
4072
  };
3944
4073
  };
4074
+ /** Is the service paused? */
4075
+ 'servicePaused': boolean;
3945
4076
  /** Type of the service (combined, build or deployment) Example: "build" */
3946
4077
  'serviceType': 'combined' | 'build' | 'deployment';
3947
4078
  'vcsData'?: {
@@ -3961,19 +4092,25 @@ declare type CreateServiceBuildResult = {
3961
4092
  'dockerFilePath': string;
3962
4093
  };
3963
4094
  'buildConfiguration'?: {
3964
- 'branchRestrictions': string[];
3965
- 'prRestrictions': string[];
4095
+ 'branchRestrictions'?: string[];
4096
+ 'prRestrictions'?: string[];
3966
4097
  'pathIgnoreRules': string[];
3967
4098
  };
3968
4099
  'buildEngineConfiguration': {
3969
4100
  /** The build engine used. Example: "buildpack" */
3970
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
4101
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
4102
+ /** Details about Buildpack settings. */
3971
4103
  'buildpack'?: {
3972
4104
  /** The Buildpack stack used. Example: "HEROKU_20" */
3973
4105
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
3974
4106
  /** Array of custom Buildpacks used. */
3975
4107
  'buildpackLocators'?: string[];
3976
4108
  };
4109
+ /** Details about Kaniko settings. */
4110
+ 'kaniko'?: {
4111
+ /** Should intermediate image layers be cached? */
4112
+ 'useCache'?: boolean;
4113
+ };
3977
4114
  };
3978
4115
  } | any;
3979
4116
  declare type CreateServiceBuildCall = (opts: CreateServiceBuildRequest) => Promise<ApiCallResponse<CreateServiceBuildResult>>;
@@ -4007,6 +4144,8 @@ declare type CreateServiceBuildData = {
4007
4144
  'dockerfile': {
4008
4145
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
4009
4146
  'buildEngine'?: 'kaniko' | 'buildkit';
4147
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
4148
+ 'useCache'?: boolean;
4010
4149
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
4011
4150
  'dockerFilePath': string;
4012
4151
  /** The working directory of the Dockerfile. Example: "/" */
@@ -4083,6 +4222,8 @@ declare type GetServiceResult = {
4083
4222
  'lastTransitionTime'?: string;
4084
4223
  };
4085
4224
  };
4225
+ /** Is the service paused? */
4226
+ 'servicePaused': boolean;
4086
4227
  'vcsData'?: {
4087
4228
  /** URL of the repository being built Example: "https://github.com/northflank/gatsby-with-northflank" */
4088
4229
  'projectUrl': string;
@@ -4109,13 +4250,11 @@ declare type GetServiceResult = {
4109
4250
  /** Path of the external image excluding the hostname */
4110
4251
  'imagePath': string;
4111
4252
  /** Registry provider hosting the external image */
4112
- 'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
4253
+ 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
4113
4254
  /** Does the image require authentication */
4114
4255
  'privateImage': boolean;
4115
4256
  };
4116
4257
  'internal'?: {
4117
- /** Full identifier of deployed entity Example: "/example-user/default-project/example-service" */
4118
- 'appId': string;
4119
4258
  /** Database ID of deployed entity Example: "5f3bd676b84798d54472d1cc" */
4120
4259
  'nfObjectId': string;
4121
4260
  /** Type of deployed entity Example: "service" */
@@ -4131,20 +4270,74 @@ declare type GetServiceResult = {
4131
4270
  };
4132
4271
  };
4133
4272
  'buildConfiguration'?: {
4134
- 'branchRestrictions': string[];
4135
- 'prRestrictions': string[];
4273
+ 'branchRestrictions'?: string[];
4274
+ 'prRestrictions'?: string[];
4136
4275
  'pathIgnoreRules': string[];
4137
4276
  };
4138
4277
  'buildEngineConfiguration'?: {
4139
4278
  /** The build engine used. Example: "buildpack" */
4140
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
4279
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
4280
+ /** Details about Buildpack settings. */
4141
4281
  'buildpack'?: {
4142
4282
  /** The Buildpack stack used. Example: "HEROKU_20" */
4143
4283
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
4144
4284
  /** Array of custom Buildpacks used. */
4145
4285
  'buildpackLocators'?: string[];
4146
4286
  };
4287
+ /** Details about Kaniko settings. */
4288
+ 'kaniko'?: {
4289
+ /** Should intermediate image layers be cached? */
4290
+ 'useCache'?: boolean;
4291
+ };
4147
4292
  };
4293
+ /** An array of ports of the service. */
4294
+ 'ports': {
4295
+ /** The id used to identify the port across requests. Example: "eonyui" */
4296
+ 'id': string;
4297
+ /** The name of the port used in the public url and UI. Example: "port-1" */
4298
+ 'name': string;
4299
+ /** The port number. Example: 8080 */
4300
+ 'internalPort': number;
4301
+ /** The protocol used by the port. Example: "HTTP" */
4302
+ 'protocol': 'HTTP' | 'TCP' | 'UDP';
4303
+ /** If true, the port is exposed publicly. Example: true */
4304
+ 'public': boolean;
4305
+ /** DNS entry for this port. Example: "port-1--example-service--default-service--user-abc1.salvo.code.run" */
4306
+ 'dns'?: string;
4307
+ /** An array of domains that redirect to this port. */
4308
+ 'domains': {
4309
+ /** The custom domain redirecting to this port. Example: "app.example.com" */
4310
+ 'name': string;
4311
+ /** Details about the TLS certificate generation for this domain. */
4312
+ 'certificate': {
4313
+ /** Is the certificate in the process of being generated? */
4314
+ 'inProgress'?: boolean;
4315
+ /** The timestamp when the TLS certificate will expire. Example: "2022-04-26T09:25:02.000Z" */
4316
+ 'expiryDate'?: string;
4317
+ /** The timestamp when a new TLS certificate will be generated. Example: "2022-03-27T09:25:02.000Z" */
4318
+ 'refreshDate'?: string;
4319
+ };
4320
+ }[];
4321
+ /** Details about security settings for this port. */
4322
+ 'security'?: {
4323
+ /** An array of credentials to access the service. */
4324
+ 'credentials'?: {
4325
+ /** The username to access the service Example: "admin" */
4326
+ 'username': string;
4327
+ /** The password to access the service with this username. Example: "password123" */
4328
+ 'password': string;
4329
+ /** The type of authentication used Example: "basic-auth" */
4330
+ 'type': 'basic-auth';
4331
+ }[];
4332
+ /** An array of IP address policies. */
4333
+ 'policies'?: {
4334
+ /** An array of IP addresses used for this rule */
4335
+ 'addresses': string[];
4336
+ /** The action for this rule. Example: "DENY" */
4337
+ 'action': 'ALLOW' | 'DENY';
4338
+ }[];
4339
+ };
4340
+ }[];
4148
4341
  };
4149
4342
  declare type GetServiceCall = (opts: GetServiceRequest) => Promise<ApiCallResponse<GetServiceResult>>;
4150
4343
  declare type GetServiceRequest = {
@@ -4234,7 +4427,7 @@ declare type GetServiceDeploymentResult = {
4234
4427
  /** Path of the external image excluding the hostname Example: "nginx:latest" */
4235
4428
  'imagePath': string;
4236
4429
  /** Registry provider hosting the external image Example: "dockerhub" */
4237
- 'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
4430
+ 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
4238
4431
  /** Does the image require authentication */
4239
4432
  'privateImage': boolean;
4240
4433
  };
@@ -4269,7 +4462,7 @@ declare type UpdateServiceDeploymentParameters = {
4269
4462
  };
4270
4463
  declare type UpdateServiceDeploymentData = {
4271
4464
  'external': {
4272
- /** Path of the external image excluding the hostname Example: "nginx:latest" */
4465
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
4273
4466
  'imagePath': string;
4274
4467
  /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
4275
4468
  'credentials'?: string;
@@ -4352,6 +4545,7 @@ declare class ResumeServiceEndpoint extends PostApiEndpoint<ResumeServiceRequest
4352
4545
  }
4353
4546
 
4354
4547
  declare type GetServicePortsResult = {
4548
+ /** An array of ports of the service. */
4355
4549
  'ports': {
4356
4550
  /** The id used to identify the port across requests. Example: "eonyui" */
4357
4551
  'id': string;
@@ -4363,9 +4557,41 @@ declare type GetServicePortsResult = {
4363
4557
  'protocol': 'HTTP' | 'TCP' | 'UDP';
4364
4558
  /** If true, the port is exposed publicly. Example: true */
4365
4559
  'public': boolean;
4366
- /** An array of domains that redirect to this port. Example: ["app.example.com"] */
4367
- 'domains': string[];
4368
- 'security'?: any;
4560
+ /** DNS entry for this port. Example: "port-1--example-service--default-service--user-abc1.salvo.code.run" */
4561
+ 'dns'?: string;
4562
+ /** An array of domains that redirect to this port. */
4563
+ 'domains': {
4564
+ /** The custom domain redirecting to this port. Example: "app.example.com" */
4565
+ 'name': string;
4566
+ /** Details about the TLS certificate generation for this domain. */
4567
+ 'certificate': {
4568
+ /** Is the certificate in the process of being generated? */
4569
+ 'inProgress'?: boolean;
4570
+ /** The timestamp when the TLS certificate will expire. Example: "2022-04-26T09:25:02.000Z" */
4571
+ 'expiryDate'?: string;
4572
+ /** The timestamp when a new TLS certificate will be generated. Example: "2022-03-27T09:25:02.000Z" */
4573
+ 'refreshDate'?: string;
4574
+ };
4575
+ }[];
4576
+ /** Details about security settings for this port. */
4577
+ 'security'?: {
4578
+ /** An array of credentials to access the service. */
4579
+ 'credentials'?: {
4580
+ /** The username to access the service Example: "admin" */
4581
+ 'username': string;
4582
+ /** The password to access the service with this username. Example: "password123" */
4583
+ 'password': string;
4584
+ /** The type of authentication used Example: "basic-auth" */
4585
+ 'type': 'basic-auth';
4586
+ }[];
4587
+ /** An array of IP address policies. */
4588
+ 'policies'?: {
4589
+ /** An array of IP addresses used for this rule */
4590
+ 'addresses': string[];
4591
+ /** The action for this rule. Example: "DENY" */
4592
+ 'action': 'ALLOW' | 'DENY';
4593
+ }[];
4594
+ };
4369
4595
  }[];
4370
4596
  };
4371
4597
  declare type GetServicePortsCall = (opts: GetServicePortsRequest) => Promise<ApiCallResponse<GetServicePortsResult>>;
@@ -4454,6 +4680,8 @@ declare type UpdateServiceBuildoptionsData = {
4454
4680
  'dockerfile': {
4455
4681
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
4456
4682
  'buildEngine'?: 'kaniko' | 'buildkit';
4683
+ /** Should intermediate image layers be cached? Only supported by Kaniko. */
4684
+ 'useCache'?: boolean;
4457
4685
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
4458
4686
  'dockerFilePath'?: string;
4459
4687
  /** The working directory of the Dockerfile. Example: "/" */
@@ -4540,7 +4768,7 @@ declare type UpdateServiceCmdoverrideParameters = {
4540
4768
  };
4541
4769
  declare type UpdateServiceCmdoverrideData = {
4542
4770
  /** The CMD to run, or null to disable the override. Example: "nginx -g" */
4543
- 'cmd': string;
4771
+ 'cmdOverride': string;
4544
4772
  };
4545
4773
  /** Sets the Docker CMD override for the given service. */
4546
4774
  declare class UpdateServiceCmdoverrideEndpoint extends PostApiEndpoint<UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult> {
@@ -4641,7 +4869,7 @@ declare type GetServiceBuildsResult = {
4641
4869
  /** An array of builds. */
4642
4870
  'builds': {
4643
4871
  /** ID of the build. Example: "joyous-view-6290" */
4644
- 'id'?: string;
4872
+ 'id': string;
4645
4873
  /** Name of the branch the built commit belongs to. Example: "main" */
4646
4874
  'branch'?: string;
4647
4875
  /** ID of the pull request the commit belongs to. */
@@ -4690,7 +4918,7 @@ declare class GetServiceBuildsEndpoint extends GetApiEndpoint<GetServiceBuildsRe
4690
4918
 
4691
4919
  declare type StartServiceBuildResult = {
4692
4920
  /** ID of the build. Example: "joyous-view-6290" */
4693
- 'id'?: string;
4921
+ 'id': string;
4694
4922
  /** Name of the branch the built commit belongs to. Example: "main" */
4695
4923
  'branch'?: string;
4696
4924
  /** ID of the pull request the commit belongs to. */
@@ -4721,6 +4949,9 @@ declare type StartServiceBuildData = {
4721
4949
  'branch'?: string;
4722
4950
  /** ID of a pull request to build from. If `sha` is not provided, the latest commit of this pull request will be built. Only supported by build services. Build services require either `branch` or `pullRequestId` field, but cannot be provided with both. */
4723
4951
  'pullRequestId'?: number;
4952
+ 'overrides'?: {
4953
+ 'buildArguments'?: any;
4954
+ };
4724
4955
  };
4725
4956
  /** Start a new build for the given combined or build service. If given a commit sha, it will build that commit. Otherwise, the most recent relevant commit will be built. If the service provided is a build service, a branch name or pull request to build from is required. */
4726
4957
  declare class StartServiceBuildEndpoint extends PostApiEndpoint<StartServiceBuildRequest, StartServiceBuildResult> {
@@ -4730,6 +4961,47 @@ declare class StartServiceBuildEndpoint extends PostApiEndpoint<StartServiceBuil
4730
4961
  body: (payload: StartServiceBuildRequest) => string;
4731
4962
  }
4732
4963
 
4964
+ declare type GetServiceBuildResult = {
4965
+ /** ID of the build. Example: "joyous-view-6290" */
4966
+ 'id': string;
4967
+ /** Name of the branch the built commit belongs to. Example: "main" */
4968
+ 'branch'?: string;
4969
+ /** ID of the pull request the commit belongs to. */
4970
+ 'pullRequestId'?: number;
4971
+ /** The status of the build. Example: "SUCCESS" */
4972
+ 'status'?: 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
4973
+ /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
4974
+ 'sha'?: string;
4975
+ /** Whether the build has finished. Example: true */
4976
+ 'concluded'?: boolean;
4977
+ /** Timestamp of the build initiation. Example: "2021-07-28T15:55:38.296Z" */
4978
+ 'createdAt'?: string;
4979
+ /** Whether the build was successful. Example: true */
4980
+ 'success'?: boolean;
4981
+ /** Description of the build status. Example: "Image successfully built" */
4982
+ 'message'?: string;
4983
+ /** Timestamp of the build concluding. Example: 1606237973 */
4984
+ 'buildConcludedAt'?: number;
4985
+ };
4986
+ declare type GetServiceBuildCall = (opts: GetServiceBuildRequest) => Promise<ApiCallResponse<GetServiceBuildResult>>;
4987
+ declare type GetServiceBuildRequest = {
4988
+ parameters: GetServiceBuildParameters;
4989
+ };
4990
+ declare type GetServiceBuildParameters = {
4991
+ /** ID of the project */ 'projectId': string;
4992
+ /** ID of the service */
4993
+ 'serviceId': string;
4994
+ /** ID of the service build */
4995
+ 'buildId': string;
4996
+ };
4997
+ /** Gets information about a build for the service */
4998
+ declare class GetServiceBuildEndpoint extends GetApiEndpoint<GetServiceBuildRequest, GetServiceBuildResult> {
4999
+ description: string;
5000
+ withAuth: boolean;
5001
+ endpointUrl: (opts: GetServiceBuildRequest) => string;
5002
+ body: () => undefined;
5003
+ }
5004
+
4733
5005
  declare type AbortServiceBuildResult = any;
4734
5006
  declare type AbortServiceBuildCall = (opts: AbortServiceBuildRequest) => Promise<ApiCallResponse<AbortServiceBuildResult>>;
4735
5007
  declare type AbortServiceBuildRequest = {
@@ -4757,10 +5029,10 @@ declare type GetServiceContainersResult = {
4757
5029
  'createdAt': number;
4758
5030
  /** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
4759
5031
  'podName': string;
4760
- /** The region where the pod is deployed. Example: "europe-west" */
4761
- 'region': string;
4762
5032
  /** The current status of the pod. Example: "TASK_RUNNING" */
4763
5033
  'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
5034
+ /** The timestamp the pod was last updated. Example: 1611241087 */
5035
+ 'updatedAt': number;
4764
5036
  }[];
4765
5037
  };
4766
5038
  declare type GetServiceContainersCall = (opts: GetServiceContainersRequest) => Promise<ApiCallResponse<GetServiceContainersResult>>;
@@ -5458,6 +5730,7 @@ declare class ApiClient {
5458
5730
  run: GetJobRunCall;
5459
5731
  healthChecks: GetJobHealthchecksCall;
5460
5732
  builds: GetJobBuildsCall;
5733
+ build: GetJobBuildCall;
5461
5734
  buildArguments: GetJobBuildargumentsCall;
5462
5735
  buildArgumentDetails: GetJobBuildargumentdetailsCall;
5463
5736
  environment: GetJobEnvironmentCall;
@@ -5479,6 +5752,7 @@ declare class ApiClient {
5479
5752
  ports: GetServicePortsCall;
5480
5753
  healthChecks: GetServiceHealthchecksCall;
5481
5754
  builds: GetServiceBuildsCall;
5755
+ build: GetServiceBuildCall;
5482
5756
  containers: GetServiceContainersCall;
5483
5757
  branches: GetServiceBranchesCall;
5484
5758
  pullRequests: GetServicePullrequestsCall;
@@ -5657,6 +5931,7 @@ declare class ApiClient {
5657
5931
  run: GetJobRunEndpoint;
5658
5932
  healthChecks: GetJobHealthchecksEndpoint;
5659
5933
  builds: GetJobBuildsEndpoint;
5934
+ build: GetJobBuildEndpoint;
5660
5935
  buildArguments: GetJobBuildargumentsEndpoint;
5661
5936
  buildArgumentDetails: GetJobBuildargumentdetailsEndpoint;
5662
5937
  environment: GetJobEnvironmentEndpoint;
@@ -5678,6 +5953,7 @@ declare class ApiClient {
5678
5953
  ports: GetServicePortsEndpoint;
5679
5954
  healthChecks: GetServiceHealthchecksEndpoint;
5680
5955
  builds: GetServiceBuildsEndpoint;
5956
+ build: GetServiceBuildEndpoint;
5681
5957
  containers: GetServiceContainersEndpoint;
5682
5958
  branches: GetServiceBranchesEndpoint;
5683
5959
  pullRequests: GetServicePullrequestsEndpoint;
@@ -5816,4 +6092,4 @@ declare type ApiClientOpts = {
5816
6092
  customUserAgent?: string;
5817
6093
  };
5818
6094
 
5819
- export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonParameters, GetAddonRequest, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobEnvironmentCall, GetJobEnvironmentEndpoint, GetJobEnvironmentOptions, GetJobEnvironmentParameters, GetJobEnvironmentRequest, GetJobEnvironmentResult, GetJobEnvironmentdetailsCall, GetJobEnvironmentdetailsEndpoint, GetJobEnvironmentdetailsParameters, GetJobEnvironmentdetailsRequest, GetJobEnvironmentdetailsResult, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceEnvironmentvariabledetailsCall, GetServiceEnvironmentvariabledetailsEndpoint, GetServiceEnvironmentvariabledetailsParameters, GetServiceEnvironmentvariabledetailsRequest, GetServiceEnvironmentvariabledetailsResult, GetServiceEnvironmentvariablesCall, GetServiceEnvironmentvariablesEndpoint, GetServiceEnvironmentvariablesOptions, GetServiceEnvironmentvariablesParameters, GetServiceEnvironmentvariablesRequest, GetServiceEnvironmentvariablesResult, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, NorthflankPortForwarder, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobCmdoverrideCall, UpdateJobCmdoverrideData, UpdateJobCmdoverrideEndpoint, UpdateJobCmdoverrideParameters, UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobEnvironmentCall, UpdateJobEnvironmentData, UpdateJobEnvironmentEndpoint, UpdateJobEnvironmentParameters, UpdateJobEnvironmentRequest, UpdateJobEnvironmentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceCmdoverrideCall, UpdateServiceCmdoverrideData, UpdateServiceCmdoverrideEndpoint, UpdateServiceCmdoverrideParameters, UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceEnvironmentvariablesCall, UpdateServiceEnvironmentvariablesData, UpdateServiceEnvironmentvariablesEndpoint, UpdateServiceEnvironmentvariablesParameters, UpdateServiceEnvironmentvariablesRequest, UpdateServiceEnvironmentvariablesResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
6095
+ export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonParameters, GetAddonRequest, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobEnvironmentCall, GetJobEnvironmentEndpoint, GetJobEnvironmentOptions, GetJobEnvironmentParameters, GetJobEnvironmentRequest, GetJobEnvironmentResult, GetJobEnvironmentdetailsCall, GetJobEnvironmentdetailsEndpoint, GetJobEnvironmentdetailsParameters, GetJobEnvironmentdetailsRequest, GetJobEnvironmentdetailsResult, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceEnvironmentvariabledetailsCall, GetServiceEnvironmentvariabledetailsEndpoint, GetServiceEnvironmentvariabledetailsParameters, GetServiceEnvironmentvariabledetailsRequest, GetServiceEnvironmentvariabledetailsResult, GetServiceEnvironmentvariablesCall, GetServiceEnvironmentvariablesEndpoint, GetServiceEnvironmentvariablesOptions, GetServiceEnvironmentvariablesParameters, GetServiceEnvironmentvariablesRequest, GetServiceEnvironmentvariablesResult, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, NorthflankPortForwarder, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobCmdoverrideCall, UpdateJobCmdoverrideData, UpdateJobCmdoverrideEndpoint, UpdateJobCmdoverrideParameters, UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobEnvironmentCall, UpdateJobEnvironmentData, UpdateJobEnvironmentEndpoint, UpdateJobEnvironmentParameters, UpdateJobEnvironmentRequest, UpdateJobEnvironmentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceCmdoverrideCall, UpdateServiceCmdoverrideData, UpdateServiceCmdoverrideEndpoint, UpdateServiceCmdoverrideParameters, UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceEnvironmentvariablesCall, UpdateServiceEnvironmentvariablesData, UpdateServiceEnvironmentvariablesEndpoint, UpdateServiceEnvironmentvariablesParameters, UpdateServiceEnvironmentvariablesRequest, UpdateServiceEnvironmentvariablesResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };