@northflank/js-client 0.7.12 → 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.
@@ -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;
@@ -900,7 +914,9 @@ declare enum MetricType {
900
914
  PvcUsage = "diskUsage",
901
915
  Requests = "requests",
902
916
  Http4xxResponses = "http4xxResponses",
903
- Http5xxResponses = "http5xxResponses"
917
+ Http5xxResponses = "http5xxResponses",
918
+ Bandwidth = "bandwidth",
919
+ BandwidthVolume = "bandwidthVolume"
904
920
  }
905
921
  type MetricUnit = 'pct' | 'vCPU' | 'mb' | 'kbps' | 'rps' | 'count';
906
922
  type MetricValue = {
@@ -1437,7 +1453,7 @@ type ListCloudClustersResult = {
1437
1453
  /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1438
1454
  'systemPool'?: boolean;
1439
1455
  /** Zones in which the node pool should be provisioned. */
1440
- 'availabilityZones'?: string[];
1456
+ 'availabilityZones': string[];
1441
1457
  /** Set of label keys and values that can be used to determine scheduling via resource tags. */
1442
1458
  'labels'?: any;
1443
1459
  /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
@@ -1508,7 +1524,7 @@ type CreateCloudClusterResult = {
1508
1524
  /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1509
1525
  'systemPool'?: boolean;
1510
1526
  /** Zones in which the node pool should be provisioned. */
1511
- 'availabilityZones'?: string[];
1527
+ 'availabilityZones': string[];
1512
1528
  /** Set of label keys and values that can be used to determine scheduling via resource tags. */
1513
1529
  'labels'?: any;
1514
1530
  /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
@@ -1575,11 +1591,11 @@ type CreateCloudClusterData = {
1575
1591
  /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1576
1592
  'systemPool'?: boolean;
1577
1593
  /** Zones in which the node pool should be provisioned. */
1578
- 'availabilityZones'?: string[];
1594
+ 'availabilityZones': string[];
1579
1595
  /** Set of label keys and values that can be used to determine scheduling via resource tags. */
1580
1596
  'labels'?: any;
1581
1597
  }[];
1582
- 'settings': {
1598
+ 'settings'?: {
1583
1599
  'builds'?: {
1584
1600
  'mode'?: 'paas' | 'internal' | 'build-cluster';
1585
1601
  /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
@@ -1608,6 +1624,11 @@ type CreateCloudClusterData = {
1608
1624
  /** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
1609
1625
  'projectId': string;
1610
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
+ };
1611
1632
  };
1612
1633
  /** Creates a new cluster. */
1613
1634
  declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClusterRequest, CreateCloudClusterResult> {
@@ -1649,7 +1670,7 @@ type GetCloudClusterResult = {
1649
1670
  /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1650
1671
  'systemPool'?: boolean;
1651
1672
  /** Zones in which the node pool should be provisioned. */
1652
- 'availabilityZones'?: string[];
1673
+ 'availabilityZones': string[];
1653
1674
  /** Set of label keys and values that can be used to determine scheduling via resource tags. */
1654
1675
  'labels'?: any;
1655
1676
  /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
@@ -1714,7 +1735,7 @@ type UpdateCloudClusterResult = {
1714
1735
  /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1715
1736
  'systemPool'?: boolean;
1716
1737
  /** Zones in which the node pool should be provisioned. */
1717
- 'availabilityZones'?: string[];
1738
+ 'availabilityZones': string[];
1718
1739
  /** Set of label keys and values that can be used to determine scheduling via resource tags. */
1719
1740
  'labels'?: any;
1720
1741
  /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
@@ -1763,7 +1784,7 @@ type UpdateCloudClusterData = {
1763
1784
  /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1764
1785
  'systemPool'?: boolean;
1765
1786
  /** Zones in which the node pool should be provisioned. */
1766
- 'availabilityZones'?: string[];
1787
+ 'availabilityZones': string[];
1767
1788
  /** Set of label keys and values that can be used to determine scheduling via resource tags. */
1768
1789
  'labels'?: any;
1769
1790
  /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
@@ -2336,7 +2357,9 @@ type CreateDomainData = {
2336
2357
  'certificateInput'?: {
2337
2358
  'is'?: any;
2338
2359
  'then': {
2360
+ /** Certificate private key. */
2339
2361
  'privateKey': string;
2362
+ /** Certificate chain. May consist of one or more certificates. */
2340
2363
  'certificateChain': string;
2341
2364
  };
2342
2365
  };
@@ -2422,6 +2445,33 @@ declare class DeleteDomainEndpoint extends DeleteApiEndpoint<DeleteDomainRequest
2422
2445
  body: () => undefined;
2423
2446
  }
2424
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
+
2425
2475
  type AddDomainSubdomainResult = {
2426
2476
  /** The record type to use for the DNS record to verify the subdomain - always CNAME for subdomains. Example: "CNAME" */
2427
2477
  'recordType': string;
@@ -2657,7 +2707,7 @@ type ListLogsinksResult = {
2657
2707
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2658
2708
  'projects': string[];
2659
2709
  /** The type of the log sink. Example: "loki" */
2660
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
2710
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
2661
2711
  /** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
2662
2712
  'createdAt': string;
2663
2713
  /** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
@@ -2887,11 +2937,11 @@ type CreateLogsinkData = {
2887
2937
  'forwardAccessLogs'?: boolean;
2888
2938
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2889
2939
  'projects'?: string[];
2890
- /** The type of the log sink. Example: "logtail" */
2891
- 'sinkType': 'logtail';
2892
- /** Details about the Logtail log sink. */
2940
+ /** The type of the log sink. Example: "betterStack" */
2941
+ 'sinkType': 'betterStack';
2942
+ /** Details about the undefined log sink. */
2893
2943
  'sinkData': {
2894
- /** Logtail Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
2944
+ /** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
2895
2945
  'token': string;
2896
2946
  };
2897
2947
  } | {
@@ -3012,7 +3062,7 @@ type GetLogsinkResult = {
3012
3062
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3013
3063
  'projects': string[];
3014
3064
  /** The type of the log sink. Example: "loki" */
3015
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
3065
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
3016
3066
  /** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
3017
3067
  'createdAt': string;
3018
3068
  /** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
@@ -3081,7 +3131,7 @@ type GetLogsinkResult = {
3081
3131
  /** Log file compression method. Example: "gzip" */
3082
3132
  'compression': 'gzip' | 'none';
3083
3133
  } | {
3084
- /** Logtail Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
3134
+ /** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
3085
3135
  'token': string;
3086
3136
  } | {
3087
3137
  /** Ingestion Key Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
@@ -3246,7 +3296,7 @@ type UpdateLogsinkData = {
3246
3296
  /** Log file compression method. Example: "gzip" */
3247
3297
  'compression': 'gzip' | 'none';
3248
3298
  } | {
3249
- /** Logtail Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
3299
+ /** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
3250
3300
  'token': string;
3251
3301
  } | {
3252
3302
  /** Ingestion Key Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
@@ -3406,12 +3456,11 @@ type CreateNotificationResult = {
3406
3456
  'trigger:infrastructure:service:container-memorySustained90'?: boolean;
3407
3457
  'trigger:infrastructure:job:container-memorySpike90'?: boolean;
3408
3458
  'trigger:infrastructure:job:container-memorySustained90'?: boolean;
3409
- 'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
3410
- 'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
3411
3459
  'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
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
  };
@@ -3490,12 +3539,11 @@ type CreateNotificationData = {
3490
3539
  'trigger:infrastructure:service:container-memorySustained90'?: boolean;
3491
3540
  'trigger:infrastructure:job:container-memorySpike90'?: boolean;
3492
3541
  'trigger:infrastructure:job:container-memorySustained90'?: boolean;
3493
- 'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
3494
- 'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
3495
3542
  'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
3496
3543
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3497
3544
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3498
3545
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3546
+ 'trigger:infrastructure:cluster:controller'?: boolean;
3499
3547
  'trigger:infrastructure:cluster:scheduling'?: boolean;
3500
3548
  };
3501
3549
  };
@@ -3589,12 +3637,11 @@ type GetNotificationResult = {
3589
3637
  'trigger:infrastructure:service:container-memorySustained90'?: boolean;
3590
3638
  'trigger:infrastructure:job:container-memorySpike90'?: boolean;
3591
3639
  'trigger:infrastructure:job:container-memorySustained90'?: boolean;
3592
- 'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
3593
- 'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
3594
3640
  'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
3595
3641
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3596
3642
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3597
3643
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3644
+ 'trigger:infrastructure:cluster:controller'?: boolean;
3598
3645
  'trigger:infrastructure:cluster:scheduling'?: boolean;
3599
3646
  };
3600
3647
  };
@@ -3688,12 +3735,11 @@ type UpdateNotificationData = {
3688
3735
  'trigger:infrastructure:service:container-memorySustained90'?: boolean;
3689
3736
  'trigger:infrastructure:job:container-memorySpike90'?: boolean;
3690
3737
  'trigger:infrastructure:job:container-memorySustained90'?: boolean;
3691
- 'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
3692
- 'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
3693
3738
  'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
3694
3739
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3695
3740
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3696
3741
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3742
+ 'trigger:infrastructure:cluster:controller'?: boolean;
3697
3743
  'trigger:infrastructure:cluster:scheduling'?: boolean;
3698
3744
  };
3699
3745
  };
@@ -4324,6 +4370,24 @@ type PatchProjectData = {
4324
4370
  'description'?: string;
4325
4371
  /** The color of the project in the Northflank App. Example: "#EF233C" */
4326
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
+ };
4327
4391
  };
4328
4392
  /** Updates a project. */
4329
4393
  declare class PatchProjectEndpoint extends PatchApiEndpoint<PatchProjectRequest, PatchProjectResult> {
@@ -4448,8 +4512,8 @@ type CreateAddonResult = {
4448
4512
  'storage': number;
4449
4513
  /** The number of addon replicas to run. Example: 1 */
4450
4514
  'replicas': number;
4451
- /** Deploy addon with zonal redundancy */
4452
- 'zonalRedundancy'?: boolean;
4515
+ /** Defines scheduling behaviour across different zones within the same region. */
4516
+ 'zonalRedundancy'?: 'required' | 'disabled';
4453
4517
  };
4454
4518
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
4455
4519
  'source'?: {
@@ -4474,6 +4538,10 @@ type CreateAddonResult = {
4474
4538
  'typeSpecificSettings'?: {
4475
4539
  /** Redis only: Key eviction policy at memory pressure. */
4476
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';
4477
4545
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4478
4546
  'postgresqlConnectionPoolerEnabled'?: boolean;
4479
4547
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -4487,7 +4555,25 @@ type CreateAddonResult = {
4487
4555
  /** Custom database name. Not supported for all addon types. */
4488
4556
  'dbName'?: string;
4489
4557
  };
4490
- 'backupSchedules'?: any[];
4558
+ 'backupSchedules'?: {
4559
+ /** Schedule for the backup. */
4560
+ 'scheduling': {
4561
+ /** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
4562
+ 'interval': 'hourly' | 'daily' | 'weekly';
4563
+ /** An array of minutes when the backup should be performed. */
4564
+ 'minute': number[];
4565
+ /** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
4566
+ 'hour'?: number[];
4567
+ /** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
4568
+ 'day'?: number[];
4569
+ };
4570
+ /** The type of the backup to be performed. Example: "snapshot" */
4571
+ 'backupType': 'dump' | 'snapshot';
4572
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
4573
+ 'compressionType'?: 'gz' | 'zstd';
4574
+ /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
4575
+ 'retentionTime': number;
4576
+ }[];
4491
4577
  /** Identifier for the addon. Example: "example-addon" */
4492
4578
  'id': string;
4493
4579
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
@@ -4532,8 +4618,8 @@ type CreateAddonData = {
4532
4618
  'storage': number;
4533
4619
  /** The number of addon replicas to run. Example: 1 */
4534
4620
  'replicas': number;
4535
- /** Deploy addon with zonal redundancy */
4536
- 'zonalRedundancy'?: boolean;
4621
+ /** Defines scheduling behaviour across different zones within the same region. */
4622
+ 'zonalRedundancy'?: 'required' | 'disabled';
4537
4623
  };
4538
4624
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
4539
4625
  'source'?: {
@@ -4558,6 +4644,10 @@ type CreateAddonData = {
4558
4644
  'typeSpecificSettings'?: {
4559
4645
  /** Redis only: Key eviction policy at memory pressure. */
4560
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';
4561
4651
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4562
4652
  'postgresqlConnectionPoolerEnabled'?: boolean;
4563
4653
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -4571,7 +4661,25 @@ type CreateAddonData = {
4571
4661
  /** Custom database name. Not supported for all addon types. */
4572
4662
  'dbName'?: string;
4573
4663
  };
4574
- 'backupSchedules'?: any[];
4664
+ 'backupSchedules'?: {
4665
+ /** Schedule for the backup. */
4666
+ 'scheduling': {
4667
+ /** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
4668
+ 'interval': 'hourly' | 'daily' | 'weekly';
4669
+ /** An array of minutes when the backup should be performed. */
4670
+ 'minute': number[];
4671
+ /** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
4672
+ 'hour'?: number[];
4673
+ /** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
4674
+ 'day'?: number[];
4675
+ };
4676
+ /** The type of the backup to be performed. Example: "snapshot" */
4677
+ 'backupType': 'dump' | 'snapshot';
4678
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
4679
+ 'compressionType'?: 'gz' | 'zstd';
4680
+ /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
4681
+ 'retentionTime': number;
4682
+ }[];
4575
4683
  };
4576
4684
  /** Creates a new addon */
4577
4685
  declare class CreateAddonEndpoint extends PostApiEndpoint<CreateAddonRequest, CreateAddonResult> {
@@ -4602,8 +4710,8 @@ type PutAddonResult = {
4602
4710
  'storage': number;
4603
4711
  /** The number of addon replicas to run. Example: 1 */
4604
4712
  'replicas': number;
4605
- /** Deploy addon with zonal redundancy */
4606
- 'zonalRedundancy'?: boolean;
4713
+ /** Defines scheduling behaviour across different zones within the same region. */
4714
+ 'zonalRedundancy'?: 'required' | 'disabled';
4607
4715
  };
4608
4716
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
4609
4717
  'source'?: {
@@ -4628,6 +4736,10 @@ type PutAddonResult = {
4628
4736
  'typeSpecificSettings'?: {
4629
4737
  /** Redis only: Key eviction policy at memory pressure. */
4630
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';
4631
4743
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4632
4744
  'postgresqlConnectionPoolerEnabled'?: boolean;
4633
4745
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -4641,7 +4753,25 @@ type PutAddonResult = {
4641
4753
  /** Custom database name. Not supported for all addon types. */
4642
4754
  'dbName'?: string;
4643
4755
  };
4644
- 'backupSchedules'?: any[];
4756
+ 'backupSchedules'?: {
4757
+ /** Schedule for the backup. */
4758
+ 'scheduling': {
4759
+ /** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
4760
+ 'interval': 'hourly' | 'daily' | 'weekly';
4761
+ /** An array of minutes when the backup should be performed. */
4762
+ 'minute': number[];
4763
+ /** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
4764
+ 'hour'?: number[];
4765
+ /** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
4766
+ 'day'?: number[];
4767
+ };
4768
+ /** The type of the backup to be performed. Example: "snapshot" */
4769
+ 'backupType': 'dump' | 'snapshot';
4770
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
4771
+ 'compressionType'?: 'gz' | 'zstd';
4772
+ /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
4773
+ 'retentionTime': number;
4774
+ }[];
4645
4775
  /** Identifier for the addon. Example: "example-addon" */
4646
4776
  'id': string;
4647
4777
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
@@ -4686,8 +4816,8 @@ type PutAddonData = {
4686
4816
  'storage': number;
4687
4817
  /** The number of addon replicas to run. Example: 1 */
4688
4818
  'replicas': number;
4689
- /** Deploy addon with zonal redundancy */
4690
- 'zonalRedundancy'?: boolean;
4819
+ /** Defines scheduling behaviour across different zones within the same region. */
4820
+ 'zonalRedundancy'?: 'required' | 'disabled';
4691
4821
  };
4692
4822
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
4693
4823
  'source'?: {
@@ -4712,6 +4842,10 @@ type PutAddonData = {
4712
4842
  'typeSpecificSettings'?: {
4713
4843
  /** Redis only: Key eviction policy at memory pressure. */
4714
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';
4715
4849
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4716
4850
  'postgresqlConnectionPoolerEnabled'?: boolean;
4717
4851
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -4725,7 +4859,25 @@ type PutAddonData = {
4725
4859
  /** Custom database name. Not supported for all addon types. */
4726
4860
  'dbName'?: string;
4727
4861
  };
4728
- 'backupSchedules'?: any[];
4862
+ 'backupSchedules'?: {
4863
+ /** Schedule for the backup. */
4864
+ 'scheduling': {
4865
+ /** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
4866
+ 'interval': 'hourly' | 'daily' | 'weekly';
4867
+ /** An array of minutes when the backup should be performed. */
4868
+ 'minute': number[];
4869
+ /** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
4870
+ 'hour'?: number[];
4871
+ /** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
4872
+ 'day'?: number[];
4873
+ };
4874
+ /** The type of the backup to be performed. Example: "snapshot" */
4875
+ 'backupType': 'dump' | 'snapshot';
4876
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
4877
+ 'compressionType'?: 'gz' | 'zstd';
4878
+ /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
4879
+ 'retentionTime': number;
4880
+ }[];
4729
4881
  };
4730
4882
  /** Creates or updates an addon */
4731
4883
  declare class PutAddonEndpoint extends PutApiEndpoint<PutAddonRequest, PutAddonResult> {
@@ -4838,8 +4990,8 @@ type PatchAddonResult = {
4838
4990
  'storage': number;
4839
4991
  /** The number of addon replicas to run. Example: 1 */
4840
4992
  'replicas': number;
4841
- /** Deploy addon with zonal redundancy */
4842
- 'zonalRedundancy'?: boolean;
4993
+ /** Defines scheduling behaviour across different zones within the same region. */
4994
+ 'zonalRedundancy'?: 'required' | 'disabled';
4843
4995
  };
4844
4996
  /** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
4845
4997
  'source'?: {
@@ -4864,6 +5016,10 @@ type PatchAddonResult = {
4864
5016
  'typeSpecificSettings'?: {
4865
5017
  /** Redis only: Key eviction policy at memory pressure. */
4866
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';
4867
5023
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4868
5024
  'postgresqlConnectionPoolerEnabled'?: boolean;
4869
5025
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -4877,7 +5033,25 @@ type PatchAddonResult = {
4877
5033
  /** Custom database name. Not supported for all addon types. */
4878
5034
  'dbName'?: string;
4879
5035
  };
4880
- 'backupSchedules'?: any[];
5036
+ 'backupSchedules'?: {
5037
+ /** Schedule for the backup. */
5038
+ 'scheduling': {
5039
+ /** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
5040
+ 'interval': 'hourly' | 'daily' | 'weekly';
5041
+ /** An array of minutes when the backup should be performed. */
5042
+ 'minute': number[];
5043
+ /** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
5044
+ 'hour'?: number[];
5045
+ /** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
5046
+ 'day'?: number[];
5047
+ };
5048
+ /** The type of the backup to be performed. Example: "snapshot" */
5049
+ 'backupType': 'dump' | 'snapshot';
5050
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
5051
+ 'compressionType'?: 'gz' | 'zstd';
5052
+ /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
5053
+ 'retentionTime': number;
5054
+ }[];
4881
5055
  /** Identifier for the addon. Example: "example-addon" */
4882
5056
  'id': string;
4883
5057
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
@@ -4918,6 +5092,8 @@ type PatchAddonData = {
4918
5092
  'storage'?: number;
4919
5093
  /** The number of addon replicas to run. Example: 1 */
4920
5094
  'replicas'?: number;
5095
+ /** Defines scheduling behaviour across different zones within the same region. */
5096
+ 'zonalRedundancy'?: 'required' | 'disabled';
4921
5097
  };
4922
5098
  /** Enables access to the addon via TLS (if supported by the addon type). */
4923
5099
  'tlsEnabled'?: boolean;
@@ -4933,6 +5109,10 @@ type PatchAddonData = {
4933
5109
  'typeSpecificSettings'?: {
4934
5110
  /** Redis only: Key eviction policy at memory pressure. */
4935
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';
4936
5116
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4937
5117
  'postgresqlConnectionPoolerEnabled'?: boolean;
4938
5118
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -4942,11 +5122,25 @@ type PatchAddonData = {
4942
5122
  /** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
4943
5123
  'postgresqlReadConnectionPoolerReplicas'?: number;
4944
5124
  };
4945
- 'customCredentials'?: {
4946
- /** Custom database name. Not supported for all addon types. */
4947
- 'dbName'?: string;
4948
- };
4949
- 'backupSchedules'?: any[];
5125
+ 'backupSchedules'?: {
5126
+ /** Schedule for the backup. */
5127
+ 'scheduling': {
5128
+ /** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
5129
+ 'interval': 'hourly' | 'daily' | 'weekly';
5130
+ /** An array of minutes when the backup should be performed. */
5131
+ 'minute': number[];
5132
+ /** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
5133
+ 'hour'?: number[];
5134
+ /** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
5135
+ 'day'?: number[];
5136
+ };
5137
+ /** The type of the backup to be performed. Example: "snapshot" */
5138
+ 'backupType': 'dump' | 'snapshot';
5139
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
5140
+ 'compressionType'?: 'gz' | 'zstd';
5141
+ /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
5142
+ 'retentionTime': number;
5143
+ }[];
4950
5144
  };
4951
5145
  /** Updates an addon */
4952
5146
  declare class PatchAddonEndpoint extends PatchApiEndpoint<PatchAddonRequest, PatchAddonResult> {
@@ -5042,7 +5236,25 @@ type CreateAddonBackupscheduleParameters = {
5042
5236
  /** ID of the addon */
5043
5237
  'addonId': string;
5044
5238
  };
5045
- type CreateAddonBackupscheduleData = any;
5239
+ type CreateAddonBackupscheduleData = {
5240
+ /** Schedule for the backup. */
5241
+ 'scheduling': {
5242
+ /** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
5243
+ 'interval': 'hourly' | 'daily' | 'weekly';
5244
+ /** An array of minutes when the backup should be performed. */
5245
+ 'minute': number[];
5246
+ /** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
5247
+ 'hour'?: number[];
5248
+ /** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
5249
+ 'day'?: number[];
5250
+ };
5251
+ /** The type of the backup to be performed. Example: "snapshot" */
5252
+ 'backupType': 'dump' | 'snapshot';
5253
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
5254
+ 'compressionType'?: 'gz' | 'zstd';
5255
+ /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
5256
+ 'retentionTime': number;
5257
+ };
5046
5258
  /** Create a new backup schedule for an addon. */
5047
5259
  declare class CreateAddonBackupscheduleEndpoint extends PostApiEndpoint<CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult> {
5048
5260
  description: string;
@@ -5986,6 +6198,8 @@ type CreateJobCronResult = {
5986
6198
  /** Ephemeral storage per container in MB Example: 1024 */
5987
6199
  'storageSize'?: number;
5988
6200
  };
6201
+ /** shm size per container in MB */
6202
+ 'shmSize'?: number;
5989
6203
  };
5990
6204
  'vcs'?: {
5991
6205
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -6115,6 +6329,8 @@ type CreateJobCronData = {
6115
6329
  /** Ephemeral storage per container in MB Example: 1024 */
6116
6330
  'storageSize'?: number;
6117
6331
  };
6332
+ /** shm size per container in MB */
6333
+ 'shmSize'?: number;
6118
6334
  };
6119
6335
  'vcs': {
6120
6336
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -6156,6 +6372,8 @@ type CreateJobCronData = {
6156
6372
  /** Ephemeral storage per container in MB Example: 1024 */
6157
6373
  'storageSize'?: number;
6158
6374
  };
6375
+ /** shm size per container in MB */
6376
+ 'shmSize'?: number;
6159
6377
  };
6160
6378
  'external': {
6161
6379
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
@@ -6189,6 +6407,8 @@ type CreateJobCronData = {
6189
6407
  /** Ephemeral storage per container in MB Example: 1024 */
6190
6408
  'storageSize'?: number;
6191
6409
  };
6410
+ /** shm size per container in MB */
6411
+ 'shmSize'?: number;
6192
6412
  };
6193
6413
  'internal': {
6194
6414
  /** ID of the build service to deploy Example: "example-build-service" */
@@ -6395,6 +6615,8 @@ type PutJobCronResult = {
6395
6615
  /** Ephemeral storage per container in MB Example: 1024 */
6396
6616
  'storageSize'?: number;
6397
6617
  };
6618
+ /** shm size per container in MB */
6619
+ 'shmSize'?: number;
6398
6620
  };
6399
6621
  'vcs'?: {
6400
6622
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -6524,6 +6746,8 @@ type PutJobCronData = {
6524
6746
  /** Ephemeral storage per container in MB Example: 1024 */
6525
6747
  'storageSize'?: number;
6526
6748
  };
6749
+ /** shm size per container in MB */
6750
+ 'shmSize'?: number;
6527
6751
  };
6528
6752
  'vcs': {
6529
6753
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -6565,6 +6789,8 @@ type PutJobCronData = {
6565
6789
  /** Ephemeral storage per container in MB Example: 1024 */
6566
6790
  'storageSize'?: number;
6567
6791
  };
6792
+ /** shm size per container in MB */
6793
+ 'shmSize'?: number;
6568
6794
  };
6569
6795
  'external': {
6570
6796
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
@@ -6598,6 +6824,8 @@ type PutJobCronData = {
6598
6824
  /** Ephemeral storage per container in MB Example: 1024 */
6599
6825
  'storageSize'?: number;
6600
6826
  };
6827
+ /** shm size per container in MB */
6828
+ 'shmSize'?: number;
6601
6829
  };
6602
6830
  'internal': {
6603
6831
  /** ID of the build service to deploy Example: "example-build-service" */
@@ -6804,6 +7032,8 @@ type PatchJobCronResult = {
6804
7032
  /** Ephemeral storage per container in MB Example: 1024 */
6805
7033
  'storageSize'?: number;
6806
7034
  };
7035
+ /** shm size per container in MB */
7036
+ 'shmSize'?: number;
6807
7037
  };
6808
7038
  'vcs'?: {
6809
7039
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -7085,6 +7315,8 @@ type CreateJobManualResult = {
7085
7315
  /** Ephemeral storage per container in MB Example: 1024 */
7086
7316
  'storageSize'?: number;
7087
7317
  };
7318
+ /** shm size per container in MB */
7319
+ 'shmSize'?: number;
7088
7320
  };
7089
7321
  'vcs'?: {
7090
7322
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -7214,6 +7446,8 @@ type CreateJobManualData = {
7214
7446
  /** Ephemeral storage per container in MB Example: 1024 */
7215
7447
  'storageSize'?: number;
7216
7448
  };
7449
+ /** shm size per container in MB */
7450
+ 'shmSize'?: number;
7217
7451
  };
7218
7452
  'vcs': {
7219
7453
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -7255,6 +7489,8 @@ type CreateJobManualData = {
7255
7489
  /** Ephemeral storage per container in MB Example: 1024 */
7256
7490
  'storageSize'?: number;
7257
7491
  };
7492
+ /** shm size per container in MB */
7493
+ 'shmSize'?: number;
7258
7494
  };
7259
7495
  'external': {
7260
7496
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
@@ -7288,6 +7524,8 @@ type CreateJobManualData = {
7288
7524
  /** Ephemeral storage per container in MB Example: 1024 */
7289
7525
  'storageSize'?: number;
7290
7526
  };
7527
+ /** shm size per container in MB */
7528
+ 'shmSize'?: number;
7291
7529
  };
7292
7530
  'internal': {
7293
7531
  /** ID of the build service to deploy Example: "example-build-service" */
@@ -7482,6 +7720,8 @@ type PutJobManualResult = {
7482
7720
  /** Ephemeral storage per container in MB Example: 1024 */
7483
7721
  'storageSize'?: number;
7484
7722
  };
7723
+ /** shm size per container in MB */
7724
+ 'shmSize'?: number;
7485
7725
  };
7486
7726
  'vcs'?: {
7487
7727
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -7611,6 +7851,8 @@ type PutJobManualData = {
7611
7851
  /** Ephemeral storage per container in MB Example: 1024 */
7612
7852
  'storageSize'?: number;
7613
7853
  };
7854
+ /** shm size per container in MB */
7855
+ 'shmSize'?: number;
7614
7856
  };
7615
7857
  'vcs': {
7616
7858
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -7652,6 +7894,8 @@ type PutJobManualData = {
7652
7894
  /** Ephemeral storage per container in MB Example: 1024 */
7653
7895
  'storageSize'?: number;
7654
7896
  };
7897
+ /** shm size per container in MB */
7898
+ 'shmSize'?: number;
7655
7899
  };
7656
7900
  'external': {
7657
7901
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
@@ -7685,6 +7929,8 @@ type PutJobManualData = {
7685
7929
  /** Ephemeral storage per container in MB Example: 1024 */
7686
7930
  'storageSize'?: number;
7687
7931
  };
7932
+ /** shm size per container in MB */
7933
+ 'shmSize'?: number;
7688
7934
  };
7689
7935
  'internal': {
7690
7936
  /** ID of the build service to deploy Example: "example-build-service" */
@@ -7879,6 +8125,8 @@ type PatchJobManualResult = {
7879
8125
  /** Ephemeral storage per container in MB Example: 1024 */
7880
8126
  'storageSize'?: number;
7881
8127
  };
8128
+ /** shm size per container in MB */
8129
+ 'shmSize'?: number;
7882
8130
  };
7883
8131
  'vcs'?: {
7884
8132
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
@@ -9216,6 +9464,8 @@ type StartJobRunData = {
9216
9464
  /** Ephemeral storage per container in MB Example: 1024 */
9217
9465
  'storageSize'?: number;
9218
9466
  };
9467
+ /** shm size per container in MB */
9468
+ 'shmSize'?: number;
9219
9469
  };
9220
9470
  /** Optional: Specify the commit to run */
9221
9471
  'internal'?: {
@@ -9254,6 +9504,8 @@ type StartJobRunData = {
9254
9504
  /** Ephemeral storage per container in MB Example: 1024 */
9255
9505
  'storageSize'?: number;
9256
9506
  };
9507
+ /** shm size per container in MB */
9508
+ 'shmSize'?: number;
9257
9509
  };
9258
9510
  /** Optional: Specify the external image to run */
9259
9511
  'external'?: {
@@ -9483,6 +9735,8 @@ type ScaleJobData = {
9483
9735
  /** Ephemeral storage per container in MB Example: 1024 */
9484
9736
  'storageSize'?: number;
9485
9737
  };
9738
+ /** shm size per container in MB */
9739
+ 'shmSize'?: number;
9486
9740
  };
9487
9741
  };
9488
9742
  /** Modifies the scaling settings for the given job. */
@@ -9653,6 +9907,8 @@ type GetPreviewtemplateResult = {
9653
9907
  'spec': any;
9654
9908
  /** Identifier for the template Example: "example-template" */
9655
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;
9656
9912
  'options': any;
9657
9913
  /** time of creation */
9658
9914
  'createdAt'?: string;
@@ -9686,70 +9942,7 @@ declare class GetPreviewtemplateEndpoint extends GetApiEndpoint<GetPreviewtempla
9686
9942
  body: () => undefined;
9687
9943
  }
9688
9944
 
9689
- type UpdatePreviewtemplateResult = {
9690
- /** Name of the template. Example: "Example Template" */
9691
- 'name': string;
9692
- /** Description of the template. Example: "This is a sample template." */
9693
- 'description'?: string;
9694
- /** The version of the Northflank API to run the template against. Example: "v1" */
9695
- 'apiVersion': 'v1';
9696
- /** Details of the project the template will run in. */
9697
- 'project': {
9698
- /** The ID of the project to use. */
9699
- 'id': string;
9700
- } | {
9701
- 'spec': {
9702
- /** The name of the project. Example: "New Project" */
9703
- 'name': string;
9704
- /** The description of the project. Example: "This is a new project." */
9705
- 'description'?: string;
9706
- /** The color of the project in the Northflank App. Example: "#EF233C" */
9707
- 'color'?: string;
9708
- /** The region the project will be hosted in. Example: "europe-west" */
9709
- 'region'?: string;
9710
- } | {
9711
- /** The name of the project. Example: "New Project" */
9712
- 'name': string;
9713
- /** The description of the project. Example: "This is a new project." */
9714
- 'description'?: string;
9715
- /** The color of the project in the Northflank App. Example: "#EF233C" */
9716
- 'color'?: string;
9717
- /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
9718
- 'clusterId'?: string;
9719
- };
9720
- };
9721
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
9722
- 'arguments'?: any;
9723
- 'spec': any;
9724
- /** Identifier for the template Example: "example-template" */
9725
- 'id': string;
9726
- 'gitops'?: {
9727
- /** The VCS provider to use. Example: "github" */
9728
- 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
9729
- /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
9730
- 'selfHostedVcsId'?: string;
9731
- /** 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" */
9732
- 'accountLogin'?: string;
9733
- /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
9734
- 'repoUrl': string;
9735
- /** The name of the branch to use. Example: "main" */
9736
- 'branch': string;
9737
- /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
9738
- 'filePath': string;
9739
- /** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
9740
- 'templateSha': string;
9741
- };
9742
- /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
9743
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
9744
- 'options': {
9745
- /** Whether autorun is enabled */
9746
- 'autorun': boolean;
9747
- };
9748
- /** time of creation */
9749
- 'createdAt'?: string;
9750
- /** time of update */
9751
- 'updatedAt'?: string;
9752
- };
9945
+ type UpdatePreviewtemplateResult = any;
9753
9946
  type UpdatePreviewtemplateCall = (opts: UpdatePreviewtemplateRequest) => Promise<ApiCallResponse<UpdatePreviewtemplateResult>>;
9754
9947
  type UpdatePreviewtemplateRequest = {
9755
9948
  parameters: UpdatePreviewtemplateParameters;
@@ -9766,6 +9959,8 @@ type UpdatePreviewtemplateData = {
9766
9959
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
9767
9960
  'arguments'?: any;
9768
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;
9769
9964
  'triggers': {
9770
9965
  /** A reference that can be used to access the output of this trigger in the template. */
9771
9966
  'ref'?: string;
@@ -9983,6 +10178,8 @@ type GetReleaseflowResult = {
9983
10178
  'stage'?: string;
9984
10179
  /** Status of the template run Example: "success" */
9985
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;
9986
10183
  /** Timestamp the template was created at. Example: "2021-01-01 12:00:00.000Z" */
9987
10184
  'createdAt': string;
9988
10185
  /** Timestamp the template was last updated at. Example: "2021-01-01 12:00:00.000Z" */
@@ -10031,6 +10228,8 @@ type UpdateReleaseflowData = {
10031
10228
  };
10032
10229
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
10033
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;
10034
10233
  };
10035
10234
  /** Updates a release flow */
10036
10235
  declare class UpdateReleaseflowEndpoint extends PostApiEndpoint<UpdateReleaseflowRequest, UpdateReleaseflowResult> {
@@ -11679,6 +11878,8 @@ type CreateServiceCombinedResult = {
11679
11878
  /** Ephemeral storage per container in MB Example: 1024 */
11680
11879
  'storageSize'?: number;
11681
11880
  };
11881
+ /** shm size per container in MB */
11882
+ 'shmSize'?: number;
11682
11883
  };
11683
11884
  'strategy'?: {
11684
11885
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -11769,6 +11970,8 @@ type CreateServiceCombinedData = {
11769
11970
  /** Ephemeral storage per container in MB Example: 1024 */
11770
11971
  'storageSize'?: number;
11771
11972
  };
11973
+ /** shm size per container in MB */
11974
+ 'shmSize'?: number;
11772
11975
  };
11773
11976
  'strategy'?: {
11774
11977
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -12129,6 +12332,8 @@ type PutServiceCombinedResult = {
12129
12332
  /** Ephemeral storage per container in MB Example: 1024 */
12130
12333
  'storageSize'?: number;
12131
12334
  };
12335
+ /** shm size per container in MB */
12336
+ 'shmSize'?: number;
12132
12337
  };
12133
12338
  'strategy'?: {
12134
12339
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -12219,6 +12424,8 @@ type PutServiceCombinedData = {
12219
12424
  /** Ephemeral storage per container in MB Example: 1024 */
12220
12425
  'storageSize'?: number;
12221
12426
  };
12427
+ /** shm size per container in MB */
12428
+ 'shmSize'?: number;
12222
12429
  };
12223
12430
  'strategy'?: {
12224
12431
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -12579,6 +12786,8 @@ type PatchServiceCombinedResult = {
12579
12786
  /** Ephemeral storage per container in MB Example: 1024 */
12580
12787
  'storageSize'?: number;
12581
12788
  };
12789
+ /** shm size per container in MB */
12790
+ 'shmSize'?: number;
12582
12791
  };
12583
12792
  'strategy'?: {
12584
12793
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -12660,6 +12869,8 @@ type PatchServiceCombinedData = {
12660
12869
  /** Ephemeral storage per container in MB Example: 1024 */
12661
12870
  'storageSize'?: number;
12662
12871
  };
12872
+ /** shm size per container in MB */
12873
+ 'shmSize'?: number;
12663
12874
  };
12664
12875
  'strategy'?: {
12665
12876
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -12951,6 +13162,8 @@ type CreateServiceDeploymentResult = {
12951
13162
  /** Ephemeral storage per container in MB Example: 1024 */
12952
13163
  'storageSize'?: number;
12953
13164
  };
13165
+ /** shm size per container in MB */
13166
+ 'shmSize'?: number;
12954
13167
  };
12955
13168
  'strategy'?: {
12956
13169
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13051,6 +13264,8 @@ type CreateServiceDeploymentData = {
13051
13264
  /** Ephemeral storage per container in MB Example: 1024 */
13052
13265
  'storageSize'?: number;
13053
13266
  };
13267
+ /** shm size per container in MB */
13268
+ 'shmSize'?: number;
13054
13269
  };
13055
13270
  'strategy'?: {
13056
13271
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13096,6 +13311,8 @@ type CreateServiceDeploymentData = {
13096
13311
  /** Ephemeral storage per container in MB Example: 1024 */
13097
13312
  'storageSize'?: number;
13098
13313
  };
13314
+ /** shm size per container in MB */
13315
+ 'shmSize'?: number;
13099
13316
  };
13100
13317
  'strategy'?: {
13101
13318
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13137,6 +13354,8 @@ type CreateServiceDeploymentData = {
13137
13354
  /** Ephemeral storage per container in MB Example: 1024 */
13138
13355
  'storageSize'?: number;
13139
13356
  };
13357
+ /** shm size per container in MB */
13358
+ 'shmSize'?: number;
13140
13359
  };
13141
13360
  'strategy'?: {
13142
13361
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13377,6 +13596,8 @@ type PutServiceDeploymentResult = {
13377
13596
  /** Ephemeral storage per container in MB Example: 1024 */
13378
13597
  'storageSize'?: number;
13379
13598
  };
13599
+ /** shm size per container in MB */
13600
+ 'shmSize'?: number;
13380
13601
  };
13381
13602
  'strategy'?: {
13382
13603
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13477,6 +13698,8 @@ type PutServiceDeploymentData = {
13477
13698
  /** Ephemeral storage per container in MB Example: 1024 */
13478
13699
  'storageSize'?: number;
13479
13700
  };
13701
+ /** shm size per container in MB */
13702
+ 'shmSize'?: number;
13480
13703
  };
13481
13704
  'strategy'?: {
13482
13705
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13522,6 +13745,8 @@ type PutServiceDeploymentData = {
13522
13745
  /** Ephemeral storage per container in MB Example: 1024 */
13523
13746
  'storageSize'?: number;
13524
13747
  };
13748
+ /** shm size per container in MB */
13749
+ 'shmSize'?: number;
13525
13750
  };
13526
13751
  'strategy'?: {
13527
13752
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13563,6 +13788,8 @@ type PutServiceDeploymentData = {
13563
13788
  /** Ephemeral storage per container in MB Example: 1024 */
13564
13789
  'storageSize'?: number;
13565
13790
  };
13791
+ /** shm size per container in MB */
13792
+ 'shmSize'?: number;
13566
13793
  };
13567
13794
  'strategy'?: {
13568
13795
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13803,6 +14030,8 @@ type PatchServiceDeploymentResult = {
13803
14030
  /** Ephemeral storage per container in MB Example: 1024 */
13804
14031
  'storageSize'?: number;
13805
14032
  };
14033
+ /** shm size per container in MB */
14034
+ 'shmSize'?: number;
13806
14035
  };
13807
14036
  'strategy'?: {
13808
14037
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13903,6 +14132,8 @@ type PatchServiceDeploymentData = {
13903
14132
  /** Ephemeral storage per container in MB Example: 1024 */
13904
14133
  'storageSize'?: number;
13905
14134
  };
14135
+ /** shm size per container in MB */
14136
+ 'shmSize'?: number;
13906
14137
  };
13907
14138
  'strategy'?: {
13908
14139
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13948,6 +14179,8 @@ type PatchServiceDeploymentData = {
13948
14179
  /** Ephemeral storage per container in MB Example: 1024 */
13949
14180
  'storageSize'?: number;
13950
14181
  };
14182
+ /** shm size per container in MB */
14183
+ 'shmSize'?: number;
13951
14184
  };
13952
14185
  'strategy'?: {
13953
14186
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13989,6 +14222,8 @@ type PatchServiceDeploymentData = {
13989
14222
  /** Ephemeral storage per container in MB Example: 1024 */
13990
14223
  'storageSize'?: number;
13991
14224
  };
14225
+ /** shm size per container in MB */
14226
+ 'shmSize'?: number;
13992
14227
  };
13993
14228
  'strategy'?: {
13994
14229
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -15536,6 +15771,8 @@ type ScaleServiceData = {
15536
15771
  /** Ephemeral storage per container in MB Example: 1024 */
15537
15772
  'storageSize'?: number;
15538
15773
  };
15774
+ /** shm size per container in MB */
15775
+ 'shmSize'?: number;
15539
15776
  };
15540
15777
  };
15541
15778
  /** Modifies the scaling settings for the given service. */
@@ -17055,6 +17292,12 @@ declare class ApiClient {
17055
17292
  volume: DeleteVolumeCall;
17056
17293
  template: DeleteTemplateCall;
17057
17294
  };
17295
+ import: {
17296
+ domainCertificate: ImportDomaincertificateCall;
17297
+ addon: {
17298
+ backup: ImportAddonBackupCall;
17299
+ };
17300
+ };
17058
17301
  add: {
17059
17302
  domain: {
17060
17303
  subdomain: AddDomainSubdomainCall;
@@ -17151,11 +17394,6 @@ declare class ApiClient {
17151
17394
  backup: RetainAddonBackupCall;
17152
17395
  };
17153
17396
  };
17154
- import: {
17155
- addon: {
17156
- backup: ImportAddonBackupCall;
17157
- };
17158
- };
17159
17397
  start: {
17160
17398
  addon: {
17161
17399
  pitr: StartAddonPitrCall;
@@ -17387,6 +17625,12 @@ declare class ApiClient {
17387
17625
  volume: DeleteVolumeEndpoint;
17388
17626
  template: DeleteTemplateEndpoint;
17389
17627
  };
17628
+ import: {
17629
+ domainCertificate: ImportDomaincertificateEndpoint;
17630
+ addon: {
17631
+ backup: ImportAddonBackupEndpoint;
17632
+ };
17633
+ };
17390
17634
  add: {
17391
17635
  domain: {
17392
17636
  subdomain: AddDomainSubdomainEndpoint;
@@ -17483,11 +17727,6 @@ declare class ApiClient {
17483
17727
  backup: RetainAddonBackupEndpoint;
17484
17728
  };
17485
17729
  };
17486
- import: {
17487
- addon: {
17488
- backup: ImportAddonBackupEndpoint;
17489
- };
17490
- };
17491
17730
  start: {
17492
17731
  addon: {
17493
17732
  pitr: StartAddonPitrEndpoint;
@@ -17534,4 +17773,4 @@ type ApiClientOpts = {
17534
17773
  customUserAgent?: string;
17535
17774
  };
17536
17775
 
17537
- 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 };