@northflank/js-client 0.7.4-beta.0 → 0.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-client.d.ts +122 -25
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +122 -25
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -603,7 +603,7 @@ declare class NorthflankLogFetch {
|
|
|
603
603
|
projectId: string;
|
|
604
604
|
entityId: string;
|
|
605
605
|
buildId?: string;
|
|
606
|
-
}, data: LogsRangeRequestData, entityType: 'service' | '
|
|
606
|
+
}, data: LogsRangeRequestData, entityType: 'service' | 'job' | 'addon'): Promise<ApiCallLogRangeResponse>;
|
|
607
607
|
tailServiceLogs(parameters: {
|
|
608
608
|
projectId: string;
|
|
609
609
|
serviceId: string;
|
|
@@ -635,7 +635,7 @@ declare class NorthflankLogFetch {
|
|
|
635
635
|
projectId: string;
|
|
636
636
|
entityId: string;
|
|
637
637
|
buildId?: string;
|
|
638
|
-
}, data: LogsTailRequestData, entityType: 'service' | '
|
|
638
|
+
}, data: LogsTailRequestData, entityType: 'service' | 'job' | 'addon'): Promise<LogsClient>;
|
|
639
639
|
private assertStartedWithNodejs;
|
|
640
640
|
}
|
|
641
641
|
|
|
@@ -728,7 +728,8 @@ declare class NorthflankMetricFetch {
|
|
|
728
728
|
metricsSingle(parameters: {
|
|
729
729
|
projectId: string;
|
|
730
730
|
entityId: string;
|
|
731
|
-
|
|
731
|
+
buildId?: string;
|
|
732
|
+
}, data: MetricsSingleRequestData, entityType: 'service' | 'job' | 'addon'): Promise<ApiCallMetricsResponse>;
|
|
732
733
|
getServiceMetricsRange(parameters: {
|
|
733
734
|
projectId: string;
|
|
734
735
|
serviceId: string;
|
|
@@ -760,7 +761,7 @@ declare class NorthflankMetricFetch {
|
|
|
760
761
|
projectId: string;
|
|
761
762
|
entityId: string;
|
|
762
763
|
buildId?: string;
|
|
763
|
-
}, data: MetricsRangeRequestData, entityType: 'service' | '
|
|
764
|
+
}, data: MetricsRangeRequestData, entityType: 'service' | 'job' | 'addon'): Promise<ApiCallMetricsResponse>;
|
|
764
765
|
private getMetrics;
|
|
765
766
|
}
|
|
766
767
|
|
|
@@ -2881,6 +2882,20 @@ type CreateClusterData = {
|
|
|
2881
2882
|
/** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
|
|
2882
2883
|
'plan'?: string;
|
|
2883
2884
|
};
|
|
2885
|
+
'registry'?: {
|
|
2886
|
+
'mode'?: 'paas' | 'self-hosted';
|
|
2887
|
+
/** Credentials to use for storing of images. Example: "my-registry-credentials" */
|
|
2888
|
+
'registryId'?: string;
|
|
2889
|
+
};
|
|
2890
|
+
'logging'?: {
|
|
2891
|
+
'mode'?: 'paas' | 'loki';
|
|
2892
|
+
'loki'?: {
|
|
2893
|
+
's3BucketName': string;
|
|
2894
|
+
's3AccessKey': string;
|
|
2895
|
+
's3SecretKey': string;
|
|
2896
|
+
's3Region': string;
|
|
2897
|
+
} | any;
|
|
2898
|
+
};
|
|
2884
2899
|
/** Request modifiers to use for different resources. */
|
|
2885
2900
|
'requestModifiers'?: {
|
|
2886
2901
|
/** Request modifiers for services */
|
|
@@ -3078,6 +3093,20 @@ type UpdateClusterData = {
|
|
|
3078
3093
|
/** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
|
|
3079
3094
|
'plan'?: string;
|
|
3080
3095
|
};
|
|
3096
|
+
'registry'?: {
|
|
3097
|
+
'mode'?: 'paas' | 'self-hosted';
|
|
3098
|
+
/** Credentials to use for storing of images. Example: "my-registry-credentials" */
|
|
3099
|
+
'registryId'?: string;
|
|
3100
|
+
};
|
|
3101
|
+
'logging'?: {
|
|
3102
|
+
'mode'?: 'paas' | 'loki';
|
|
3103
|
+
'loki'?: {
|
|
3104
|
+
's3BucketName': string;
|
|
3105
|
+
's3AccessKey': string;
|
|
3106
|
+
's3SecretKey': string;
|
|
3107
|
+
's3Region': string;
|
|
3108
|
+
} | any;
|
|
3109
|
+
};
|
|
3081
3110
|
/** Request modifiers to use for different resources. */
|
|
3082
3111
|
'requestModifiers'?: {
|
|
3083
3112
|
/** Request modifiers for services */
|
|
@@ -3394,6 +3423,8 @@ type CreateJobManualResult = {
|
|
|
3394
3423
|
'selfHostedVcsId'?: string;
|
|
3395
3424
|
/** 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" */
|
|
3396
3425
|
'accountLogin'?: string;
|
|
3426
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
3427
|
+
'vcsLinkId'?: string;
|
|
3397
3428
|
/** The name of the branch to use. Example: "master" */
|
|
3398
3429
|
'projectBranch': string;
|
|
3399
3430
|
};
|
|
@@ -3569,6 +3600,8 @@ type CreateJobManualData = {
|
|
|
3569
3600
|
'selfHostedVcsId'?: string;
|
|
3570
3601
|
/** 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" */
|
|
3571
3602
|
'accountLogin'?: string;
|
|
3603
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
3604
|
+
'vcsLinkId'?: string;
|
|
3572
3605
|
/** The name of the branch to use. Example: "master" */
|
|
3573
3606
|
'projectBranch': string;
|
|
3574
3607
|
};
|
|
@@ -3778,6 +3811,8 @@ type PutJobManualResult = {
|
|
|
3778
3811
|
'selfHostedVcsId'?: string;
|
|
3779
3812
|
/** 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" */
|
|
3780
3813
|
'accountLogin'?: string;
|
|
3814
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
3815
|
+
'vcsLinkId'?: string;
|
|
3781
3816
|
/** The name of the branch to use. Example: "master" */
|
|
3782
3817
|
'projectBranch': string;
|
|
3783
3818
|
};
|
|
@@ -3953,6 +3988,8 @@ type PutJobManualData = {
|
|
|
3953
3988
|
'selfHostedVcsId'?: string;
|
|
3954
3989
|
/** 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" */
|
|
3955
3990
|
'accountLogin'?: string;
|
|
3991
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
3992
|
+
'vcsLinkId'?: string;
|
|
3956
3993
|
/** The name of the branch to use. Example: "master" */
|
|
3957
3994
|
'projectBranch': string;
|
|
3958
3995
|
};
|
|
@@ -4162,6 +4199,8 @@ type PatchJobManualResult = {
|
|
|
4162
4199
|
'selfHostedVcsId'?: string;
|
|
4163
4200
|
/** 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" */
|
|
4164
4201
|
'accountLogin'?: string;
|
|
4202
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
4203
|
+
'vcsLinkId'?: string;
|
|
4165
4204
|
/** The name of the branch to use. Example: "master" */
|
|
4166
4205
|
'projectBranch': string;
|
|
4167
4206
|
};
|
|
@@ -4428,6 +4467,8 @@ type CreateJobCronResult = {
|
|
|
4428
4467
|
'selfHostedVcsId'?: string;
|
|
4429
4468
|
/** 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" */
|
|
4430
4469
|
'accountLogin'?: string;
|
|
4470
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
4471
|
+
'vcsLinkId'?: string;
|
|
4431
4472
|
/** The name of the branch to use. Example: "master" */
|
|
4432
4473
|
'projectBranch': string;
|
|
4433
4474
|
};
|
|
@@ -4609,6 +4650,8 @@ type CreateJobCronData = {
|
|
|
4609
4650
|
'selfHostedVcsId'?: string;
|
|
4610
4651
|
/** 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" */
|
|
4611
4652
|
'accountLogin'?: string;
|
|
4653
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
4654
|
+
'vcsLinkId'?: string;
|
|
4612
4655
|
/** The name of the branch to use. Example: "master" */
|
|
4613
4656
|
'projectBranch': string;
|
|
4614
4657
|
};
|
|
@@ -4824,6 +4867,8 @@ type PutJobCronResult = {
|
|
|
4824
4867
|
'selfHostedVcsId'?: string;
|
|
4825
4868
|
/** 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" */
|
|
4826
4869
|
'accountLogin'?: string;
|
|
4870
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
4871
|
+
'vcsLinkId'?: string;
|
|
4827
4872
|
/** The name of the branch to use. Example: "master" */
|
|
4828
4873
|
'projectBranch': string;
|
|
4829
4874
|
};
|
|
@@ -5005,6 +5050,8 @@ type PutJobCronData = {
|
|
|
5005
5050
|
'selfHostedVcsId'?: string;
|
|
5006
5051
|
/** 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" */
|
|
5007
5052
|
'accountLogin'?: string;
|
|
5053
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
5054
|
+
'vcsLinkId'?: string;
|
|
5008
5055
|
/** The name of the branch to use. Example: "master" */
|
|
5009
5056
|
'projectBranch': string;
|
|
5010
5057
|
};
|
|
@@ -5220,6 +5267,8 @@ type PatchJobCronResult = {
|
|
|
5220
5267
|
'selfHostedVcsId'?: string;
|
|
5221
5268
|
/** 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" */
|
|
5222
5269
|
'accountLogin'?: string;
|
|
5270
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
5271
|
+
'vcsLinkId'?: string;
|
|
5223
5272
|
/** The name of the branch to use. Example: "master" */
|
|
5224
5273
|
'projectBranch': string;
|
|
5225
5274
|
};
|
|
@@ -9011,6 +9060,8 @@ type CreateServiceCombinedResult = {
|
|
|
9011
9060
|
'selfHostedVcsId'?: string;
|
|
9012
9061
|
/** 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" */
|
|
9013
9062
|
'accountLogin'?: string;
|
|
9063
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
9064
|
+
'vcsLinkId'?: string;
|
|
9014
9065
|
/** The name of the branch to use. Example: "master" */
|
|
9015
9066
|
'projectBranch': string;
|
|
9016
9067
|
};
|
|
@@ -9237,6 +9288,8 @@ type CreateServiceCombinedData = {
|
|
|
9237
9288
|
'selfHostedVcsId'?: string;
|
|
9238
9289
|
/** 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" */
|
|
9239
9290
|
'accountLogin'?: string;
|
|
9291
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
9292
|
+
'vcsLinkId'?: string;
|
|
9240
9293
|
/** The name of the branch to use. Example: "master" */
|
|
9241
9294
|
'projectBranch': string;
|
|
9242
9295
|
};
|
|
@@ -9432,6 +9485,8 @@ type PutServiceCombinedResult = {
|
|
|
9432
9485
|
'selfHostedVcsId'?: string;
|
|
9433
9486
|
/** 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" */
|
|
9434
9487
|
'accountLogin'?: string;
|
|
9488
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
9489
|
+
'vcsLinkId'?: string;
|
|
9435
9490
|
/** The name of the branch to use. Example: "master" */
|
|
9436
9491
|
'projectBranch': string;
|
|
9437
9492
|
};
|
|
@@ -9658,6 +9713,8 @@ type PutServiceCombinedData = {
|
|
|
9658
9713
|
'selfHostedVcsId'?: string;
|
|
9659
9714
|
/** 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" */
|
|
9660
9715
|
'accountLogin'?: string;
|
|
9716
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
9717
|
+
'vcsLinkId'?: string;
|
|
9661
9718
|
/** The name of the branch to use. Example: "master" */
|
|
9662
9719
|
'projectBranch': string;
|
|
9663
9720
|
};
|
|
@@ -9853,6 +9910,8 @@ type PatchServiceCombinedResult = {
|
|
|
9853
9910
|
'selfHostedVcsId'?: string;
|
|
9854
9911
|
/** 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" */
|
|
9855
9912
|
'accountLogin'?: string;
|
|
9913
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
9914
|
+
'vcsLinkId'?: string;
|
|
9856
9915
|
/** The name of the branch to use. Example: "master" */
|
|
9857
9916
|
'projectBranch': string;
|
|
9858
9917
|
};
|
|
@@ -10070,6 +10129,8 @@ type PatchServiceCombinedData = {
|
|
|
10070
10129
|
'selfHostedVcsId'?: string;
|
|
10071
10130
|
/** 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" */
|
|
10072
10131
|
'accountLogin'?: string;
|
|
10132
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
10133
|
+
'vcsLinkId'?: string;
|
|
10073
10134
|
/** The name of the branch to use. Example: "master" */
|
|
10074
10135
|
'projectBranch'?: string;
|
|
10075
10136
|
};
|
|
@@ -11268,6 +11329,8 @@ type CreateServiceBuildResult = {
|
|
|
11268
11329
|
'selfHostedVcsId'?: string;
|
|
11269
11330
|
/** 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" */
|
|
11270
11331
|
'accountLogin'?: string;
|
|
11332
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
11333
|
+
'vcsLinkId'?: string;
|
|
11271
11334
|
};
|
|
11272
11335
|
'buildSettings': {
|
|
11273
11336
|
'dockerfile': {
|
|
@@ -11367,6 +11430,8 @@ type CreateServiceBuildData = {
|
|
|
11367
11430
|
'selfHostedVcsId'?: string;
|
|
11368
11431
|
/** 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" */
|
|
11369
11432
|
'accountLogin'?: string;
|
|
11433
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
11434
|
+
'vcsLinkId'?: string;
|
|
11370
11435
|
};
|
|
11371
11436
|
'buildSettings': {
|
|
11372
11437
|
'dockerfile': {
|
|
@@ -11447,6 +11512,8 @@ type PutServiceBuildResult = {
|
|
|
11447
11512
|
'selfHostedVcsId'?: string;
|
|
11448
11513
|
/** 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" */
|
|
11449
11514
|
'accountLogin'?: string;
|
|
11515
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
11516
|
+
'vcsLinkId'?: string;
|
|
11450
11517
|
};
|
|
11451
11518
|
'buildSettings': {
|
|
11452
11519
|
'dockerfile': {
|
|
@@ -11546,6 +11613,8 @@ type PutServiceBuildData = {
|
|
|
11546
11613
|
'selfHostedVcsId'?: string;
|
|
11547
11614
|
/** 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" */
|
|
11548
11615
|
'accountLogin'?: string;
|
|
11616
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
11617
|
+
'vcsLinkId'?: string;
|
|
11549
11618
|
};
|
|
11550
11619
|
'buildSettings': {
|
|
11551
11620
|
'dockerfile': {
|
|
@@ -11626,6 +11695,8 @@ type PatchServiceBuildResult = {
|
|
|
11626
11695
|
'selfHostedVcsId'?: string;
|
|
11627
11696
|
/** 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" */
|
|
11628
11697
|
'accountLogin'?: string;
|
|
11698
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
11699
|
+
'vcsLinkId'?: string;
|
|
11629
11700
|
};
|
|
11630
11701
|
'buildSettings': {
|
|
11631
11702
|
'dockerfile': {
|
|
@@ -11725,6 +11796,8 @@ type PatchServiceBuildData = {
|
|
|
11725
11796
|
'selfHostedVcsId'?: string;
|
|
11726
11797
|
/** 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" */
|
|
11727
11798
|
'accountLogin'?: string;
|
|
11799
|
+
/** 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 `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
|
|
11800
|
+
'vcsLinkId'?: string;
|
|
11728
11801
|
};
|
|
11729
11802
|
'buildSettings'?: {
|
|
11730
11803
|
'dockerfile'?: {
|
|
@@ -13935,6 +14008,8 @@ type ListReposOptions = {
|
|
|
13935
14008
|
'self_hosted_vcs_id'?: string;
|
|
13936
14009
|
/** If provided, only returns repositories that can be accessed by the linked version control account with this name. */
|
|
13937
14010
|
'account_login'?: string;
|
|
14011
|
+
/** If provided, only returns repositories belong to that VCS link. */
|
|
14012
|
+
'vcs_link_id'?: string;
|
|
13938
14013
|
};
|
|
13939
14014
|
/** Gets a list of repositories accessible to this account */
|
|
13940
14015
|
declare class ListReposEndpoint extends GetApiEndpoint<ListReposRequest, ListReposResult> {
|
|
@@ -13946,26 +14021,14 @@ declare class ListReposEndpoint extends GetApiEndpoint<ListReposRequest, ListRep
|
|
|
13946
14021
|
}
|
|
13947
14022
|
|
|
13948
14023
|
type ListBranchesResult = {
|
|
13949
|
-
/**
|
|
13950
|
-
'
|
|
13951
|
-
|
|
13952
|
-
|
|
13953
|
-
|
|
13954
|
-
|
|
13955
|
-
|
|
13956
|
-
|
|
13957
|
-
'sha': string;
|
|
13958
|
-
/** Details about the commit author. */
|
|
13959
|
-
'author': {
|
|
13960
|
-
/** The login of the commit author. Example: "northflank" */
|
|
13961
|
-
'login': string;
|
|
13962
|
-
};
|
|
13963
|
-
/** Commit message of the commit. Example: "Initial commit" */
|
|
13964
|
-
'message'?: string;
|
|
13965
|
-
/** Timestamp of the commit. Example: "2021-09-17T14:04:39.000Z" */
|
|
13966
|
-
'date'?: string;
|
|
13967
|
-
};
|
|
13968
|
-
}[];
|
|
14024
|
+
/** The number of results to display per request. Maximum of 100 results per page. Example: 50 */
|
|
14025
|
+
'per_page'?: number;
|
|
14026
|
+
/** The page number to access. Example: 1 */
|
|
14027
|
+
'page'?: number;
|
|
14028
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
14029
|
+
'cursor'?: string;
|
|
14030
|
+
/** If provided, uses the given VCS link to access the repository's data. */
|
|
14031
|
+
'vcs_link_id'?: string;
|
|
13969
14032
|
};
|
|
13970
14033
|
type ListBranchesCall = (opts: ListBranchesRequest) => Promise<ApiCallResponse<ListBranchesResult>>;
|
|
13971
14034
|
type ListBranchesRequest = {
|
|
@@ -13996,6 +14059,34 @@ declare class ListBranchesEndpoint extends GetApiEndpoint<ListBranchesRequest, L
|
|
|
13996
14059
|
body: () => undefined;
|
|
13997
14060
|
}
|
|
13998
14061
|
|
|
14062
|
+
type CreateCustomvcsTokenResult = {
|
|
14063
|
+
/** VCS provider the token belongs to. Example: "github" */
|
|
14064
|
+
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
14065
|
+
/** Installation ID of the GitHub installation the token belongs to (GitHub only) Example: 1234567 */
|
|
14066
|
+
'installationId'?: number;
|
|
14067
|
+
/** Installation token (GitHub only). Example: "ghs_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" */
|
|
14068
|
+
'installationToken'?: string;
|
|
14069
|
+
/** OAuth token. Example: "ghu_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" */
|
|
14070
|
+
'token': string;
|
|
14071
|
+
};
|
|
14072
|
+
type CreateCustomvcsTokenCall = (opts: CreateCustomvcsTokenRequest) => Promise<ApiCallResponse<CreateCustomvcsTokenResult>>;
|
|
14073
|
+
type CreateCustomvcsTokenRequest = {
|
|
14074
|
+
parameters: CreateCustomvcsTokenParameters;
|
|
14075
|
+
};
|
|
14076
|
+
type CreateCustomvcsTokenParameters = {
|
|
14077
|
+
/** ID of the custom VCS */ 'customVCSId': string;
|
|
14078
|
+
/** ID of the version control link */
|
|
14079
|
+
'vcsLinkId': string;
|
|
14080
|
+
};
|
|
14081
|
+
/** Generate a token for a specific VCS link. */
|
|
14082
|
+
declare class CreateCustomvcsTokenEndpoint extends PostApiEndpoint<CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult> {
|
|
14083
|
+
description: string;
|
|
14084
|
+
withAuth: boolean;
|
|
14085
|
+
requiredPermissions: string;
|
|
14086
|
+
endpointUrl: (opts: CreateCustomvcsTokenRequest) => string;
|
|
14087
|
+
body: () => undefined;
|
|
14088
|
+
}
|
|
14089
|
+
|
|
13999
14090
|
type ListVolumesResult = {
|
|
14000
14091
|
/** Identifier for the volume Example: "example-volume" */
|
|
14001
14092
|
'id': string;
|
|
@@ -14583,6 +14674,9 @@ declare class ApiClient {
|
|
|
14583
14674
|
build: CreateServiceBuildCall;
|
|
14584
14675
|
};
|
|
14585
14676
|
template: CreateTemplateCall;
|
|
14677
|
+
customVcs: {
|
|
14678
|
+
token: CreateCustomvcsTokenCall;
|
|
14679
|
+
};
|
|
14586
14680
|
volume: CreateVolumeCall;
|
|
14587
14681
|
};
|
|
14588
14682
|
get: {
|
|
@@ -14870,6 +14964,9 @@ declare class ApiClient {
|
|
|
14870
14964
|
build: CreateServiceBuildEndpoint;
|
|
14871
14965
|
};
|
|
14872
14966
|
template: CreateTemplateEndpoint;
|
|
14967
|
+
customVcs: {
|
|
14968
|
+
token: CreateCustomvcsTokenEndpoint;
|
|
14969
|
+
};
|
|
14873
14970
|
volume: CreateVolumeEndpoint;
|
|
14874
14971
|
};
|
|
14875
14972
|
get: {
|
|
@@ -15121,4 +15218,4 @@ type ApiClientOpts = {
|
|
|
15121
15218
|
customUserAgent?: string;
|
|
15122
15219
|
};
|
|
15123
15220
|
|
|
15124
|
-
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, 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, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistryCall, DeleteRegistryEndpoint, DeleteRegistryParameters, DeleteRegistryRequest, DeleteRegistryResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, 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, 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, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, 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, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, 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, 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, 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, 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 };
|
|
15221
|
+
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, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistryCall, DeleteRegistryEndpoint, DeleteRegistryParameters, DeleteRegistryRequest, DeleteRegistryResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, 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, 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, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, 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, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, 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, 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, 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, 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 };
|