@northflank/js-client 0.7.9 → 0.7.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-client.d.ts +540 -22
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +540 -22
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -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
|
|
3113
|
-
'id':
|
|
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;
|
|
@@ -4637,6 +4633,25 @@ declare class GetAddonPitrwindowEndpoint extends GetApiEndpoint<GetAddonPitrwind
|
|
|
4637
4633
|
body: () => undefined;
|
|
4638
4634
|
}
|
|
4639
4635
|
|
|
4636
|
+
type ResetAddonResult = any;
|
|
4637
|
+
type ResetAddonCall = (opts: ResetAddonRequest) => Promise<ApiCallResponse<ResetAddonResult>>;
|
|
4638
|
+
type ResetAddonRequest = {
|
|
4639
|
+
parameters: ResetAddonParameters;
|
|
4640
|
+
};
|
|
4641
|
+
type ResetAddonParameters = {
|
|
4642
|
+
/** ID of the project */ 'projectId': string;
|
|
4643
|
+
/** ID of the addon */
|
|
4644
|
+
'addonId': string;
|
|
4645
|
+
};
|
|
4646
|
+
/** Reset the given addon. */
|
|
4647
|
+
declare class ResetAddonEndpoint extends PostApiEndpoint<ResetAddonRequest, ResetAddonResult> {
|
|
4648
|
+
description: string;
|
|
4649
|
+
withAuth: boolean;
|
|
4650
|
+
requiredPermissions: string;
|
|
4651
|
+
endpointUrl: (opts: ResetAddonRequest) => string;
|
|
4652
|
+
body: () => undefined;
|
|
4653
|
+
}
|
|
4654
|
+
|
|
4640
4655
|
type RestartAddonResult = any;
|
|
4641
4656
|
type RestartAddonCall = (opts: RestartAddonRequest) => Promise<ApiCallResponse<RestartAddonResult>>;
|
|
4642
4657
|
type RestartAddonRequest = {
|
|
@@ -8579,6 +8594,354 @@ declare class GetPipelineEndpoint extends GetApiEndpoint<GetPipelineRequest, Get
|
|
|
8579
8594
|
body: () => undefined;
|
|
8580
8595
|
}
|
|
8581
8596
|
|
|
8597
|
+
type GetPreviewtemplateResult = {
|
|
8598
|
+
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
8599
|
+
'apiVersion': 'v1';
|
|
8600
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
8601
|
+
'arguments'?: any;
|
|
8602
|
+
'triggers'?: {
|
|
8603
|
+
/** A reference that can be used to access the output of this trigger in the template. */
|
|
8604
|
+
'ref'?: string;
|
|
8605
|
+
/** The VCS provider to use. Example: "github" */
|
|
8606
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
8607
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
8608
|
+
'selfHostedVcsId'?: string;
|
|
8609
|
+
/** 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" */
|
|
8610
|
+
'accountLogin'?: string;
|
|
8611
|
+
/** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
8612
|
+
'repoUrl': string;
|
|
8613
|
+
'branchRestrictions'?: string[];
|
|
8614
|
+
'prRestrictions'?: string[];
|
|
8615
|
+
'pathIgnoreRules'?: string[];
|
|
8616
|
+
'ciIgnoreFlags'?: string[];
|
|
8617
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
8618
|
+
'isAllowList'?: boolean;
|
|
8619
|
+
/** Type of trigger */
|
|
8620
|
+
'type'?: 'git';
|
|
8621
|
+
/** Should the git trigger only be triggered manually? */
|
|
8622
|
+
'manualOnly'?: boolean;
|
|
8623
|
+
}[];
|
|
8624
|
+
'spec': any;
|
|
8625
|
+
/** Identifier for the template Example: "example-template" */
|
|
8626
|
+
'id': string;
|
|
8627
|
+
'options': any;
|
|
8628
|
+
/** time of creation */
|
|
8629
|
+
'createdAt'?: string;
|
|
8630
|
+
/** time of update */
|
|
8631
|
+
'updatedAt'?: string;
|
|
8632
|
+
};
|
|
8633
|
+
type GetPreviewtemplateCall = (opts: GetPreviewtemplateRequest) => Promise<ApiCallResponse<GetPreviewtemplateResult>>;
|
|
8634
|
+
type GetPreviewtemplateRequest = {
|
|
8635
|
+
parameters: GetPreviewtemplateParameters;
|
|
8636
|
+
options?: GetPreviewtemplateOptions;
|
|
8637
|
+
};
|
|
8638
|
+
type GetPreviewtemplateParameters = {
|
|
8639
|
+
/** ID of the project */ 'projectId': string;
|
|
8640
|
+
/** ID of the pipeline */
|
|
8641
|
+
'pipelineId': string;
|
|
8642
|
+
};
|
|
8643
|
+
type GetPreviewtemplateOptions = {
|
|
8644
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
8645
|
+
'per_page'?: number;
|
|
8646
|
+
/** The page number to access. */
|
|
8647
|
+
'page'?: number;
|
|
8648
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
8649
|
+
'cursor'?: string;
|
|
8650
|
+
};
|
|
8651
|
+
/** Get information about the given preview template. */
|
|
8652
|
+
declare class GetPreviewtemplateEndpoint extends GetApiEndpoint<GetPreviewtemplateRequest, GetPreviewtemplateResult> {
|
|
8653
|
+
description: string;
|
|
8654
|
+
withAuth: boolean;
|
|
8655
|
+
requiredPermissions: string;
|
|
8656
|
+
endpointUrl: (opts: GetPreviewtemplateRequest) => string;
|
|
8657
|
+
body: () => undefined;
|
|
8658
|
+
}
|
|
8659
|
+
|
|
8660
|
+
type UpdatePreviewtemplateResult = {
|
|
8661
|
+
/** Name of the template. Example: "Example Template" */
|
|
8662
|
+
'name': string;
|
|
8663
|
+
/** Description of the template. Example: "This is a sample template." */
|
|
8664
|
+
'description'?: string;
|
|
8665
|
+
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
8666
|
+
'apiVersion': 'v1';
|
|
8667
|
+
/** Details of the project the template will run in. */
|
|
8668
|
+
'project': {
|
|
8669
|
+
/** The ID of the project to use. */
|
|
8670
|
+
'id': string;
|
|
8671
|
+
} | {
|
|
8672
|
+
'spec': {
|
|
8673
|
+
/** The name of the project. Example: "New Project" */
|
|
8674
|
+
'name': string;
|
|
8675
|
+
/** The description of the project. Example: "This is a new project." */
|
|
8676
|
+
'description'?: string;
|
|
8677
|
+
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
8678
|
+
'color'?: string;
|
|
8679
|
+
/** The region the project will be hosted in. Example: "europe-west" */
|
|
8680
|
+
'region'?: string;
|
|
8681
|
+
} | {
|
|
8682
|
+
/** The name of the project. Example: "New Project" */
|
|
8683
|
+
'name': string;
|
|
8684
|
+
/** The description of the project. Example: "This is a new project." */
|
|
8685
|
+
'description'?: string;
|
|
8686
|
+
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
8687
|
+
'color'?: string;
|
|
8688
|
+
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
8689
|
+
'clusterId'?: string;
|
|
8690
|
+
};
|
|
8691
|
+
};
|
|
8692
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
8693
|
+
'arguments'?: any;
|
|
8694
|
+
'spec': any;
|
|
8695
|
+
/** Identifier for the template Example: "example-template" */
|
|
8696
|
+
'id': string;
|
|
8697
|
+
'gitops'?: {
|
|
8698
|
+
/** The VCS provider to use. Example: "github" */
|
|
8699
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
8700
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
8701
|
+
'selfHostedVcsId'?: string;
|
|
8702
|
+
/** 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" */
|
|
8703
|
+
'accountLogin'?: string;
|
|
8704
|
+
/** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
8705
|
+
'repoUrl': string;
|
|
8706
|
+
/** The name of the branch to use. Example: "main" */
|
|
8707
|
+
'branch': string;
|
|
8708
|
+
/** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
|
|
8709
|
+
'filePath': string;
|
|
8710
|
+
/** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
|
|
8711
|
+
'templateSha': string;
|
|
8712
|
+
};
|
|
8713
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
8714
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
8715
|
+
'options': {
|
|
8716
|
+
/** Whether autorun is enabled */
|
|
8717
|
+
'autorun': boolean;
|
|
8718
|
+
};
|
|
8719
|
+
/** time of creation */
|
|
8720
|
+
'createdAt'?: string;
|
|
8721
|
+
/** time of update */
|
|
8722
|
+
'updatedAt'?: string;
|
|
8723
|
+
};
|
|
8724
|
+
type UpdatePreviewtemplateCall = (opts: UpdatePreviewtemplateRequest) => Promise<ApiCallResponse<UpdatePreviewtemplateResult>>;
|
|
8725
|
+
type UpdatePreviewtemplateRequest = {
|
|
8726
|
+
parameters: UpdatePreviewtemplateParameters;
|
|
8727
|
+
data: UpdatePreviewtemplateData;
|
|
8728
|
+
};
|
|
8729
|
+
type UpdatePreviewtemplateParameters = {
|
|
8730
|
+
/** ID of the project */ 'projectId': string;
|
|
8731
|
+
/** ID of the pipeline */
|
|
8732
|
+
'pipelineId': string;
|
|
8733
|
+
};
|
|
8734
|
+
type UpdatePreviewtemplateData = {
|
|
8735
|
+
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
8736
|
+
'apiVersion': 'v1';
|
|
8737
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
8738
|
+
'arguments'?: any;
|
|
8739
|
+
'spec': any;
|
|
8740
|
+
'triggers': {
|
|
8741
|
+
/** A reference that can be used to access the output of this trigger in the template. */
|
|
8742
|
+
'ref'?: string;
|
|
8743
|
+
/** The VCS provider to use. Example: "github" */
|
|
8744
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
8745
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
8746
|
+
'selfHostedVcsId'?: string;
|
|
8747
|
+
/** 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" */
|
|
8748
|
+
'accountLogin'?: string;
|
|
8749
|
+
/** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
8750
|
+
'repoUrl': string;
|
|
8751
|
+
'branchRestrictions'?: string[];
|
|
8752
|
+
'prRestrictions'?: string[];
|
|
8753
|
+
'pathIgnoreRules'?: string[];
|
|
8754
|
+
'ciIgnoreFlags'?: string[];
|
|
8755
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
8756
|
+
'isAllowList'?: boolean;
|
|
8757
|
+
/** Type of trigger */
|
|
8758
|
+
'type'?: 'git';
|
|
8759
|
+
/** Should the git trigger only be triggered manually? */
|
|
8760
|
+
'manualOnly'?: boolean;
|
|
8761
|
+
}[];
|
|
8762
|
+
'webhook'?: {
|
|
8763
|
+
/** Whether this template can be ran using a webhook endpoint trigger. Example: true */
|
|
8764
|
+
'enabled'?: boolean;
|
|
8765
|
+
/** If true, the webhook endpoint will be regenerated if one already exists. */
|
|
8766
|
+
'regenerate'?: boolean;
|
|
8767
|
+
};
|
|
8768
|
+
};
|
|
8769
|
+
/** Update a given preview template. */
|
|
8770
|
+
declare class UpdatePreviewtemplateEndpoint extends PostApiEndpoint<UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult> {
|
|
8771
|
+
description: string;
|
|
8772
|
+
withAuth: boolean;
|
|
8773
|
+
requiredPermissions: string;
|
|
8774
|
+
endpointUrl: (opts: UpdatePreviewtemplateRequest) => string;
|
|
8775
|
+
body: (payload: UpdatePreviewtemplateRequest) => string;
|
|
8776
|
+
}
|
|
8777
|
+
|
|
8778
|
+
type ListPreviewtemplatepreviewsResult = {
|
|
8779
|
+
/** A list of currently available preview environments for the template. */
|
|
8780
|
+
'previewEnvironments': {
|
|
8781
|
+
/** Identifier for the preview template environment Example: "clean-step" */
|
|
8782
|
+
'id': string;
|
|
8783
|
+
/** Data about the version control action that triggered environment creation */
|
|
8784
|
+
'vcsData': {
|
|
8785
|
+
'repoUrl': string;
|
|
8786
|
+
};
|
|
8787
|
+
/** time of creation */
|
|
8788
|
+
'createdAt'?: string;
|
|
8789
|
+
/** time of update */
|
|
8790
|
+
'updatedAt'?: string;
|
|
8791
|
+
}[];
|
|
8792
|
+
};
|
|
8793
|
+
type ListPreviewtemplatepreviewsCall = (opts: ListPreviewtemplatepreviewsRequest) => Promise<ApiCallResponse<ListPreviewtemplatepreviewsResult>>;
|
|
8794
|
+
type ListPreviewtemplatepreviewsRequest = {
|
|
8795
|
+
parameters: ListPreviewtemplatepreviewsParameters;
|
|
8796
|
+
options?: ListPreviewtemplatepreviewsOptions;
|
|
8797
|
+
};
|
|
8798
|
+
type ListPreviewtemplatepreviewsParameters = {
|
|
8799
|
+
/** ID of the project */ 'projectId': string;
|
|
8800
|
+
/** ID of the pipeline */
|
|
8801
|
+
'pipelineId': string;
|
|
8802
|
+
};
|
|
8803
|
+
type ListPreviewtemplatepreviewsOptions = {
|
|
8804
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
8805
|
+
'per_page'?: number;
|
|
8806
|
+
/** The page number to access. */
|
|
8807
|
+
'page'?: number;
|
|
8808
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
8809
|
+
'cursor'?: string;
|
|
8810
|
+
};
|
|
8811
|
+
/** Get a list of active preview environments for a template */
|
|
8812
|
+
declare class ListPreviewtemplatepreviewsEndpoint extends GetApiEndpoint<ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult> {
|
|
8813
|
+
description: string;
|
|
8814
|
+
withAuth: boolean;
|
|
8815
|
+
requiredPermissions: string;
|
|
8816
|
+
endpointUrl: (opts: ListPreviewtemplatepreviewsRequest) => string;
|
|
8817
|
+
body: () => undefined;
|
|
8818
|
+
}
|
|
8819
|
+
|
|
8820
|
+
type DeletePreviewtemplatepreviewResult = any;
|
|
8821
|
+
type DeletePreviewtemplatepreviewCall = (opts: DeletePreviewtemplatepreviewRequest) => Promise<ApiCallResponse<DeletePreviewtemplatepreviewResult>>;
|
|
8822
|
+
type DeletePreviewtemplatepreviewRequest = {
|
|
8823
|
+
parameters: DeletePreviewtemplatepreviewParameters;
|
|
8824
|
+
};
|
|
8825
|
+
type DeletePreviewtemplatepreviewParameters = {
|
|
8826
|
+
/** ID of the project */ 'projectId': string;
|
|
8827
|
+
/** ID of the pipeline */
|
|
8828
|
+
'pipelineId': string;
|
|
8829
|
+
/** ID of the preview environment */
|
|
8830
|
+
'previewId': string;
|
|
8831
|
+
};
|
|
8832
|
+
/** Delete a preview environment generated by a preview template. */
|
|
8833
|
+
declare class DeletePreviewtemplatepreviewEndpoint extends DeleteApiEndpoint<DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult> {
|
|
8834
|
+
description: string;
|
|
8835
|
+
withAuth: boolean;
|
|
8836
|
+
requiredPermissions: string;
|
|
8837
|
+
endpointUrl: (opts: DeletePreviewtemplatepreviewRequest) => string;
|
|
8838
|
+
body: () => undefined;
|
|
8839
|
+
}
|
|
8840
|
+
|
|
8841
|
+
type ListPreviewtemplaterunsResult = {
|
|
8842
|
+
/** An array of template run objects. */
|
|
8843
|
+
'previewTemplateRuns': {
|
|
8844
|
+
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
8845
|
+
'apiVersion': 'v1';
|
|
8846
|
+
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
8847
|
+
'id': string;
|
|
8848
|
+
/** Identifier for the template Example: "example-template" */
|
|
8849
|
+
'templateId': string;
|
|
8850
|
+
/** Status of the template run Example: "pending" */
|
|
8851
|
+
'status': 'pending' | 'running' | 'success' | 'failure';
|
|
8852
|
+
/** time of creation */
|
|
8853
|
+
'createdAt'?: string;
|
|
8854
|
+
/** time of update */
|
|
8855
|
+
'updatedAt'?: string;
|
|
8856
|
+
}[];
|
|
8857
|
+
};
|
|
8858
|
+
type ListPreviewtemplaterunsCall = (opts: ListPreviewtemplaterunsRequest) => Promise<ApiCallResponse<ListPreviewtemplaterunsResult>>;
|
|
8859
|
+
type ListPreviewtemplaterunsRequest = {
|
|
8860
|
+
parameters: ListPreviewtemplaterunsParameters;
|
|
8861
|
+
options?: ListPreviewtemplaterunsOptions;
|
|
8862
|
+
};
|
|
8863
|
+
type ListPreviewtemplaterunsParameters = {
|
|
8864
|
+
/** ID of the project */ 'projectId': string;
|
|
8865
|
+
/** ID of the pipeline */
|
|
8866
|
+
'pipelineId': string;
|
|
8867
|
+
};
|
|
8868
|
+
type ListPreviewtemplaterunsOptions = {
|
|
8869
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
8870
|
+
'per_page'?: number;
|
|
8871
|
+
/** The page number to access. */
|
|
8872
|
+
'page'?: number;
|
|
8873
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
8874
|
+
'cursor'?: string;
|
|
8875
|
+
};
|
|
8876
|
+
/** Get a list of preview template runs */
|
|
8877
|
+
declare class ListPreviewtemplaterunsEndpoint extends GetApiEndpoint<ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult> {
|
|
8878
|
+
description: string;
|
|
8879
|
+
withAuth: boolean;
|
|
8880
|
+
requiredPermissions: string;
|
|
8881
|
+
endpointUrl: (opts: ListPreviewtemplaterunsRequest) => string;
|
|
8882
|
+
body: () => undefined;
|
|
8883
|
+
}
|
|
8884
|
+
|
|
8885
|
+
type GetPreviewtemplaterunResult = {
|
|
8886
|
+
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
8887
|
+
'apiVersion': 'v1';
|
|
8888
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
8889
|
+
'arguments'?: any;
|
|
8890
|
+
'triggers'?: {
|
|
8891
|
+
/** A reference that can be used to access the output of this trigger in the template. */
|
|
8892
|
+
'ref'?: string;
|
|
8893
|
+
/** The VCS provider to use. Example: "github" */
|
|
8894
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
8895
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
8896
|
+
'selfHostedVcsId'?: string;
|
|
8897
|
+
/** 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" */
|
|
8898
|
+
'accountLogin'?: string;
|
|
8899
|
+
/** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
8900
|
+
'repoUrl': string;
|
|
8901
|
+
'branchRestrictions'?: string[];
|
|
8902
|
+
'prRestrictions'?: string[];
|
|
8903
|
+
'pathIgnoreRules'?: string[];
|
|
8904
|
+
'ciIgnoreFlags'?: string[];
|
|
8905
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
8906
|
+
'isAllowList'?: boolean;
|
|
8907
|
+
/** Type of trigger */
|
|
8908
|
+
'type'?: 'git';
|
|
8909
|
+
/** Should the git trigger only be triggered manually? */
|
|
8910
|
+
'manualOnly'?: boolean;
|
|
8911
|
+
}[];
|
|
8912
|
+
'spec': any;
|
|
8913
|
+
'refs'?: any;
|
|
8914
|
+
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
8915
|
+
'id': string;
|
|
8916
|
+
/** Identifier for the template Example: "example-template" */
|
|
8917
|
+
'templateId': string;
|
|
8918
|
+
/** Status of the template run Example: "pending" */
|
|
8919
|
+
'status': 'pending' | 'running' | 'success' | 'failure';
|
|
8920
|
+
/** time of creation */
|
|
8921
|
+
'createdAt'?: string;
|
|
8922
|
+
/** time of update */
|
|
8923
|
+
'updatedAt'?: string;
|
|
8924
|
+
};
|
|
8925
|
+
type GetPreviewtemplaterunCall = (opts: GetPreviewtemplaterunRequest) => Promise<ApiCallResponse<GetPreviewtemplaterunResult>>;
|
|
8926
|
+
type GetPreviewtemplaterunRequest = {
|
|
8927
|
+
parameters: GetPreviewtemplaterunParameters;
|
|
8928
|
+
};
|
|
8929
|
+
type GetPreviewtemplaterunParameters = {
|
|
8930
|
+
/** ID of the project */ 'projectId': string;
|
|
8931
|
+
/** ID of the pipeline */
|
|
8932
|
+
'pipelineId': string;
|
|
8933
|
+
/** ID of the template run */
|
|
8934
|
+
'templateRunId': string;
|
|
8935
|
+
};
|
|
8936
|
+
/** Get information about the given preview template run. */
|
|
8937
|
+
declare class GetPreviewtemplaterunEndpoint extends GetApiEndpoint<GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult> {
|
|
8938
|
+
description: string;
|
|
8939
|
+
withAuth: boolean;
|
|
8940
|
+
requiredPermissions: string;
|
|
8941
|
+
endpointUrl: (opts: GetPreviewtemplaterunRequest) => string;
|
|
8942
|
+
body: () => undefined;
|
|
8943
|
+
}
|
|
8944
|
+
|
|
8582
8945
|
type GetReleaseflowResult = {
|
|
8583
8946
|
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
8584
8947
|
'apiVersion': 'v1';
|
|
@@ -8848,7 +9211,7 @@ type ListSecretsResult = {
|
|
|
8848
9211
|
'priority': number;
|
|
8849
9212
|
/** Restriction settings of the secret */
|
|
8850
9213
|
'restrictions': {
|
|
8851
|
-
/**
|
|
9214
|
+
/** 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
9215
|
'restricted'?: boolean;
|
|
8853
9216
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
8854
9217
|
'nfObjects'?: {
|
|
@@ -8857,6 +9220,8 @@ type ListSecretsResult = {
|
|
|
8857
9220
|
/** Type of the entity the secret is restricted to. Example: "service" */
|
|
8858
9221
|
'type': 'service' | 'job';
|
|
8859
9222
|
}[];
|
|
9223
|
+
/** List of tags the secret is restricted to. */
|
|
9224
|
+
'tags'?: string[];
|
|
8860
9225
|
};
|
|
8861
9226
|
}[];
|
|
8862
9227
|
};
|
|
@@ -8898,7 +9263,7 @@ type CreateSecretResult = {
|
|
|
8898
9263
|
'priority': number;
|
|
8899
9264
|
/** Restriction settings of the secret */
|
|
8900
9265
|
'restrictions'?: {
|
|
8901
|
-
/**
|
|
9266
|
+
/** 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
9267
|
'restricted'?: boolean;
|
|
8903
9268
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
8904
9269
|
'nfObjects'?: {
|
|
@@ -8907,6 +9272,8 @@ type CreateSecretResult = {
|
|
|
8907
9272
|
/** Type of the entity the secret is restricted to. Example: "service" */
|
|
8908
9273
|
'type': 'service' | 'job';
|
|
8909
9274
|
}[];
|
|
9275
|
+
/** List of tags the secret is restricted to. */
|
|
9276
|
+
'tags'?: string[];
|
|
8910
9277
|
};
|
|
8911
9278
|
/** An array of addons to link to this secret group. */
|
|
8912
9279
|
'addonDependencies'?: {
|
|
@@ -8954,7 +9321,7 @@ type CreateSecretData = {
|
|
|
8954
9321
|
'priority': number;
|
|
8955
9322
|
/** Restriction settings of the secret */
|
|
8956
9323
|
'restrictions'?: {
|
|
8957
|
-
/**
|
|
9324
|
+
/** 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
9325
|
'restricted'?: boolean;
|
|
8959
9326
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
8960
9327
|
'nfObjects'?: {
|
|
@@ -8963,6 +9330,8 @@ type CreateSecretData = {
|
|
|
8963
9330
|
/** Type of the entity the secret is restricted to. Example: "service" */
|
|
8964
9331
|
'type': 'service' | 'job';
|
|
8965
9332
|
}[];
|
|
9333
|
+
/** List of tags the secret is restricted to. */
|
|
9334
|
+
'tags'?: string[];
|
|
8966
9335
|
};
|
|
8967
9336
|
/** An array of addons to link to this secret group. */
|
|
8968
9337
|
'addonDependencies'?: {
|
|
@@ -9005,7 +9374,7 @@ type PutSecretResult = {
|
|
|
9005
9374
|
'priority': number;
|
|
9006
9375
|
/** Restriction settings of the secret */
|
|
9007
9376
|
'restrictions'?: {
|
|
9008
|
-
/**
|
|
9377
|
+
/** 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
9378
|
'restricted'?: boolean;
|
|
9010
9379
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
9011
9380
|
'nfObjects'?: {
|
|
@@ -9014,6 +9383,8 @@ type PutSecretResult = {
|
|
|
9014
9383
|
/** Type of the entity the secret is restricted to. Example: "service" */
|
|
9015
9384
|
'type': 'service' | 'job';
|
|
9016
9385
|
}[];
|
|
9386
|
+
/** List of tags the secret is restricted to. */
|
|
9387
|
+
'tags'?: string[];
|
|
9017
9388
|
};
|
|
9018
9389
|
/** An array of addons to link to this secret group. */
|
|
9019
9390
|
'addonDependencies'?: {
|
|
@@ -9061,7 +9432,7 @@ type PutSecretData = {
|
|
|
9061
9432
|
'priority': number;
|
|
9062
9433
|
/** Restriction settings of the secret */
|
|
9063
9434
|
'restrictions'?: {
|
|
9064
|
-
/**
|
|
9435
|
+
/** 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
9436
|
'restricted'?: boolean;
|
|
9066
9437
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
9067
9438
|
'nfObjects'?: {
|
|
@@ -9070,6 +9441,8 @@ type PutSecretData = {
|
|
|
9070
9441
|
/** Type of the entity the secret is restricted to. Example: "service" */
|
|
9071
9442
|
'type': 'service' | 'job';
|
|
9072
9443
|
}[];
|
|
9444
|
+
/** List of tags the secret is restricted to. */
|
|
9445
|
+
'tags'?: string[];
|
|
9073
9446
|
};
|
|
9074
9447
|
/** An array of addons to link to this secret group. */
|
|
9075
9448
|
'addonDependencies'?: {
|
|
@@ -9112,7 +9485,7 @@ type PatchSecretResult = {
|
|
|
9112
9485
|
'priority': number;
|
|
9113
9486
|
/** Restriction settings of the secret */
|
|
9114
9487
|
'restrictions'?: {
|
|
9115
|
-
/**
|
|
9488
|
+
/** 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
9489
|
'restricted'?: boolean;
|
|
9117
9490
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
9118
9491
|
'nfObjects'?: {
|
|
@@ -9121,6 +9494,8 @@ type PatchSecretResult = {
|
|
|
9121
9494
|
/** Type of the entity the secret is restricted to. Example: "service" */
|
|
9122
9495
|
'type': 'service' | 'job';
|
|
9123
9496
|
}[];
|
|
9497
|
+
/** List of tags the secret is restricted to. */
|
|
9498
|
+
'tags'?: string[];
|
|
9124
9499
|
};
|
|
9125
9500
|
/** An array of addons to link to this secret group. */
|
|
9126
9501
|
'addonDependencies'?: {
|
|
@@ -9167,7 +9542,7 @@ type PatchSecretData = {
|
|
|
9167
9542
|
/** The priority with which different secrets will be merged. Example: 10 */
|
|
9168
9543
|
'priority'?: number;
|
|
9169
9544
|
'restrictions'?: {
|
|
9170
|
-
/**
|
|
9545
|
+
/** 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
9546
|
'restricted'?: boolean;
|
|
9172
9547
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
9173
9548
|
'nfObjects'?: {
|
|
@@ -9176,6 +9551,8 @@ type PatchSecretData = {
|
|
|
9176
9551
|
/** Type of the entity the secret is restricted to. Example: "service" */
|
|
9177
9552
|
'type': 'service' | 'job';
|
|
9178
9553
|
}[];
|
|
9554
|
+
/** List of tags the secret is restricted to. */
|
|
9555
|
+
'tags'?: string[];
|
|
9179
9556
|
};
|
|
9180
9557
|
/** An array of addons to link to this secret group. */
|
|
9181
9558
|
'addonDependencies'?: {
|
|
@@ -9220,7 +9597,7 @@ type GetSecretResult = {
|
|
|
9220
9597
|
'priority': number;
|
|
9221
9598
|
/** Restriction settings of the secret */
|
|
9222
9599
|
'restrictions': {
|
|
9223
|
-
/**
|
|
9600
|
+
/** 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
9601
|
'restricted'?: boolean;
|
|
9225
9602
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
9226
9603
|
'nfObjects'?: {
|
|
@@ -9229,6 +9606,8 @@ type GetSecretResult = {
|
|
|
9229
9606
|
/** Type of the entity the secret is restricted to. Example: "service" */
|
|
9230
9607
|
'type': 'service' | 'job';
|
|
9231
9608
|
}[];
|
|
9609
|
+
/** List of tags the secret is restricted to. */
|
|
9610
|
+
'tags'?: string[];
|
|
9232
9611
|
};
|
|
9233
9612
|
/** The timestamp when the secret group was created at Example: "2021-01-01 12:00:00.000Z" */
|
|
9234
9613
|
'createdAt': string;
|
|
@@ -9297,7 +9676,7 @@ type UpdateSecretData = {
|
|
|
9297
9676
|
'priority'?: number;
|
|
9298
9677
|
/** Restriction settings of the secret */
|
|
9299
9678
|
'restrictions'?: {
|
|
9300
|
-
/**
|
|
9679
|
+
/** 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
9680
|
'restricted'?: boolean;
|
|
9302
9681
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
9303
9682
|
'nfObjects'?: {
|
|
@@ -9306,6 +9685,8 @@ type UpdateSecretData = {
|
|
|
9306
9685
|
/** Type of the entity the secret is restricted to. Example: "service" */
|
|
9307
9686
|
'type': 'service' | 'job';
|
|
9308
9687
|
}[];
|
|
9688
|
+
/** List of tags the secret is restricted to. */
|
|
9689
|
+
'tags'?: string[];
|
|
9309
9690
|
};
|
|
9310
9691
|
/** An array of addons to link to this secret group. If provided, this will overwrite any existing linked addons. */
|
|
9311
9692
|
'addonDependencies'?: {
|
|
@@ -9457,7 +9838,7 @@ type GetSecretdetailsResult = {
|
|
|
9457
9838
|
'priority': number;
|
|
9458
9839
|
/** Restriction settings of the secret */
|
|
9459
9840
|
'restrictions': {
|
|
9460
|
-
/**
|
|
9841
|
+
/** 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
9842
|
'restricted'?: boolean;
|
|
9462
9843
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
9463
9844
|
'nfObjects'?: {
|
|
@@ -9466,6 +9847,8 @@ type GetSecretdetailsResult = {
|
|
|
9466
9847
|
/** Type of the entity the secret is restricted to. Example: "service" */
|
|
9467
9848
|
'type': 'service' | 'job';
|
|
9468
9849
|
}[];
|
|
9850
|
+
/** List of tags the secret is restricted to. */
|
|
9851
|
+
'tags'?: string[];
|
|
9469
9852
|
};
|
|
9470
9853
|
/** The timestamp when the secret group was created at Example: "2021-01-01 12:00:00.000Z" */
|
|
9471
9854
|
'createdAt': string;
|
|
@@ -12348,6 +12731,123 @@ type PatchServiceDeploymentData = {
|
|
|
12348
12731
|
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
12349
12732
|
'deploymentPlan'?: string;
|
|
12350
12733
|
};
|
|
12734
|
+
/** Deployment type */
|
|
12735
|
+
'deployment'?: {
|
|
12736
|
+
/** The number of instances to run the service on. Example: 1 */
|
|
12737
|
+
'instances': number;
|
|
12738
|
+
/** Allows for customization of buildpack runtime */
|
|
12739
|
+
'buildpack'?: {
|
|
12740
|
+
/** Type of buildpack run configuration */
|
|
12741
|
+
'configType': 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
|
|
12742
|
+
/** Custom process which should be run. Required in case where `configType` is `customProcess` */
|
|
12743
|
+
'customProcess'?: string;
|
|
12744
|
+
/** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
|
|
12745
|
+
'customEntrypoint'?: string;
|
|
12746
|
+
/** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
|
|
12747
|
+
'customCommand'?: string;
|
|
12748
|
+
};
|
|
12749
|
+
/** Allows for customization of docker runtime */
|
|
12750
|
+
'docker'?: {
|
|
12751
|
+
/** Type of entrypoint & command override configuration Example: "default" */
|
|
12752
|
+
'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
|
|
12753
|
+
/** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
|
|
12754
|
+
'customEntrypoint'?: string;
|
|
12755
|
+
/** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
|
|
12756
|
+
'customCommand'?: string;
|
|
12757
|
+
};
|
|
12758
|
+
'storage'?: {
|
|
12759
|
+
'ephemeralStorage'?: {
|
|
12760
|
+
/** Ephemeral storage per container in MB Example: 1024 */
|
|
12761
|
+
'storageSize'?: number;
|
|
12762
|
+
};
|
|
12763
|
+
};
|
|
12764
|
+
'strategy'?: {
|
|
12765
|
+
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12766
|
+
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12767
|
+
};
|
|
12768
|
+
'internal': {
|
|
12769
|
+
/** ID of the build service to deploy Example: "example-build-service" */
|
|
12770
|
+
'id'?: string;
|
|
12771
|
+
/** Branch to deploy Example: "master" */
|
|
12772
|
+
'branch'?: string;
|
|
12773
|
+
/** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
|
|
12774
|
+
'buildSHA'?: string | 'latest';
|
|
12775
|
+
/** ID of the build that should be deployed Example: "premium-guide-6393" */
|
|
12776
|
+
'buildId'?: string;
|
|
12777
|
+
};
|
|
12778
|
+
} | {
|
|
12779
|
+
/** The number of instances to run the service on. Example: 1 */
|
|
12780
|
+
'instances': number;
|
|
12781
|
+
/** Allows for customization of buildpack runtime */
|
|
12782
|
+
'buildpack'?: {
|
|
12783
|
+
/** Type of buildpack run configuration */
|
|
12784
|
+
'configType': 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
|
|
12785
|
+
/** Custom process which should be run. Required in case where `configType` is `customProcess` */
|
|
12786
|
+
'customProcess'?: string;
|
|
12787
|
+
/** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
|
|
12788
|
+
'customEntrypoint'?: string;
|
|
12789
|
+
/** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
|
|
12790
|
+
'customCommand'?: string;
|
|
12791
|
+
};
|
|
12792
|
+
/** Allows for customization of docker runtime */
|
|
12793
|
+
'docker'?: {
|
|
12794
|
+
/** Type of entrypoint & command override configuration Example: "default" */
|
|
12795
|
+
'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
|
|
12796
|
+
/** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
|
|
12797
|
+
'customEntrypoint'?: string;
|
|
12798
|
+
/** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
|
|
12799
|
+
'customCommand'?: string;
|
|
12800
|
+
};
|
|
12801
|
+
'storage'?: {
|
|
12802
|
+
'ephemeralStorage'?: {
|
|
12803
|
+
/** Ephemeral storage per container in MB Example: 1024 */
|
|
12804
|
+
'storageSize'?: number;
|
|
12805
|
+
};
|
|
12806
|
+
};
|
|
12807
|
+
'strategy'?: {
|
|
12808
|
+
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12809
|
+
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12810
|
+
};
|
|
12811
|
+
'external': {
|
|
12812
|
+
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
12813
|
+
'imagePath': string;
|
|
12814
|
+
/** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
|
|
12815
|
+
'credentials'?: string;
|
|
12816
|
+
};
|
|
12817
|
+
} | {
|
|
12818
|
+
/** The number of instances to run the service on. Example: 1 */
|
|
12819
|
+
'instances': number;
|
|
12820
|
+
/** Allows for customization of buildpack runtime */
|
|
12821
|
+
'buildpack'?: {
|
|
12822
|
+
/** Type of buildpack run configuration */
|
|
12823
|
+
'configType': 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
|
|
12824
|
+
/** Custom process which should be run. Required in case where `configType` is `customProcess` */
|
|
12825
|
+
'customProcess'?: string;
|
|
12826
|
+
/** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
|
|
12827
|
+
'customEntrypoint'?: string;
|
|
12828
|
+
/** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
|
|
12829
|
+
'customCommand'?: string;
|
|
12830
|
+
};
|
|
12831
|
+
/** Allows for customization of docker runtime */
|
|
12832
|
+
'docker'?: {
|
|
12833
|
+
/** Type of entrypoint & command override configuration Example: "default" */
|
|
12834
|
+
'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
|
|
12835
|
+
/** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
|
|
12836
|
+
'customEntrypoint'?: string;
|
|
12837
|
+
/** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
|
|
12838
|
+
'customCommand'?: string;
|
|
12839
|
+
};
|
|
12840
|
+
'storage'?: {
|
|
12841
|
+
'ephemeralStorage'?: {
|
|
12842
|
+
/** Ephemeral storage per container in MB Example: 1024 */
|
|
12843
|
+
'storageSize'?: number;
|
|
12844
|
+
};
|
|
12845
|
+
};
|
|
12846
|
+
'strategy'?: {
|
|
12847
|
+
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12848
|
+
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12849
|
+
};
|
|
12850
|
+
};
|
|
12351
12851
|
'ports'?: {
|
|
12352
12852
|
/** The name used to identify the port. Example: "port-1" */
|
|
12353
12853
|
'name': string;
|
|
@@ -15187,6 +15687,8 @@ declare class ApiClient {
|
|
|
15187
15687
|
buildMetricsRange: GetJobBuildMetricsRangeCall;
|
|
15188
15688
|
};
|
|
15189
15689
|
pipeline: GetPipelineCall;
|
|
15690
|
+
previewTemplate: GetPreviewtemplateCall;
|
|
15691
|
+
previewTemplateRun: GetPreviewtemplaterunCall;
|
|
15190
15692
|
releaseFlow: GetReleaseflowCall;
|
|
15191
15693
|
releaseFlowRun: GetReleaseflowrunCall;
|
|
15192
15694
|
secret: GetSecretCall;
|
|
@@ -15234,6 +15736,8 @@ declare class ApiClient {
|
|
|
15234
15736
|
addons: ListAddonsCall;
|
|
15235
15737
|
jobs: ListJobsCall;
|
|
15236
15738
|
pipelines: ListPipelinesCall;
|
|
15739
|
+
previewTemplatePreviews: ListPreviewtemplatepreviewsCall;
|
|
15740
|
+
previewTemplateRuns: ListPreviewtemplaterunsCall;
|
|
15237
15741
|
releaseFlowRuns: ListReleaseflowrunsCall;
|
|
15238
15742
|
secrets: ListSecretsCall;
|
|
15239
15743
|
services: ListServicesCall;
|
|
@@ -15286,6 +15790,7 @@ declare class ApiClient {
|
|
|
15286
15790
|
runtimeEnvironment: UpdateJobRuntimeenvironmentCall;
|
|
15287
15791
|
settings: UpdateJobSettingsCall;
|
|
15288
15792
|
};
|
|
15793
|
+
previewTemplate: UpdatePreviewtemplateCall;
|
|
15289
15794
|
releaseFlow: UpdateReleaseflowCall;
|
|
15290
15795
|
secret: UpdateSecretCall;
|
|
15291
15796
|
secretLink: UpdateSecretlinkCall;
|
|
@@ -15314,6 +15819,7 @@ declare class ApiClient {
|
|
|
15314
15819
|
};
|
|
15315
15820
|
backup: DeleteBackupCall;
|
|
15316
15821
|
job: DeleteJobCall;
|
|
15822
|
+
previewTemplatePreview: DeletePreviewtemplatepreviewCall;
|
|
15317
15823
|
secret: DeleteSecretCall;
|
|
15318
15824
|
secretLink: DeleteSecretlinkCall;
|
|
15319
15825
|
service: DeleteServiceCall;
|
|
@@ -15433,6 +15939,9 @@ declare class ApiClient {
|
|
|
15433
15939
|
build: StartServiceBuildCall;
|
|
15434
15940
|
};
|
|
15435
15941
|
};
|
|
15942
|
+
reset: {
|
|
15943
|
+
addon: ResetAddonCall;
|
|
15944
|
+
};
|
|
15436
15945
|
restart: {
|
|
15437
15946
|
addon: RestartAddonCall;
|
|
15438
15947
|
service: RestartServiceCall;
|
|
@@ -15497,6 +16006,8 @@ declare class ApiClient {
|
|
|
15497
16006
|
runtimeEnvironmentDetails: GetJobRuntimeenvironmentdetailsEndpoint;
|
|
15498
16007
|
};
|
|
15499
16008
|
pipeline: GetPipelineEndpoint;
|
|
16009
|
+
previewTemplate: GetPreviewtemplateEndpoint;
|
|
16010
|
+
previewTemplateRun: GetPreviewtemplaterunEndpoint;
|
|
15500
16011
|
releaseFlow: GetReleaseflowEndpoint;
|
|
15501
16012
|
releaseFlowRun: GetReleaseflowrunEndpoint;
|
|
15502
16013
|
secret: GetSecretEndpoint;
|
|
@@ -15536,6 +16047,8 @@ declare class ApiClient {
|
|
|
15536
16047
|
addons: ListAddonsEndpoint;
|
|
15537
16048
|
jobs: ListJobsEndpoint;
|
|
15538
16049
|
pipelines: ListPipelinesEndpoint;
|
|
16050
|
+
previewTemplatePreviews: ListPreviewtemplatepreviewsEndpoint;
|
|
16051
|
+
previewTemplateRuns: ListPreviewtemplaterunsEndpoint;
|
|
15539
16052
|
releaseFlowRuns: ListReleaseflowrunsEndpoint;
|
|
15540
16053
|
secrets: ListSecretsEndpoint;
|
|
15541
16054
|
services: ListServicesEndpoint;
|
|
@@ -15588,6 +16101,7 @@ declare class ApiClient {
|
|
|
15588
16101
|
runtimeEnvironment: UpdateJobRuntimeenvironmentEndpoint;
|
|
15589
16102
|
settings: UpdateJobSettingsEndpoint;
|
|
15590
16103
|
};
|
|
16104
|
+
previewTemplate: UpdatePreviewtemplateEndpoint;
|
|
15591
16105
|
releaseFlow: UpdateReleaseflowEndpoint;
|
|
15592
16106
|
secret: UpdateSecretEndpoint;
|
|
15593
16107
|
secretLink: UpdateSecretlinkEndpoint;
|
|
@@ -15616,6 +16130,7 @@ declare class ApiClient {
|
|
|
15616
16130
|
};
|
|
15617
16131
|
backup: DeleteBackupEndpoint;
|
|
15618
16132
|
job: DeleteJobEndpoint;
|
|
16133
|
+
previewTemplatePreview: DeletePreviewtemplatepreviewEndpoint;
|
|
15619
16134
|
secret: DeleteSecretEndpoint;
|
|
15620
16135
|
secretLink: DeleteSecretlinkEndpoint;
|
|
15621
16136
|
service: DeleteServiceEndpoint;
|
|
@@ -15735,6 +16250,9 @@ declare class ApiClient {
|
|
|
15735
16250
|
build: StartServiceBuildEndpoint;
|
|
15736
16251
|
};
|
|
15737
16252
|
};
|
|
16253
|
+
reset: {
|
|
16254
|
+
addon: ResetAddonEndpoint;
|
|
16255
|
+
};
|
|
15738
16256
|
restart: {
|
|
15739
16257
|
addon: RestartAddonEndpoint;
|
|
15740
16258
|
service: RestartServiceEndpoint;
|
|
@@ -15766,4 +16284,4 @@ type ApiClientOpts = {
|
|
|
15766
16284
|
customUserAgent?: string;
|
|
15767
16285
|
};
|
|
15768
16286
|
|
|
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 };
|
|
16287
|
+
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 };
|