@northflank/js-client 0.5.1 → 0.5.4
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.
- package/dist/cjs/api-client.d.ts +341 -59
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +341 -59
- package/dist/esm/api-client.js +2 -2
- package/package.json +2 -2
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -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
|
-
'
|
|
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
|
|
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
|
-
'
|
|
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
|
|
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
|
-
'
|
|
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
|
-
/**
|
|
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
|
|
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
|
-
'
|
|
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
|
-
/**
|
|
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,13 +1859,34 @@ 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
|
-
/**
|
|
1863
|
+
/** Optional: Specify the job run docker configuration. */
|
|
1823
1864
|
'docker'?: {
|
|
1824
1865
|
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1825
1866
|
'cmd'?: string;
|
|
1826
1867
|
};
|
|
1868
|
+
/** Optional: Specify the commit to run */
|
|
1869
|
+
'internal'?: {
|
|
1870
|
+
/** ID of the build service to deploy Example: "example-build-service" */
|
|
1871
|
+
'id'?: string;
|
|
1872
|
+
/** Branch to deploy Example: "master" */
|
|
1873
|
+
'branch'?: string;
|
|
1874
|
+
/** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
|
|
1875
|
+
'buildSHA'?: any;
|
|
1876
|
+
};
|
|
1877
|
+
} | {
|
|
1878
|
+
/** Optional: Specify the job run docker configuration. */
|
|
1879
|
+
'docker'?: {
|
|
1880
|
+
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1881
|
+
'cmd'?: string;
|
|
1882
|
+
};
|
|
1883
|
+
/** Optional: Specify the external image to run */
|
|
1884
|
+
'external'?: {
|
|
1885
|
+
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
1886
|
+
'imagePath': string;
|
|
1887
|
+
/** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
|
|
1888
|
+
'credentials'?: string;
|
|
1889
|
+
};
|
|
1827
1890
|
};
|
|
1828
1891
|
};
|
|
1829
1892
|
/** Starts a new job run for the given job */
|
|
@@ -1909,6 +1972,8 @@ declare type UpdateJobSettingsParameters = {
|
|
|
1909
1972
|
declare type UpdateJobSettingsData = {
|
|
1910
1973
|
/** The number of attempts to rerun a job before it is marked as failed. */
|
|
1911
1974
|
'backoffLimit'?: number;
|
|
1975
|
+
/** Configure when the job should be run if the source image changes. Example: "never" */
|
|
1976
|
+
'runOnSourceChange'?: 'never' | 'cd-promote' | 'always';
|
|
1912
1977
|
/** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
|
|
1913
1978
|
'activeDeadlineSeconds'?: number;
|
|
1914
1979
|
/** The cron timer scheduling when to run the job. Required for cron jobs and unavailable for other job types. Example: "30 8 * * *" */
|
|
@@ -2015,7 +2080,7 @@ declare type GetJobBuildsResult = {
|
|
|
2015
2080
|
/** An array of builds. */
|
|
2016
2081
|
'builds': {
|
|
2017
2082
|
/** ID of the build. Example: "joyous-view-6290" */
|
|
2018
|
-
'id'
|
|
2083
|
+
'id': string;
|
|
2019
2084
|
/** Name of the branch the built commit belongs to. Example: "main" */
|
|
2020
2085
|
'branch'?: string;
|
|
2021
2086
|
/** ID of the pull request the commit belongs to. */
|
|
@@ -2064,7 +2129,7 @@ declare class GetJobBuildsEndpoint extends GetApiEndpoint<GetJobBuildsRequest, G
|
|
|
2064
2129
|
|
|
2065
2130
|
declare type StartJobBuildResult = {
|
|
2066
2131
|
/** ID of the build. Example: "joyous-view-6290" */
|
|
2067
|
-
'id'
|
|
2132
|
+
'id': string;
|
|
2068
2133
|
/** Name of the branch the built commit belongs to. Example: "main" */
|
|
2069
2134
|
'branch'?: string;
|
|
2070
2135
|
/** ID of the pull request the commit belongs to. */
|
|
@@ -2091,6 +2156,9 @@ declare type StartJobBuildParameters = {
|
|
|
2091
2156
|
declare type StartJobBuildData = {
|
|
2092
2157
|
/** Commit sha to build. If not provided, will build the most recent commit of the job's branch. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
|
|
2093
2158
|
'sha'?: string;
|
|
2159
|
+
'overrides'?: {
|
|
2160
|
+
'buildArguments'?: any;
|
|
2161
|
+
};
|
|
2094
2162
|
};
|
|
2095
2163
|
/** Start a new build for the given job. Given a commit sha, it will build that commit. */
|
|
2096
2164
|
declare class StartJobBuildEndpoint extends PostApiEndpoint<StartJobBuildRequest, StartJobBuildResult> {
|
|
@@ -2100,6 +2168,47 @@ declare class StartJobBuildEndpoint extends PostApiEndpoint<StartJobBuildRequest
|
|
|
2100
2168
|
body: (payload: StartJobBuildRequest) => string;
|
|
2101
2169
|
}
|
|
2102
2170
|
|
|
2171
|
+
declare type GetJobBuildResult = {
|
|
2172
|
+
/** ID of the build. Example: "joyous-view-6290" */
|
|
2173
|
+
'id': string;
|
|
2174
|
+
/** Name of the branch the built commit belongs to. Example: "main" */
|
|
2175
|
+
'branch'?: string;
|
|
2176
|
+
/** ID of the pull request the commit belongs to. */
|
|
2177
|
+
'pullRequestId'?: number;
|
|
2178
|
+
/** The status of the build. Example: "SUCCESS" */
|
|
2179
|
+
'status'?: 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
2180
|
+
/** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
|
|
2181
|
+
'sha'?: string;
|
|
2182
|
+
/** Whether the build has finished. Example: true */
|
|
2183
|
+
'concluded'?: boolean;
|
|
2184
|
+
/** Timestamp of the build initiation. Example: "2021-07-28T15:55:38.296Z" */
|
|
2185
|
+
'createdAt'?: string;
|
|
2186
|
+
/** Whether the build was successful. Example: true */
|
|
2187
|
+
'success'?: boolean;
|
|
2188
|
+
/** Description of the build status. Example: "Image successfully built" */
|
|
2189
|
+
'message'?: string;
|
|
2190
|
+
/** Timestamp of the build concluding. Example: 1606237973 */
|
|
2191
|
+
'buildConcludedAt'?: number;
|
|
2192
|
+
};
|
|
2193
|
+
declare type GetJobBuildCall = (opts: GetJobBuildRequest) => Promise<ApiCallResponse<GetJobBuildResult>>;
|
|
2194
|
+
declare type GetJobBuildRequest = {
|
|
2195
|
+
parameters: GetJobBuildParameters;
|
|
2196
|
+
};
|
|
2197
|
+
declare type GetJobBuildParameters = {
|
|
2198
|
+
/** ID of the project */ 'projectId': string;
|
|
2199
|
+
/** ID of the job */
|
|
2200
|
+
'jobId': string;
|
|
2201
|
+
/** ID of the job build */
|
|
2202
|
+
'buildId': string;
|
|
2203
|
+
};
|
|
2204
|
+
/** Gets information about a build for the job */
|
|
2205
|
+
declare class GetJobBuildEndpoint extends GetApiEndpoint<GetJobBuildRequest, GetJobBuildResult> {
|
|
2206
|
+
description: string;
|
|
2207
|
+
withAuth: boolean;
|
|
2208
|
+
endpointUrl: (opts: GetJobBuildRequest) => string;
|
|
2209
|
+
body: () => undefined;
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2103
2212
|
declare type AbortJobBuildResult = any;
|
|
2104
2213
|
declare type AbortJobBuildCall = (opts: AbortJobBuildRequest) => Promise<ApiCallResponse<AbortJobBuildResult>>;
|
|
2105
2214
|
declare type AbortJobBuildRequest = {
|
|
@@ -2135,6 +2244,8 @@ declare type UpdateJobBuildoptionsData = {
|
|
|
2135
2244
|
'dockerfile': {
|
|
2136
2245
|
/** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
|
|
2137
2246
|
'buildEngine'?: 'kaniko' | 'buildkit';
|
|
2247
|
+
/** Should intermediate image layers be cached? Only supported by Kaniko. */
|
|
2248
|
+
'useCache'?: boolean;
|
|
2138
2249
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
2139
2250
|
'dockerFilePath'?: string;
|
|
2140
2251
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
@@ -2209,7 +2320,7 @@ declare type UpdateJobCmdoverrideParameters = {
|
|
|
2209
2320
|
};
|
|
2210
2321
|
declare type UpdateJobCmdoverrideData = {
|
|
2211
2322
|
/** The CMD to run, or null to disable the override. Example: "nginx -g" */
|
|
2212
|
-
'
|
|
2323
|
+
'cmdOverride': string;
|
|
2213
2324
|
};
|
|
2214
2325
|
/** Sets the Docker CMD override for the given job. */
|
|
2215
2326
|
declare class UpdateJobCmdoverrideEndpoint extends PostApiEndpoint<UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult> {
|
|
@@ -2421,7 +2532,7 @@ declare type GetJobDeploymentResult = {
|
|
|
2421
2532
|
/** Path of the external image excluding the hostname Example: "nginx:latest" */
|
|
2422
2533
|
'imagePath': string;
|
|
2423
2534
|
/** Registry provider hosting the external image Example: "dockerhub" */
|
|
2424
|
-
'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2535
|
+
'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2425
2536
|
/** Does the image require authentication */
|
|
2426
2537
|
'privateImage': boolean;
|
|
2427
2538
|
};
|
|
@@ -2456,7 +2567,7 @@ declare type UpdateJobDeploymentParameters = {
|
|
|
2456
2567
|
};
|
|
2457
2568
|
declare type UpdateJobDeploymentData = {
|
|
2458
2569
|
'external': {
|
|
2459
|
-
/**
|
|
2570
|
+
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
2460
2571
|
'imagePath': string;
|
|
2461
2572
|
/** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
|
|
2462
2573
|
'credentials'?: string;
|
|
@@ -2486,10 +2597,10 @@ declare type GetJobContainersResult = {
|
|
|
2486
2597
|
'createdAt': number;
|
|
2487
2598
|
/** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
|
|
2488
2599
|
'podName': string;
|
|
2489
|
-
/** The region where the pod is deployed. Example: "europe-west" */
|
|
2490
|
-
'region': string;
|
|
2491
2600
|
/** The current status of the pod. Example: "TASK_RUNNING" */
|
|
2492
2601
|
'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
|
|
2602
|
+
/** The timestamp the pod was last updated. Example: 1611241087 */
|
|
2603
|
+
'updatedAt': number;
|
|
2493
2604
|
}[];
|
|
2494
2605
|
};
|
|
2495
2606
|
declare type GetJobContainersCall = (opts: GetJobContainersRequest) => Promise<ApiCallResponse<GetJobContainersResult>>;
|
|
@@ -2631,7 +2742,7 @@ declare type ListRegistrycredentialsResult = {
|
|
|
2631
2742
|
'projects': string[];
|
|
2632
2743
|
};
|
|
2633
2744
|
/** The registry provider associated with this set of credentials. Example: "dockerhub" */
|
|
2634
|
-
'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2745
|
+
'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2635
2746
|
}[];
|
|
2636
2747
|
};
|
|
2637
2748
|
declare type ListRegistrycredentialsCall = (opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>;
|
|
@@ -2669,7 +2780,7 @@ declare type AddRegistrycredentialsResult = {
|
|
|
2669
2780
|
'projects': string[];
|
|
2670
2781
|
};
|
|
2671
2782
|
/** The registry provider associated with this set of credentials. Example: "dockerhub" */
|
|
2672
|
-
'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2783
|
+
'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2673
2784
|
};
|
|
2674
2785
|
declare type AddRegistrycredentialsCall = (opts: AddRegistrycredentialsRequest) => Promise<ApiCallResponse<AddRegistrycredentialsResult>>;
|
|
2675
2786
|
declare type AddRegistrycredentialsRequest = {
|
|
@@ -2681,7 +2792,7 @@ declare type AddRegistrycredentialsData = {
|
|
|
2681
2792
|
/** Description of the credentials. Example: "This is a set of saved credentials." */
|
|
2682
2793
|
'description': string;
|
|
2683
2794
|
/** The registry provider associated with this set of credentials. Example: "dockerhub" */
|
|
2684
|
-
'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2795
|
+
'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2685
2796
|
/** Data about whether the credentials are restricted to certain projects. */
|
|
2686
2797
|
'restrictions'?: {
|
|
2687
2798
|
/** Whether the credentials are restricted to specific projects. Example: true */
|
|
@@ -2715,7 +2826,7 @@ declare type GetRegistrycredentialsResult = {
|
|
|
2715
2826
|
'projects': string[];
|
|
2716
2827
|
};
|
|
2717
2828
|
/** The registry provider associated with this set of credentials. Example: "dockerhub" */
|
|
2718
|
-
'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2829
|
+
'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2719
2830
|
'data'?: any;
|
|
2720
2831
|
};
|
|
2721
2832
|
declare type GetRegistrycredentialsCall = (opts: GetRegistrycredentialsRequest) => Promise<ApiCallResponse<GetRegistrycredentialsResult>>;
|
|
@@ -3116,13 +3227,13 @@ declare type ListVcsResult = {
|
|
|
3116
3227
|
/** The name of the version control provider. Only returned for self-hosted links. Example: "Self-hosted VCS" */
|
|
3117
3228
|
'name'?: string;
|
|
3118
3229
|
/** The url of the version control provider. Only returned for self-hosted links. Example: "https://git.example.com" */
|
|
3119
|
-
'vcsUrl'
|
|
3230
|
+
'vcsUrl'?: string;
|
|
3120
3231
|
/** The type of the self-hosted vcs provider. Only returned for self-hosted links. Example: "gitlab-ee" */
|
|
3121
|
-
'vcsType'
|
|
3232
|
+
'vcsType'?: 'gitlab-ee';
|
|
3122
3233
|
/** The ID of the self-hosted vcs provider. Only returned for self-hosted links. Example: "example-team/self-hosted-vcs" */
|
|
3123
|
-
'internalId'
|
|
3234
|
+
'internalId'?: string;
|
|
3124
3235
|
/** The name of the team the self-hosted vcs belongs to. Only returned for self-hosted links. Example: "Example Team" */
|
|
3125
|
-
'entityName'
|
|
3236
|
+
'entityName'?: string;
|
|
3126
3237
|
}[];
|
|
3127
3238
|
};
|
|
3128
3239
|
declare type ListVcsCall = (opts: ListVcsRequest) => Promise<ApiCallResponse<ListVcsResult>>;
|
|
@@ -3140,6 +3251,8 @@ declare type ListSecretsResult = {
|
|
|
3140
3251
|
'secrets': {
|
|
3141
3252
|
/** Identifier for the secret group Example: "example-secret-group" */
|
|
3142
3253
|
'id': string;
|
|
3254
|
+
/** ID of the project that the secret group belongs to Example: "default-project" */
|
|
3255
|
+
'projectId': string;
|
|
3143
3256
|
/** Secret group name Example: "Example secret group" */
|
|
3144
3257
|
'name': string;
|
|
3145
3258
|
/** A short description of the secret group Example: "This is the secret group description" */
|
|
@@ -3226,7 +3339,7 @@ declare type CreateSecretData = {
|
|
|
3226
3339
|
/** A description of the secret. Example: "A description" */
|
|
3227
3340
|
'description'?: string;
|
|
3228
3341
|
/** The type of the created secret Example: "environment" */
|
|
3229
|
-
'secretType': 'environment' | 'arguments';
|
|
3342
|
+
'secretType': 'environment-arguments' | 'environment' | 'arguments';
|
|
3230
3343
|
/** The priority with which different secrets will be merged. Example: 10 */
|
|
3231
3344
|
'priority': number;
|
|
3232
3345
|
/** Restriction settings of the secret */
|
|
@@ -3377,7 +3490,7 @@ declare type UpdateSecretData = {
|
|
|
3377
3490
|
}[];
|
|
3378
3491
|
}[];
|
|
3379
3492
|
/** The type of the created secret Example: "environment" */
|
|
3380
|
-
'secretType'?: 'environment' | 'arguments';
|
|
3493
|
+
'secretType'?: 'environment-arguments' | 'environment' | 'arguments';
|
|
3381
3494
|
/** 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
3495
|
'data'?: any;
|
|
3383
3496
|
};
|
|
@@ -3593,6 +3706,8 @@ declare type CreateServiceCombinedResult = {
|
|
|
3593
3706
|
'lastTransitionTime'?: string;
|
|
3594
3707
|
};
|
|
3595
3708
|
};
|
|
3709
|
+
/** Is the service paused? */
|
|
3710
|
+
'servicePaused': boolean;
|
|
3596
3711
|
/** Type of the service (combined, build or deployment) Example: "combined" */
|
|
3597
3712
|
'serviceType': 'combined' | 'build' | 'deployment';
|
|
3598
3713
|
'vcsData'?: {
|
|
@@ -3617,8 +3732,6 @@ declare type CreateServiceCombinedResult = {
|
|
|
3617
3732
|
/** Number of instances/replicas running Example: 1 */
|
|
3618
3733
|
'instances'?: number;
|
|
3619
3734
|
'internal'?: {
|
|
3620
|
-
/** Full identifier of deployed entity Example: "/example-user/default-project/example-service" */
|
|
3621
|
-
'appId': string;
|
|
3622
3735
|
/** Database ID of deployed entity Example: "5f3bd676b84798d54472d1cc" */
|
|
3623
3736
|
'nfObjectId': string;
|
|
3624
3737
|
/** Type of deployed entity Example: "service" */
|
|
@@ -3639,16 +3752,24 @@ declare type CreateServiceCombinedResult = {
|
|
|
3639
3752
|
};
|
|
3640
3753
|
'buildEngineConfiguration': {
|
|
3641
3754
|
/** The build engine used. Example: "buildpack" */
|
|
3642
|
-
'
|
|
3755
|
+
'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
|
|
3756
|
+
/** Details about Buildpack settings. */
|
|
3643
3757
|
'buildpack'?: {
|
|
3644
3758
|
/** The Buildpack stack used. Example: "HEROKU_20" */
|
|
3645
3759
|
'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
3646
3760
|
/** Array of custom Buildpacks used. */
|
|
3647
3761
|
'buildpackLocators'?: string[];
|
|
3648
3762
|
};
|
|
3763
|
+
/** Details about Kaniko settings. */
|
|
3764
|
+
'kaniko'?: {
|
|
3765
|
+
/** Should intermediate image layers be cached? */
|
|
3766
|
+
'useCache'?: boolean;
|
|
3767
|
+
};
|
|
3649
3768
|
};
|
|
3650
3769
|
/** Whether the service will be built immediately Example: true */
|
|
3651
3770
|
'buildInitiated': boolean;
|
|
3771
|
+
/** The ID of the initial build of the service. Example: "joyous-view-6290" */
|
|
3772
|
+
'buildId'?: string;
|
|
3652
3773
|
} | any;
|
|
3653
3774
|
declare type CreateServiceCombinedCall = (opts: CreateServiceCombinedRequest) => Promise<ApiCallResponse<CreateServiceCombinedResult>>;
|
|
3654
3775
|
declare type CreateServiceCombinedRequest = {
|
|
@@ -3670,6 +3791,8 @@ declare type CreateServiceCombinedData = {
|
|
|
3670
3791
|
'deployment': {
|
|
3671
3792
|
/** The number of instances to run the service on. Example: 1 */
|
|
3672
3793
|
'instances': number;
|
|
3794
|
+
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
3795
|
+
'cmdOverride'?: string;
|
|
3673
3796
|
};
|
|
3674
3797
|
'ports'?: {
|
|
3675
3798
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -3696,6 +3819,8 @@ declare type CreateServiceCombinedData = {
|
|
|
3696
3819
|
'action': 'ALLOW' | 'DENY';
|
|
3697
3820
|
}[];
|
|
3698
3821
|
};
|
|
3822
|
+
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
3823
|
+
'domains'?: string[];
|
|
3699
3824
|
/** The protocol to use for the port. Example: "HTTP" */
|
|
3700
3825
|
'protocol': 'HTTP' | 'TCP' | 'UDP';
|
|
3701
3826
|
}[];
|
|
@@ -3715,6 +3840,8 @@ declare type CreateServiceCombinedData = {
|
|
|
3715
3840
|
'dockerfile': {
|
|
3716
3841
|
/** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
|
|
3717
3842
|
'buildEngine'?: 'kaniko' | 'buildkit';
|
|
3843
|
+
/** Should intermediate image layers be cached? Only supported by Kaniko. */
|
|
3844
|
+
'useCache'?: boolean;
|
|
3718
3845
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
3719
3846
|
'dockerFilePath': string;
|
|
3720
3847
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
@@ -3787,6 +3914,8 @@ declare type CreateServiceDeploymentResult = {
|
|
|
3787
3914
|
'lastTransitionTime'?: string;
|
|
3788
3915
|
};
|
|
3789
3916
|
};
|
|
3917
|
+
/** Is the service paused? */
|
|
3918
|
+
'servicePaused': boolean;
|
|
3790
3919
|
/** Type of the service (combined, build or deployment) Example: "deployment" */
|
|
3791
3920
|
'serviceType': 'combined' | 'build' | 'deployment';
|
|
3792
3921
|
'deployment'?: {
|
|
@@ -3799,13 +3928,11 @@ declare type CreateServiceDeploymentResult = {
|
|
|
3799
3928
|
/** Path of the external image excluding the hostname */
|
|
3800
3929
|
'imagePath': string;
|
|
3801
3930
|
/** Registry provider hosting the external image */
|
|
3802
|
-
'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
3931
|
+
'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
3803
3932
|
/** Does the image require authentication */
|
|
3804
3933
|
'privateImage': boolean;
|
|
3805
3934
|
};
|
|
3806
3935
|
'internal'?: {
|
|
3807
|
-
/** Full identifier of deployed entity Example: "/example-user/default-project/example-service" */
|
|
3808
|
-
'appId': string;
|
|
3809
3936
|
/** Database ID of deployed entity Example: "5f3bd676b84798d54472d1cc" */
|
|
3810
3937
|
'nfObjectId': string;
|
|
3811
3938
|
/** Type of deployed entity Example: "service" */
|
|
@@ -3842,6 +3969,8 @@ declare type CreateServiceDeploymentData = {
|
|
|
3842
3969
|
'deployment': {
|
|
3843
3970
|
/** The number of instances to run the service on. Example: 1 */
|
|
3844
3971
|
'instances': number;
|
|
3972
|
+
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
3973
|
+
'cmdOverride'?: string;
|
|
3845
3974
|
'internal': {
|
|
3846
3975
|
/** Internal ID of the build service to deploy Example: "example-build-service" */
|
|
3847
3976
|
'id': string;
|
|
@@ -3853,8 +3982,10 @@ declare type CreateServiceDeploymentData = {
|
|
|
3853
3982
|
} | {
|
|
3854
3983
|
/** The number of instances to run the service on. Example: 1 */
|
|
3855
3984
|
'instances': number;
|
|
3985
|
+
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
3986
|
+
'cmdOverride'?: string;
|
|
3856
3987
|
'external': {
|
|
3857
|
-
/**
|
|
3988
|
+
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
3858
3989
|
'imagePath': string;
|
|
3859
3990
|
/** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
|
|
3860
3991
|
'credentials'?: string;
|
|
@@ -3862,6 +3993,8 @@ declare type CreateServiceDeploymentData = {
|
|
|
3862
3993
|
} | {
|
|
3863
3994
|
/** The number of instances to run the service on. Example: 1 */
|
|
3864
3995
|
'instances': number;
|
|
3996
|
+
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
3997
|
+
'cmdOverride'?: string;
|
|
3865
3998
|
};
|
|
3866
3999
|
'ports'?: {
|
|
3867
4000
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -3888,6 +4021,8 @@ declare type CreateServiceDeploymentData = {
|
|
|
3888
4021
|
'action': 'ALLOW' | 'DENY';
|
|
3889
4022
|
}[];
|
|
3890
4023
|
};
|
|
4024
|
+
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
4025
|
+
'domains'?: string[];
|
|
3891
4026
|
/** The protocol to use for the port. Example: "HTTP" */
|
|
3892
4027
|
'protocol': 'HTTP' | 'TCP' | 'UDP';
|
|
3893
4028
|
}[];
|
|
@@ -3942,6 +4077,8 @@ declare type CreateServiceBuildResult = {
|
|
|
3942
4077
|
'lastTransitionTime'?: string;
|
|
3943
4078
|
};
|
|
3944
4079
|
};
|
|
4080
|
+
/** Is the service paused? */
|
|
4081
|
+
'servicePaused': boolean;
|
|
3945
4082
|
/** Type of the service (combined, build or deployment) Example: "build" */
|
|
3946
4083
|
'serviceType': 'combined' | 'build' | 'deployment';
|
|
3947
4084
|
'vcsData'?: {
|
|
@@ -3961,19 +4098,25 @@ declare type CreateServiceBuildResult = {
|
|
|
3961
4098
|
'dockerFilePath': string;
|
|
3962
4099
|
};
|
|
3963
4100
|
'buildConfiguration'?: {
|
|
3964
|
-
'branchRestrictions'
|
|
3965
|
-
'prRestrictions'
|
|
4101
|
+
'branchRestrictions'?: string[];
|
|
4102
|
+
'prRestrictions'?: string[];
|
|
3966
4103
|
'pathIgnoreRules': string[];
|
|
3967
4104
|
};
|
|
3968
4105
|
'buildEngineConfiguration': {
|
|
3969
4106
|
/** The build engine used. Example: "buildpack" */
|
|
3970
|
-
'
|
|
4107
|
+
'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
|
|
4108
|
+
/** Details about Buildpack settings. */
|
|
3971
4109
|
'buildpack'?: {
|
|
3972
4110
|
/** The Buildpack stack used. Example: "HEROKU_20" */
|
|
3973
4111
|
'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
3974
4112
|
/** Array of custom Buildpacks used. */
|
|
3975
4113
|
'buildpackLocators'?: string[];
|
|
3976
4114
|
};
|
|
4115
|
+
/** Details about Kaniko settings. */
|
|
4116
|
+
'kaniko'?: {
|
|
4117
|
+
/** Should intermediate image layers be cached? */
|
|
4118
|
+
'useCache'?: boolean;
|
|
4119
|
+
};
|
|
3977
4120
|
};
|
|
3978
4121
|
} | any;
|
|
3979
4122
|
declare type CreateServiceBuildCall = (opts: CreateServiceBuildRequest) => Promise<ApiCallResponse<CreateServiceBuildResult>>;
|
|
@@ -4007,6 +4150,8 @@ declare type CreateServiceBuildData = {
|
|
|
4007
4150
|
'dockerfile': {
|
|
4008
4151
|
/** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
|
|
4009
4152
|
'buildEngine'?: 'kaniko' | 'buildkit';
|
|
4153
|
+
/** Should intermediate image layers be cached? Only supported by Kaniko. */
|
|
4154
|
+
'useCache'?: boolean;
|
|
4010
4155
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
4011
4156
|
'dockerFilePath': string;
|
|
4012
4157
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
@@ -4083,6 +4228,8 @@ declare type GetServiceResult = {
|
|
|
4083
4228
|
'lastTransitionTime'?: string;
|
|
4084
4229
|
};
|
|
4085
4230
|
};
|
|
4231
|
+
/** Is the service paused? */
|
|
4232
|
+
'servicePaused': boolean;
|
|
4086
4233
|
'vcsData'?: {
|
|
4087
4234
|
/** URL of the repository being built Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
4088
4235
|
'projectUrl': string;
|
|
@@ -4109,13 +4256,11 @@ declare type GetServiceResult = {
|
|
|
4109
4256
|
/** Path of the external image excluding the hostname */
|
|
4110
4257
|
'imagePath': string;
|
|
4111
4258
|
/** Registry provider hosting the external image */
|
|
4112
|
-
'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
4259
|
+
'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
4113
4260
|
/** Does the image require authentication */
|
|
4114
4261
|
'privateImage': boolean;
|
|
4115
4262
|
};
|
|
4116
4263
|
'internal'?: {
|
|
4117
|
-
/** Full identifier of deployed entity Example: "/example-user/default-project/example-service" */
|
|
4118
|
-
'appId': string;
|
|
4119
4264
|
/** Database ID of deployed entity Example: "5f3bd676b84798d54472d1cc" */
|
|
4120
4265
|
'nfObjectId': string;
|
|
4121
4266
|
/** Type of deployed entity Example: "service" */
|
|
@@ -4131,20 +4276,74 @@ declare type GetServiceResult = {
|
|
|
4131
4276
|
};
|
|
4132
4277
|
};
|
|
4133
4278
|
'buildConfiguration'?: {
|
|
4134
|
-
'branchRestrictions'
|
|
4135
|
-
'prRestrictions'
|
|
4279
|
+
'branchRestrictions'?: string[];
|
|
4280
|
+
'prRestrictions'?: string[];
|
|
4136
4281
|
'pathIgnoreRules': string[];
|
|
4137
4282
|
};
|
|
4138
4283
|
'buildEngineConfiguration'?: {
|
|
4139
4284
|
/** The build engine used. Example: "buildpack" */
|
|
4140
|
-
'
|
|
4285
|
+
'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
|
|
4286
|
+
/** Details about Buildpack settings. */
|
|
4141
4287
|
'buildpack'?: {
|
|
4142
4288
|
/** The Buildpack stack used. Example: "HEROKU_20" */
|
|
4143
4289
|
'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
4144
4290
|
/** Array of custom Buildpacks used. */
|
|
4145
4291
|
'buildpackLocators'?: string[];
|
|
4146
4292
|
};
|
|
4293
|
+
/** Details about Kaniko settings. */
|
|
4294
|
+
'kaniko'?: {
|
|
4295
|
+
/** Should intermediate image layers be cached? */
|
|
4296
|
+
'useCache'?: boolean;
|
|
4297
|
+
};
|
|
4147
4298
|
};
|
|
4299
|
+
/** An array of ports of the service. */
|
|
4300
|
+
'ports': {
|
|
4301
|
+
/** The id used to identify the port across requests. Example: "eonyui" */
|
|
4302
|
+
'id': string;
|
|
4303
|
+
/** The name of the port used in the public url and UI. Example: "port-1" */
|
|
4304
|
+
'name': string;
|
|
4305
|
+
/** The port number. Example: 8080 */
|
|
4306
|
+
'internalPort': number;
|
|
4307
|
+
/** The protocol used by the port. Example: "HTTP" */
|
|
4308
|
+
'protocol': 'HTTP' | 'TCP' | 'UDP';
|
|
4309
|
+
/** If true, the port is exposed publicly. Example: true */
|
|
4310
|
+
'public': boolean;
|
|
4311
|
+
/** DNS entry for this port. Example: "port-1--example-service--default-service--user-abc1.salvo.code.run" */
|
|
4312
|
+
'dns'?: string;
|
|
4313
|
+
/** An array of domains that redirect to this port. */
|
|
4314
|
+
'domains': {
|
|
4315
|
+
/** The custom domain redirecting to this port. Example: "app.example.com" */
|
|
4316
|
+
'name': string;
|
|
4317
|
+
/** Details about the TLS certificate generation for this domain. */
|
|
4318
|
+
'certificate': {
|
|
4319
|
+
/** Is the certificate in the process of being generated? */
|
|
4320
|
+
'inProgress'?: boolean;
|
|
4321
|
+
/** The timestamp when the TLS certificate will expire. Example: "2022-04-26T09:25:02.000Z" */
|
|
4322
|
+
'expiryDate'?: string;
|
|
4323
|
+
/** The timestamp when a new TLS certificate will be generated. Example: "2022-03-27T09:25:02.000Z" */
|
|
4324
|
+
'refreshDate'?: string;
|
|
4325
|
+
};
|
|
4326
|
+
}[];
|
|
4327
|
+
/** Details about security settings for this port. */
|
|
4328
|
+
'security'?: {
|
|
4329
|
+
/** An array of credentials to access the service. */
|
|
4330
|
+
'credentials'?: {
|
|
4331
|
+
/** The username to access the service Example: "admin" */
|
|
4332
|
+
'username': string;
|
|
4333
|
+
/** The password to access the service with this username. Example: "password123" */
|
|
4334
|
+
'password': string;
|
|
4335
|
+
/** The type of authentication used Example: "basic-auth" */
|
|
4336
|
+
'type': 'basic-auth';
|
|
4337
|
+
}[];
|
|
4338
|
+
/** An array of IP address policies. */
|
|
4339
|
+
'policies'?: {
|
|
4340
|
+
/** An array of IP addresses used for this rule */
|
|
4341
|
+
'addresses': string[];
|
|
4342
|
+
/** The action for this rule. Example: "DENY" */
|
|
4343
|
+
'action': 'ALLOW' | 'DENY';
|
|
4344
|
+
}[];
|
|
4345
|
+
};
|
|
4346
|
+
}[];
|
|
4148
4347
|
};
|
|
4149
4348
|
declare type GetServiceCall = (opts: GetServiceRequest) => Promise<ApiCallResponse<GetServiceResult>>;
|
|
4150
4349
|
declare type GetServiceRequest = {
|
|
@@ -4234,7 +4433,7 @@ declare type GetServiceDeploymentResult = {
|
|
|
4234
4433
|
/** Path of the external image excluding the hostname Example: "nginx:latest" */
|
|
4235
4434
|
'imagePath': string;
|
|
4236
4435
|
/** Registry provider hosting the external image Example: "dockerhub" */
|
|
4237
|
-
'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
4436
|
+
'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
4238
4437
|
/** Does the image require authentication */
|
|
4239
4438
|
'privateImage': boolean;
|
|
4240
4439
|
};
|
|
@@ -4269,7 +4468,7 @@ declare type UpdateServiceDeploymentParameters = {
|
|
|
4269
4468
|
};
|
|
4270
4469
|
declare type UpdateServiceDeploymentData = {
|
|
4271
4470
|
'external': {
|
|
4272
|
-
/**
|
|
4471
|
+
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
4273
4472
|
'imagePath': string;
|
|
4274
4473
|
/** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
|
|
4275
4474
|
'credentials'?: string;
|
|
@@ -4352,6 +4551,7 @@ declare class ResumeServiceEndpoint extends PostApiEndpoint<ResumeServiceRequest
|
|
|
4352
4551
|
}
|
|
4353
4552
|
|
|
4354
4553
|
declare type GetServicePortsResult = {
|
|
4554
|
+
/** An array of ports of the service. */
|
|
4355
4555
|
'ports': {
|
|
4356
4556
|
/** The id used to identify the port across requests. Example: "eonyui" */
|
|
4357
4557
|
'id': string;
|
|
@@ -4363,9 +4563,41 @@ declare type GetServicePortsResult = {
|
|
|
4363
4563
|
'protocol': 'HTTP' | 'TCP' | 'UDP';
|
|
4364
4564
|
/** If true, the port is exposed publicly. Example: true */
|
|
4365
4565
|
'public': boolean;
|
|
4366
|
-
/**
|
|
4367
|
-
'
|
|
4368
|
-
|
|
4566
|
+
/** DNS entry for this port. Example: "port-1--example-service--default-service--user-abc1.salvo.code.run" */
|
|
4567
|
+
'dns'?: string;
|
|
4568
|
+
/** An array of domains that redirect to this port. */
|
|
4569
|
+
'domains': {
|
|
4570
|
+
/** The custom domain redirecting to this port. Example: "app.example.com" */
|
|
4571
|
+
'name': string;
|
|
4572
|
+
/** Details about the TLS certificate generation for this domain. */
|
|
4573
|
+
'certificate': {
|
|
4574
|
+
/** Is the certificate in the process of being generated? */
|
|
4575
|
+
'inProgress'?: boolean;
|
|
4576
|
+
/** The timestamp when the TLS certificate will expire. Example: "2022-04-26T09:25:02.000Z" */
|
|
4577
|
+
'expiryDate'?: string;
|
|
4578
|
+
/** The timestamp when a new TLS certificate will be generated. Example: "2022-03-27T09:25:02.000Z" */
|
|
4579
|
+
'refreshDate'?: string;
|
|
4580
|
+
};
|
|
4581
|
+
}[];
|
|
4582
|
+
/** Details about security settings for this port. */
|
|
4583
|
+
'security'?: {
|
|
4584
|
+
/** An array of credentials to access the service. */
|
|
4585
|
+
'credentials'?: {
|
|
4586
|
+
/** The username to access the service Example: "admin" */
|
|
4587
|
+
'username': string;
|
|
4588
|
+
/** The password to access the service with this username. Example: "password123" */
|
|
4589
|
+
'password': string;
|
|
4590
|
+
/** The type of authentication used Example: "basic-auth" */
|
|
4591
|
+
'type': 'basic-auth';
|
|
4592
|
+
}[];
|
|
4593
|
+
/** An array of IP address policies. */
|
|
4594
|
+
'policies'?: {
|
|
4595
|
+
/** An array of IP addresses used for this rule */
|
|
4596
|
+
'addresses': string[];
|
|
4597
|
+
/** The action for this rule. Example: "DENY" */
|
|
4598
|
+
'action': 'ALLOW' | 'DENY';
|
|
4599
|
+
}[];
|
|
4600
|
+
};
|
|
4369
4601
|
}[];
|
|
4370
4602
|
};
|
|
4371
4603
|
declare type GetServicePortsCall = (opts: GetServicePortsRequest) => Promise<ApiCallResponse<GetServicePortsResult>>;
|
|
@@ -4454,6 +4686,8 @@ declare type UpdateServiceBuildoptionsData = {
|
|
|
4454
4686
|
'dockerfile': {
|
|
4455
4687
|
/** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
|
|
4456
4688
|
'buildEngine'?: 'kaniko' | 'buildkit';
|
|
4689
|
+
/** Should intermediate image layers be cached? Only supported by Kaniko. */
|
|
4690
|
+
'useCache'?: boolean;
|
|
4457
4691
|
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
4458
4692
|
'dockerFilePath'?: string;
|
|
4459
4693
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
@@ -4540,7 +4774,7 @@ declare type UpdateServiceCmdoverrideParameters = {
|
|
|
4540
4774
|
};
|
|
4541
4775
|
declare type UpdateServiceCmdoverrideData = {
|
|
4542
4776
|
/** The CMD to run, or null to disable the override. Example: "nginx -g" */
|
|
4543
|
-
'
|
|
4777
|
+
'cmdOverride': string;
|
|
4544
4778
|
};
|
|
4545
4779
|
/** Sets the Docker CMD override for the given service. */
|
|
4546
4780
|
declare class UpdateServiceCmdoverrideEndpoint extends PostApiEndpoint<UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult> {
|
|
@@ -4641,7 +4875,7 @@ declare type GetServiceBuildsResult = {
|
|
|
4641
4875
|
/** An array of builds. */
|
|
4642
4876
|
'builds': {
|
|
4643
4877
|
/** ID of the build. Example: "joyous-view-6290" */
|
|
4644
|
-
'id'
|
|
4878
|
+
'id': string;
|
|
4645
4879
|
/** Name of the branch the built commit belongs to. Example: "main" */
|
|
4646
4880
|
'branch'?: string;
|
|
4647
4881
|
/** ID of the pull request the commit belongs to. */
|
|
@@ -4690,7 +4924,7 @@ declare class GetServiceBuildsEndpoint extends GetApiEndpoint<GetServiceBuildsRe
|
|
|
4690
4924
|
|
|
4691
4925
|
declare type StartServiceBuildResult = {
|
|
4692
4926
|
/** ID of the build. Example: "joyous-view-6290" */
|
|
4693
|
-
'id'
|
|
4927
|
+
'id': string;
|
|
4694
4928
|
/** Name of the branch the built commit belongs to. Example: "main" */
|
|
4695
4929
|
'branch'?: string;
|
|
4696
4930
|
/** ID of the pull request the commit belongs to. */
|
|
@@ -4721,6 +4955,9 @@ declare type StartServiceBuildData = {
|
|
|
4721
4955
|
'branch'?: string;
|
|
4722
4956
|
/** 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
4957
|
'pullRequestId'?: number;
|
|
4958
|
+
'overrides'?: {
|
|
4959
|
+
'buildArguments'?: any;
|
|
4960
|
+
};
|
|
4724
4961
|
};
|
|
4725
4962
|
/** 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
4963
|
declare class StartServiceBuildEndpoint extends PostApiEndpoint<StartServiceBuildRequest, StartServiceBuildResult> {
|
|
@@ -4730,6 +4967,47 @@ declare class StartServiceBuildEndpoint extends PostApiEndpoint<StartServiceBuil
|
|
|
4730
4967
|
body: (payload: StartServiceBuildRequest) => string;
|
|
4731
4968
|
}
|
|
4732
4969
|
|
|
4970
|
+
declare type GetServiceBuildResult = {
|
|
4971
|
+
/** ID of the build. Example: "joyous-view-6290" */
|
|
4972
|
+
'id': string;
|
|
4973
|
+
/** Name of the branch the built commit belongs to. Example: "main" */
|
|
4974
|
+
'branch'?: string;
|
|
4975
|
+
/** ID of the pull request the commit belongs to. */
|
|
4976
|
+
'pullRequestId'?: number;
|
|
4977
|
+
/** The status of the build. Example: "SUCCESS" */
|
|
4978
|
+
'status'?: 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
4979
|
+
/** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
|
|
4980
|
+
'sha'?: string;
|
|
4981
|
+
/** Whether the build has finished. Example: true */
|
|
4982
|
+
'concluded'?: boolean;
|
|
4983
|
+
/** Timestamp of the build initiation. Example: "2021-07-28T15:55:38.296Z" */
|
|
4984
|
+
'createdAt'?: string;
|
|
4985
|
+
/** Whether the build was successful. Example: true */
|
|
4986
|
+
'success'?: boolean;
|
|
4987
|
+
/** Description of the build status. Example: "Image successfully built" */
|
|
4988
|
+
'message'?: string;
|
|
4989
|
+
/** Timestamp of the build concluding. Example: 1606237973 */
|
|
4990
|
+
'buildConcludedAt'?: number;
|
|
4991
|
+
};
|
|
4992
|
+
declare type GetServiceBuildCall = (opts: GetServiceBuildRequest) => Promise<ApiCallResponse<GetServiceBuildResult>>;
|
|
4993
|
+
declare type GetServiceBuildRequest = {
|
|
4994
|
+
parameters: GetServiceBuildParameters;
|
|
4995
|
+
};
|
|
4996
|
+
declare type GetServiceBuildParameters = {
|
|
4997
|
+
/** ID of the project */ 'projectId': string;
|
|
4998
|
+
/** ID of the service */
|
|
4999
|
+
'serviceId': string;
|
|
5000
|
+
/** ID of the service build */
|
|
5001
|
+
'buildId': string;
|
|
5002
|
+
};
|
|
5003
|
+
/** Gets information about a build for the service */
|
|
5004
|
+
declare class GetServiceBuildEndpoint extends GetApiEndpoint<GetServiceBuildRequest, GetServiceBuildResult> {
|
|
5005
|
+
description: string;
|
|
5006
|
+
withAuth: boolean;
|
|
5007
|
+
endpointUrl: (opts: GetServiceBuildRequest) => string;
|
|
5008
|
+
body: () => undefined;
|
|
5009
|
+
}
|
|
5010
|
+
|
|
4733
5011
|
declare type AbortServiceBuildResult = any;
|
|
4734
5012
|
declare type AbortServiceBuildCall = (opts: AbortServiceBuildRequest) => Promise<ApiCallResponse<AbortServiceBuildResult>>;
|
|
4735
5013
|
declare type AbortServiceBuildRequest = {
|
|
@@ -4757,10 +5035,10 @@ declare type GetServiceContainersResult = {
|
|
|
4757
5035
|
'createdAt': number;
|
|
4758
5036
|
/** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
|
|
4759
5037
|
'podName': string;
|
|
4760
|
-
/** The region where the pod is deployed. Example: "europe-west" */
|
|
4761
|
-
'region': string;
|
|
4762
5038
|
/** The current status of the pod. Example: "TASK_RUNNING" */
|
|
4763
5039
|
'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
|
|
5040
|
+
/** The timestamp the pod was last updated. Example: 1611241087 */
|
|
5041
|
+
'updatedAt': number;
|
|
4764
5042
|
}[];
|
|
4765
5043
|
};
|
|
4766
5044
|
declare type GetServiceContainersCall = (opts: GetServiceContainersRequest) => Promise<ApiCallResponse<GetServiceContainersResult>>;
|
|
@@ -5458,6 +5736,7 @@ declare class ApiClient {
|
|
|
5458
5736
|
run: GetJobRunCall;
|
|
5459
5737
|
healthChecks: GetJobHealthchecksCall;
|
|
5460
5738
|
builds: GetJobBuildsCall;
|
|
5739
|
+
build: GetJobBuildCall;
|
|
5461
5740
|
buildArguments: GetJobBuildargumentsCall;
|
|
5462
5741
|
buildArgumentDetails: GetJobBuildargumentdetailsCall;
|
|
5463
5742
|
environment: GetJobEnvironmentCall;
|
|
@@ -5479,6 +5758,7 @@ declare class ApiClient {
|
|
|
5479
5758
|
ports: GetServicePortsCall;
|
|
5480
5759
|
healthChecks: GetServiceHealthchecksCall;
|
|
5481
5760
|
builds: GetServiceBuildsCall;
|
|
5761
|
+
build: GetServiceBuildCall;
|
|
5482
5762
|
containers: GetServiceContainersCall;
|
|
5483
5763
|
branches: GetServiceBranchesCall;
|
|
5484
5764
|
pullRequests: GetServicePullrequestsCall;
|
|
@@ -5657,6 +5937,7 @@ declare class ApiClient {
|
|
|
5657
5937
|
run: GetJobRunEndpoint;
|
|
5658
5938
|
healthChecks: GetJobHealthchecksEndpoint;
|
|
5659
5939
|
builds: GetJobBuildsEndpoint;
|
|
5940
|
+
build: GetJobBuildEndpoint;
|
|
5660
5941
|
buildArguments: GetJobBuildargumentsEndpoint;
|
|
5661
5942
|
buildArgumentDetails: GetJobBuildargumentdetailsEndpoint;
|
|
5662
5943
|
environment: GetJobEnvironmentEndpoint;
|
|
@@ -5678,6 +5959,7 @@ declare class ApiClient {
|
|
|
5678
5959
|
ports: GetServicePortsEndpoint;
|
|
5679
5960
|
healthChecks: GetServiceHealthchecksEndpoint;
|
|
5680
5961
|
builds: GetServiceBuildsEndpoint;
|
|
5962
|
+
build: GetServiceBuildEndpoint;
|
|
5681
5963
|
containers: GetServiceContainersEndpoint;
|
|
5682
5964
|
branches: GetServiceBranchesEndpoint;
|
|
5683
5965
|
pullRequests: GetServicePullrequestsEndpoint;
|
|
@@ -5816,4 +6098,4 @@ declare type ApiClientOpts = {
|
|
|
5816
6098
|
customUserAgent?: string;
|
|
5817
6099
|
};
|
|
5818
6100
|
|
|
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 };
|
|
6101
|
+
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 };
|