@northflank/js-client 0.5.2 → 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -164,6 +164,8 @@ declare type ListServicesResult = {
164
164
  'id': string;
165
165
  /** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
166
166
  'appId': string;
167
+ /** ID of the project the service belongs to. Example: "default-project" */
168
+ 'projectId': string;
167
169
  /** Service name Example: "Example Service" */
168
170
  'name': string;
169
171
  /** A short description of the service Example: "This is the service description" */
@@ -794,7 +796,7 @@ declare type GetAddonVersionResult = {
794
796
  /** The time the upgrade was initiated. Example: "2021-08-18 13:39:49.475Z" */
795
797
  'createdAt': string;
796
798
  /** Whether the version updated to is a major or minor version. Example: "minor" */
797
- 'type': 'major' | 'minor' | 'patch';
799
+ 'upgradeType': 'major' | 'minor' | 'patch';
798
800
  /** The version upgraded from. Example: "4.2.14" */
799
801
  'previousVersion': string;
800
802
  /** The version upgraded to. Example: "4.2.15" */
@@ -1121,10 +1123,10 @@ declare type GetAddonContainersResult = {
1121
1123
  'createdAt': number;
1122
1124
  /** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
1123
1125
  'podName': string;
1124
- /** The region where the pod is deployed. Example: "europe-west" */
1125
- 'region': string;
1126
1126
  /** The current status of the pod. Example: "TASK_RUNNING" */
1127
1127
  'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
1128
+ /** The timestamp the pod was last updated. Example: 1611241087 */
1129
+ 'updatedAt': number;
1128
1130
  }[];
1129
1131
  };
1130
1132
  declare type GetAddonContainersCall = (opts: GetAddonContainersRequest) => Promise<ApiCallResponse<GetAddonContainersResult>>;
@@ -1280,6 +1282,8 @@ declare type ListJobsResult = {
1280
1282
  'jobs': {
1281
1283
  /** Identifier for the job Example: "example-job" */
1282
1284
  'id': string;
1285
+ /** ID of the project that the job belongs to Example: "default-project" */
1286
+ 'projectId': string;
1283
1287
  /** Full identifier used for job deployment Example: "/example-user/default-project/example-job" */
1284
1288
  'appId': string;
1285
1289
  /** Job name Example: "Example Job" */
@@ -1327,7 +1331,7 @@ declare type GetJobResult = {
1327
1331
  'name': string;
1328
1332
  /** A short description of the job Example: "This is the job description" */
1329
1333
  'description'?: string;
1330
- /** ID of the project that the service belongs to Example: "default-project" */
1334
+ /** ID of the project that the job belongs to Example: "default-project" */
1331
1335
  'projectId': string;
1332
1336
  /** Type of the job (manual or cron) Example: "cron" */
1333
1337
  'jobType': 'cron' | 'manual';
@@ -1355,13 +1359,19 @@ declare type GetJobResult = {
1355
1359
  };
1356
1360
  'buildEngineConfiguration'?: {
1357
1361
  /** The build engine used. Example: "buildpack" */
1358
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
1362
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
1363
+ /** Details about Buildpack settings. */
1359
1364
  'buildpack'?: {
1360
1365
  /** The Buildpack stack used. Example: "HEROKU_20" */
1361
1366
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1362
1367
  /** Array of custom Buildpacks used. */
1363
1368
  'buildpackLocators'?: string[];
1364
1369
  };
1370
+ /** Details about Kaniko settings. */
1371
+ 'kaniko'?: {
1372
+ /** Should intermediate image layers be cached? */
1373
+ 'useCache'?: boolean;
1374
+ };
1365
1375
  };
1366
1376
  /** Whether Continuous Integration is disabled */
1367
1377
  'disabledCI': boolean;
@@ -1434,7 +1444,7 @@ declare type CreateJobManualResult = {
1434
1444
  'name': string;
1435
1445
  /** A short description of the job Example: "This is the job description" */
1436
1446
  'description'?: string;
1437
- /** ID of the project that the service belongs to Example: "default-project" */
1447
+ /** ID of the project that the job belongs to Example: "default-project" */
1438
1448
  'projectId': string;
1439
1449
  /** The time the job was created. Example: "2021-01-20T11:19:53.175Z" */
1440
1450
  'createdAt': string;
@@ -1460,13 +1470,19 @@ declare type CreateJobManualResult = {
1460
1470
  };
1461
1471
  'buildEngineConfiguration'?: {
1462
1472
  /** The build engine used. Example: "buildpack" */
1463
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
1473
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
1474
+ /** Details about Buildpack settings. */
1464
1475
  'buildpack'?: {
1465
1476
  /** The Buildpack stack used. Example: "HEROKU_20" */
1466
1477
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1467
1478
  /** Array of custom Buildpacks used. */
1468
1479
  'buildpackLocators'?: string[];
1469
1480
  };
1481
+ /** Details about Kaniko settings. */
1482
+ 'kaniko'?: {
1483
+ /** Should intermediate image layers be cached? */
1484
+ 'useCache'?: boolean;
1485
+ };
1470
1486
  };
1471
1487
  /** Whether Continuous Integration is disabled */
1472
1488
  'disabledCI': boolean;
@@ -1512,6 +1528,8 @@ 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. */
@@ -1530,7 +1548,7 @@ declare type CreateJobManualData = {
1530
1548
  };
1531
1549
  } | {
1532
1550
  'external': {
1533
- /** Path of the external image excluding the hostname Example: "nginx:latest" */
1551
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
1534
1552
  'imagePath': string;
1535
1553
  /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
1536
1554
  'credentials'?: string;
@@ -1590,7 +1608,7 @@ declare type CreateJobCronResult = {
1590
1608
  'name': string;
1591
1609
  /** A short description of the job Example: "This is the job description" */
1592
1610
  'description'?: string;
1593
- /** ID of the project that the service belongs to Example: "default-project" */
1611
+ /** ID of the project that the job belongs to Example: "default-project" */
1594
1612
  'projectId': string;
1595
1613
  /** The time the job was created. Example: "2021-01-20T11:19:53.175Z" */
1596
1614
  'createdAt': string;
@@ -1616,13 +1634,19 @@ declare type CreateJobCronResult = {
1616
1634
  };
1617
1635
  'buildEngineConfiguration'?: {
1618
1636
  /** The build engine used. Example: "buildpack" */
1619
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
1637
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
1638
+ /** Details about Buildpack settings. */
1620
1639
  'buildpack'?: {
1621
1640
  /** The Buildpack stack used. Example: "HEROKU_20" */
1622
1641
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
1623
1642
  /** Array of custom Buildpacks used. */
1624
1643
  'buildpackLocators'?: string[];
1625
1644
  };
1645
+ /** Details about Kaniko settings. */
1646
+ 'kaniko'?: {
1647
+ /** Should intermediate image layers be cached? */
1648
+ 'useCache'?: boolean;
1649
+ };
1626
1650
  };
1627
1651
  /** Whether Continuous Integration is disabled */
1628
1652
  'disabledCI': boolean;
@@ -1674,6 +1698,8 @@ declare type CreateJobCronData = {
1674
1698
  };
1675
1699
  /** The number of attempts to rerun a job before it is marked as failed. */
1676
1700
  'backoffLimit': number;
1701
+ /** Configure when the job should be run if the source image changes. Example: "never" */
1702
+ 'runOnSourceChange'?: 'never' | 'cd-promote' | 'always';
1677
1703
  /** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
1678
1704
  'activeDeadlineSeconds'?: number;
1679
1705
  /** Where to deploy the job from. */
@@ -1692,7 +1718,7 @@ declare type CreateJobCronData = {
1692
1718
  };
1693
1719
  } | {
1694
1720
  'external': {
1695
- /** Path of the external image excluding the hostname Example: "nginx:latest" */
1721
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
1696
1722
  'imagePath': string;
1697
1723
  /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
1698
1724
  'credentials'?: string;
@@ -1909,6 +1935,8 @@ declare type UpdateJobSettingsParameters = {
1909
1935
  declare type UpdateJobSettingsData = {
1910
1936
  /** The number of attempts to rerun a job before it is marked as failed. */
1911
1937
  'backoffLimit'?: number;
1938
+ /** Configure when the job should be run if the source image changes. Example: "never" */
1939
+ 'runOnSourceChange'?: 'never' | 'cd-promote' | 'always';
1912
1940
  /** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
1913
1941
  'activeDeadlineSeconds'?: number;
1914
1942
  /** The cron timer scheduling when to run the job. Required for cron jobs and unavailable for other job types. Example: "30 8 * * *" */
@@ -2015,7 +2043,7 @@ declare type GetJobBuildsResult = {
2015
2043
  /** An array of builds. */
2016
2044
  'builds': {
2017
2045
  /** ID of the build. Example: "joyous-view-6290" */
2018
- 'id'?: string;
2046
+ 'id': string;
2019
2047
  /** Name of the branch the built commit belongs to. Example: "main" */
2020
2048
  'branch'?: string;
2021
2049
  /** ID of the pull request the commit belongs to. */
@@ -2064,7 +2092,7 @@ declare class GetJobBuildsEndpoint extends GetApiEndpoint<GetJobBuildsRequest, G
2064
2092
 
2065
2093
  declare type StartJobBuildResult = {
2066
2094
  /** ID of the build. Example: "joyous-view-6290" */
2067
- 'id'?: string;
2095
+ 'id': string;
2068
2096
  /** Name of the branch the built commit belongs to. Example: "main" */
2069
2097
  'branch'?: string;
2070
2098
  /** ID of the pull request the commit belongs to. */
@@ -2100,6 +2128,47 @@ declare class StartJobBuildEndpoint extends PostApiEndpoint<StartJobBuildRequest
2100
2128
  body: (payload: StartJobBuildRequest) => string;
2101
2129
  }
2102
2130
 
2131
+ declare type GetJobBuildResult = {
2132
+ /** ID of the build. Example: "joyous-view-6290" */
2133
+ 'id': string;
2134
+ /** Name of the branch the built commit belongs to. Example: "main" */
2135
+ 'branch'?: string;
2136
+ /** ID of the pull request the commit belongs to. */
2137
+ 'pullRequestId'?: number;
2138
+ /** The status of the build. Example: "SUCCESS" */
2139
+ 'status'?: 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
2140
+ /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
2141
+ 'sha'?: string;
2142
+ /** Whether the build has finished. Example: true */
2143
+ 'concluded'?: boolean;
2144
+ /** Timestamp of the build initiation. Example: "2021-07-28T15:55:38.296Z" */
2145
+ 'createdAt'?: string;
2146
+ /** Whether the build was successful. Example: true */
2147
+ 'success'?: boolean;
2148
+ /** Description of the build status. Example: "Image successfully built" */
2149
+ 'message'?: string;
2150
+ /** Timestamp of the build concluding. Example: 1606237973 */
2151
+ 'buildConcludedAt'?: number;
2152
+ };
2153
+ declare type GetJobBuildCall = (opts: GetJobBuildRequest) => Promise<ApiCallResponse<GetJobBuildResult>>;
2154
+ declare type GetJobBuildRequest = {
2155
+ parameters: GetJobBuildParameters;
2156
+ };
2157
+ declare type GetJobBuildParameters = {
2158
+ /** ID of the project */ 'projectId': string;
2159
+ /** ID of the job */
2160
+ 'jobId': string;
2161
+ /** ID of the job build */
2162
+ 'buildId': string;
2163
+ };
2164
+ /** Gets information about a build for the job */
2165
+ declare class GetJobBuildEndpoint extends GetApiEndpoint<GetJobBuildRequest, GetJobBuildResult> {
2166
+ description: string;
2167
+ withAuth: boolean;
2168
+ endpointUrl: (opts: GetJobBuildRequest) => string;
2169
+ body: () => undefined;
2170
+ }
2171
+
2103
2172
  declare type AbortJobBuildResult = any;
2104
2173
  declare type AbortJobBuildCall = (opts: AbortJobBuildRequest) => Promise<ApiCallResponse<AbortJobBuildResult>>;
2105
2174
  declare type AbortJobBuildRequest = {
@@ -2421,7 +2490,7 @@ declare type GetJobDeploymentResult = {
2421
2490
  /** Path of the external image excluding the hostname Example: "nginx:latest" */
2422
2491
  'imagePath': string;
2423
2492
  /** Registry provider hosting the external image Example: "dockerhub" */
2424
- 'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2493
+ 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2425
2494
  /** Does the image require authentication */
2426
2495
  'privateImage': boolean;
2427
2496
  };
@@ -2456,7 +2525,7 @@ declare type UpdateJobDeploymentParameters = {
2456
2525
  };
2457
2526
  declare type UpdateJobDeploymentData = {
2458
2527
  'external': {
2459
- /** Path of the external image excluding the hostname Example: "nginx:latest" */
2528
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
2460
2529
  'imagePath': string;
2461
2530
  /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
2462
2531
  'credentials'?: string;
@@ -2486,10 +2555,10 @@ declare type GetJobContainersResult = {
2486
2555
  'createdAt': number;
2487
2556
  /** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
2488
2557
  'podName': string;
2489
- /** The region where the pod is deployed. Example: "europe-west" */
2490
- 'region': string;
2491
2558
  /** The current status of the pod. Example: "TASK_RUNNING" */
2492
2559
  'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
2560
+ /** The timestamp the pod was last updated. Example: 1611241087 */
2561
+ 'updatedAt': number;
2493
2562
  }[];
2494
2563
  };
2495
2564
  declare type GetJobContainersCall = (opts: GetJobContainersRequest) => Promise<ApiCallResponse<GetJobContainersResult>>;
@@ -2631,7 +2700,7 @@ declare type ListRegistrycredentialsResult = {
2631
2700
  'projects': string[];
2632
2701
  };
2633
2702
  /** The registry provider associated with this set of credentials. Example: "dockerhub" */
2634
- 'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2703
+ 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2635
2704
  }[];
2636
2705
  };
2637
2706
  declare type ListRegistrycredentialsCall = (opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>;
@@ -2669,7 +2738,7 @@ declare type AddRegistrycredentialsResult = {
2669
2738
  'projects': string[];
2670
2739
  };
2671
2740
  /** The registry provider associated with this set of credentials. Example: "dockerhub" */
2672
- 'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2741
+ 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2673
2742
  };
2674
2743
  declare type AddRegistrycredentialsCall = (opts: AddRegistrycredentialsRequest) => Promise<ApiCallResponse<AddRegistrycredentialsResult>>;
2675
2744
  declare type AddRegistrycredentialsRequest = {
@@ -2681,7 +2750,7 @@ declare type AddRegistrycredentialsData = {
2681
2750
  /** Description of the credentials. Example: "This is a set of saved credentials." */
2682
2751
  'description': string;
2683
2752
  /** The registry provider associated with this set of credentials. Example: "dockerhub" */
2684
- 'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2753
+ 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2685
2754
  /** Data about whether the credentials are restricted to certain projects. */
2686
2755
  'restrictions'?: {
2687
2756
  /** Whether the credentials are restricted to specific projects. Example: true */
@@ -2715,7 +2784,7 @@ declare type GetRegistrycredentialsResult = {
2715
2784
  'projects': string[];
2716
2785
  };
2717
2786
  /** The registry provider associated with this set of credentials. Example: "dockerhub" */
2718
- 'provider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2787
+ 'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
2719
2788
  'data'?: any;
2720
2789
  };
2721
2790
  declare type GetRegistrycredentialsCall = (opts: GetRegistrycredentialsRequest) => Promise<ApiCallResponse<GetRegistrycredentialsResult>>;
@@ -3116,13 +3185,13 @@ declare type ListVcsResult = {
3116
3185
  /** The name of the version control provider. Only returned for self-hosted links. Example: "Self-hosted VCS" */
3117
3186
  'name'?: string;
3118
3187
  /** The url of the version control provider. Only returned for self-hosted links. Example: "https://git.example.com" */
3119
- 'vcsUrl': string;
3188
+ 'vcsUrl'?: string;
3120
3189
  /** The type of the self-hosted vcs provider. Only returned for self-hosted links. Example: "gitlab-ee" */
3121
- 'vcsType': 'gitlab-ee';
3190
+ 'vcsType'?: 'gitlab-ee';
3122
3191
  /** The ID of the self-hosted vcs provider. Only returned for self-hosted links. Example: "example-team/self-hosted-vcs" */
3123
- 'internalId': string;
3192
+ 'internalId'?: string;
3124
3193
  /** The name of the team the self-hosted vcs belongs to. Only returned for self-hosted links. Example: "Example Team" */
3125
- 'entityName': string;
3194
+ 'entityName'?: string;
3126
3195
  }[];
3127
3196
  };
3128
3197
  declare type ListVcsCall = (opts: ListVcsRequest) => Promise<ApiCallResponse<ListVcsResult>>;
@@ -3140,6 +3209,8 @@ declare type ListSecretsResult = {
3140
3209
  'secrets': {
3141
3210
  /** Identifier for the secret group Example: "example-secret-group" */
3142
3211
  'id': string;
3212
+ /** ID of the project that the secret group belongs to Example: "default-project" */
3213
+ 'projectId': string;
3143
3214
  /** Secret group name Example: "Example secret group" */
3144
3215
  'name': string;
3145
3216
  /** A short description of the secret group Example: "This is the secret group description" */
@@ -3593,6 +3664,8 @@ declare type CreateServiceCombinedResult = {
3593
3664
  'lastTransitionTime'?: string;
3594
3665
  };
3595
3666
  };
3667
+ /** Is the service paused? */
3668
+ 'servicePaused': boolean;
3596
3669
  /** Type of the service (combined, build or deployment) Example: "combined" */
3597
3670
  'serviceType': 'combined' | 'build' | 'deployment';
3598
3671
  'vcsData'?: {
@@ -3617,8 +3690,6 @@ declare type CreateServiceCombinedResult = {
3617
3690
  /** Number of instances/replicas running Example: 1 */
3618
3691
  'instances'?: number;
3619
3692
  'internal'?: {
3620
- /** Full identifier of deployed entity Example: "/example-user/default-project/example-service" */
3621
- 'appId': string;
3622
3693
  /** Database ID of deployed entity Example: "5f3bd676b84798d54472d1cc" */
3623
3694
  'nfObjectId': string;
3624
3695
  /** Type of deployed entity Example: "service" */
@@ -3639,16 +3710,24 @@ declare type CreateServiceCombinedResult = {
3639
3710
  };
3640
3711
  'buildEngineConfiguration': {
3641
3712
  /** The build engine used. Example: "buildpack" */
3642
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
3713
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
3714
+ /** Details about Buildpack settings. */
3643
3715
  'buildpack'?: {
3644
3716
  /** The Buildpack stack used. Example: "HEROKU_20" */
3645
3717
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
3646
3718
  /** Array of custom Buildpacks used. */
3647
3719
  'buildpackLocators'?: string[];
3648
3720
  };
3721
+ /** Details about Kaniko settings. */
3722
+ 'kaniko'?: {
3723
+ /** Should intermediate image layers be cached? */
3724
+ 'useCache'?: boolean;
3725
+ };
3649
3726
  };
3650
3727
  /** Whether the service will be built immediately Example: true */
3651
3728
  'buildInitiated': boolean;
3729
+ /** The ID of the initial build of the service. Example: "joyous-view-6290" */
3730
+ 'buildId'?: string;
3652
3731
  } | any;
3653
3732
  declare type CreateServiceCombinedCall = (opts: CreateServiceCombinedRequest) => Promise<ApiCallResponse<CreateServiceCombinedResult>>;
3654
3733
  declare type CreateServiceCombinedRequest = {
@@ -3670,6 +3749,8 @@ declare type CreateServiceCombinedData = {
3670
3749
  'deployment': {
3671
3750
  /** The number of instances to run the service on. Example: 1 */
3672
3751
  'instances': number;
3752
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3753
+ 'cmdOverride'?: string;
3673
3754
  };
3674
3755
  'ports'?: {
3675
3756
  /** The name used to identify the port. Example: "port-1" */
@@ -3696,6 +3777,8 @@ declare type CreateServiceCombinedData = {
3696
3777
  'action': 'ALLOW' | 'DENY';
3697
3778
  }[];
3698
3779
  };
3780
+ /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
3781
+ 'domains'?: string[];
3699
3782
  /** The protocol to use for the port. Example: "HTTP" */
3700
3783
  'protocol': 'HTTP' | 'TCP' | 'UDP';
3701
3784
  }[];
@@ -3787,6 +3870,8 @@ declare type CreateServiceDeploymentResult = {
3787
3870
  'lastTransitionTime'?: string;
3788
3871
  };
3789
3872
  };
3873
+ /** Is the service paused? */
3874
+ 'servicePaused': boolean;
3790
3875
  /** Type of the service (combined, build or deployment) Example: "deployment" */
3791
3876
  'serviceType': 'combined' | 'build' | 'deployment';
3792
3877
  'deployment'?: {
@@ -3799,13 +3884,11 @@ declare type CreateServiceDeploymentResult = {
3799
3884
  /** Path of the external image excluding the hostname */
3800
3885
  'imagePath': string;
3801
3886
  /** Registry provider hosting the external image */
3802
- 'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
3887
+ 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
3803
3888
  /** Does the image require authentication */
3804
3889
  'privateImage': boolean;
3805
3890
  };
3806
3891
  'internal'?: {
3807
- /** Full identifier of deployed entity Example: "/example-user/default-project/example-service" */
3808
- 'appId': string;
3809
3892
  /** Database ID of deployed entity Example: "5f3bd676b84798d54472d1cc" */
3810
3893
  'nfObjectId': string;
3811
3894
  /** Type of deployed entity Example: "service" */
@@ -3842,6 +3925,8 @@ declare type CreateServiceDeploymentData = {
3842
3925
  'deployment': {
3843
3926
  /** The number of instances to run the service on. Example: 1 */
3844
3927
  'instances': number;
3928
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3929
+ 'cmdOverride'?: string;
3845
3930
  'internal': {
3846
3931
  /** Internal ID of the build service to deploy Example: "example-build-service" */
3847
3932
  'id': string;
@@ -3853,8 +3938,10 @@ declare type CreateServiceDeploymentData = {
3853
3938
  } | {
3854
3939
  /** The number of instances to run the service on. Example: 1 */
3855
3940
  'instances': number;
3941
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3942
+ 'cmdOverride'?: string;
3856
3943
  'external': {
3857
- /** Path of the external image Example: "nginx:latest" */
3944
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
3858
3945
  'imagePath': string;
3859
3946
  /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
3860
3947
  'credentials'?: string;
@@ -3862,6 +3949,8 @@ declare type CreateServiceDeploymentData = {
3862
3949
  } | {
3863
3950
  /** The number of instances to run the service on. Example: 1 */
3864
3951
  'instances': number;
3952
+ /** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
3953
+ 'cmdOverride'?: string;
3865
3954
  };
3866
3955
  'ports'?: {
3867
3956
  /** The name used to identify the port. Example: "port-1" */
@@ -3888,6 +3977,8 @@ declare type CreateServiceDeploymentData = {
3888
3977
  'action': 'ALLOW' | 'DENY';
3889
3978
  }[];
3890
3979
  };
3980
+ /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
3981
+ 'domains'?: string[];
3891
3982
  /** The protocol to use for the port. Example: "HTTP" */
3892
3983
  'protocol': 'HTTP' | 'TCP' | 'UDP';
3893
3984
  }[];
@@ -3942,6 +4033,8 @@ declare type CreateServiceBuildResult = {
3942
4033
  'lastTransitionTime'?: string;
3943
4034
  };
3944
4035
  };
4036
+ /** Is the service paused? */
4037
+ 'servicePaused': boolean;
3945
4038
  /** Type of the service (combined, build or deployment) Example: "build" */
3946
4039
  'serviceType': 'combined' | 'build' | 'deployment';
3947
4040
  'vcsData'?: {
@@ -3961,19 +4054,25 @@ declare type CreateServiceBuildResult = {
3961
4054
  'dockerFilePath': string;
3962
4055
  };
3963
4056
  'buildConfiguration'?: {
3964
- 'branchRestrictions': string[];
3965
- 'prRestrictions': string[];
4057
+ 'branchRestrictions'?: string[];
4058
+ 'prRestrictions'?: string[];
3966
4059
  'pathIgnoreRules': string[];
3967
4060
  };
3968
4061
  'buildEngineConfiguration': {
3969
4062
  /** The build engine used. Example: "buildpack" */
3970
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
4063
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
4064
+ /** Details about Buildpack settings. */
3971
4065
  'buildpack'?: {
3972
4066
  /** The Buildpack stack used. Example: "HEROKU_20" */
3973
4067
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
3974
4068
  /** Array of custom Buildpacks used. */
3975
4069
  'buildpackLocators'?: string[];
3976
4070
  };
4071
+ /** Details about Kaniko settings. */
4072
+ 'kaniko'?: {
4073
+ /** Should intermediate image layers be cached? */
4074
+ 'useCache'?: boolean;
4075
+ };
3977
4076
  };
3978
4077
  } | any;
3979
4078
  declare type CreateServiceBuildCall = (opts: CreateServiceBuildRequest) => Promise<ApiCallResponse<CreateServiceBuildResult>>;
@@ -4083,6 +4182,8 @@ declare type GetServiceResult = {
4083
4182
  'lastTransitionTime'?: string;
4084
4183
  };
4085
4184
  };
4185
+ /** Is the service paused? */
4186
+ 'servicePaused': boolean;
4086
4187
  'vcsData'?: {
4087
4188
  /** URL of the repository being built Example: "https://github.com/northflank/gatsby-with-northflank" */
4088
4189
  'projectUrl': string;
@@ -4109,13 +4210,11 @@ declare type GetServiceResult = {
4109
4210
  /** Path of the external image excluding the hostname */
4110
4211
  'imagePath': string;
4111
4212
  /** Registry provider hosting the external image */
4112
- 'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
4213
+ 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
4113
4214
  /** Does the image require authentication */
4114
4215
  'privateImage': boolean;
4115
4216
  };
4116
4217
  'internal'?: {
4117
- /** Full identifier of deployed entity Example: "/example-user/default-project/example-service" */
4118
- 'appId': string;
4119
4218
  /** Database ID of deployed entity Example: "5f3bd676b84798d54472d1cc" */
4120
4219
  'nfObjectId': string;
4121
4220
  /** Type of deployed entity Example: "service" */
@@ -4131,20 +4230,74 @@ declare type GetServiceResult = {
4131
4230
  };
4132
4231
  };
4133
4232
  'buildConfiguration'?: {
4134
- 'branchRestrictions': string[];
4135
- 'prRestrictions': string[];
4233
+ 'branchRestrictions'?: string[];
4234
+ 'prRestrictions'?: string[];
4136
4235
  'pathIgnoreRules': string[];
4137
4236
  };
4138
4237
  'buildEngineConfiguration'?: {
4139
4238
  /** The build engine used. Example: "buildpack" */
4140
- 'builder'?: 'buildpack' | 'kaniko' | 'buildkit';
4239
+ 'buildEngine'?: 'buildpack' | 'kaniko' | 'buildkit';
4240
+ /** Details about Buildpack settings. */
4141
4241
  'buildpack'?: {
4142
4242
  /** The Buildpack stack used. Example: "HEROKU_20" */
4143
4243
  'builder'?: 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
4144
4244
  /** Array of custom Buildpacks used. */
4145
4245
  'buildpackLocators'?: string[];
4146
4246
  };
4247
+ /** Details about Kaniko settings. */
4248
+ 'kaniko'?: {
4249
+ /** Should intermediate image layers be cached? */
4250
+ 'useCache'?: boolean;
4251
+ };
4147
4252
  };
4253
+ /** An array of ports of the service. */
4254
+ 'ports': {
4255
+ /** The id used to identify the port across requests. Example: "eonyui" */
4256
+ 'id': string;
4257
+ /** The name of the port used in the public url and UI. Example: "port-1" */
4258
+ 'name': string;
4259
+ /** The port number. Example: 8080 */
4260
+ 'internalPort': number;
4261
+ /** The protocol used by the port. Example: "HTTP" */
4262
+ 'protocol': 'HTTP' | 'TCP' | 'UDP';
4263
+ /** If true, the port is exposed publicly. Example: true */
4264
+ 'public': boolean;
4265
+ /** DNS entry for this port. Example: "port-1--example-service--default-service--user-abc1.salvo.code.run" */
4266
+ 'dns'?: string;
4267
+ /** An array of domains that redirect to this port. */
4268
+ 'domains': {
4269
+ /** The custom domain redirecting to this port. Example: "app.example.com" */
4270
+ 'name': string;
4271
+ /** Details about the TLS certificate generation for this domain. */
4272
+ 'certificate': {
4273
+ /** Is the certificate in the process of being generated? */
4274
+ 'inProgress'?: boolean;
4275
+ /** The timestamp when the TLS certificate will expire. Example: "2022-04-26T09:25:02.000Z" */
4276
+ 'expiryDate'?: string;
4277
+ /** The timestamp when a new TLS certificate will be generated. Example: "2022-03-27T09:25:02.000Z" */
4278
+ 'refreshDate'?: string;
4279
+ };
4280
+ }[];
4281
+ /** Details about security settings for this port. */
4282
+ 'security'?: {
4283
+ /** An array of credentials to access the service. */
4284
+ 'credentials'?: {
4285
+ /** The username to access the service Example: "admin" */
4286
+ 'username': string;
4287
+ /** The password to access the service with this username. Example: "password123" */
4288
+ 'password': string;
4289
+ /** The type of authentication used Example: "basic-auth" */
4290
+ 'type': 'basic-auth';
4291
+ }[];
4292
+ /** An array of IP address policies. */
4293
+ 'policies'?: {
4294
+ /** An array of IP addresses used for this rule */
4295
+ 'addresses': string[];
4296
+ /** The action for this rule. Example: "DENY" */
4297
+ 'action': 'ALLOW' | 'DENY';
4298
+ }[];
4299
+ };
4300
+ }[];
4148
4301
  };
4149
4302
  declare type GetServiceCall = (opts: GetServiceRequest) => Promise<ApiCallResponse<GetServiceResult>>;
4150
4303
  declare type GetServiceRequest = {
@@ -4234,7 +4387,7 @@ declare type GetServiceDeploymentResult = {
4234
4387
  /** Path of the external image excluding the hostname Example: "nginx:latest" */
4235
4388
  'imagePath': string;
4236
4389
  /** Registry provider hosting the external image Example: "dockerhub" */
4237
- 'registryProvider': 'dockerhub' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
4390
+ 'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
4238
4391
  /** Does the image require authentication */
4239
4392
  'privateImage': boolean;
4240
4393
  };
@@ -4269,7 +4422,7 @@ declare type UpdateServiceDeploymentParameters = {
4269
4422
  };
4270
4423
  declare type UpdateServiceDeploymentData = {
4271
4424
  'external': {
4272
- /** Path of the external image excluding the hostname Example: "nginx:latest" */
4425
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
4273
4426
  'imagePath': string;
4274
4427
  /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
4275
4428
  'credentials'?: string;
@@ -4352,6 +4505,7 @@ declare class ResumeServiceEndpoint extends PostApiEndpoint<ResumeServiceRequest
4352
4505
  }
4353
4506
 
4354
4507
  declare type GetServicePortsResult = {
4508
+ /** An array of ports of the service. */
4355
4509
  'ports': {
4356
4510
  /** The id used to identify the port across requests. Example: "eonyui" */
4357
4511
  'id': string;
@@ -4363,9 +4517,41 @@ declare type GetServicePortsResult = {
4363
4517
  'protocol': 'HTTP' | 'TCP' | 'UDP';
4364
4518
  /** If true, the port is exposed publicly. Example: true */
4365
4519
  'public': boolean;
4366
- /** An array of domains that redirect to this port. Example: ["app.example.com"] */
4367
- 'domains': string[];
4368
- 'security'?: any;
4520
+ /** DNS entry for this port. Example: "port-1--example-service--default-service--user-abc1.salvo.code.run" */
4521
+ 'dns'?: string;
4522
+ /** An array of domains that redirect to this port. */
4523
+ 'domains': {
4524
+ /** The custom domain redirecting to this port. Example: "app.example.com" */
4525
+ 'name': string;
4526
+ /** Details about the TLS certificate generation for this domain. */
4527
+ 'certificate': {
4528
+ /** Is the certificate in the process of being generated? */
4529
+ 'inProgress'?: boolean;
4530
+ /** The timestamp when the TLS certificate will expire. Example: "2022-04-26T09:25:02.000Z" */
4531
+ 'expiryDate'?: string;
4532
+ /** The timestamp when a new TLS certificate will be generated. Example: "2022-03-27T09:25:02.000Z" */
4533
+ 'refreshDate'?: string;
4534
+ };
4535
+ }[];
4536
+ /** Details about security settings for this port. */
4537
+ 'security'?: {
4538
+ /** An array of credentials to access the service. */
4539
+ 'credentials'?: {
4540
+ /** The username to access the service Example: "admin" */
4541
+ 'username': string;
4542
+ /** The password to access the service with this username. Example: "password123" */
4543
+ 'password': string;
4544
+ /** The type of authentication used Example: "basic-auth" */
4545
+ 'type': 'basic-auth';
4546
+ }[];
4547
+ /** An array of IP address policies. */
4548
+ 'policies'?: {
4549
+ /** An array of IP addresses used for this rule */
4550
+ 'addresses': string[];
4551
+ /** The action for this rule. Example: "DENY" */
4552
+ 'action': 'ALLOW' | 'DENY';
4553
+ }[];
4554
+ };
4369
4555
  }[];
4370
4556
  };
4371
4557
  declare type GetServicePortsCall = (opts: GetServicePortsRequest) => Promise<ApiCallResponse<GetServicePortsResult>>;
@@ -4641,7 +4827,7 @@ declare type GetServiceBuildsResult = {
4641
4827
  /** An array of builds. */
4642
4828
  'builds': {
4643
4829
  /** ID of the build. Example: "joyous-view-6290" */
4644
- 'id'?: string;
4830
+ 'id': string;
4645
4831
  /** Name of the branch the built commit belongs to. Example: "main" */
4646
4832
  'branch'?: string;
4647
4833
  /** ID of the pull request the commit belongs to. */
@@ -4690,7 +4876,7 @@ declare class GetServiceBuildsEndpoint extends GetApiEndpoint<GetServiceBuildsRe
4690
4876
 
4691
4877
  declare type StartServiceBuildResult = {
4692
4878
  /** ID of the build. Example: "joyous-view-6290" */
4693
- 'id'?: string;
4879
+ 'id': string;
4694
4880
  /** Name of the branch the built commit belongs to. Example: "main" */
4695
4881
  'branch'?: string;
4696
4882
  /** ID of the pull request the commit belongs to. */
@@ -4730,6 +4916,47 @@ declare class StartServiceBuildEndpoint extends PostApiEndpoint<StartServiceBuil
4730
4916
  body: (payload: StartServiceBuildRequest) => string;
4731
4917
  }
4732
4918
 
4919
+ declare type GetServiceBuildResult = {
4920
+ /** ID of the build. Example: "joyous-view-6290" */
4921
+ 'id': string;
4922
+ /** Name of the branch the built commit belongs to. Example: "main" */
4923
+ 'branch'?: string;
4924
+ /** ID of the pull request the commit belongs to. */
4925
+ 'pullRequestId'?: number;
4926
+ /** The status of the build. Example: "SUCCESS" */
4927
+ 'status'?: 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
4928
+ /** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
4929
+ 'sha'?: string;
4930
+ /** Whether the build has finished. Example: true */
4931
+ 'concluded'?: boolean;
4932
+ /** Timestamp of the build initiation. Example: "2021-07-28T15:55:38.296Z" */
4933
+ 'createdAt'?: string;
4934
+ /** Whether the build was successful. Example: true */
4935
+ 'success'?: boolean;
4936
+ /** Description of the build status. Example: "Image successfully built" */
4937
+ 'message'?: string;
4938
+ /** Timestamp of the build concluding. Example: 1606237973 */
4939
+ 'buildConcludedAt'?: number;
4940
+ };
4941
+ declare type GetServiceBuildCall = (opts: GetServiceBuildRequest) => Promise<ApiCallResponse<GetServiceBuildResult>>;
4942
+ declare type GetServiceBuildRequest = {
4943
+ parameters: GetServiceBuildParameters;
4944
+ };
4945
+ declare type GetServiceBuildParameters = {
4946
+ /** ID of the project */ 'projectId': string;
4947
+ /** ID of the service */
4948
+ 'serviceId': string;
4949
+ /** ID of the service build */
4950
+ 'buildId': string;
4951
+ };
4952
+ /** Gets information about a build for the service */
4953
+ declare class GetServiceBuildEndpoint extends GetApiEndpoint<GetServiceBuildRequest, GetServiceBuildResult> {
4954
+ description: string;
4955
+ withAuth: boolean;
4956
+ endpointUrl: (opts: GetServiceBuildRequest) => string;
4957
+ body: () => undefined;
4958
+ }
4959
+
4733
4960
  declare type AbortServiceBuildResult = any;
4734
4961
  declare type AbortServiceBuildCall = (opts: AbortServiceBuildRequest) => Promise<ApiCallResponse<AbortServiceBuildResult>>;
4735
4962
  declare type AbortServiceBuildRequest = {
@@ -4757,10 +4984,10 @@ declare type GetServiceContainersResult = {
4757
4984
  'createdAt': number;
4758
4985
  /** The name of the pod. Example: "example-service-78b4d4459d-sbtn8" */
4759
4986
  'podName': string;
4760
- /** The region where the pod is deployed. Example: "europe-west" */
4761
- 'region': string;
4762
4987
  /** The current status of the pod. Example: "TASK_RUNNING" */
4763
4988
  'status': 'TASK_RUNNING' | 'TASK_STARTING' | 'TASK_STAGING' | 'TASK_KILLING' | 'TASK_KILLED' | 'TASK_FAILED' | 'TASK_FINISHED';
4989
+ /** The timestamp the pod was last updated. Example: 1611241087 */
4990
+ 'updatedAt': number;
4764
4991
  }[];
4765
4992
  };
4766
4993
  declare type GetServiceContainersCall = (opts: GetServiceContainersRequest) => Promise<ApiCallResponse<GetServiceContainersResult>>;
@@ -5458,6 +5685,7 @@ declare class ApiClient {
5458
5685
  run: GetJobRunCall;
5459
5686
  healthChecks: GetJobHealthchecksCall;
5460
5687
  builds: GetJobBuildsCall;
5688
+ build: GetJobBuildCall;
5461
5689
  buildArguments: GetJobBuildargumentsCall;
5462
5690
  buildArgumentDetails: GetJobBuildargumentdetailsCall;
5463
5691
  environment: GetJobEnvironmentCall;
@@ -5479,6 +5707,7 @@ declare class ApiClient {
5479
5707
  ports: GetServicePortsCall;
5480
5708
  healthChecks: GetServiceHealthchecksCall;
5481
5709
  builds: GetServiceBuildsCall;
5710
+ build: GetServiceBuildCall;
5482
5711
  containers: GetServiceContainersCall;
5483
5712
  branches: GetServiceBranchesCall;
5484
5713
  pullRequests: GetServicePullrequestsCall;
@@ -5657,6 +5886,7 @@ declare class ApiClient {
5657
5886
  run: GetJobRunEndpoint;
5658
5887
  healthChecks: GetJobHealthchecksEndpoint;
5659
5888
  builds: GetJobBuildsEndpoint;
5889
+ build: GetJobBuildEndpoint;
5660
5890
  buildArguments: GetJobBuildargumentsEndpoint;
5661
5891
  buildArgumentDetails: GetJobBuildargumentdetailsEndpoint;
5662
5892
  environment: GetJobEnvironmentEndpoint;
@@ -5678,6 +5908,7 @@ declare class ApiClient {
5678
5908
  ports: GetServicePortsEndpoint;
5679
5909
  healthChecks: GetServiceHealthchecksEndpoint;
5680
5910
  builds: GetServiceBuildsEndpoint;
5911
+ build: GetServiceBuildEndpoint;
5681
5912
  containers: GetServiceContainersEndpoint;
5682
5913
  branches: GetServiceBranchesEndpoint;
5683
5914
  pullRequests: GetServicePullrequestsEndpoint;
@@ -5816,4 +6047,4 @@ declare type ApiClientOpts = {
5816
6047
  customUserAgent?: string;
5817
6048
  };
5818
6049
 
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 };
6050
+ export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonParameters, GetAddonRequest, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobEnvironmentCall, GetJobEnvironmentEndpoint, GetJobEnvironmentOptions, GetJobEnvironmentParameters, GetJobEnvironmentRequest, GetJobEnvironmentResult, GetJobEnvironmentdetailsCall, GetJobEnvironmentdetailsEndpoint, GetJobEnvironmentdetailsParameters, GetJobEnvironmentdetailsRequest, GetJobEnvironmentdetailsResult, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceEnvironmentvariabledetailsCall, GetServiceEnvironmentvariabledetailsEndpoint, GetServiceEnvironmentvariabledetailsParameters, GetServiceEnvironmentvariabledetailsRequest, GetServiceEnvironmentvariabledetailsResult, GetServiceEnvironmentvariablesCall, GetServiceEnvironmentvariablesEndpoint, GetServiceEnvironmentvariablesOptions, GetServiceEnvironmentvariablesParameters, GetServiceEnvironmentvariablesRequest, GetServiceEnvironmentvariablesResult, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, NorthflankPortForwarder, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobCmdoverrideCall, UpdateJobCmdoverrideData, UpdateJobCmdoverrideEndpoint, UpdateJobCmdoverrideParameters, UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobEnvironmentCall, UpdateJobEnvironmentData, UpdateJobEnvironmentEndpoint, UpdateJobEnvironmentParameters, UpdateJobEnvironmentRequest, UpdateJobEnvironmentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceCmdoverrideCall, UpdateServiceCmdoverrideData, UpdateServiceCmdoverrideEndpoint, UpdateServiceCmdoverrideParameters, UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceEnvironmentvariablesCall, UpdateServiceEnvironmentvariablesData, UpdateServiceEnvironmentvariablesEndpoint, UpdateServiceEnvironmentvariablesParameters, UpdateServiceEnvironmentvariablesRequest, UpdateServiceEnvironmentvariablesResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };