@northflank/js-client 0.7.9 → 0.7.11

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.
@@ -263,7 +263,7 @@ type ListAddonsResult = {
263
263
  'type': string;
264
264
  };
265
265
  /** The current state of the addon. Example: "running" */
266
- 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
266
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
267
267
  }[];
268
268
  };
269
269
  type ListAddonsCall = (opts: ListAddonsRequest) => Promise<ApiCallResponse<ListAddonsResult>>;
@@ -1135,8 +1135,6 @@ type GetInvoiceDetailsResult = {
1135
1135
  'projects': {
1136
1136
  /** ID of the project. Example: "default-project" */
1137
1137
  'projectId': string;
1138
- /** Name of the project Example: "Default Project" */
1139
- 'projectName': string;
1140
1138
  /** Duration the project has been running in this billing period, in seconds. Example: 259200 */
1141
1139
  'duration': string;
1142
1140
  /** An array of objects belonging to this project that are billed in this invoice. If `addonId`, `serviceId` or `jobId` are passed in, only objects matching that ID will be returned. */
@@ -1156,8 +1154,6 @@ type GetInvoiceDetailsResult = {
1156
1154
  };
1157
1155
  /** The ID of the object. Example: "example-service" */
1158
1156
  'nfObjectId': string;
1159
- /** The name of the object. Example: "Example Service" */
1160
- 'nfObjectName': string;
1161
1157
  /** The type of the object. Example: "service" */
1162
1158
  'nfObjectType': 'job' | 'service' | 'addon' | 'volume';
1163
1159
  }[];
@@ -3109,8 +3105,8 @@ type ListReposResult = {
3109
3105
  'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
3110
3106
  /** If `vcsService` is `self-hosted`, the ID of the self-hosted provider. */
3111
3107
  'selfHostedVcsId'?: string;
3112
- /** The ID of the repository, according to the version control provider. Example: 123456789 */
3113
- 'id': any;
3108
+ /** The ID of the repository from the version control provider. This is always returned from the Northflank API as a string for consistency across providers. This value is the numerical ID of a GitHub repository, the numerical ID of a GitLab project, or the UUID of a Bitbucket repository. Example: "123456789" */
3109
+ 'id': string;
3114
3110
  /** The name of the repository. Example: "gatsby-with-northflank" */
3115
3111
  'name': string;
3116
3112
  /** The full name of the repository. Example: "northflank/gatsby-with-northflank" */
@@ -3549,7 +3545,7 @@ type CreateAddonResult = {
3549
3545
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
3550
3546
  'appId': string;
3551
3547
  /** The current state of the addon. Example: "running" */
3552
- 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
3548
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
3553
3549
  'cluster'?: {
3554
3550
  'id'?: any;
3555
3551
  'name'?: any;
@@ -3683,7 +3679,7 @@ type PutAddonResult = {
3683
3679
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
3684
3680
  'appId': string;
3685
3681
  /** The current state of the addon. Example: "running" */
3686
- 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
3682
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
3687
3683
  'cluster'?: {
3688
3684
  'id'?: any;
3689
3685
  'name'?: any;
@@ -3774,7 +3770,7 @@ type GetAddonResult = {
3774
3770
  /** The time the addon was created. Example: "2021-01-20T11:19:53.175Z" */
3775
3771
  'createdAt': string;
3776
3772
  /** The current state of the addon. Example: "running" */
3777
- 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
3773
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
3778
3774
  /** Details about the addon's specifications. */
3779
3775
  'spec': {
3780
3776
  /** The type of the addon Example: "mongodb" */
@@ -3897,7 +3893,7 @@ type PatchAddonResult = {
3897
3893
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
3898
3894
  'appId': string;
3899
3895
  /** The current state of the addon. Example: "running" */
3900
- 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
3896
+ 'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
3901
3897
  'cluster'?: {
3902
3898
  'id'?: any;
3903
3899
  'name'?: any;
@@ -4416,8 +4412,7 @@ declare class RetainAddonBackupEndpoint extends PostApiEndpoint<RetainAddonBacku
4416
4412
  }
4417
4413
 
4418
4414
  type GetAddonContainersResult = {
4419
- /** An array of containers. */
4420
- 'containers': {
4415
+ 'containers'?: {
4421
4416
  /** The name of the container. Example: "example-service-78b4d4459d-sbtn8" */
4422
4417
  'name': string;
4423
4418
  /** The timestamp the container was created. Example: 1611241087 */
@@ -4637,6 +4632,25 @@ declare class GetAddonPitrwindowEndpoint extends GetApiEndpoint<GetAddonPitrwind
4637
4632
  body: () => undefined;
4638
4633
  }
4639
4634
 
4635
+ type ResetAddonResult = any;
4636
+ type ResetAddonCall = (opts: ResetAddonRequest) => Promise<ApiCallResponse<ResetAddonResult>>;
4637
+ type ResetAddonRequest = {
4638
+ parameters: ResetAddonParameters;
4639
+ };
4640
+ type ResetAddonParameters = {
4641
+ /** ID of the project */ 'projectId': string;
4642
+ /** ID of the addon */
4643
+ 'addonId': string;
4644
+ };
4645
+ /** Reset the given addon. */
4646
+ declare class ResetAddonEndpoint extends PostApiEndpoint<ResetAddonRequest, ResetAddonResult> {
4647
+ description: string;
4648
+ withAuth: boolean;
4649
+ requiredPermissions: string;
4650
+ endpointUrl: (opts: ResetAddonRequest) => string;
4651
+ body: () => undefined;
4652
+ }
4653
+
4640
4654
  type RestartAddonResult = any;
4641
4655
  type RestartAddonCall = (opts: RestartAddonRequest) => Promise<ApiCallResponse<RestartAddonResult>>;
4642
4656
  type RestartAddonRequest = {
@@ -7644,8 +7658,7 @@ declare class AbortJobBuildEndpoint extends DeleteApiEndpoint<AbortJobBuildReque
7644
7658
  }
7645
7659
 
7646
7660
  type GetJobContainersResult = {
7647
- /** An array of containers. */
7648
- 'containers': {
7661
+ 'containers'?: {
7649
7662
  /** The name of the container. Example: "example-service-78b4d4459d-sbtn8" */
7650
7663
  'name': string;
7651
7664
  /** The timestamp the container was created. Example: 1611241087 */
@@ -7655,6 +7668,8 @@ type GetJobContainersResult = {
7655
7668
  /** The timestamp the container was last updated. Example: 1611241087 */
7656
7669
  'updatedAt': number;
7657
7670
  }[];
7671
+ /** The id of the associated job run. Example: "00000676-9be8-41dd-b0f7-ba7df935cf27" */
7672
+ 'runId': string;
7658
7673
  };
7659
7674
  type GetJobContainersCall = (opts: GetJobContainersRequest) => Promise<ApiCallResponse<GetJobContainersResult>>;
7660
7675
  type GetJobContainersRequest = {
@@ -7673,6 +7688,8 @@ type GetJobContainersOptions = {
7673
7688
  'page'?: number;
7674
7689
  /** The cursor returned from the previous page of results, used to request the next page. */
7675
7690
  'cursor'?: string;
7691
+ /** If provided, only returns containers for this specific job run. */
7692
+ 'runId'?: string;
7676
7693
  };
7677
7694
  /** Gets a list of containers for the given job. */
7678
7695
  declare class GetJobContainersEndpoint extends GetApiEndpoint<GetJobContainersRequest, GetJobContainersResult> {
@@ -8579,6 +8596,354 @@ declare class GetPipelineEndpoint extends GetApiEndpoint<GetPipelineRequest, Get
8579
8596
  body: () => undefined;
8580
8597
  }
8581
8598
 
8599
+ type GetPreviewtemplateResult = {
8600
+ /** The version of the Northflank API to run the template against. Example: "v1" */
8601
+ 'apiVersion': 'v1';
8602
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
8603
+ 'arguments'?: any;
8604
+ 'triggers'?: {
8605
+ /** A reference that can be used to access the output of this trigger in the template. */
8606
+ 'ref'?: string;
8607
+ /** The VCS provider to use. Example: "github" */
8608
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
8609
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
8610
+ 'selfHostedVcsId'?: string;
8611
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
8612
+ 'accountLogin'?: string;
8613
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
8614
+ 'repoUrl': string;
8615
+ 'branchRestrictions'?: string[];
8616
+ 'prRestrictions'?: string[];
8617
+ 'pathIgnoreRules'?: string[];
8618
+ 'ciIgnoreFlags'?: string[];
8619
+ 'ciIgnoreFlagsEnabled'?: boolean;
8620
+ 'isAllowList'?: boolean;
8621
+ /** Type of trigger */
8622
+ 'type'?: 'git';
8623
+ /** Should the git trigger only be triggered manually? */
8624
+ 'manualOnly'?: boolean;
8625
+ }[];
8626
+ 'spec': any;
8627
+ /** Identifier for the template Example: "example-template" */
8628
+ 'id': string;
8629
+ 'options': any;
8630
+ /** time of creation */
8631
+ 'createdAt'?: string;
8632
+ /** time of update */
8633
+ 'updatedAt'?: string;
8634
+ };
8635
+ type GetPreviewtemplateCall = (opts: GetPreviewtemplateRequest) => Promise<ApiCallResponse<GetPreviewtemplateResult>>;
8636
+ type GetPreviewtemplateRequest = {
8637
+ parameters: GetPreviewtemplateParameters;
8638
+ options?: GetPreviewtemplateOptions;
8639
+ };
8640
+ type GetPreviewtemplateParameters = {
8641
+ /** ID of the project */ 'projectId': string;
8642
+ /** ID of the pipeline */
8643
+ 'pipelineId': string;
8644
+ };
8645
+ type GetPreviewtemplateOptions = {
8646
+ /** The number of results to display per request. Maximum of 100 results per page. */
8647
+ 'per_page'?: number;
8648
+ /** The page number to access. */
8649
+ 'page'?: number;
8650
+ /** The cursor returned from the previous page of results, used to request the next page. */
8651
+ 'cursor'?: string;
8652
+ };
8653
+ /** Get information about the given preview template. */
8654
+ declare class GetPreviewtemplateEndpoint extends GetApiEndpoint<GetPreviewtemplateRequest, GetPreviewtemplateResult> {
8655
+ description: string;
8656
+ withAuth: boolean;
8657
+ requiredPermissions: string;
8658
+ endpointUrl: (opts: GetPreviewtemplateRequest) => string;
8659
+ body: () => undefined;
8660
+ }
8661
+
8662
+ type UpdatePreviewtemplateResult = {
8663
+ /** Name of the template. Example: "Example Template" */
8664
+ 'name': string;
8665
+ /** Description of the template. Example: "This is a sample template." */
8666
+ 'description'?: string;
8667
+ /** The version of the Northflank API to run the template against. Example: "v1" */
8668
+ 'apiVersion': 'v1';
8669
+ /** Details of the project the template will run in. */
8670
+ 'project': {
8671
+ /** The ID of the project to use. */
8672
+ 'id': string;
8673
+ } | {
8674
+ 'spec': {
8675
+ /** The name of the project. Example: "New Project" */
8676
+ 'name': string;
8677
+ /** The description of the project. Example: "This is a new project." */
8678
+ 'description'?: string;
8679
+ /** The color of the project in the Northflank App. Example: "#EF233C" */
8680
+ 'color'?: string;
8681
+ /** The region the project will be hosted in. Example: "europe-west" */
8682
+ 'region'?: string;
8683
+ } | {
8684
+ /** The name of the project. Example: "New Project" */
8685
+ 'name': string;
8686
+ /** The description of the project. Example: "This is a new project." */
8687
+ 'description'?: string;
8688
+ /** The color of the project in the Northflank App. Example: "#EF233C" */
8689
+ 'color'?: string;
8690
+ /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
8691
+ 'clusterId'?: string;
8692
+ };
8693
+ };
8694
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
8695
+ 'arguments'?: any;
8696
+ 'spec': any;
8697
+ /** Identifier for the template Example: "example-template" */
8698
+ 'id': string;
8699
+ 'gitops'?: {
8700
+ /** The VCS provider to use. Example: "github" */
8701
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
8702
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
8703
+ 'selfHostedVcsId'?: string;
8704
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
8705
+ 'accountLogin'?: string;
8706
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
8707
+ 'repoUrl': string;
8708
+ /** The name of the branch to use. Example: "main" */
8709
+ 'branch': string;
8710
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
8711
+ 'filePath': string;
8712
+ /** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
8713
+ 'templateSha': string;
8714
+ };
8715
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
8716
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
8717
+ 'options': {
8718
+ /** Whether autorun is enabled */
8719
+ 'autorun': boolean;
8720
+ };
8721
+ /** time of creation */
8722
+ 'createdAt'?: string;
8723
+ /** time of update */
8724
+ 'updatedAt'?: string;
8725
+ };
8726
+ type UpdatePreviewtemplateCall = (opts: UpdatePreviewtemplateRequest) => Promise<ApiCallResponse<UpdatePreviewtemplateResult>>;
8727
+ type UpdatePreviewtemplateRequest = {
8728
+ parameters: UpdatePreviewtemplateParameters;
8729
+ data: UpdatePreviewtemplateData;
8730
+ };
8731
+ type UpdatePreviewtemplateParameters = {
8732
+ /** ID of the project */ 'projectId': string;
8733
+ /** ID of the pipeline */
8734
+ 'pipelineId': string;
8735
+ };
8736
+ type UpdatePreviewtemplateData = {
8737
+ /** The version of the Northflank API to run the template against. Example: "v1" */
8738
+ 'apiVersion': 'v1';
8739
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
8740
+ 'arguments'?: any;
8741
+ 'spec': any;
8742
+ 'triggers': {
8743
+ /** A reference that can be used to access the output of this trigger in the template. */
8744
+ 'ref'?: string;
8745
+ /** The VCS provider to use. Example: "github" */
8746
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
8747
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
8748
+ 'selfHostedVcsId'?: string;
8749
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
8750
+ 'accountLogin'?: string;
8751
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
8752
+ 'repoUrl': string;
8753
+ 'branchRestrictions'?: string[];
8754
+ 'prRestrictions'?: string[];
8755
+ 'pathIgnoreRules'?: string[];
8756
+ 'ciIgnoreFlags'?: string[];
8757
+ 'ciIgnoreFlagsEnabled'?: boolean;
8758
+ 'isAllowList'?: boolean;
8759
+ /** Type of trigger */
8760
+ 'type'?: 'git';
8761
+ /** Should the git trigger only be triggered manually? */
8762
+ 'manualOnly'?: boolean;
8763
+ }[];
8764
+ 'webhook'?: {
8765
+ /** Whether this template can be ran using a webhook endpoint trigger. Example: true */
8766
+ 'enabled'?: boolean;
8767
+ /** If true, the webhook endpoint will be regenerated if one already exists. */
8768
+ 'regenerate'?: boolean;
8769
+ };
8770
+ };
8771
+ /** Update a given preview template. */
8772
+ declare class UpdatePreviewtemplateEndpoint extends PostApiEndpoint<UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult> {
8773
+ description: string;
8774
+ withAuth: boolean;
8775
+ requiredPermissions: string;
8776
+ endpointUrl: (opts: UpdatePreviewtemplateRequest) => string;
8777
+ body: (payload: UpdatePreviewtemplateRequest) => string;
8778
+ }
8779
+
8780
+ type ListPreviewtemplatepreviewsResult = {
8781
+ /** A list of currently available preview environments for the template. */
8782
+ 'previewEnvironments': {
8783
+ /** Identifier for the preview template environment Example: "clean-step" */
8784
+ 'id': string;
8785
+ /** Data about the version control action that triggered environment creation */
8786
+ 'vcsData': {
8787
+ 'repoUrl': string;
8788
+ };
8789
+ /** time of creation */
8790
+ 'createdAt'?: string;
8791
+ /** time of update */
8792
+ 'updatedAt'?: string;
8793
+ }[];
8794
+ };
8795
+ type ListPreviewtemplatepreviewsCall = (opts: ListPreviewtemplatepreviewsRequest) => Promise<ApiCallResponse<ListPreviewtemplatepreviewsResult>>;
8796
+ type ListPreviewtemplatepreviewsRequest = {
8797
+ parameters: ListPreviewtemplatepreviewsParameters;
8798
+ options?: ListPreviewtemplatepreviewsOptions;
8799
+ };
8800
+ type ListPreviewtemplatepreviewsParameters = {
8801
+ /** ID of the project */ 'projectId': string;
8802
+ /** ID of the pipeline */
8803
+ 'pipelineId': string;
8804
+ };
8805
+ type ListPreviewtemplatepreviewsOptions = {
8806
+ /** The number of results to display per request. Maximum of 100 results per page. */
8807
+ 'per_page'?: number;
8808
+ /** The page number to access. */
8809
+ 'page'?: number;
8810
+ /** The cursor returned from the previous page of results, used to request the next page. */
8811
+ 'cursor'?: string;
8812
+ };
8813
+ /** Get a list of active preview environments for a template */
8814
+ declare class ListPreviewtemplatepreviewsEndpoint extends GetApiEndpoint<ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult> {
8815
+ description: string;
8816
+ withAuth: boolean;
8817
+ requiredPermissions: string;
8818
+ endpointUrl: (opts: ListPreviewtemplatepreviewsRequest) => string;
8819
+ body: () => undefined;
8820
+ }
8821
+
8822
+ type DeletePreviewtemplatepreviewResult = any;
8823
+ type DeletePreviewtemplatepreviewCall = (opts: DeletePreviewtemplatepreviewRequest) => Promise<ApiCallResponse<DeletePreviewtemplatepreviewResult>>;
8824
+ type DeletePreviewtemplatepreviewRequest = {
8825
+ parameters: DeletePreviewtemplatepreviewParameters;
8826
+ };
8827
+ type DeletePreviewtemplatepreviewParameters = {
8828
+ /** ID of the project */ 'projectId': string;
8829
+ /** ID of the pipeline */
8830
+ 'pipelineId': string;
8831
+ /** ID of the preview environment */
8832
+ 'previewId': string;
8833
+ };
8834
+ /** Delete a preview environment generated by a preview template. */
8835
+ declare class DeletePreviewtemplatepreviewEndpoint extends DeleteApiEndpoint<DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult> {
8836
+ description: string;
8837
+ withAuth: boolean;
8838
+ requiredPermissions: string;
8839
+ endpointUrl: (opts: DeletePreviewtemplatepreviewRequest) => string;
8840
+ body: () => undefined;
8841
+ }
8842
+
8843
+ type ListPreviewtemplaterunsResult = {
8844
+ /** An array of template run objects. */
8845
+ 'previewTemplateRuns': {
8846
+ /** The version of the Northflank API to run the template against. Example: "v1" */
8847
+ 'apiVersion': 'v1';
8848
+ /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
8849
+ 'id': string;
8850
+ /** Identifier for the template Example: "example-template" */
8851
+ 'templateId': string;
8852
+ /** Status of the template run Example: "pending" */
8853
+ 'status': 'pending' | 'running' | 'success' | 'failure';
8854
+ /** time of creation */
8855
+ 'createdAt'?: string;
8856
+ /** time of update */
8857
+ 'updatedAt'?: string;
8858
+ }[];
8859
+ };
8860
+ type ListPreviewtemplaterunsCall = (opts: ListPreviewtemplaterunsRequest) => Promise<ApiCallResponse<ListPreviewtemplaterunsResult>>;
8861
+ type ListPreviewtemplaterunsRequest = {
8862
+ parameters: ListPreviewtemplaterunsParameters;
8863
+ options?: ListPreviewtemplaterunsOptions;
8864
+ };
8865
+ type ListPreviewtemplaterunsParameters = {
8866
+ /** ID of the project */ 'projectId': string;
8867
+ /** ID of the pipeline */
8868
+ 'pipelineId': string;
8869
+ };
8870
+ type ListPreviewtemplaterunsOptions = {
8871
+ /** The number of results to display per request. Maximum of 100 results per page. */
8872
+ 'per_page'?: number;
8873
+ /** The page number to access. */
8874
+ 'page'?: number;
8875
+ /** The cursor returned from the previous page of results, used to request the next page. */
8876
+ 'cursor'?: string;
8877
+ };
8878
+ /** Get a list of preview template runs */
8879
+ declare class ListPreviewtemplaterunsEndpoint extends GetApiEndpoint<ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult> {
8880
+ description: string;
8881
+ withAuth: boolean;
8882
+ requiredPermissions: string;
8883
+ endpointUrl: (opts: ListPreviewtemplaterunsRequest) => string;
8884
+ body: () => undefined;
8885
+ }
8886
+
8887
+ type GetPreviewtemplaterunResult = {
8888
+ /** The version of the Northflank API to run the template against. Example: "v1" */
8889
+ 'apiVersion': 'v1';
8890
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
8891
+ 'arguments'?: any;
8892
+ 'triggers'?: {
8893
+ /** A reference that can be used to access the output of this trigger in the template. */
8894
+ 'ref'?: string;
8895
+ /** The VCS provider to use. Example: "github" */
8896
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
8897
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
8898
+ 'selfHostedVcsId'?: string;
8899
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
8900
+ 'accountLogin'?: string;
8901
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
8902
+ 'repoUrl': string;
8903
+ 'branchRestrictions'?: string[];
8904
+ 'prRestrictions'?: string[];
8905
+ 'pathIgnoreRules'?: string[];
8906
+ 'ciIgnoreFlags'?: string[];
8907
+ 'ciIgnoreFlagsEnabled'?: boolean;
8908
+ 'isAllowList'?: boolean;
8909
+ /** Type of trigger */
8910
+ 'type'?: 'git';
8911
+ /** Should the git trigger only be triggered manually? */
8912
+ 'manualOnly'?: boolean;
8913
+ }[];
8914
+ 'spec': any;
8915
+ 'refs'?: any;
8916
+ /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
8917
+ 'id': string;
8918
+ /** Identifier for the template Example: "example-template" */
8919
+ 'templateId': string;
8920
+ /** Status of the template run Example: "pending" */
8921
+ 'status': 'pending' | 'running' | 'success' | 'failure';
8922
+ /** time of creation */
8923
+ 'createdAt'?: string;
8924
+ /** time of update */
8925
+ 'updatedAt'?: string;
8926
+ };
8927
+ type GetPreviewtemplaterunCall = (opts: GetPreviewtemplaterunRequest) => Promise<ApiCallResponse<GetPreviewtemplaterunResult>>;
8928
+ type GetPreviewtemplaterunRequest = {
8929
+ parameters: GetPreviewtemplaterunParameters;
8930
+ };
8931
+ type GetPreviewtemplaterunParameters = {
8932
+ /** ID of the project */ 'projectId': string;
8933
+ /** ID of the pipeline */
8934
+ 'pipelineId': string;
8935
+ /** ID of the template run */
8936
+ 'templateRunId': string;
8937
+ };
8938
+ /** Get information about the given preview template run. */
8939
+ declare class GetPreviewtemplaterunEndpoint extends GetApiEndpoint<GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult> {
8940
+ description: string;
8941
+ withAuth: boolean;
8942
+ requiredPermissions: string;
8943
+ endpointUrl: (opts: GetPreviewtemplaterunRequest) => string;
8944
+ body: () => undefined;
8945
+ }
8946
+
8582
8947
  type GetReleaseflowResult = {
8583
8948
  /** The version of the Northflank API to run the template against. Example: "v1" */
8584
8949
  'apiVersion': 'v1';
@@ -8848,7 +9213,7 @@ type ListSecretsResult = {
8848
9213
  'priority': number;
8849
9214
  /** Restriction settings of the secret */
8850
9215
  'restrictions': {
8851
- /** Is the secret restricted Example: true */
9216
+ /** Whether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it. Example: true */
8852
9217
  'restricted'?: boolean;
8853
9218
  /** List of Northflank services & jobs the secret is restricted to */
8854
9219
  'nfObjects'?: {
@@ -8857,6 +9222,8 @@ type ListSecretsResult = {
8857
9222
  /** Type of the entity the secret is restricted to. Example: "service" */
8858
9223
  'type': 'service' | 'job';
8859
9224
  }[];
9225
+ /** List of tags the secret is restricted to. */
9226
+ 'tags'?: string[];
8860
9227
  };
8861
9228
  }[];
8862
9229
  };
@@ -8898,7 +9265,7 @@ type CreateSecretResult = {
8898
9265
  'priority': number;
8899
9266
  /** Restriction settings of the secret */
8900
9267
  'restrictions'?: {
8901
- /** Is the secret restricted Example: true */
9268
+ /** Whether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it. Example: true */
8902
9269
  'restricted'?: boolean;
8903
9270
  /** List of Northflank services & jobs the secret is restricted to */
8904
9271
  'nfObjects'?: {
@@ -8907,6 +9274,8 @@ type CreateSecretResult = {
8907
9274
  /** Type of the entity the secret is restricted to. Example: "service" */
8908
9275
  'type': 'service' | 'job';
8909
9276
  }[];
9277
+ /** List of tags the secret is restricted to. */
9278
+ 'tags'?: string[];
8910
9279
  };
8911
9280
  /** An array of addons to link to this secret group. */
8912
9281
  'addonDependencies'?: {
@@ -8954,7 +9323,7 @@ type CreateSecretData = {
8954
9323
  'priority': number;
8955
9324
  /** Restriction settings of the secret */
8956
9325
  'restrictions'?: {
8957
- /** Is the secret restricted Example: true */
9326
+ /** Whether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it. Example: true */
8958
9327
  'restricted'?: boolean;
8959
9328
  /** List of Northflank services & jobs the secret is restricted to */
8960
9329
  'nfObjects'?: {
@@ -8963,6 +9332,8 @@ type CreateSecretData = {
8963
9332
  /** Type of the entity the secret is restricted to. Example: "service" */
8964
9333
  'type': 'service' | 'job';
8965
9334
  }[];
9335
+ /** List of tags the secret is restricted to. */
9336
+ 'tags'?: string[];
8966
9337
  };
8967
9338
  /** An array of addons to link to this secret group. */
8968
9339
  'addonDependencies'?: {
@@ -9005,7 +9376,7 @@ type PutSecretResult = {
9005
9376
  'priority': number;
9006
9377
  /** Restriction settings of the secret */
9007
9378
  'restrictions'?: {
9008
- /** Is the secret restricted Example: true */
9379
+ /** Whether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it. Example: true */
9009
9380
  'restricted'?: boolean;
9010
9381
  /** List of Northflank services & jobs the secret is restricted to */
9011
9382
  'nfObjects'?: {
@@ -9014,6 +9385,8 @@ type PutSecretResult = {
9014
9385
  /** Type of the entity the secret is restricted to. Example: "service" */
9015
9386
  'type': 'service' | 'job';
9016
9387
  }[];
9388
+ /** List of tags the secret is restricted to. */
9389
+ 'tags'?: string[];
9017
9390
  };
9018
9391
  /** An array of addons to link to this secret group. */
9019
9392
  'addonDependencies'?: {
@@ -9061,7 +9434,7 @@ type PutSecretData = {
9061
9434
  'priority': number;
9062
9435
  /** Restriction settings of the secret */
9063
9436
  'restrictions'?: {
9064
- /** Is the secret restricted Example: true */
9437
+ /** Whether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it. Example: true */
9065
9438
  'restricted'?: boolean;
9066
9439
  /** List of Northflank services & jobs the secret is restricted to */
9067
9440
  'nfObjects'?: {
@@ -9070,6 +9443,8 @@ type PutSecretData = {
9070
9443
  /** Type of the entity the secret is restricted to. Example: "service" */
9071
9444
  'type': 'service' | 'job';
9072
9445
  }[];
9446
+ /** List of tags the secret is restricted to. */
9447
+ 'tags'?: string[];
9073
9448
  };
9074
9449
  /** An array of addons to link to this secret group. */
9075
9450
  'addonDependencies'?: {
@@ -9112,7 +9487,7 @@ type PatchSecretResult = {
9112
9487
  'priority': number;
9113
9488
  /** Restriction settings of the secret */
9114
9489
  'restrictions'?: {
9115
- /** Is the secret restricted Example: true */
9490
+ /** Whether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it. Example: true */
9116
9491
  'restricted'?: boolean;
9117
9492
  /** List of Northflank services & jobs the secret is restricted to */
9118
9493
  'nfObjects'?: {
@@ -9121,6 +9496,8 @@ type PatchSecretResult = {
9121
9496
  /** Type of the entity the secret is restricted to. Example: "service" */
9122
9497
  'type': 'service' | 'job';
9123
9498
  }[];
9499
+ /** List of tags the secret is restricted to. */
9500
+ 'tags'?: string[];
9124
9501
  };
9125
9502
  /** An array of addons to link to this secret group. */
9126
9503
  'addonDependencies'?: {
@@ -9167,7 +9544,7 @@ type PatchSecretData = {
9167
9544
  /** The priority with which different secrets will be merged. Example: 10 */
9168
9545
  'priority'?: number;
9169
9546
  'restrictions'?: {
9170
- /** Is the secret restricted Example: true */
9547
+ /** Whether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it. Example: true */
9171
9548
  'restricted'?: boolean;
9172
9549
  /** List of Northflank services & jobs the secret is restricted to */
9173
9550
  'nfObjects'?: {
@@ -9176,6 +9553,8 @@ type PatchSecretData = {
9176
9553
  /** Type of the entity the secret is restricted to. Example: "service" */
9177
9554
  'type': 'service' | 'job';
9178
9555
  }[];
9556
+ /** List of tags the secret is restricted to. */
9557
+ 'tags'?: string[];
9179
9558
  };
9180
9559
  /** An array of addons to link to this secret group. */
9181
9560
  'addonDependencies'?: {
@@ -9220,7 +9599,7 @@ type GetSecretResult = {
9220
9599
  'priority': number;
9221
9600
  /** Restriction settings of the secret */
9222
9601
  'restrictions': {
9223
- /** Is the secret restricted Example: true */
9602
+ /** Whether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it. Example: true */
9224
9603
  'restricted'?: boolean;
9225
9604
  /** List of Northflank services & jobs the secret is restricted to */
9226
9605
  'nfObjects'?: {
@@ -9229,6 +9608,8 @@ type GetSecretResult = {
9229
9608
  /** Type of the entity the secret is restricted to. Example: "service" */
9230
9609
  'type': 'service' | 'job';
9231
9610
  }[];
9611
+ /** List of tags the secret is restricted to. */
9612
+ 'tags'?: string[];
9232
9613
  };
9233
9614
  /** The timestamp when the secret group was created at Example: "2021-01-01 12:00:00.000Z" */
9234
9615
  'createdAt': string;
@@ -9297,7 +9678,7 @@ type UpdateSecretData = {
9297
9678
  'priority'?: number;
9298
9679
  /** Restriction settings of the secret */
9299
9680
  'restrictions'?: {
9300
- /** Is the secret restricted Example: true */
9681
+ /** Whether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it. Example: true */
9301
9682
  'restricted'?: boolean;
9302
9683
  /** List of Northflank services & jobs the secret is restricted to */
9303
9684
  'nfObjects'?: {
@@ -9306,6 +9687,8 @@ type UpdateSecretData = {
9306
9687
  /** Type of the entity the secret is restricted to. Example: "service" */
9307
9688
  'type': 'service' | 'job';
9308
9689
  }[];
9690
+ /** List of tags the secret is restricted to. */
9691
+ 'tags'?: string[];
9309
9692
  };
9310
9693
  /** An array of addons to link to this secret group. If provided, this will overwrite any existing linked addons. */
9311
9694
  'addonDependencies'?: {
@@ -9457,7 +9840,7 @@ type GetSecretdetailsResult = {
9457
9840
  'priority': number;
9458
9841
  /** Restriction settings of the secret */
9459
9842
  'restrictions': {
9460
- /** Is the secret restricted Example: true */
9843
+ /** Whether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it. Example: true */
9461
9844
  'restricted'?: boolean;
9462
9845
  /** List of Northflank services & jobs the secret is restricted to */
9463
9846
  'nfObjects'?: {
@@ -9466,6 +9849,8 @@ type GetSecretdetailsResult = {
9466
9849
  /** Type of the entity the secret is restricted to. Example: "service" */
9467
9850
  'type': 'service' | 'job';
9468
9851
  }[];
9852
+ /** List of tags the secret is restricted to. */
9853
+ 'tags'?: string[];
9469
9854
  };
9470
9855
  /** The timestamp when the secret group was created at Example: "2021-01-01 12:00:00.000Z" */
9471
9856
  'createdAt': string;
@@ -12348,6 +12733,123 @@ type PatchServiceDeploymentData = {
12348
12733
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
12349
12734
  'deploymentPlan'?: string;
12350
12735
  };
12736
+ /** Deployment type */
12737
+ 'deployment'?: {
12738
+ /** The number of instances to run the service on. Example: 1 */
12739
+ 'instances': number;
12740
+ /** Allows for customization of buildpack runtime */
12741
+ 'buildpack'?: {
12742
+ /** Type of buildpack run configuration */
12743
+ 'configType': 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
12744
+ /** Custom process which should be run. Required in case where `configType` is `customProcess` */
12745
+ 'customProcess'?: string;
12746
+ /** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
12747
+ 'customEntrypoint'?: string;
12748
+ /** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
12749
+ 'customCommand'?: string;
12750
+ };
12751
+ /** Allows for customization of docker runtime */
12752
+ 'docker'?: {
12753
+ /** Type of entrypoint & command override configuration Example: "default" */
12754
+ 'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
12755
+ /** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
12756
+ 'customEntrypoint'?: string;
12757
+ /** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
12758
+ 'customCommand'?: string;
12759
+ };
12760
+ 'storage'?: {
12761
+ 'ephemeralStorage'?: {
12762
+ /** Ephemeral storage per container in MB Example: 1024 */
12763
+ 'storageSize'?: number;
12764
+ };
12765
+ };
12766
+ 'strategy'?: {
12767
+ /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12768
+ 'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12769
+ };
12770
+ 'internal': {
12771
+ /** ID of the build service to deploy Example: "example-build-service" */
12772
+ 'id'?: string;
12773
+ /** Branch to deploy Example: "master" */
12774
+ 'branch'?: string;
12775
+ /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
12776
+ 'buildSHA'?: string | 'latest';
12777
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
12778
+ 'buildId'?: string;
12779
+ };
12780
+ } | {
12781
+ /** The number of instances to run the service on. Example: 1 */
12782
+ 'instances': number;
12783
+ /** Allows for customization of buildpack runtime */
12784
+ 'buildpack'?: {
12785
+ /** Type of buildpack run configuration */
12786
+ 'configType': 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
12787
+ /** Custom process which should be run. Required in case where `configType` is `customProcess` */
12788
+ 'customProcess'?: string;
12789
+ /** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
12790
+ 'customEntrypoint'?: string;
12791
+ /** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
12792
+ 'customCommand'?: string;
12793
+ };
12794
+ /** Allows for customization of docker runtime */
12795
+ 'docker'?: {
12796
+ /** Type of entrypoint & command override configuration Example: "default" */
12797
+ 'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
12798
+ /** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
12799
+ 'customEntrypoint'?: string;
12800
+ /** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
12801
+ 'customCommand'?: string;
12802
+ };
12803
+ 'storage'?: {
12804
+ 'ephemeralStorage'?: {
12805
+ /** Ephemeral storage per container in MB Example: 1024 */
12806
+ 'storageSize'?: number;
12807
+ };
12808
+ };
12809
+ 'strategy'?: {
12810
+ /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12811
+ 'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12812
+ };
12813
+ 'external': {
12814
+ /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
12815
+ 'imagePath': string;
12816
+ /** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
12817
+ 'credentials'?: string;
12818
+ };
12819
+ } | {
12820
+ /** The number of instances to run the service on. Example: 1 */
12821
+ 'instances': number;
12822
+ /** Allows for customization of buildpack runtime */
12823
+ 'buildpack'?: {
12824
+ /** Type of buildpack run configuration */
12825
+ 'configType': 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
12826
+ /** Custom process which should be run. Required in case where `configType` is `customProcess` */
12827
+ 'customProcess'?: string;
12828
+ /** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
12829
+ 'customEntrypoint'?: string;
12830
+ /** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
12831
+ 'customCommand'?: string;
12832
+ };
12833
+ /** Allows for customization of docker runtime */
12834
+ 'docker'?: {
12835
+ /** Type of entrypoint & command override configuration Example: "default" */
12836
+ 'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
12837
+ /** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
12838
+ 'customEntrypoint'?: string;
12839
+ /** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
12840
+ 'customCommand'?: string;
12841
+ };
12842
+ 'storage'?: {
12843
+ 'ephemeralStorage'?: {
12844
+ /** Ephemeral storage per container in MB Example: 1024 */
12845
+ 'storageSize'?: number;
12846
+ };
12847
+ };
12848
+ 'strategy'?: {
12849
+ /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
12850
+ 'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
12851
+ };
12852
+ };
12351
12853
  'ports'?: {
12352
12854
  /** The name used to identify the port. Example: "port-1" */
12353
12855
  'name': string;
@@ -13154,8 +13656,7 @@ declare class AbortServiceBuildEndpoint extends DeleteApiEndpoint<AbortServiceBu
13154
13656
  }
13155
13657
 
13156
13658
  type GetServiceContainersResult = {
13157
- /** An array of containers. */
13158
- 'containers': {
13659
+ 'containers'?: {
13159
13660
  /** The name of the container. Example: "example-service-78b4d4459d-sbtn8" */
13160
13661
  'name': string;
13161
13662
  /** The timestamp the container was created. Example: 1611241087 */
@@ -15187,6 +15688,8 @@ declare class ApiClient {
15187
15688
  buildMetricsRange: GetJobBuildMetricsRangeCall;
15188
15689
  };
15189
15690
  pipeline: GetPipelineCall;
15691
+ previewTemplate: GetPreviewtemplateCall;
15692
+ previewTemplateRun: GetPreviewtemplaterunCall;
15190
15693
  releaseFlow: GetReleaseflowCall;
15191
15694
  releaseFlowRun: GetReleaseflowrunCall;
15192
15695
  secret: GetSecretCall;
@@ -15234,6 +15737,8 @@ declare class ApiClient {
15234
15737
  addons: ListAddonsCall;
15235
15738
  jobs: ListJobsCall;
15236
15739
  pipelines: ListPipelinesCall;
15740
+ previewTemplatePreviews: ListPreviewtemplatepreviewsCall;
15741
+ previewTemplateRuns: ListPreviewtemplaterunsCall;
15237
15742
  releaseFlowRuns: ListReleaseflowrunsCall;
15238
15743
  secrets: ListSecretsCall;
15239
15744
  services: ListServicesCall;
@@ -15286,6 +15791,7 @@ declare class ApiClient {
15286
15791
  runtimeEnvironment: UpdateJobRuntimeenvironmentCall;
15287
15792
  settings: UpdateJobSettingsCall;
15288
15793
  };
15794
+ previewTemplate: UpdatePreviewtemplateCall;
15289
15795
  releaseFlow: UpdateReleaseflowCall;
15290
15796
  secret: UpdateSecretCall;
15291
15797
  secretLink: UpdateSecretlinkCall;
@@ -15314,6 +15820,7 @@ declare class ApiClient {
15314
15820
  };
15315
15821
  backup: DeleteBackupCall;
15316
15822
  job: DeleteJobCall;
15823
+ previewTemplatePreview: DeletePreviewtemplatepreviewCall;
15317
15824
  secret: DeleteSecretCall;
15318
15825
  secretLink: DeleteSecretlinkCall;
15319
15826
  service: DeleteServiceCall;
@@ -15433,6 +15940,9 @@ declare class ApiClient {
15433
15940
  build: StartServiceBuildCall;
15434
15941
  };
15435
15942
  };
15943
+ reset: {
15944
+ addon: ResetAddonCall;
15945
+ };
15436
15946
  restart: {
15437
15947
  addon: RestartAddonCall;
15438
15948
  service: RestartServiceCall;
@@ -15497,6 +16007,8 @@ declare class ApiClient {
15497
16007
  runtimeEnvironmentDetails: GetJobRuntimeenvironmentdetailsEndpoint;
15498
16008
  };
15499
16009
  pipeline: GetPipelineEndpoint;
16010
+ previewTemplate: GetPreviewtemplateEndpoint;
16011
+ previewTemplateRun: GetPreviewtemplaterunEndpoint;
15500
16012
  releaseFlow: GetReleaseflowEndpoint;
15501
16013
  releaseFlowRun: GetReleaseflowrunEndpoint;
15502
16014
  secret: GetSecretEndpoint;
@@ -15536,6 +16048,8 @@ declare class ApiClient {
15536
16048
  addons: ListAddonsEndpoint;
15537
16049
  jobs: ListJobsEndpoint;
15538
16050
  pipelines: ListPipelinesEndpoint;
16051
+ previewTemplatePreviews: ListPreviewtemplatepreviewsEndpoint;
16052
+ previewTemplateRuns: ListPreviewtemplaterunsEndpoint;
15539
16053
  releaseFlowRuns: ListReleaseflowrunsEndpoint;
15540
16054
  secrets: ListSecretsEndpoint;
15541
16055
  services: ListServicesEndpoint;
@@ -15588,6 +16102,7 @@ declare class ApiClient {
15588
16102
  runtimeEnvironment: UpdateJobRuntimeenvironmentEndpoint;
15589
16103
  settings: UpdateJobSettingsEndpoint;
15590
16104
  };
16105
+ previewTemplate: UpdatePreviewtemplateEndpoint;
15591
16106
  releaseFlow: UpdateReleaseflowEndpoint;
15592
16107
  secret: UpdateSecretEndpoint;
15593
16108
  secretLink: UpdateSecretlinkEndpoint;
@@ -15616,6 +16131,7 @@ declare class ApiClient {
15616
16131
  };
15617
16132
  backup: DeleteBackupEndpoint;
15618
16133
  job: DeleteJobEndpoint;
16134
+ previewTemplatePreview: DeletePreviewtemplatepreviewEndpoint;
15619
16135
  secret: DeleteSecretEndpoint;
15620
16136
  secretLink: DeleteSecretlinkEndpoint;
15621
16137
  service: DeleteServiceEndpoint;
@@ -15735,6 +16251,9 @@ declare class ApiClient {
15735
16251
  build: StartServiceBuildEndpoint;
15736
16252
  };
15737
16253
  };
16254
+ reset: {
16255
+ addon: ResetAddonEndpoint;
16256
+ };
15738
16257
  restart: {
15739
16258
  addon: RestartAddonEndpoint;
15740
16259
  service: RestartServiceEndpoint;
@@ -15766,4 +16285,4 @@ type ApiClientOpts = {
15766
16285
  customUserAgent?: string;
15767
16286
  };
15768
16287
 
15769
- export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistryCall, AddRegistryData, AddRegistryEndpoint, AddRegistryRequest, AddRegistryResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateClusterCall, CreateClusterData, CreateClusterEndpoint, CreateClusterRequest, CreateClusterResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateIntegrationCall, CreateIntegrationData, CreateIntegrationEndpoint, CreateIntegrationRequest, CreateIntegrationResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, 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, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteClusterCall, DeleteClusterEndpoint, DeleteClusterParameters, DeleteClusterRequest, DeleteClusterResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteIntegrationCall, DeleteIntegrationEndpoint, DeleteIntegrationParameters, DeleteIntegrationRequest, DeleteIntegrationResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistryCall, DeleteRegistryEndpoint, DeleteRegistryParameters, DeleteRegistryRequest, DeleteRegistryResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetClusterCall, GetClusterEndpoint, GetClusterParameters, GetClusterRequest, GetClusterResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetIntegrationCall, GetIntegrationEndpoint, GetIntegrationParameters, GetIntegrationRequest, GetIntegrationResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistryCall, GetRegistryEndpoint, GetRegistryParameters, GetRegistryRequest, GetRegistryResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListClustersCall, ListClustersEndpoint, ListClustersOptions, ListClustersRequest, ListClustersResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListIntegrationsCall, ListIntegrationsEndpoint, ListIntegrationsOptions, ListIntegrationsRequest, ListIntegrationsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListProvidersCall, ListProvidersEndpoint, ListProvidersRequest, ListProvidersResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistriesCall, ListRegistriesEndpoint, ListRegistriesOptions, ListRegistriesRequest, ListRegistriesResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateClusterCall, UpdateClusterData, UpdateClusterEndpoint, UpdateClusterParameters, UpdateClusterRequest, UpdateClusterResult, UpdateIntegrationCall, UpdateIntegrationData, UpdateIntegrationEndpoint, UpdateIntegrationParameters, UpdateIntegrationRequest, UpdateIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateRegistryCall, UpdateRegistryData, UpdateRegistryEndpoint, UpdateRegistryParameters, UpdateRegistryRequest, UpdateRegistryResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, 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, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
16288
+ export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistryCall, AddRegistryData, AddRegistryEndpoint, AddRegistryRequest, AddRegistryResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateClusterCall, CreateClusterData, CreateClusterEndpoint, CreateClusterRequest, CreateClusterResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateIntegrationCall, CreateIntegrationData, CreateIntegrationEndpoint, CreateIntegrationRequest, CreateIntegrationResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, 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, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteClusterCall, DeleteClusterEndpoint, DeleteClusterParameters, DeleteClusterRequest, DeleteClusterResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteIntegrationCall, DeleteIntegrationEndpoint, DeleteIntegrationParameters, DeleteIntegrationRequest, DeleteIntegrationResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistryCall, DeleteRegistryEndpoint, DeleteRegistryParameters, DeleteRegistryRequest, DeleteRegistryResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetClusterCall, GetClusterEndpoint, GetClusterParameters, GetClusterRequest, GetClusterResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetIntegrationCall, GetIntegrationEndpoint, GetIntegrationParameters, GetIntegrationRequest, GetIntegrationResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistryCall, GetRegistryEndpoint, GetRegistryParameters, GetRegistryRequest, GetRegistryResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListClustersCall, ListClustersEndpoint, ListClustersOptions, ListClustersRequest, ListClustersResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListIntegrationsCall, ListIntegrationsEndpoint, ListIntegrationsOptions, ListIntegrationsRequest, ListIntegrationsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListProvidersCall, ListProvidersEndpoint, ListProvidersRequest, ListProvidersResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistriesCall, ListRegistriesEndpoint, ListRegistriesOptions, ListRegistriesRequest, ListRegistriesResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateClusterCall, UpdateClusterData, UpdateClusterEndpoint, UpdateClusterParameters, UpdateClusterRequest, UpdateClusterResult, UpdateIntegrationCall, UpdateIntegrationData, UpdateIntegrationEndpoint, UpdateIntegrationParameters, UpdateIntegrationRequest, UpdateIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistryCall, UpdateRegistryData, UpdateRegistryEndpoint, UpdateRegistryParameters, UpdateRegistryRequest, UpdateRegistryResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, 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, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };