@northflank/js-client 0.7.13 → 0.7.14
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 +205 -88
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +205 -88
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -501,6 +501,7 @@ type JobLogsRangeRequestData = LogsRequestCommon & {
|
|
|
501
501
|
direction?: 'forward' | 'backward';
|
|
502
502
|
endTime?: Date;
|
|
503
503
|
duration?: number;
|
|
504
|
+
types?: LogType[];
|
|
504
505
|
containerName?: string | 'all';
|
|
505
506
|
runId?: undefined | string;
|
|
506
507
|
buildId?: never;
|
|
@@ -512,6 +513,7 @@ type AddonBackupLogsRangeRequestData = LogsRequestCommon & {
|
|
|
512
513
|
direction?: never;
|
|
513
514
|
endTime?: never;
|
|
514
515
|
duration?: never;
|
|
516
|
+
types?: never;
|
|
515
517
|
containerName?: never;
|
|
516
518
|
runId?: never;
|
|
517
519
|
buildId?: never;
|
|
@@ -523,6 +525,7 @@ type AddonRestoresLogsRangeRequestData = LogsRequestCommon & {
|
|
|
523
525
|
direction?: never;
|
|
524
526
|
endTime?: never;
|
|
525
527
|
duration?: never;
|
|
528
|
+
types?: never;
|
|
526
529
|
containerName?: never;
|
|
527
530
|
runId?: never;
|
|
528
531
|
buildId?: never;
|
|
@@ -537,6 +540,7 @@ type BuildLogsRangeRequestData = LogsRequestCommon & {
|
|
|
537
540
|
direction?: 'forward' | 'backward';
|
|
538
541
|
endTime?: Date;
|
|
539
542
|
duration?: number;
|
|
543
|
+
types?: never;
|
|
540
544
|
containerName?: never;
|
|
541
545
|
runId?: never;
|
|
542
546
|
buildId?: string;
|
|
@@ -548,6 +552,7 @@ type JobLogsTailRequestData = LogsRequestCommon & {
|
|
|
548
552
|
direction?: never;
|
|
549
553
|
endTime?: never;
|
|
550
554
|
duration?: never;
|
|
555
|
+
types?: LogType[];
|
|
551
556
|
containerName?: string | 'all';
|
|
552
557
|
runId?: undefined | string;
|
|
553
558
|
buildId?: never;
|
|
@@ -559,6 +564,7 @@ type AddonBackupLogsTailRequestData = LogsRequestCommon & {
|
|
|
559
564
|
direction?: never;
|
|
560
565
|
endTime?: never;
|
|
561
566
|
duration?: never;
|
|
567
|
+
types?: never;
|
|
562
568
|
containerName?: never;
|
|
563
569
|
runId?: never;
|
|
564
570
|
buildId?: never;
|
|
@@ -570,6 +576,7 @@ type AddonRestoresLogsTailRequestData = LogsRequestCommon & {
|
|
|
570
576
|
direction?: never;
|
|
571
577
|
endTime?: never;
|
|
572
578
|
duration?: never;
|
|
579
|
+
types?: never;
|
|
573
580
|
containerName?: never;
|
|
574
581
|
runId?: never;
|
|
575
582
|
buildId?: never;
|
|
@@ -584,6 +591,7 @@ type BuildLogsTailRequestData = LogsRequestCommon & {
|
|
|
584
591
|
direction?: never;
|
|
585
592
|
endTime?: never;
|
|
586
593
|
duration?: never;
|
|
594
|
+
types?: never;
|
|
587
595
|
containerName?: never;
|
|
588
596
|
runId?: never;
|
|
589
597
|
buildId?: string;
|
|
@@ -654,6 +662,12 @@ declare class LogsClient extends EventEmitter {
|
|
|
654
662
|
}
|
|
655
663
|
|
|
656
664
|
type ApiCallLogRangeResponse = ApiCallResponse<LogLine[]>;
|
|
665
|
+
declare enum LogType {
|
|
666
|
+
CDN = "cdn",
|
|
667
|
+
Mesh = "mesh",
|
|
668
|
+
Ingress = "ingress",
|
|
669
|
+
Runtime = "runtime"
|
|
670
|
+
}
|
|
657
671
|
type GetServiceLogsCall = (opts: {
|
|
658
672
|
parameters: {
|
|
659
673
|
projectId: string;
|
|
@@ -1581,7 +1595,7 @@ type CreateCloudClusterData = {
|
|
|
1581
1595
|
/** Set of label keys and values that can be used to determine scheduling via resource tags. */
|
|
1582
1596
|
'labels'?: any;
|
|
1583
1597
|
}[];
|
|
1584
|
-
'settings'
|
|
1598
|
+
'settings'?: {
|
|
1585
1599
|
'builds'?: {
|
|
1586
1600
|
'mode'?: 'paas' | 'internal' | 'build-cluster';
|
|
1587
1601
|
/** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
|
|
@@ -1610,6 +1624,11 @@ type CreateCloudClusterData = {
|
|
|
1610
1624
|
/** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
|
|
1611
1625
|
'projectId': string;
|
|
1612
1626
|
};
|
|
1627
|
+
/** AWS specific data. Required when `provider` is `aws`. */
|
|
1628
|
+
'aws'?: {
|
|
1629
|
+
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
1630
|
+
'subnets': string;
|
|
1631
|
+
};
|
|
1613
1632
|
};
|
|
1614
1633
|
/** Creates a new cluster. */
|
|
1615
1634
|
declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClusterRequest, CreateCloudClusterResult> {
|
|
@@ -2338,7 +2357,9 @@ type CreateDomainData = {
|
|
|
2338
2357
|
'certificateInput'?: {
|
|
2339
2358
|
'is'?: any;
|
|
2340
2359
|
'then': {
|
|
2360
|
+
/** Certificate private key. */
|
|
2341
2361
|
'privateKey': string;
|
|
2362
|
+
/** Certificate chain. May consist of one or more certificates. */
|
|
2342
2363
|
'certificateChain': string;
|
|
2343
2364
|
};
|
|
2344
2365
|
};
|
|
@@ -2424,6 +2445,33 @@ declare class DeleteDomainEndpoint extends DeleteApiEndpoint<DeleteDomainRequest
|
|
|
2424
2445
|
body: () => undefined;
|
|
2425
2446
|
}
|
|
2426
2447
|
|
|
2448
|
+
type ImportDomaincertificateResult = any | any;
|
|
2449
|
+
type ImportDomaincertificateCall = (opts: ImportDomaincertificateRequest) => Promise<ApiCallResponse<ImportDomaincertificateResult>>;
|
|
2450
|
+
type ImportDomaincertificateRequest = {
|
|
2451
|
+
parameters: ImportDomaincertificateParameters;
|
|
2452
|
+
data: ImportDomaincertificateData;
|
|
2453
|
+
};
|
|
2454
|
+
type ImportDomaincertificateParameters = {
|
|
2455
|
+
/** Name of the domain */ 'domain': string;
|
|
2456
|
+
};
|
|
2457
|
+
type ImportDomaincertificateData = {
|
|
2458
|
+
/** Certificate to import. */
|
|
2459
|
+
'certificate': {
|
|
2460
|
+
/** Certificate private key. */
|
|
2461
|
+
'privateKey': string;
|
|
2462
|
+
/** Certificate chain. May consist of one or more certificates. */
|
|
2463
|
+
'certificateChain': string;
|
|
2464
|
+
};
|
|
2465
|
+
};
|
|
2466
|
+
/** Import a certificate for the domain */
|
|
2467
|
+
declare class ImportDomaincertificateEndpoint extends PostApiEndpoint<ImportDomaincertificateRequest, ImportDomaincertificateResult> {
|
|
2468
|
+
description: string;
|
|
2469
|
+
withAuth: boolean;
|
|
2470
|
+
requiredPermissions: string;
|
|
2471
|
+
endpointUrl: (opts: ImportDomaincertificateRequest) => string;
|
|
2472
|
+
body: (payload: ImportDomaincertificateRequest) => string;
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2427
2475
|
type AddDomainSubdomainResult = {
|
|
2428
2476
|
/** The record type to use for the DNS record to verify the subdomain - always CNAME for subdomains. Example: "CNAME" */
|
|
2429
2477
|
'recordType': string;
|
|
@@ -2659,7 +2707,7 @@ type ListLogsinksResult = {
|
|
|
2659
2707
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2660
2708
|
'projects': string[];
|
|
2661
2709
|
/** The type of the log sink. Example: "loki" */
|
|
2662
|
-
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | '
|
|
2710
|
+
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
|
|
2663
2711
|
/** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
|
|
2664
2712
|
'createdAt': string;
|
|
2665
2713
|
/** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
|
|
@@ -2889,11 +2937,11 @@ type CreateLogsinkData = {
|
|
|
2889
2937
|
'forwardAccessLogs'?: boolean;
|
|
2890
2938
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2891
2939
|
'projects'?: string[];
|
|
2892
|
-
/** The type of the log sink. Example: "
|
|
2893
|
-
'sinkType': '
|
|
2894
|
-
/** Details about the
|
|
2940
|
+
/** The type of the log sink. Example: "betterStack" */
|
|
2941
|
+
'sinkType': 'betterStack';
|
|
2942
|
+
/** Details about the undefined log sink. */
|
|
2895
2943
|
'sinkData': {
|
|
2896
|
-
/**
|
|
2944
|
+
/** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
|
|
2897
2945
|
'token': string;
|
|
2898
2946
|
};
|
|
2899
2947
|
} | {
|
|
@@ -3014,7 +3062,7 @@ type GetLogsinkResult = {
|
|
|
3014
3062
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
3015
3063
|
'projects': string[];
|
|
3016
3064
|
/** The type of the log sink. Example: "loki" */
|
|
3017
|
-
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | '
|
|
3065
|
+
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
|
|
3018
3066
|
/** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
|
|
3019
3067
|
'createdAt': string;
|
|
3020
3068
|
/** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
|
|
@@ -3083,7 +3131,7 @@ type GetLogsinkResult = {
|
|
|
3083
3131
|
/** Log file compression method. Example: "gzip" */
|
|
3084
3132
|
'compression': 'gzip' | 'none';
|
|
3085
3133
|
} | {
|
|
3086
|
-
/**
|
|
3134
|
+
/** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
|
|
3087
3135
|
'token': string;
|
|
3088
3136
|
} | {
|
|
3089
3137
|
/** Ingestion Key Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
@@ -3248,7 +3296,7 @@ type UpdateLogsinkData = {
|
|
|
3248
3296
|
/** Log file compression method. Example: "gzip" */
|
|
3249
3297
|
'compression': 'gzip' | 'none';
|
|
3250
3298
|
} | {
|
|
3251
|
-
/**
|
|
3299
|
+
/** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
|
|
3252
3300
|
'token': string;
|
|
3253
3301
|
} | {
|
|
3254
3302
|
/** Ingestion Key Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
@@ -3412,6 +3460,7 @@ type CreateNotificationResult = {
|
|
|
3412
3460
|
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3413
3461
|
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3414
3462
|
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3463
|
+
'trigger:infrastructure:cluster:controller'?: boolean;
|
|
3415
3464
|
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3416
3465
|
};
|
|
3417
3466
|
};
|
|
@@ -3494,6 +3543,7 @@ type CreateNotificationData = {
|
|
|
3494
3543
|
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3495
3544
|
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3496
3545
|
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3546
|
+
'trigger:infrastructure:cluster:controller'?: boolean;
|
|
3497
3547
|
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3498
3548
|
};
|
|
3499
3549
|
};
|
|
@@ -3591,6 +3641,7 @@ type GetNotificationResult = {
|
|
|
3591
3641
|
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3592
3642
|
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3593
3643
|
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3644
|
+
'trigger:infrastructure:cluster:controller'?: boolean;
|
|
3594
3645
|
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3595
3646
|
};
|
|
3596
3647
|
};
|
|
@@ -3688,6 +3739,7 @@ type UpdateNotificationData = {
|
|
|
3688
3739
|
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3689
3740
|
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3690
3741
|
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3742
|
+
'trigger:infrastructure:cluster:controller'?: boolean;
|
|
3691
3743
|
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3692
3744
|
};
|
|
3693
3745
|
};
|
|
@@ -4318,6 +4370,24 @@ type PatchProjectData = {
|
|
|
4318
4370
|
'description'?: string;
|
|
4319
4371
|
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
4320
4372
|
'color'?: string;
|
|
4373
|
+
'networking'?: {
|
|
4374
|
+
/** Projects from which ingress request should be permitted. */
|
|
4375
|
+
'allowedIngressProjects'?: string[];
|
|
4376
|
+
'tailscale'?: {
|
|
4377
|
+
/** Whether or not to inject a tailscale sidecar for this project's resources */
|
|
4378
|
+
'enabled'?: boolean;
|
|
4379
|
+
'restrictions'?: {
|
|
4380
|
+
/** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
|
|
4381
|
+
'enabled'?: boolean;
|
|
4382
|
+
/** The tags which determine whether tailscale sidecar should be added */
|
|
4383
|
+
'tags'?: string[];
|
|
4384
|
+
};
|
|
4385
|
+
'secrets'?: {
|
|
4386
|
+
/** tailscale auth key which is required for enabling tailscale */
|
|
4387
|
+
'authKey'?: string;
|
|
4388
|
+
};
|
|
4389
|
+
};
|
|
4390
|
+
};
|
|
4321
4391
|
};
|
|
4322
4392
|
/** Updates a project. */
|
|
4323
4393
|
declare class PatchProjectEndpoint extends PatchApiEndpoint<PatchProjectRequest, PatchProjectResult> {
|
|
@@ -4468,6 +4538,10 @@ type CreateAddonResult = {
|
|
|
4468
4538
|
'typeSpecificSettings'?: {
|
|
4469
4539
|
/** Redis only: Key eviction policy at memory pressure. */
|
|
4470
4540
|
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4541
|
+
/** Redis only: Deploy Redis with Sentinel high availability. Default: false */
|
|
4542
|
+
'redisSentinelEnabled'?: boolean;
|
|
4543
|
+
/** PostgreSQL only: Configure wal_level setting. */
|
|
4544
|
+
'postgresqlWalLevel'?: 'replica' | 'logical';
|
|
4471
4545
|
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4472
4546
|
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4473
4547
|
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
@@ -4570,6 +4644,10 @@ type CreateAddonData = {
|
|
|
4570
4644
|
'typeSpecificSettings'?: {
|
|
4571
4645
|
/** Redis only: Key eviction policy at memory pressure. */
|
|
4572
4646
|
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4647
|
+
/** Redis only: Deploy Redis with Sentinel high availability. Default: false */
|
|
4648
|
+
'redisSentinelEnabled'?: boolean;
|
|
4649
|
+
/** PostgreSQL only: Configure wal_level setting. */
|
|
4650
|
+
'postgresqlWalLevel'?: 'replica' | 'logical';
|
|
4573
4651
|
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4574
4652
|
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4575
4653
|
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
@@ -4658,6 +4736,10 @@ type PutAddonResult = {
|
|
|
4658
4736
|
'typeSpecificSettings'?: {
|
|
4659
4737
|
/** Redis only: Key eviction policy at memory pressure. */
|
|
4660
4738
|
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4739
|
+
/** Redis only: Deploy Redis with Sentinel high availability. Default: false */
|
|
4740
|
+
'redisSentinelEnabled'?: boolean;
|
|
4741
|
+
/** PostgreSQL only: Configure wal_level setting. */
|
|
4742
|
+
'postgresqlWalLevel'?: 'replica' | 'logical';
|
|
4661
4743
|
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4662
4744
|
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4663
4745
|
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
@@ -4760,6 +4842,10 @@ type PutAddonData = {
|
|
|
4760
4842
|
'typeSpecificSettings'?: {
|
|
4761
4843
|
/** Redis only: Key eviction policy at memory pressure. */
|
|
4762
4844
|
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4845
|
+
/** Redis only: Deploy Redis with Sentinel high availability. Default: false */
|
|
4846
|
+
'redisSentinelEnabled'?: boolean;
|
|
4847
|
+
/** PostgreSQL only: Configure wal_level setting. */
|
|
4848
|
+
'postgresqlWalLevel'?: 'replica' | 'logical';
|
|
4763
4849
|
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4764
4850
|
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4765
4851
|
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
@@ -4930,6 +5016,10 @@ type PatchAddonResult = {
|
|
|
4930
5016
|
'typeSpecificSettings'?: {
|
|
4931
5017
|
/** Redis only: Key eviction policy at memory pressure. */
|
|
4932
5018
|
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
5019
|
+
/** Redis only: Deploy Redis with Sentinel high availability. Default: false */
|
|
5020
|
+
'redisSentinelEnabled'?: boolean;
|
|
5021
|
+
/** PostgreSQL only: Configure wal_level setting. */
|
|
5022
|
+
'postgresqlWalLevel'?: 'replica' | 'logical';
|
|
4933
5023
|
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4934
5024
|
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4935
5025
|
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
@@ -5019,6 +5109,10 @@ type PatchAddonData = {
|
|
|
5019
5109
|
'typeSpecificSettings'?: {
|
|
5020
5110
|
/** Redis only: Key eviction policy at memory pressure. */
|
|
5021
5111
|
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
5112
|
+
/** Redis only: Deploy Redis with Sentinel high availability. Default: false */
|
|
5113
|
+
'redisSentinelEnabled'?: boolean;
|
|
5114
|
+
/** PostgreSQL only: Configure wal_level setting. */
|
|
5115
|
+
'postgresqlWalLevel'?: 'replica' | 'logical';
|
|
5022
5116
|
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
5023
5117
|
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
5024
5118
|
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
@@ -5028,10 +5122,6 @@ type PatchAddonData = {
|
|
|
5028
5122
|
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
5029
5123
|
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
5030
5124
|
};
|
|
5031
|
-
'customCredentials'?: {
|
|
5032
|
-
/** Custom database name. Not supported for all addon types. */
|
|
5033
|
-
'dbName'?: string;
|
|
5034
|
-
};
|
|
5035
5125
|
'backupSchedules'?: {
|
|
5036
5126
|
/** Schedule for the backup. */
|
|
5037
5127
|
'scheduling': {
|
|
@@ -6108,6 +6198,8 @@ type CreateJobCronResult = {
|
|
|
6108
6198
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
6109
6199
|
'storageSize'?: number;
|
|
6110
6200
|
};
|
|
6201
|
+
/** shm size per container in MB */
|
|
6202
|
+
'shmSize'?: number;
|
|
6111
6203
|
};
|
|
6112
6204
|
'vcs'?: {
|
|
6113
6205
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
@@ -6237,6 +6329,8 @@ type CreateJobCronData = {
|
|
|
6237
6329
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
6238
6330
|
'storageSize'?: number;
|
|
6239
6331
|
};
|
|
6332
|
+
/** shm size per container in MB */
|
|
6333
|
+
'shmSize'?: number;
|
|
6240
6334
|
};
|
|
6241
6335
|
'vcs': {
|
|
6242
6336
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
@@ -6278,6 +6372,8 @@ type CreateJobCronData = {
|
|
|
6278
6372
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
6279
6373
|
'storageSize'?: number;
|
|
6280
6374
|
};
|
|
6375
|
+
/** shm size per container in MB */
|
|
6376
|
+
'shmSize'?: number;
|
|
6281
6377
|
};
|
|
6282
6378
|
'external': {
|
|
6283
6379
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
@@ -6311,6 +6407,8 @@ type CreateJobCronData = {
|
|
|
6311
6407
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
6312
6408
|
'storageSize'?: number;
|
|
6313
6409
|
};
|
|
6410
|
+
/** shm size per container in MB */
|
|
6411
|
+
'shmSize'?: number;
|
|
6314
6412
|
};
|
|
6315
6413
|
'internal': {
|
|
6316
6414
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
@@ -6517,6 +6615,8 @@ type PutJobCronResult = {
|
|
|
6517
6615
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
6518
6616
|
'storageSize'?: number;
|
|
6519
6617
|
};
|
|
6618
|
+
/** shm size per container in MB */
|
|
6619
|
+
'shmSize'?: number;
|
|
6520
6620
|
};
|
|
6521
6621
|
'vcs'?: {
|
|
6522
6622
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
@@ -6646,6 +6746,8 @@ type PutJobCronData = {
|
|
|
6646
6746
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
6647
6747
|
'storageSize'?: number;
|
|
6648
6748
|
};
|
|
6749
|
+
/** shm size per container in MB */
|
|
6750
|
+
'shmSize'?: number;
|
|
6649
6751
|
};
|
|
6650
6752
|
'vcs': {
|
|
6651
6753
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
@@ -6687,6 +6789,8 @@ type PutJobCronData = {
|
|
|
6687
6789
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
6688
6790
|
'storageSize'?: number;
|
|
6689
6791
|
};
|
|
6792
|
+
/** shm size per container in MB */
|
|
6793
|
+
'shmSize'?: number;
|
|
6690
6794
|
};
|
|
6691
6795
|
'external': {
|
|
6692
6796
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
@@ -6720,6 +6824,8 @@ type PutJobCronData = {
|
|
|
6720
6824
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
6721
6825
|
'storageSize'?: number;
|
|
6722
6826
|
};
|
|
6827
|
+
/** shm size per container in MB */
|
|
6828
|
+
'shmSize'?: number;
|
|
6723
6829
|
};
|
|
6724
6830
|
'internal': {
|
|
6725
6831
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
@@ -6926,6 +7032,8 @@ type PatchJobCronResult = {
|
|
|
6926
7032
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
6927
7033
|
'storageSize'?: number;
|
|
6928
7034
|
};
|
|
7035
|
+
/** shm size per container in MB */
|
|
7036
|
+
'shmSize'?: number;
|
|
6929
7037
|
};
|
|
6930
7038
|
'vcs'?: {
|
|
6931
7039
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
@@ -7207,6 +7315,8 @@ type CreateJobManualResult = {
|
|
|
7207
7315
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
7208
7316
|
'storageSize'?: number;
|
|
7209
7317
|
};
|
|
7318
|
+
/** shm size per container in MB */
|
|
7319
|
+
'shmSize'?: number;
|
|
7210
7320
|
};
|
|
7211
7321
|
'vcs'?: {
|
|
7212
7322
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
@@ -7336,6 +7446,8 @@ type CreateJobManualData = {
|
|
|
7336
7446
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
7337
7447
|
'storageSize'?: number;
|
|
7338
7448
|
};
|
|
7449
|
+
/** shm size per container in MB */
|
|
7450
|
+
'shmSize'?: number;
|
|
7339
7451
|
};
|
|
7340
7452
|
'vcs': {
|
|
7341
7453
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
@@ -7377,6 +7489,8 @@ type CreateJobManualData = {
|
|
|
7377
7489
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
7378
7490
|
'storageSize'?: number;
|
|
7379
7491
|
};
|
|
7492
|
+
/** shm size per container in MB */
|
|
7493
|
+
'shmSize'?: number;
|
|
7380
7494
|
};
|
|
7381
7495
|
'external': {
|
|
7382
7496
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
@@ -7410,6 +7524,8 @@ type CreateJobManualData = {
|
|
|
7410
7524
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
7411
7525
|
'storageSize'?: number;
|
|
7412
7526
|
};
|
|
7527
|
+
/** shm size per container in MB */
|
|
7528
|
+
'shmSize'?: number;
|
|
7413
7529
|
};
|
|
7414
7530
|
'internal': {
|
|
7415
7531
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
@@ -7604,6 +7720,8 @@ type PutJobManualResult = {
|
|
|
7604
7720
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
7605
7721
|
'storageSize'?: number;
|
|
7606
7722
|
};
|
|
7723
|
+
/** shm size per container in MB */
|
|
7724
|
+
'shmSize'?: number;
|
|
7607
7725
|
};
|
|
7608
7726
|
'vcs'?: {
|
|
7609
7727
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
@@ -7733,6 +7851,8 @@ type PutJobManualData = {
|
|
|
7733
7851
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
7734
7852
|
'storageSize'?: number;
|
|
7735
7853
|
};
|
|
7854
|
+
/** shm size per container in MB */
|
|
7855
|
+
'shmSize'?: number;
|
|
7736
7856
|
};
|
|
7737
7857
|
'vcs': {
|
|
7738
7858
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
@@ -7774,6 +7894,8 @@ type PutJobManualData = {
|
|
|
7774
7894
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
7775
7895
|
'storageSize'?: number;
|
|
7776
7896
|
};
|
|
7897
|
+
/** shm size per container in MB */
|
|
7898
|
+
'shmSize'?: number;
|
|
7777
7899
|
};
|
|
7778
7900
|
'external': {
|
|
7779
7901
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
@@ -7807,6 +7929,8 @@ type PutJobManualData = {
|
|
|
7807
7929
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
7808
7930
|
'storageSize'?: number;
|
|
7809
7931
|
};
|
|
7932
|
+
/** shm size per container in MB */
|
|
7933
|
+
'shmSize'?: number;
|
|
7810
7934
|
};
|
|
7811
7935
|
'internal': {
|
|
7812
7936
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
@@ -8001,6 +8125,8 @@ type PatchJobManualResult = {
|
|
|
8001
8125
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
8002
8126
|
'storageSize'?: number;
|
|
8003
8127
|
};
|
|
8128
|
+
/** shm size per container in MB */
|
|
8129
|
+
'shmSize'?: number;
|
|
8004
8130
|
};
|
|
8005
8131
|
'vcs'?: {
|
|
8006
8132
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
@@ -9338,6 +9464,8 @@ type StartJobRunData = {
|
|
|
9338
9464
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
9339
9465
|
'storageSize'?: number;
|
|
9340
9466
|
};
|
|
9467
|
+
/** shm size per container in MB */
|
|
9468
|
+
'shmSize'?: number;
|
|
9341
9469
|
};
|
|
9342
9470
|
/** Optional: Specify the commit to run */
|
|
9343
9471
|
'internal'?: {
|
|
@@ -9376,6 +9504,8 @@ type StartJobRunData = {
|
|
|
9376
9504
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
9377
9505
|
'storageSize'?: number;
|
|
9378
9506
|
};
|
|
9507
|
+
/** shm size per container in MB */
|
|
9508
|
+
'shmSize'?: number;
|
|
9379
9509
|
};
|
|
9380
9510
|
/** Optional: Specify the external image to run */
|
|
9381
9511
|
'external'?: {
|
|
@@ -9605,6 +9735,8 @@ type ScaleJobData = {
|
|
|
9605
9735
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
9606
9736
|
'storageSize'?: number;
|
|
9607
9737
|
};
|
|
9738
|
+
/** shm size per container in MB */
|
|
9739
|
+
'shmSize'?: number;
|
|
9608
9740
|
};
|
|
9609
9741
|
};
|
|
9610
9742
|
/** Modifies the scaling settings for the given job. */
|
|
@@ -9775,6 +9907,8 @@ type GetPreviewtemplateResult = {
|
|
|
9775
9907
|
'spec': any;
|
|
9776
9908
|
/** Identifier for the template Example: "example-template" */
|
|
9777
9909
|
'id': string;
|
|
9910
|
+
/** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
|
|
9911
|
+
'paused'?: boolean;
|
|
9778
9912
|
'options': any;
|
|
9779
9913
|
/** time of creation */
|
|
9780
9914
|
'createdAt'?: string;
|
|
@@ -9808,70 +9942,7 @@ declare class GetPreviewtemplateEndpoint extends GetApiEndpoint<GetPreviewtempla
|
|
|
9808
9942
|
body: () => undefined;
|
|
9809
9943
|
}
|
|
9810
9944
|
|
|
9811
|
-
type UpdatePreviewtemplateResult =
|
|
9812
|
-
/** Name of the template. Example: "Example Template" */
|
|
9813
|
-
'name': string;
|
|
9814
|
-
/** Description of the template. Example: "This is a sample template." */
|
|
9815
|
-
'description'?: string;
|
|
9816
|
-
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
9817
|
-
'apiVersion': 'v1';
|
|
9818
|
-
/** Details of the project the template will run in. */
|
|
9819
|
-
'project': {
|
|
9820
|
-
/** The ID of the project to use. */
|
|
9821
|
-
'id': string;
|
|
9822
|
-
} | {
|
|
9823
|
-
'spec': {
|
|
9824
|
-
/** The name of the project. Example: "New Project" */
|
|
9825
|
-
'name': string;
|
|
9826
|
-
/** The description of the project. Example: "This is a new project." */
|
|
9827
|
-
'description'?: string;
|
|
9828
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
9829
|
-
'color'?: string;
|
|
9830
|
-
/** The region the project will be hosted in. Example: "europe-west" */
|
|
9831
|
-
'region'?: string;
|
|
9832
|
-
} | {
|
|
9833
|
-
/** The name of the project. Example: "New Project" */
|
|
9834
|
-
'name': string;
|
|
9835
|
-
/** The description of the project. Example: "This is a new project." */
|
|
9836
|
-
'description'?: string;
|
|
9837
|
-
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
9838
|
-
'color'?: string;
|
|
9839
|
-
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
9840
|
-
'clusterId'?: string;
|
|
9841
|
-
};
|
|
9842
|
-
};
|
|
9843
|
-
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
9844
|
-
'arguments'?: any;
|
|
9845
|
-
'spec': any;
|
|
9846
|
-
/** Identifier for the template Example: "example-template" */
|
|
9847
|
-
'id': string;
|
|
9848
|
-
'gitops'?: {
|
|
9849
|
-
/** The VCS provider to use. Example: "github" */
|
|
9850
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
9851
|
-
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
9852
|
-
'selfHostedVcsId'?: string;
|
|
9853
|
-
/** 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" */
|
|
9854
|
-
'accountLogin'?: string;
|
|
9855
|
-
/** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
9856
|
-
'repoUrl': string;
|
|
9857
|
-
/** The name of the branch to use. Example: "main" */
|
|
9858
|
-
'branch': string;
|
|
9859
|
-
/** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
|
|
9860
|
-
'filePath': string;
|
|
9861
|
-
/** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
|
|
9862
|
-
'templateSha': string;
|
|
9863
|
-
};
|
|
9864
|
-
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
9865
|
-
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
9866
|
-
'options': {
|
|
9867
|
-
/** Whether autorun is enabled */
|
|
9868
|
-
'autorun': boolean;
|
|
9869
|
-
};
|
|
9870
|
-
/** time of creation */
|
|
9871
|
-
'createdAt'?: string;
|
|
9872
|
-
/** time of update */
|
|
9873
|
-
'updatedAt'?: string;
|
|
9874
|
-
};
|
|
9945
|
+
type UpdatePreviewtemplateResult = any;
|
|
9875
9946
|
type UpdatePreviewtemplateCall = (opts: UpdatePreviewtemplateRequest) => Promise<ApiCallResponse<UpdatePreviewtemplateResult>>;
|
|
9876
9947
|
type UpdatePreviewtemplateRequest = {
|
|
9877
9948
|
parameters: UpdatePreviewtemplateParameters;
|
|
@@ -9888,6 +9959,8 @@ type UpdatePreviewtemplateData = {
|
|
|
9888
9959
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
9889
9960
|
'arguments'?: any;
|
|
9890
9961
|
'spec': any;
|
|
9962
|
+
/** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
|
|
9963
|
+
'paused'?: boolean;
|
|
9891
9964
|
'triggers': {
|
|
9892
9965
|
/** A reference that can be used to access the output of this trigger in the template. */
|
|
9893
9966
|
'ref'?: string;
|
|
@@ -10105,6 +10178,8 @@ type GetReleaseflowResult = {
|
|
|
10105
10178
|
'stage'?: string;
|
|
10106
10179
|
/** Status of the template run Example: "success" */
|
|
10107
10180
|
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
10181
|
+
/** Whether triggers are paused for this release flow. If `true`, Git triggers and webhook triggers will not run the release flow. */
|
|
10182
|
+
'paused': boolean;
|
|
10108
10183
|
/** Timestamp the template was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
10109
10184
|
'createdAt': string;
|
|
10110
10185
|
/** Timestamp the template was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
@@ -10153,6 +10228,8 @@ type UpdateReleaseflowData = {
|
|
|
10153
10228
|
};
|
|
10154
10229
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
10155
10230
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
10231
|
+
/** Whether triggers are paused for this release flow. If `true`, Git triggers and webhook triggers will not run the release flow. */
|
|
10232
|
+
'paused'?: boolean;
|
|
10156
10233
|
};
|
|
10157
10234
|
/** Updates a release flow */
|
|
10158
10235
|
declare class UpdateReleaseflowEndpoint extends PostApiEndpoint<UpdateReleaseflowRequest, UpdateReleaseflowResult> {
|
|
@@ -11801,6 +11878,8 @@ type CreateServiceCombinedResult = {
|
|
|
11801
11878
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
11802
11879
|
'storageSize'?: number;
|
|
11803
11880
|
};
|
|
11881
|
+
/** shm size per container in MB */
|
|
11882
|
+
'shmSize'?: number;
|
|
11804
11883
|
};
|
|
11805
11884
|
'strategy'?: {
|
|
11806
11885
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -11891,6 +11970,8 @@ type CreateServiceCombinedData = {
|
|
|
11891
11970
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
11892
11971
|
'storageSize'?: number;
|
|
11893
11972
|
};
|
|
11973
|
+
/** shm size per container in MB */
|
|
11974
|
+
'shmSize'?: number;
|
|
11894
11975
|
};
|
|
11895
11976
|
'strategy'?: {
|
|
11896
11977
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -12251,6 +12332,8 @@ type PutServiceCombinedResult = {
|
|
|
12251
12332
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
12252
12333
|
'storageSize'?: number;
|
|
12253
12334
|
};
|
|
12335
|
+
/** shm size per container in MB */
|
|
12336
|
+
'shmSize'?: number;
|
|
12254
12337
|
};
|
|
12255
12338
|
'strategy'?: {
|
|
12256
12339
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -12341,6 +12424,8 @@ type PutServiceCombinedData = {
|
|
|
12341
12424
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
12342
12425
|
'storageSize'?: number;
|
|
12343
12426
|
};
|
|
12427
|
+
/** shm size per container in MB */
|
|
12428
|
+
'shmSize'?: number;
|
|
12344
12429
|
};
|
|
12345
12430
|
'strategy'?: {
|
|
12346
12431
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -12701,6 +12786,8 @@ type PatchServiceCombinedResult = {
|
|
|
12701
12786
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
12702
12787
|
'storageSize'?: number;
|
|
12703
12788
|
};
|
|
12789
|
+
/** shm size per container in MB */
|
|
12790
|
+
'shmSize'?: number;
|
|
12704
12791
|
};
|
|
12705
12792
|
'strategy'?: {
|
|
12706
12793
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -12782,6 +12869,8 @@ type PatchServiceCombinedData = {
|
|
|
12782
12869
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
12783
12870
|
'storageSize'?: number;
|
|
12784
12871
|
};
|
|
12872
|
+
/** shm size per container in MB */
|
|
12873
|
+
'shmSize'?: number;
|
|
12785
12874
|
};
|
|
12786
12875
|
'strategy'?: {
|
|
12787
12876
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -13073,6 +13162,8 @@ type CreateServiceDeploymentResult = {
|
|
|
13073
13162
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
13074
13163
|
'storageSize'?: number;
|
|
13075
13164
|
};
|
|
13165
|
+
/** shm size per container in MB */
|
|
13166
|
+
'shmSize'?: number;
|
|
13076
13167
|
};
|
|
13077
13168
|
'strategy'?: {
|
|
13078
13169
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -13173,6 +13264,8 @@ type CreateServiceDeploymentData = {
|
|
|
13173
13264
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
13174
13265
|
'storageSize'?: number;
|
|
13175
13266
|
};
|
|
13267
|
+
/** shm size per container in MB */
|
|
13268
|
+
'shmSize'?: number;
|
|
13176
13269
|
};
|
|
13177
13270
|
'strategy'?: {
|
|
13178
13271
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -13218,6 +13311,8 @@ type CreateServiceDeploymentData = {
|
|
|
13218
13311
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
13219
13312
|
'storageSize'?: number;
|
|
13220
13313
|
};
|
|
13314
|
+
/** shm size per container in MB */
|
|
13315
|
+
'shmSize'?: number;
|
|
13221
13316
|
};
|
|
13222
13317
|
'strategy'?: {
|
|
13223
13318
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -13259,6 +13354,8 @@ type CreateServiceDeploymentData = {
|
|
|
13259
13354
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
13260
13355
|
'storageSize'?: number;
|
|
13261
13356
|
};
|
|
13357
|
+
/** shm size per container in MB */
|
|
13358
|
+
'shmSize'?: number;
|
|
13262
13359
|
};
|
|
13263
13360
|
'strategy'?: {
|
|
13264
13361
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -13499,6 +13596,8 @@ type PutServiceDeploymentResult = {
|
|
|
13499
13596
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
13500
13597
|
'storageSize'?: number;
|
|
13501
13598
|
};
|
|
13599
|
+
/** shm size per container in MB */
|
|
13600
|
+
'shmSize'?: number;
|
|
13502
13601
|
};
|
|
13503
13602
|
'strategy'?: {
|
|
13504
13603
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -13599,6 +13698,8 @@ type PutServiceDeploymentData = {
|
|
|
13599
13698
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
13600
13699
|
'storageSize'?: number;
|
|
13601
13700
|
};
|
|
13701
|
+
/** shm size per container in MB */
|
|
13702
|
+
'shmSize'?: number;
|
|
13602
13703
|
};
|
|
13603
13704
|
'strategy'?: {
|
|
13604
13705
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -13644,6 +13745,8 @@ type PutServiceDeploymentData = {
|
|
|
13644
13745
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
13645
13746
|
'storageSize'?: number;
|
|
13646
13747
|
};
|
|
13748
|
+
/** shm size per container in MB */
|
|
13749
|
+
'shmSize'?: number;
|
|
13647
13750
|
};
|
|
13648
13751
|
'strategy'?: {
|
|
13649
13752
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -13685,6 +13788,8 @@ type PutServiceDeploymentData = {
|
|
|
13685
13788
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
13686
13789
|
'storageSize'?: number;
|
|
13687
13790
|
};
|
|
13791
|
+
/** shm size per container in MB */
|
|
13792
|
+
'shmSize'?: number;
|
|
13688
13793
|
};
|
|
13689
13794
|
'strategy'?: {
|
|
13690
13795
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -13925,6 +14030,8 @@ type PatchServiceDeploymentResult = {
|
|
|
13925
14030
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
13926
14031
|
'storageSize'?: number;
|
|
13927
14032
|
};
|
|
14033
|
+
/** shm size per container in MB */
|
|
14034
|
+
'shmSize'?: number;
|
|
13928
14035
|
};
|
|
13929
14036
|
'strategy'?: {
|
|
13930
14037
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -14025,6 +14132,8 @@ type PatchServiceDeploymentData = {
|
|
|
14025
14132
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
14026
14133
|
'storageSize'?: number;
|
|
14027
14134
|
};
|
|
14135
|
+
/** shm size per container in MB */
|
|
14136
|
+
'shmSize'?: number;
|
|
14028
14137
|
};
|
|
14029
14138
|
'strategy'?: {
|
|
14030
14139
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -14070,6 +14179,8 @@ type PatchServiceDeploymentData = {
|
|
|
14070
14179
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
14071
14180
|
'storageSize'?: number;
|
|
14072
14181
|
};
|
|
14182
|
+
/** shm size per container in MB */
|
|
14183
|
+
'shmSize'?: number;
|
|
14073
14184
|
};
|
|
14074
14185
|
'strategy'?: {
|
|
14075
14186
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -14111,6 +14222,8 @@ type PatchServiceDeploymentData = {
|
|
|
14111
14222
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
14112
14223
|
'storageSize'?: number;
|
|
14113
14224
|
};
|
|
14225
|
+
/** shm size per container in MB */
|
|
14226
|
+
'shmSize'?: number;
|
|
14114
14227
|
};
|
|
14115
14228
|
'strategy'?: {
|
|
14116
14229
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
@@ -15658,6 +15771,8 @@ type ScaleServiceData = {
|
|
|
15658
15771
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
15659
15772
|
'storageSize'?: number;
|
|
15660
15773
|
};
|
|
15774
|
+
/** shm size per container in MB */
|
|
15775
|
+
'shmSize'?: number;
|
|
15661
15776
|
};
|
|
15662
15777
|
};
|
|
15663
15778
|
/** Modifies the scaling settings for the given service. */
|
|
@@ -17177,6 +17292,12 @@ declare class ApiClient {
|
|
|
17177
17292
|
volume: DeleteVolumeCall;
|
|
17178
17293
|
template: DeleteTemplateCall;
|
|
17179
17294
|
};
|
|
17295
|
+
import: {
|
|
17296
|
+
domainCertificate: ImportDomaincertificateCall;
|
|
17297
|
+
addon: {
|
|
17298
|
+
backup: ImportAddonBackupCall;
|
|
17299
|
+
};
|
|
17300
|
+
};
|
|
17180
17301
|
add: {
|
|
17181
17302
|
domain: {
|
|
17182
17303
|
subdomain: AddDomainSubdomainCall;
|
|
@@ -17273,11 +17394,6 @@ declare class ApiClient {
|
|
|
17273
17394
|
backup: RetainAddonBackupCall;
|
|
17274
17395
|
};
|
|
17275
17396
|
};
|
|
17276
|
-
import: {
|
|
17277
|
-
addon: {
|
|
17278
|
-
backup: ImportAddonBackupCall;
|
|
17279
|
-
};
|
|
17280
|
-
};
|
|
17281
17397
|
start: {
|
|
17282
17398
|
addon: {
|
|
17283
17399
|
pitr: StartAddonPitrCall;
|
|
@@ -17509,6 +17625,12 @@ declare class ApiClient {
|
|
|
17509
17625
|
volume: DeleteVolumeEndpoint;
|
|
17510
17626
|
template: DeleteTemplateEndpoint;
|
|
17511
17627
|
};
|
|
17628
|
+
import: {
|
|
17629
|
+
domainCertificate: ImportDomaincertificateEndpoint;
|
|
17630
|
+
addon: {
|
|
17631
|
+
backup: ImportAddonBackupEndpoint;
|
|
17632
|
+
};
|
|
17633
|
+
};
|
|
17512
17634
|
add: {
|
|
17513
17635
|
domain: {
|
|
17514
17636
|
subdomain: AddDomainSubdomainEndpoint;
|
|
@@ -17605,11 +17727,6 @@ declare class ApiClient {
|
|
|
17605
17727
|
backup: RetainAddonBackupEndpoint;
|
|
17606
17728
|
};
|
|
17607
17729
|
};
|
|
17608
|
-
import: {
|
|
17609
|
-
addon: {
|
|
17610
|
-
backup: ImportAddonBackupEndpoint;
|
|
17611
|
-
};
|
|
17612
|
-
};
|
|
17613
17730
|
start: {
|
|
17614
17731
|
addon: {
|
|
17615
17732
|
pitr: StartAddonPitrEndpoint;
|
|
@@ -17656,4 +17773,4 @@ type ApiClientOpts = {
|
|
|
17656
17773
|
customUserAgent?: string;
|
|
17657
17774
|
};
|
|
17658
17775
|
|
|
17659
|
-
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, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, 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, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, 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, GetAddonBackupLogsCall, 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, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, 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, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, 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, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, 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, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, 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, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, 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, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, 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, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, 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 };
|
|
17776
|
+
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, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, 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, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, 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, GetAddonBackupLogsCall, 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, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, 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, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, 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, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, 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, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, 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, LogType, 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, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, 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, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, 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, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, 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 };
|