@northflank/js-client 0.7.13 → 0.7.15

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.
@@ -88,7 +88,7 @@ declare class ApiClientFileContextProvider extends ApiClientContextProvider {
88
88
  constructor(configPath?: string);
89
89
  loadContextWrapper(): ApiClientContextWrapper;
90
90
  protected writeContext(context: ApiClientContextWrapper): Promise<void>;
91
- assertDir: (path: string) => Promise<string | undefined>;
91
+ assertDir: (path: string) => Promise<void>;
92
92
  assertConfigDir(): Promise<void>;
93
93
  getInfo(): string;
94
94
  }
@@ -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;
@@ -911,7 +925,7 @@ type MetricValue = {
911
925
  volumeId?: string;
912
926
  };
913
927
  data: {
914
- value: string;
928
+ value: string | number;
915
929
  ts: Date;
916
930
  }[];
917
931
  };
@@ -1430,6 +1444,18 @@ type ListCloudClustersResult = {
1430
1444
  'min'?: number;
1431
1445
  'max'?: number;
1432
1446
  };
1447
+ 'computeResources'?: {
1448
+ 'gpu'?: {
1449
+ 'mig'?: {
1450
+ 'enabled'?: boolean;
1451
+ 'partitions'?: string[];
1452
+ };
1453
+ 'timeslicing'?: {
1454
+ 'enabled'?: boolean;
1455
+ 'numSlices'?: number;
1456
+ };
1457
+ };
1458
+ };
1433
1459
  /** Configures node pool with preemptible / spot instances if enabled. */
1434
1460
  'preemptible'?: boolean;
1435
1461
  /** The disk type to use. */
@@ -1501,6 +1527,18 @@ type CreateCloudClusterResult = {
1501
1527
  'min'?: number;
1502
1528
  'max'?: number;
1503
1529
  };
1530
+ 'computeResources'?: {
1531
+ 'gpu'?: {
1532
+ 'mig'?: {
1533
+ 'enabled'?: boolean;
1534
+ 'partitions'?: string[];
1535
+ };
1536
+ 'timeslicing'?: {
1537
+ 'enabled'?: boolean;
1538
+ 'numSlices'?: number;
1539
+ };
1540
+ };
1541
+ };
1504
1542
  /** Configures node pool with preemptible / spot instances if enabled. */
1505
1543
  'preemptible'?: boolean;
1506
1544
  /** The disk type to use. */
@@ -1538,7 +1576,7 @@ type CreateCloudClusterData = {
1538
1576
  /** The description of the cluster. Example: "This is a new cluster." */
1539
1577
  'description'?: string;
1540
1578
  /** Cloud provider to be used for the selected resource Example: "gcp" */
1541
- 'provider': 'gcp' | 'aws' | 'azure' | 'do';
1579
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1542
1580
  /** Region of the cluster. Example: "europe-west2" */
1543
1581
  'region': string;
1544
1582
  /** Kubernetes version of the cluster. Example: "1.23.8" */
@@ -1568,6 +1606,18 @@ type CreateCloudClusterData = {
1568
1606
  'min'?: number;
1569
1607
  'max'?: number;
1570
1608
  };
1609
+ 'computeResources'?: {
1610
+ 'gpu'?: {
1611
+ 'mig'?: {
1612
+ 'enabled'?: boolean;
1613
+ 'partitions'?: string[];
1614
+ };
1615
+ 'timeslicing'?: {
1616
+ 'enabled'?: boolean;
1617
+ 'numSlices'?: number;
1618
+ };
1619
+ };
1620
+ };
1571
1621
  /** Configures node pool with preemptible / spot instances if enabled. */
1572
1622
  'preemptible'?: boolean;
1573
1623
  /** The disk type to use. */
@@ -1581,7 +1631,7 @@ type CreateCloudClusterData = {
1581
1631
  /** Set of label keys and values that can be used to determine scheduling via resource tags. */
1582
1632
  'labels'?: any;
1583
1633
  }[];
1584
- 'settings': {
1634
+ 'settings'?: {
1585
1635
  'builds'?: {
1586
1636
  'mode'?: 'paas' | 'internal' | 'build-cluster';
1587
1637
  /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
@@ -1610,6 +1660,11 @@ type CreateCloudClusterData = {
1610
1660
  /** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
1611
1661
  'projectId': string;
1612
1662
  };
1663
+ /** AWS specific data. Required when `provider` is `aws`. */
1664
+ 'aws'?: {
1665
+ /** List of subnets the cluster should be created for. At least 2 must be specified. */
1666
+ 'subnets': string;
1667
+ };
1613
1668
  };
1614
1669
  /** Creates a new cluster. */
1615
1670
  declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClusterRequest, CreateCloudClusterResult> {
@@ -1642,6 +1697,18 @@ type GetCloudClusterResult = {
1642
1697
  'min'?: number;
1643
1698
  'max'?: number;
1644
1699
  };
1700
+ 'computeResources'?: {
1701
+ 'gpu'?: {
1702
+ 'mig'?: {
1703
+ 'enabled'?: boolean;
1704
+ 'partitions'?: string[];
1705
+ };
1706
+ 'timeslicing'?: {
1707
+ 'enabled'?: boolean;
1708
+ 'numSlices'?: number;
1709
+ };
1710
+ };
1711
+ };
1645
1712
  /** Configures node pool with preemptible / spot instances if enabled. */
1646
1713
  'preemptible'?: boolean;
1647
1714
  /** The disk type to use. */
@@ -1707,6 +1774,18 @@ type UpdateCloudClusterResult = {
1707
1774
  'min'?: number;
1708
1775
  'max'?: number;
1709
1776
  };
1777
+ 'computeResources'?: {
1778
+ 'gpu'?: {
1779
+ 'mig'?: {
1780
+ 'enabled'?: boolean;
1781
+ 'partitions'?: string[];
1782
+ };
1783
+ 'timeslicing'?: {
1784
+ 'enabled'?: boolean;
1785
+ 'numSlices'?: number;
1786
+ };
1787
+ };
1788
+ };
1710
1789
  /** Configures node pool with preemptible / spot instances if enabled. */
1711
1790
  'preemptible'?: boolean;
1712
1791
  /** The disk type to use. */
@@ -1756,6 +1835,18 @@ type UpdateCloudClusterData = {
1756
1835
  'min'?: number;
1757
1836
  'max'?: number;
1758
1837
  };
1838
+ 'computeResources'?: {
1839
+ 'gpu'?: {
1840
+ 'mig'?: {
1841
+ 'enabled'?: boolean;
1842
+ 'partitions'?: string[];
1843
+ };
1844
+ 'timeslicing'?: {
1845
+ 'enabled'?: boolean;
1846
+ 'numSlices'?: number;
1847
+ };
1848
+ };
1849
+ };
1759
1850
  /** Configures node pool with preemptible / spot instances if enabled. */
1760
1851
  'preemptible'?: boolean;
1761
1852
  /** The disk type to use. */
@@ -1884,7 +1975,7 @@ type CreateCloudDockerregistryData = {
1884
1975
  /** The description of the integration. Example: "This is a new cloud provider integration." */
1885
1976
  'description'?: string;
1886
1977
  /** Cloud provider to be used for the selected resource */
1887
- 'provider': 'gcp' | 'aws' | 'azure' | 'do';
1978
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1888
1979
  'region': string;
1889
1980
  /** Existing integration to use for this registry. Example: "gcp-integration" */
1890
1981
  'integrationId'?: string;
@@ -2014,7 +2105,7 @@ type CreateCloudIntegrationData = {
2014
2105
  /** The description of the integration. Example: "This is a new cloud provider integration." */
2015
2106
  'description'?: string;
2016
2107
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2017
- 'provider': 'gcp' | 'aws' | 'azure' | 'do';
2108
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2018
2109
  /** The type of provider integration. Example: "cluster" */
2019
2110
  'type'?: 'cluster' | 'domain' | 'registry' | 'cdn';
2020
2111
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
@@ -2164,6 +2255,8 @@ type ListCloudNodetypesResult = {
2164
2255
  /** Amount of memory capacity in GB of this node type Example: 32 */
2165
2256
  'memory'?: number;
2166
2257
  };
2258
+ /** Family of the node type Example: "N" */
2259
+ 'family': string;
2167
2260
  /** Processor family of the node type Example: "intel" */
2168
2261
  'processorFamily': string;
2169
2262
  /** Workload this node type is optimized for Example: "general-purpose" */
@@ -2185,6 +2278,12 @@ type ListCloudNodetypesOptions = {
2185
2278
  'provider'?: string;
2186
2279
  /** If provided, only returns items available in this region. */
2187
2280
  'region'?: string;
2281
+ /** If provided, only returns items of this family. */
2282
+ 'family'?: string;
2283
+ /** If provided, only returns items with a generation age less than or equal to the number given. */
2284
+ 'maxGenerationAge'?: number;
2285
+ /** If true, only returns items with GPUs. If false, only returns items without GPUs. */
2286
+ 'hasGpu'?: boolean;
2188
2287
  };
2189
2288
  /** Lists supported cloud provider node types */
2190
2289
  declare class ListCloudNodetypesEndpoint extends GetApiEndpoint<ListCloudNodetypesRequest, ListCloudNodetypesResult> {
@@ -2338,7 +2437,9 @@ type CreateDomainData = {
2338
2437
  'certificateInput'?: {
2339
2438
  'is'?: any;
2340
2439
  'then': {
2440
+ /** Certificate private key. */
2341
2441
  'privateKey': string;
2442
+ /** Certificate chain. May consist of one or more certificates. */
2342
2443
  'certificateChain': string;
2343
2444
  };
2344
2445
  };
@@ -2424,6 +2525,33 @@ declare class DeleteDomainEndpoint extends DeleteApiEndpoint<DeleteDomainRequest
2424
2525
  body: () => undefined;
2425
2526
  }
2426
2527
 
2528
+ type ImportDomaincertificateResult = any | any;
2529
+ type ImportDomaincertificateCall = (opts: ImportDomaincertificateRequest) => Promise<ApiCallResponse<ImportDomaincertificateResult>>;
2530
+ type ImportDomaincertificateRequest = {
2531
+ parameters: ImportDomaincertificateParameters;
2532
+ data: ImportDomaincertificateData;
2533
+ };
2534
+ type ImportDomaincertificateParameters = {
2535
+ /** Name of the domain */ 'domain': string;
2536
+ };
2537
+ type ImportDomaincertificateData = {
2538
+ /** Certificate to import. */
2539
+ 'certificate': {
2540
+ /** Certificate private key. */
2541
+ 'privateKey': string;
2542
+ /** Certificate chain. May consist of one or more certificates. */
2543
+ 'certificateChain': string;
2544
+ };
2545
+ };
2546
+ /** Import a certificate for the domain */
2547
+ declare class ImportDomaincertificateEndpoint extends PostApiEndpoint<ImportDomaincertificateRequest, ImportDomaincertificateResult> {
2548
+ description: string;
2549
+ withAuth: boolean;
2550
+ requiredPermissions: string;
2551
+ endpointUrl: (opts: ImportDomaincertificateRequest) => string;
2552
+ body: (payload: ImportDomaincertificateRequest) => string;
2553
+ }
2554
+
2427
2555
  type AddDomainSubdomainResult = {
2428
2556
  /** The record type to use for the DNS record to verify the subdomain - always CNAME for subdomains. Example: "CNAME" */
2429
2557
  'recordType': string;
@@ -2528,7 +2656,7 @@ type AssignSubdomainServiceData = {
2528
2656
  'serviceId': string;
2529
2657
  /** The ID of the project the service belongs to. Example: "default-project" */
2530
2658
  'projectId': string;
2531
- /** The name of the port that will be assigned to the subdomain. Example: "port-1" */
2659
+ /** The name of the port that will be assigned to the subdomain. Example: "p01" */
2532
2660
  'portName': string;
2533
2661
  };
2534
2662
  /** Assigns a service port to the given subdomain */
@@ -2595,8 +2723,46 @@ type EnableSubdomainCdnParameters = {
2595
2723
  'subdomain': string;
2596
2724
  };
2597
2725
  type EnableSubdomainCdnData = {
2598
- /** Provider for which a CDN on the subdomain should be enabled. Example: "cloudfront" */
2726
+ /** Provider for which a CDN on the subdomain should be enabled. Example: "fastly" */
2599
2727
  'provider': string;
2728
+ 'options'?: {
2729
+ 'service'?: {
2730
+ 'forceTlsEnableHsts'?: boolean;
2731
+ 'hstsDuration'?: number;
2732
+ 'staleIfError'?: boolean;
2733
+ 'staleIfErrorTtl'?: number;
2734
+ 'defaultTtl'?: number;
2735
+ };
2736
+ 'logging'?: {
2737
+ 'enabled'?: boolean;
2738
+ };
2739
+ 'http3'?: {
2740
+ 'enabled'?: boolean;
2741
+ };
2742
+ 'websockets'?: {
2743
+ 'enabled'?: boolean;
2744
+ };
2745
+ 'compression'?: {
2746
+ 'enabled'?: boolean;
2747
+ 'mode'?: 'gzip' | 'brotli';
2748
+ };
2749
+ 'vclSnippets'?: {
2750
+ 'id'?: string;
2751
+ 'name': string;
2752
+ 'type': 'init' | 'recv' | 'hash' | 'hit' | 'miss' | 'pass' | 'fetch' | 'error' | 'deliver' | 'log' | 'none';
2753
+ 'dynamic': '0' | '1';
2754
+ 'priority': number;
2755
+ 'content': string;
2756
+ }[];
2757
+ 'cacheSettings'?: {
2758
+ 'id'?: string;
2759
+ 'name': string;
2760
+ 'action'?: 'pass' | 'cache' | 'restart';
2761
+ 'cacheCondition'?: string;
2762
+ 'staleTtl': number;
2763
+ 'ttl': number;
2764
+ }[];
2765
+ } | any;
2600
2766
  };
2601
2767
  /** Enables a CDN integration on the given subdomain */
2602
2768
  declare class EnableSubdomainCdnEndpoint extends PostApiEndpoint<EnableSubdomainCdnRequest, EnableSubdomainCdnResult> {
@@ -2654,12 +2820,22 @@ type ListLogsinksResult = {
2654
2820
  'description'?: string;
2655
2821
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2656
2822
  'restricted': boolean;
2657
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2658
- 'useCustomLabels'?: boolean;
2659
2823
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2660
2824
  'projects': string[];
2825
+ /** Current status of the log sink */
2826
+ 'status': 'paused' | 'running' | 'failing' | 'creating';
2827
+ 'options'?: {
2828
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2829
+ 'useCustomLabels'?: boolean;
2830
+ /** Forward CDN logs from your workloads Example: true */
2831
+ 'forwardCdnLogs'?: boolean;
2832
+ /** Forward ingress logs from your workloads Example: true */
2833
+ 'forwardIngressLogs'?: boolean;
2834
+ /** Forward mesh logs from your workloads Example: true */
2835
+ 'forwardMeshLogs'?: boolean;
2836
+ };
2661
2837
  /** The type of the log sink. Example: "loki" */
2662
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
2838
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
2663
2839
  /** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
2664
2840
  'createdAt': string;
2665
2841
  /** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
@@ -2702,10 +2878,6 @@ type CreateLogsinkData = {
2702
2878
  'description'?: string;
2703
2879
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2704
2880
  'restricted'?: boolean;
2705
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2706
- 'useCustomLabels'?: boolean;
2707
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2708
- 'forwardAccessLogs'?: boolean;
2709
2881
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2710
2882
  'projects'?: string[];
2711
2883
  /** The type of the log sink. Example: "loki" */
@@ -2736,10 +2908,6 @@ type CreateLogsinkData = {
2736
2908
  'description'?: string;
2737
2909
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2738
2910
  'restricted'?: boolean;
2739
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2740
- 'useCustomLabels'?: boolean;
2741
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2742
- 'forwardAccessLogs'?: boolean;
2743
2911
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2744
2912
  'projects'?: string[];
2745
2913
  /** The type of the log sink. Example: "datadog_logs" */
@@ -2758,10 +2926,6 @@ type CreateLogsinkData = {
2758
2926
  'description'?: string;
2759
2927
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2760
2928
  'restricted'?: boolean;
2761
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2762
- 'useCustomLabels'?: boolean;
2763
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2764
- 'forwardAccessLogs'?: boolean;
2765
2929
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2766
2930
  'projects'?: string[];
2767
2931
  /** The type of the log sink. Example: "papertrail" */
@@ -2789,10 +2953,6 @@ type CreateLogsinkData = {
2789
2953
  'description'?: string;
2790
2954
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2791
2955
  'restricted'?: boolean;
2792
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2793
- 'useCustomLabels'?: boolean;
2794
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2795
- 'forwardAccessLogs'?: boolean;
2796
2956
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2797
2957
  'projects'?: string[];
2798
2958
  /** The type of the log sink. Example: "aws_s3" */
@@ -2822,10 +2982,6 @@ type CreateLogsinkData = {
2822
2982
  'description'?: string;
2823
2983
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2824
2984
  'restricted'?: boolean;
2825
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2826
- 'useCustomLabels'?: boolean;
2827
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2828
- 'forwardAccessLogs'?: boolean;
2829
2985
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2830
2986
  'projects'?: string[];
2831
2987
  /** The type of the log sink. Example: "http" */
@@ -2839,22 +2995,7 @@ type CreateLogsinkData = {
2839
2995
  /** Codec to encode logs in Example: "json" */
2840
2996
  'codec': 'text' | 'json';
2841
2997
  };
2842
- 'auth': {
2843
- /** No authentication strategy Example: "none" */
2844
- 'strategy': 'none';
2845
- } | {
2846
- /** Basic HTTP authentication strategy. Example: "basic" */
2847
- 'strategy': 'basic';
2848
- /** Username for basic http authentication. Example: "my-user" */
2849
- 'user'?: string;
2850
- /** Password for basic http authentication. Example: "secret-password" */
2851
- 'password': string;
2852
- } | {
2853
- /** Bearer token authentication strategy. Example: "bearer" */
2854
- 'strategy': 'bearer';
2855
- /** Token for bearer token authentication. Example: "my-token" */
2856
- 'token'?: string;
2857
- };
2998
+ 'auth': any;
2858
2999
  };
2859
3000
  } | {
2860
3001
  /** Name of the log sink. Example: "example-log-sink" */
@@ -2863,10 +3004,6 @@ type CreateLogsinkData = {
2863
3004
  'description'?: string;
2864
3005
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2865
3006
  'restricted'?: boolean;
2866
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2867
- 'useCustomLabels'?: boolean;
2868
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2869
- 'forwardAccessLogs'?: boolean;
2870
3007
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2871
3008
  'projects'?: string[];
2872
3009
  /** The type of the log sink. Example: "logdna" */
@@ -2883,17 +3020,13 @@ type CreateLogsinkData = {
2883
3020
  'description'?: string;
2884
3021
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2885
3022
  'restricted'?: boolean;
2886
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2887
- 'useCustomLabels'?: boolean;
2888
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2889
- 'forwardAccessLogs'?: boolean;
2890
3023
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2891
3024
  'projects'?: string[];
2892
- /** The type of the log sink. Example: "logtail" */
2893
- 'sinkType': 'logtail';
2894
- /** Details about the Logtail log sink. */
3025
+ /** The type of the log sink. Example: "betterStack" */
3026
+ 'sinkType': 'betterStack';
3027
+ /** Details about the Better Stack log sink. */
2895
3028
  'sinkData': {
2896
- /** Logtail Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
3029
+ /** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
2897
3030
  'token': string;
2898
3031
  };
2899
3032
  } | {
@@ -2903,10 +3036,6 @@ type CreateLogsinkData = {
2903
3036
  'description'?: string;
2904
3037
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2905
3038
  'restricted'?: boolean;
2906
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2907
- 'useCustomLabels'?: boolean;
2908
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2909
- 'forwardAccessLogs'?: boolean;
2910
3039
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2911
3040
  'projects'?: string[];
2912
3041
  /** The type of the log sink. Example: "honeycomb" */
@@ -2925,10 +3054,6 @@ type CreateLogsinkData = {
2925
3054
  'description'?: string;
2926
3055
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2927
3056
  'restricted'?: boolean;
2928
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2929
- 'useCustomLabels'?: boolean;
2930
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2931
- 'forwardAccessLogs'?: boolean;
2932
3057
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2933
3058
  'projects'?: string[];
2934
3059
  /** The type of the log sink. Example: "logzio" */
@@ -2947,10 +3072,6 @@ type CreateLogsinkData = {
2947
3072
  'description'?: string;
2948
3073
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2949
3074
  'restricted'?: boolean;
2950
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2951
- 'useCustomLabels'?: boolean;
2952
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2953
- 'forwardAccessLogs'?: boolean;
2954
3075
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2955
3076
  'projects'?: string[];
2956
3077
  /** The type of the log sink. Example: "axiom" */
@@ -2975,15 +3096,11 @@ type CreateLogsinkData = {
2975
3096
  'description'?: string;
2976
3097
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
2977
3098
  'restricted'?: boolean;
2978
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
2979
- 'useCustomLabels'?: boolean;
2980
- /** If `true` your network access logs will be forwarded with your workload logs Example: true */
2981
- 'forwardAccessLogs'?: boolean;
2982
3099
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
2983
3100
  'projects'?: string[];
2984
3101
  /** The type of the log sink. Example: "newRelic" */
2985
3102
  'sinkType': 'newRelic';
2986
- /** Details about the undefined log sink. */
3103
+ /** Details about the New Relic log sink. */
2987
3104
  'sinkData': {
2988
3105
  /** New Relic Account ID Example: "b1dd3feb585asd1a3e9" */
2989
3106
  'accountId': string;
@@ -3009,12 +3126,22 @@ type GetLogsinkResult = {
3009
3126
  'description'?: string;
3010
3127
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
3011
3128
  'restricted': boolean;
3012
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
3013
- 'useCustomLabels'?: boolean;
3014
3129
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3015
3130
  'projects': string[];
3131
+ /** Current status of the log sink */
3132
+ 'status': 'paused' | 'running' | 'failing' | 'creating';
3133
+ 'options'?: {
3134
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
3135
+ 'useCustomLabels'?: boolean;
3136
+ /** Forward CDN logs from your workloads Example: true */
3137
+ 'forwardCdnLogs'?: boolean;
3138
+ /** Forward ingress logs from your workloads Example: true */
3139
+ 'forwardIngressLogs'?: boolean;
3140
+ /** Forward mesh logs from your workloads Example: true */
3141
+ 'forwardMeshLogs'?: boolean;
3142
+ };
3016
3143
  /** The type of the log sink. Example: "loki" */
3017
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
3144
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
3018
3145
  /** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
3019
3146
  'createdAt': string;
3020
3147
  /** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
@@ -3050,22 +3177,7 @@ type GetLogsinkResult = {
3050
3177
  /** Codec to encode logs in Example: "json" */
3051
3178
  'codec': 'text' | 'json';
3052
3179
  };
3053
- 'auth': {
3054
- /** No authentication strategy Example: "none" */
3055
- 'strategy': 'none';
3056
- } | {
3057
- /** Basic HTTP authentication strategy. Example: "basic" */
3058
- 'strategy': 'basic';
3059
- /** Username for basic http authentication. Example: "my-user" */
3060
- 'user'?: string;
3061
- /** Password for basic http authentication. Example: "secret-password" */
3062
- 'password': string;
3063
- } | {
3064
- /** Bearer token authentication strategy. Example: "bearer" */
3065
- 'strategy': 'bearer';
3066
- /** Token for bearer token authentication. Example: "my-token" */
3067
- 'token'?: string;
3068
- };
3180
+ 'auth': any;
3069
3181
  } | {
3070
3182
  /** Endpoint for the AWS S3 or compatible API bucket. Example: "my.bucket.com" */
3071
3183
  'endpoint': string;
@@ -3083,7 +3195,7 @@ type GetLogsinkResult = {
3083
3195
  /** Log file compression method. Example: "gzip" */
3084
3196
  'compression': 'gzip' | 'none';
3085
3197
  } | {
3086
- /** Logtail Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
3198
+ /** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
3087
3199
  'token': string;
3088
3200
  } | {
3089
3201
  /** Ingestion Key Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
@@ -3185,10 +3297,18 @@ type UpdateLogsinkParameters = {
3185
3297
  type UpdateLogsinkData = {
3186
3298
  /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
3187
3299
  'restricted'?: boolean;
3188
- /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
3189
- 'useCustomLabels'?: boolean;
3190
3300
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3191
3301
  'projects'?: string[];
3302
+ 'options'?: {
3303
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
3304
+ 'useCustomLabels'?: boolean;
3305
+ /** Forward CDN logs from your workloads Example: true */
3306
+ 'forwardCdnLogs'?: boolean;
3307
+ /** Forward ingress logs from your workloads Example: true */
3308
+ 'forwardIngressLogs'?: boolean;
3309
+ /** Forward mesh logs from your workloads Example: true */
3310
+ 'forwardMeshLogs'?: boolean;
3311
+ };
3192
3312
  /** Data about the log sink. */
3193
3313
  'sinkData'?: {
3194
3314
  /** The endpoint of the Loki log sink. Example: "https://logs.example.com" */
@@ -3215,22 +3335,7 @@ type UpdateLogsinkData = {
3215
3335
  /** Codec to encode logs in Example: "json" */
3216
3336
  'codec': 'text' | 'json';
3217
3337
  };
3218
- 'auth': {
3219
- /** No authentication strategy Example: "none" */
3220
- 'strategy': 'none';
3221
- } | {
3222
- /** Basic HTTP authentication strategy. Example: "basic" */
3223
- 'strategy': 'basic';
3224
- /** Username for basic http authentication. Example: "my-user" */
3225
- 'user'?: string;
3226
- /** Password for basic http authentication. Example: "secret-password" */
3227
- 'password': string;
3228
- } | {
3229
- /** Bearer token authentication strategy. Example: "bearer" */
3230
- 'strategy': 'bearer';
3231
- /** Token for bearer token authentication. Example: "my-token" */
3232
- 'token'?: string;
3233
- };
3338
+ 'auth': any;
3234
3339
  } | {
3235
3340
  /** Endpoint for the AWS S3 or compatible API bucket. Example: "my.bucket.com" */
3236
3341
  'endpoint': string;
@@ -3248,7 +3353,7 @@ type UpdateLogsinkData = {
3248
3353
  /** Log file compression method. Example: "gzip" */
3249
3354
  'compression': 'gzip' | 'none';
3250
3355
  } | {
3251
- /** Logtail Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
3356
+ /** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
3252
3357
  'token': string;
3253
3358
  } | {
3254
3359
  /** Ingestion Key Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
@@ -3412,6 +3517,7 @@ type CreateNotificationResult = {
3412
3517
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3413
3518
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3414
3519
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3520
+ 'trigger:infrastructure:cluster:controller'?: boolean;
3415
3521
  'trigger:infrastructure:cluster:scheduling'?: boolean;
3416
3522
  };
3417
3523
  };
@@ -3494,6 +3600,7 @@ type CreateNotificationData = {
3494
3600
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3495
3601
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3496
3602
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3603
+ 'trigger:infrastructure:cluster:controller'?: boolean;
3497
3604
  'trigger:infrastructure:cluster:scheduling'?: boolean;
3498
3605
  };
3499
3606
  };
@@ -3591,6 +3698,7 @@ type GetNotificationResult = {
3591
3698
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3592
3699
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3593
3700
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3701
+ 'trigger:infrastructure:cluster:controller'?: boolean;
3594
3702
  'trigger:infrastructure:cluster:scheduling'?: boolean;
3595
3703
  };
3596
3704
  };
@@ -3688,6 +3796,7 @@ type UpdateNotificationData = {
3688
3796
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
3689
3797
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
3690
3798
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
3799
+ 'trigger:infrastructure:cluster:controller'?: boolean;
3691
3800
  'trigger:infrastructure:cluster:scheduling'?: boolean;
3692
3801
  };
3693
3802
  };
@@ -4318,6 +4427,24 @@ type PatchProjectData = {
4318
4427
  'description'?: string;
4319
4428
  /** The color of the project in the Northflank App. Example: "#EF233C" */
4320
4429
  'color'?: string;
4430
+ 'networking'?: {
4431
+ /** Projects from which ingress request should be permitted. */
4432
+ 'allowedIngressProjects'?: string[];
4433
+ 'tailscale'?: {
4434
+ /** Whether or not to inject a tailscale sidecar for this project's resources */
4435
+ 'enabled'?: boolean;
4436
+ 'restrictions'?: {
4437
+ /** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
4438
+ 'enabled'?: boolean;
4439
+ /** The tags which determine whether tailscale sidecar should be added */
4440
+ 'tags'?: string[];
4441
+ };
4442
+ 'secrets'?: {
4443
+ /** tailscale auth key which is required for enabling tailscale */
4444
+ 'authKey'?: string;
4445
+ };
4446
+ };
4447
+ };
4321
4448
  };
4322
4449
  /** Updates a project. */
4323
4450
  declare class PatchProjectEndpoint extends PatchApiEndpoint<PatchProjectRequest, PatchProjectResult> {
@@ -4429,7 +4556,7 @@ type CreateAddonResult = {
4429
4556
  'description'?: string;
4430
4557
  /** An array of previously defined tags to help identify and group the resource. */
4431
4558
  'tags'?: string[];
4432
- /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgres" */
4559
+ /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
4433
4560
  'type': string;
4434
4561
  /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
4435
4562
  'version': string;
@@ -4468,6 +4595,10 @@ type CreateAddonResult = {
4468
4595
  'typeSpecificSettings'?: {
4469
4596
  /** Redis only: Key eviction policy at memory pressure. */
4470
4597
  'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
4598
+ /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
4599
+ 'redisSentinelEnabled'?: boolean;
4600
+ /** PostgreSQL only: Configure wal_level setting. */
4601
+ 'postgresqlWalLevel'?: 'replica' | 'logical';
4471
4602
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4472
4603
  'postgresqlConnectionPoolerEnabled'?: boolean;
4473
4604
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -4531,7 +4662,7 @@ type CreateAddonData = {
4531
4662
  'description'?: string;
4532
4663
  /** An array of previously defined tags to help identify and group the resource. */
4533
4664
  'tags'?: string[];
4534
- /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgres" */
4665
+ /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
4535
4666
  'type': string;
4536
4667
  /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
4537
4668
  'version': string;
@@ -4570,6 +4701,10 @@ type CreateAddonData = {
4570
4701
  'typeSpecificSettings'?: {
4571
4702
  /** Redis only: Key eviction policy at memory pressure. */
4572
4703
  'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
4704
+ /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
4705
+ 'redisSentinelEnabled'?: boolean;
4706
+ /** PostgreSQL only: Configure wal_level setting. */
4707
+ 'postgresqlWalLevel'?: 'replica' | 'logical';
4573
4708
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4574
4709
  'postgresqlConnectionPoolerEnabled'?: boolean;
4575
4710
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -4619,7 +4754,7 @@ type PutAddonResult = {
4619
4754
  'description'?: string;
4620
4755
  /** An array of previously defined tags to help identify and group the resource. */
4621
4756
  'tags'?: string[];
4622
- /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgres" */
4757
+ /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
4623
4758
  'type': string;
4624
4759
  /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
4625
4760
  'version': string;
@@ -4658,6 +4793,10 @@ type PutAddonResult = {
4658
4793
  'typeSpecificSettings'?: {
4659
4794
  /** Redis only: Key eviction policy at memory pressure. */
4660
4795
  'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
4796
+ /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
4797
+ 'redisSentinelEnabled'?: boolean;
4798
+ /** PostgreSQL only: Configure wal_level setting. */
4799
+ 'postgresqlWalLevel'?: 'replica' | 'logical';
4661
4800
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4662
4801
  'postgresqlConnectionPoolerEnabled'?: boolean;
4663
4802
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -4721,7 +4860,7 @@ type PutAddonData = {
4721
4860
  'description'?: string;
4722
4861
  /** An array of previously defined tags to help identify and group the resource. */
4723
4862
  'tags'?: string[];
4724
- /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgres" */
4863
+ /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
4725
4864
  'type': string;
4726
4865
  /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. `latest` and `-latest` will only be applied on addon creation. Example: "latest" */
4727
4866
  'version': string;
@@ -4760,6 +4899,10 @@ type PutAddonData = {
4760
4899
  'typeSpecificSettings'?: {
4761
4900
  /** Redis only: Key eviction policy at memory pressure. */
4762
4901
  'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
4902
+ /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
4903
+ 'redisSentinelEnabled'?: boolean;
4904
+ /** PostgreSQL only: Configure wal_level setting. */
4905
+ 'postgresqlWalLevel'?: 'replica' | 'logical';
4763
4906
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4764
4907
  'postgresqlConnectionPoolerEnabled'?: boolean;
4765
4908
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -4891,7 +5034,7 @@ type PatchAddonResult = {
4891
5034
  'description'?: string;
4892
5035
  /** An array of previously defined tags to help identify and group the resource. */
4893
5036
  'tags'?: string[];
4894
- /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgres" */
5037
+ /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
4895
5038
  'type': string;
4896
5039
  /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
4897
5040
  'version': string;
@@ -4930,6 +5073,10 @@ type PatchAddonResult = {
4930
5073
  'typeSpecificSettings'?: {
4931
5074
  /** Redis only: Key eviction policy at memory pressure. */
4932
5075
  'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
5076
+ /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
5077
+ 'redisSentinelEnabled'?: boolean;
5078
+ /** PostgreSQL only: Configure wal_level setting. */
5079
+ 'postgresqlWalLevel'?: 'replica' | 'logical';
4933
5080
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
4934
5081
  'postgresqlConnectionPoolerEnabled'?: boolean;
4935
5082
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -5019,6 +5166,10 @@ type PatchAddonData = {
5019
5166
  'typeSpecificSettings'?: {
5020
5167
  /** Redis only: Key eviction policy at memory pressure. */
5021
5168
  'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
5169
+ /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
5170
+ 'redisSentinelEnabled'?: boolean;
5171
+ /** PostgreSQL only: Configure wal_level setting. */
5172
+ 'postgresqlWalLevel'?: 'replica' | 'logical';
5022
5173
  /** PostgreSQL only: Run connection pooler in front of postgres instance. */
5023
5174
  'postgresqlConnectionPoolerEnabled'?: boolean;
5024
5175
  /** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
@@ -5028,10 +5179,6 @@ type PatchAddonData = {
5028
5179
  /** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
5029
5180
  'postgresqlReadConnectionPoolerReplicas'?: number;
5030
5181
  };
5031
- 'customCredentials'?: {
5032
- /** Custom database name. Not supported for all addon types. */
5033
- 'dbName'?: string;
5034
- };
5035
5182
  'backupSchedules'?: {
5036
5183
  /** Schedule for the backup. */
5037
5184
  'scheduling': {
@@ -6011,8 +6158,17 @@ type CreateJobCronResult = {
6011
6158
  /** An array of previously defined tags to help identify and group the resource. */
6012
6159
  'tags'?: string[];
6013
6160
  'billing': {
6161
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
6162
+ 'buildPlan'?: string;
6014
6163
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
6015
6164
  'deploymentPlan': string;
6165
+ 'gpu'?: {
6166
+ 'enabled'?: boolean;
6167
+ 'configuration'?: {
6168
+ 'gpuType': string;
6169
+ 'timesliced'?: boolean;
6170
+ };
6171
+ };
6016
6172
  };
6017
6173
  /** The number of attempts to rerun a job before it is marked as failed. */
6018
6174
  'backoffLimit': number;
@@ -6038,6 +6194,12 @@ type CreateJobCronResult = {
6038
6194
  'includeGitFolder'?: boolean;
6039
6195
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
6040
6196
  'fullGitClone'?: boolean;
6197
+ 'storage'?: {
6198
+ 'ephemeralStorage'?: {
6199
+ /** Ephemeral storage per build in MB Example: 16384 */
6200
+ 'storageSize'?: number;
6201
+ };
6202
+ };
6041
6203
  };
6042
6204
  /** An object containing the runtime environment to set for the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"variable1":"abcdef","variable2":"12345"} */
6043
6205
  'runtimeEnvironment'?: any;
@@ -6108,7 +6270,18 @@ type CreateJobCronResult = {
6108
6270
  /** Ephemeral storage per container in MB Example: 1024 */
6109
6271
  'storageSize'?: number;
6110
6272
  };
6273
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
6274
+ 'shmSize'?: number;
6275
+ };
6276
+ 'gpu'?: {
6277
+ 'enabled'?: boolean;
6278
+ 'configuration'?: {
6279
+ 'gpuType': string;
6280
+ 'timesliced'?: boolean;
6281
+ };
6111
6282
  };
6283
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
6284
+ 'gracePeriodSeconds'?: number;
6112
6285
  'vcs'?: {
6113
6286
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
6114
6287
  'projectUrl': string;
@@ -6143,6 +6316,12 @@ type CreateJobCronResult = {
6143
6316
  'imageUrl'?: string;
6144
6317
  };
6145
6318
  'buildSettings'?: {
6319
+ 'storage'?: {
6320
+ 'ephemeralStorage'?: {
6321
+ /** Ephemeral storage per build in MB Example: 16384 */
6322
+ 'storageSize'?: number;
6323
+ };
6324
+ };
6146
6325
  'dockerfile': {
6147
6326
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
6148
6327
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -6154,6 +6333,12 @@ type CreateJobCronResult = {
6154
6333
  'useCache'?: boolean;
6155
6334
  };
6156
6335
  } | {
6336
+ 'storage'?: {
6337
+ 'ephemeralStorage'?: {
6338
+ /** Ephemeral storage per build in MB Example: 16384 */
6339
+ 'storageSize'?: number;
6340
+ };
6341
+ };
6157
6342
  'buildpack': {
6158
6343
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
6159
6344
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -6201,8 +6386,17 @@ type CreateJobCronData = {
6201
6386
  /** An array of previously defined tags to help identify and group the resource. */
6202
6387
  'tags'?: string[];
6203
6388
  'billing': {
6389
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
6390
+ 'buildPlan'?: string;
6204
6391
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
6205
6392
  'deploymentPlan': string;
6393
+ 'gpu'?: {
6394
+ 'enabled'?: boolean;
6395
+ 'configuration'?: {
6396
+ 'gpuType': string;
6397
+ 'timesliced'?: boolean;
6398
+ };
6399
+ };
6206
6400
  };
6207
6401
  /** The number of attempts to rerun a job before it is marked as failed. */
6208
6402
  'backoffLimit': number;
@@ -6237,7 +6431,18 @@ type CreateJobCronData = {
6237
6431
  /** Ephemeral storage per container in MB Example: 1024 */
6238
6432
  'storageSize'?: number;
6239
6433
  };
6434
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
6435
+ 'shmSize'?: number;
6436
+ };
6437
+ 'gpu'?: {
6438
+ 'enabled'?: boolean;
6439
+ 'configuration'?: {
6440
+ 'gpuType': string;
6441
+ 'timesliced'?: boolean;
6442
+ };
6240
6443
  };
6444
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
6445
+ 'gracePeriodSeconds'?: number;
6241
6446
  'vcs': {
6242
6447
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
6243
6448
  'projectUrl': string;
@@ -6278,7 +6483,18 @@ type CreateJobCronData = {
6278
6483
  /** Ephemeral storage per container in MB Example: 1024 */
6279
6484
  'storageSize'?: number;
6280
6485
  };
6486
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
6487
+ 'shmSize'?: number;
6488
+ };
6489
+ 'gpu'?: {
6490
+ 'enabled'?: boolean;
6491
+ 'configuration'?: {
6492
+ 'gpuType': string;
6493
+ 'timesliced'?: boolean;
6494
+ };
6281
6495
  };
6496
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
6497
+ 'gracePeriodSeconds'?: number;
6282
6498
  'external': {
6283
6499
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
6284
6500
  'imagePath': string;
@@ -6311,7 +6527,18 @@ type CreateJobCronData = {
6311
6527
  /** Ephemeral storage per container in MB Example: 1024 */
6312
6528
  'storageSize'?: number;
6313
6529
  };
6530
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
6531
+ 'shmSize'?: number;
6532
+ };
6533
+ 'gpu'?: {
6534
+ 'enabled'?: boolean;
6535
+ 'configuration'?: {
6536
+ 'gpuType': string;
6537
+ 'timesliced'?: boolean;
6538
+ };
6314
6539
  };
6540
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
6541
+ 'gracePeriodSeconds'?: number;
6315
6542
  'internal': {
6316
6543
  /** ID of the build service to deploy Example: "example-build-service" */
6317
6544
  'id'?: string;
@@ -6341,8 +6568,20 @@ type CreateJobCronData = {
6341
6568
  'includeGitFolder'?: boolean;
6342
6569
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
6343
6570
  'fullGitClone'?: boolean;
6571
+ 'storage'?: {
6572
+ 'ephemeralStorage'?: {
6573
+ /** Ephemeral storage per build in MB Example: 16384 */
6574
+ 'storageSize'?: number;
6575
+ };
6576
+ };
6344
6577
  };
6345
6578
  'buildSettings'?: {
6579
+ 'storage'?: {
6580
+ 'ephemeralStorage'?: {
6581
+ /** Ephemeral storage per build in MB Example: 16384 */
6582
+ 'storageSize'?: number;
6583
+ };
6584
+ };
6346
6585
  'dockerfile': {
6347
6586
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
6348
6587
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -6354,6 +6593,12 @@ type CreateJobCronData = {
6354
6593
  'useCache'?: boolean;
6355
6594
  };
6356
6595
  } | {
6596
+ 'storage'?: {
6597
+ 'ephemeralStorage'?: {
6598
+ /** Ephemeral storage per build in MB Example: 16384 */
6599
+ 'storageSize'?: number;
6600
+ };
6601
+ };
6357
6602
  'buildpack': {
6358
6603
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
6359
6604
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -6420,8 +6665,17 @@ type PutJobCronResult = {
6420
6665
  /** An array of previously defined tags to help identify and group the resource. */
6421
6666
  'tags'?: string[];
6422
6667
  'billing': {
6668
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
6669
+ 'buildPlan'?: string;
6423
6670
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
6424
6671
  'deploymentPlan': string;
6672
+ 'gpu'?: {
6673
+ 'enabled'?: boolean;
6674
+ 'configuration'?: {
6675
+ 'gpuType': string;
6676
+ 'timesliced'?: boolean;
6677
+ };
6678
+ };
6425
6679
  };
6426
6680
  /** The number of attempts to rerun a job before it is marked as failed. */
6427
6681
  'backoffLimit': number;
@@ -6447,6 +6701,12 @@ type PutJobCronResult = {
6447
6701
  'includeGitFolder'?: boolean;
6448
6702
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
6449
6703
  'fullGitClone'?: boolean;
6704
+ 'storage'?: {
6705
+ 'ephemeralStorage'?: {
6706
+ /** Ephemeral storage per build in MB Example: 16384 */
6707
+ 'storageSize'?: number;
6708
+ };
6709
+ };
6450
6710
  };
6451
6711
  /** An object containing the runtime environment to set for the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"variable1":"abcdef","variable2":"12345"} */
6452
6712
  'runtimeEnvironment'?: any;
@@ -6517,7 +6777,18 @@ type PutJobCronResult = {
6517
6777
  /** Ephemeral storage per container in MB Example: 1024 */
6518
6778
  'storageSize'?: number;
6519
6779
  };
6780
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
6781
+ 'shmSize'?: number;
6782
+ };
6783
+ 'gpu'?: {
6784
+ 'enabled'?: boolean;
6785
+ 'configuration'?: {
6786
+ 'gpuType': string;
6787
+ 'timesliced'?: boolean;
6788
+ };
6520
6789
  };
6790
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
6791
+ 'gracePeriodSeconds'?: number;
6521
6792
  'vcs'?: {
6522
6793
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
6523
6794
  'projectUrl': string;
@@ -6552,6 +6823,12 @@ type PutJobCronResult = {
6552
6823
  'imageUrl'?: string;
6553
6824
  };
6554
6825
  'buildSettings'?: {
6826
+ 'storage'?: {
6827
+ 'ephemeralStorage'?: {
6828
+ /** Ephemeral storage per build in MB Example: 16384 */
6829
+ 'storageSize'?: number;
6830
+ };
6831
+ };
6555
6832
  'dockerfile': {
6556
6833
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
6557
6834
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -6563,6 +6840,12 @@ type PutJobCronResult = {
6563
6840
  'useCache'?: boolean;
6564
6841
  };
6565
6842
  } | {
6843
+ 'storage'?: {
6844
+ 'ephemeralStorage'?: {
6845
+ /** Ephemeral storage per build in MB Example: 16384 */
6846
+ 'storageSize'?: number;
6847
+ };
6848
+ };
6566
6849
  'buildpack': {
6567
6850
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
6568
6851
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -6610,8 +6893,17 @@ type PutJobCronData = {
6610
6893
  /** An array of previously defined tags to help identify and group the resource. */
6611
6894
  'tags'?: string[];
6612
6895
  'billing': {
6896
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
6897
+ 'buildPlan'?: string;
6613
6898
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
6614
6899
  'deploymentPlan': string;
6900
+ 'gpu'?: {
6901
+ 'enabled'?: boolean;
6902
+ 'configuration'?: {
6903
+ 'gpuType': string;
6904
+ 'timesliced'?: boolean;
6905
+ };
6906
+ };
6615
6907
  };
6616
6908
  /** The number of attempts to rerun a job before it is marked as failed. */
6617
6909
  'backoffLimit': number;
@@ -6646,7 +6938,18 @@ type PutJobCronData = {
6646
6938
  /** Ephemeral storage per container in MB Example: 1024 */
6647
6939
  'storageSize'?: number;
6648
6940
  };
6941
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
6942
+ 'shmSize'?: number;
6943
+ };
6944
+ 'gpu'?: {
6945
+ 'enabled'?: boolean;
6946
+ 'configuration'?: {
6947
+ 'gpuType': string;
6948
+ 'timesliced'?: boolean;
6949
+ };
6649
6950
  };
6951
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
6952
+ 'gracePeriodSeconds'?: number;
6650
6953
  'vcs': {
6651
6954
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
6652
6955
  'projectUrl': string;
@@ -6687,7 +6990,18 @@ type PutJobCronData = {
6687
6990
  /** Ephemeral storage per container in MB Example: 1024 */
6688
6991
  'storageSize'?: number;
6689
6992
  };
6993
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
6994
+ 'shmSize'?: number;
6995
+ };
6996
+ 'gpu'?: {
6997
+ 'enabled'?: boolean;
6998
+ 'configuration'?: {
6999
+ 'gpuType': string;
7000
+ 'timesliced'?: boolean;
7001
+ };
6690
7002
  };
7003
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
7004
+ 'gracePeriodSeconds'?: number;
6691
7005
  'external': {
6692
7006
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
6693
7007
  'imagePath': string;
@@ -6720,7 +7034,18 @@ type PutJobCronData = {
6720
7034
  /** Ephemeral storage per container in MB Example: 1024 */
6721
7035
  'storageSize'?: number;
6722
7036
  };
7037
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
7038
+ 'shmSize'?: number;
7039
+ };
7040
+ 'gpu'?: {
7041
+ 'enabled'?: boolean;
7042
+ 'configuration'?: {
7043
+ 'gpuType': string;
7044
+ 'timesliced'?: boolean;
7045
+ };
6723
7046
  };
7047
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
7048
+ 'gracePeriodSeconds'?: number;
6724
7049
  'internal': {
6725
7050
  /** ID of the build service to deploy Example: "example-build-service" */
6726
7051
  'id'?: string;
@@ -6750,8 +7075,20 @@ type PutJobCronData = {
6750
7075
  'includeGitFolder'?: boolean;
6751
7076
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
6752
7077
  'fullGitClone'?: boolean;
7078
+ 'storage'?: {
7079
+ 'ephemeralStorage'?: {
7080
+ /** Ephemeral storage per build in MB Example: 16384 */
7081
+ 'storageSize'?: number;
7082
+ };
7083
+ };
6753
7084
  };
6754
7085
  'buildSettings'?: {
7086
+ 'storage'?: {
7087
+ 'ephemeralStorage'?: {
7088
+ /** Ephemeral storage per build in MB Example: 16384 */
7089
+ 'storageSize'?: number;
7090
+ };
7091
+ };
6755
7092
  'dockerfile': {
6756
7093
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
6757
7094
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -6763,6 +7100,12 @@ type PutJobCronData = {
6763
7100
  'useCache'?: boolean;
6764
7101
  };
6765
7102
  } | {
7103
+ 'storage'?: {
7104
+ 'ephemeralStorage'?: {
7105
+ /** Ephemeral storage per build in MB Example: 16384 */
7106
+ 'storageSize'?: number;
7107
+ };
7108
+ };
6766
7109
  'buildpack': {
6767
7110
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
6768
7111
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -6829,8 +7172,17 @@ type PatchJobCronResult = {
6829
7172
  /** An array of previously defined tags to help identify and group the resource. */
6830
7173
  'tags'?: string[];
6831
7174
  'billing': {
7175
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
7176
+ 'buildPlan'?: string;
6832
7177
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
6833
7178
  'deploymentPlan': string;
7179
+ 'gpu'?: {
7180
+ 'enabled'?: boolean;
7181
+ 'configuration'?: {
7182
+ 'gpuType': string;
7183
+ 'timesliced'?: boolean;
7184
+ };
7185
+ };
6834
7186
  };
6835
7187
  /** The number of attempts to rerun a job before it is marked as failed. */
6836
7188
  'backoffLimit': number;
@@ -6856,6 +7208,12 @@ type PatchJobCronResult = {
6856
7208
  'includeGitFolder'?: boolean;
6857
7209
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
6858
7210
  'fullGitClone'?: boolean;
7211
+ 'storage'?: {
7212
+ 'ephemeralStorage'?: {
7213
+ /** Ephemeral storage per build in MB Example: 16384 */
7214
+ 'storageSize'?: number;
7215
+ };
7216
+ };
6859
7217
  };
6860
7218
  /** An object containing the runtime environment to set for the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"variable1":"abcdef","variable2":"12345"} */
6861
7219
  'runtimeEnvironment'?: any;
@@ -6926,7 +7284,18 @@ type PatchJobCronResult = {
6926
7284
  /** Ephemeral storage per container in MB Example: 1024 */
6927
7285
  'storageSize'?: number;
6928
7286
  };
7287
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
7288
+ 'shmSize'?: number;
7289
+ };
7290
+ 'gpu'?: {
7291
+ 'enabled'?: boolean;
7292
+ 'configuration'?: {
7293
+ 'gpuType': string;
7294
+ 'timesliced'?: boolean;
7295
+ };
6929
7296
  };
7297
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
7298
+ 'gracePeriodSeconds'?: number;
6930
7299
  'vcs'?: {
6931
7300
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
6932
7301
  'projectUrl': string;
@@ -6961,6 +7330,12 @@ type PatchJobCronResult = {
6961
7330
  'imageUrl'?: string;
6962
7331
  };
6963
7332
  'buildSettings'?: {
7333
+ 'storage'?: {
7334
+ 'ephemeralStorage'?: {
7335
+ /** Ephemeral storage per build in MB Example: 16384 */
7336
+ 'storageSize'?: number;
7337
+ };
7338
+ };
6964
7339
  'dockerfile': {
6965
7340
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
6966
7341
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -6972,6 +7347,12 @@ type PatchJobCronResult = {
6972
7347
  'useCache'?: boolean;
6973
7348
  };
6974
7349
  } | {
7350
+ 'storage'?: {
7351
+ 'ephemeralStorage'?: {
7352
+ /** Ephemeral storage per build in MB Example: 16384 */
7353
+ 'storageSize'?: number;
7354
+ };
7355
+ };
6975
7356
  'buildpack': {
6976
7357
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
6977
7358
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -7019,8 +7400,17 @@ type PatchJobCronData = {
7019
7400
  /** An array of previously defined tags to help identify and group the resource. */
7020
7401
  'tags'?: string[];
7021
7402
  'billing'?: {
7403
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
7404
+ 'buildPlan'?: string;
7022
7405
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
7023
7406
  'deploymentPlan'?: string;
7407
+ 'gpu'?: {
7408
+ 'enabled'?: boolean;
7409
+ 'configuration'?: {
7410
+ 'gpuType'?: string;
7411
+ 'timesliced'?: boolean;
7412
+ };
7413
+ };
7024
7414
  };
7025
7415
  /** The number of attempts to rerun a job before it is marked as failed. */
7026
7416
  'backoffLimit'?: number;
@@ -7039,9 +7429,27 @@ type PatchJobCronData = {
7039
7429
  'ciIgnoreFlagsEnabled'?: boolean;
7040
7430
  /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
7041
7431
  'ciIgnoreFlags'?: string[];
7432
+ /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
7433
+ 'dockerfileTarget'?: string;
7042
7434
  'dockerCredentials'?: string[];
7435
+ /** Include .git folder inside the build context */
7436
+ 'includeGitFolder'?: boolean;
7437
+ /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
7438
+ 'fullGitClone'?: boolean;
7439
+ 'storage'?: {
7440
+ 'ephemeralStorage'?: {
7441
+ /** Ephemeral storage per build in MB Example: 16384 */
7442
+ 'storageSize'?: number;
7443
+ };
7444
+ };
7043
7445
  };
7044
7446
  'buildSettings'?: {
7447
+ 'storage'?: {
7448
+ 'ephemeralStorage'?: {
7449
+ /** Ephemeral storage per build in MB Example: 16384 */
7450
+ 'storageSize'?: number;
7451
+ };
7452
+ };
7045
7453
  'dockerfile'?: {
7046
7454
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
7047
7455
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -7116,8 +7524,17 @@ type CreateJobManualResult = {
7116
7524
  /** An array of previously defined tags to help identify and group the resource. */
7117
7525
  'tags'?: string[];
7118
7526
  'billing': {
7527
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
7528
+ 'buildPlan'?: string;
7119
7529
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
7120
7530
  'deploymentPlan': string;
7531
+ 'gpu'?: {
7532
+ 'enabled'?: boolean;
7533
+ 'configuration'?: {
7534
+ 'gpuType': string;
7535
+ 'timesliced'?: boolean;
7536
+ };
7537
+ };
7121
7538
  };
7122
7539
  /** The number of attempts to rerun a job before it is marked as failed. */
7123
7540
  'backoffLimit': number;
@@ -7143,6 +7560,12 @@ type CreateJobManualResult = {
7143
7560
  'includeGitFolder'?: boolean;
7144
7561
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
7145
7562
  'fullGitClone'?: boolean;
7563
+ 'storage'?: {
7564
+ 'ephemeralStorage'?: {
7565
+ /** Ephemeral storage per build in MB Example: 16384 */
7566
+ 'storageSize'?: number;
7567
+ };
7568
+ };
7146
7569
  };
7147
7570
  /** An object containing the runtime environment to set for the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"variable1":"abcdef","variable2":"12345"} */
7148
7571
  'runtimeEnvironment'?: any;
@@ -7207,7 +7630,18 @@ type CreateJobManualResult = {
7207
7630
  /** Ephemeral storage per container in MB Example: 1024 */
7208
7631
  'storageSize'?: number;
7209
7632
  };
7633
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
7634
+ 'shmSize'?: number;
7635
+ };
7636
+ 'gpu'?: {
7637
+ 'enabled'?: boolean;
7638
+ 'configuration'?: {
7639
+ 'gpuType': string;
7640
+ 'timesliced'?: boolean;
7641
+ };
7210
7642
  };
7643
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
7644
+ 'gracePeriodSeconds'?: number;
7211
7645
  'vcs'?: {
7212
7646
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
7213
7647
  'projectUrl': string;
@@ -7242,6 +7676,12 @@ type CreateJobManualResult = {
7242
7676
  'imageUrl'?: string;
7243
7677
  };
7244
7678
  'buildSettings'?: {
7679
+ 'storage'?: {
7680
+ 'ephemeralStorage'?: {
7681
+ /** Ephemeral storage per build in MB Example: 16384 */
7682
+ 'storageSize'?: number;
7683
+ };
7684
+ };
7245
7685
  'dockerfile': {
7246
7686
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
7247
7687
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -7253,6 +7693,12 @@ type CreateJobManualResult = {
7253
7693
  'useCache'?: boolean;
7254
7694
  };
7255
7695
  } | {
7696
+ 'storage'?: {
7697
+ 'ephemeralStorage'?: {
7698
+ /** Ephemeral storage per build in MB Example: 16384 */
7699
+ 'storageSize'?: number;
7700
+ };
7701
+ };
7256
7702
  'buildpack': {
7257
7703
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
7258
7704
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -7300,8 +7746,17 @@ type CreateJobManualData = {
7300
7746
  /** An array of previously defined tags to help identify and group the resource. */
7301
7747
  'tags'?: string[];
7302
7748
  'billing': {
7749
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
7750
+ 'buildPlan'?: string;
7303
7751
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
7304
7752
  'deploymentPlan': string;
7753
+ 'gpu'?: {
7754
+ 'enabled'?: boolean;
7755
+ 'configuration'?: {
7756
+ 'gpuType': string;
7757
+ 'timesliced'?: boolean;
7758
+ };
7759
+ };
7305
7760
  };
7306
7761
  /** The number of attempts to rerun a job before it is marked as failed. */
7307
7762
  'backoffLimit': number;
@@ -7336,7 +7791,18 @@ type CreateJobManualData = {
7336
7791
  /** Ephemeral storage per container in MB Example: 1024 */
7337
7792
  'storageSize'?: number;
7338
7793
  };
7794
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
7795
+ 'shmSize'?: number;
7796
+ };
7797
+ 'gpu'?: {
7798
+ 'enabled'?: boolean;
7799
+ 'configuration'?: {
7800
+ 'gpuType': string;
7801
+ 'timesliced'?: boolean;
7802
+ };
7339
7803
  };
7804
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
7805
+ 'gracePeriodSeconds'?: number;
7340
7806
  'vcs': {
7341
7807
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
7342
7808
  'projectUrl': string;
@@ -7377,7 +7843,18 @@ type CreateJobManualData = {
7377
7843
  /** Ephemeral storage per container in MB Example: 1024 */
7378
7844
  'storageSize'?: number;
7379
7845
  };
7846
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
7847
+ 'shmSize'?: number;
7848
+ };
7849
+ 'gpu'?: {
7850
+ 'enabled'?: boolean;
7851
+ 'configuration'?: {
7852
+ 'gpuType': string;
7853
+ 'timesliced'?: boolean;
7854
+ };
7380
7855
  };
7856
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
7857
+ 'gracePeriodSeconds'?: number;
7381
7858
  'external': {
7382
7859
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
7383
7860
  'imagePath': string;
@@ -7410,7 +7887,18 @@ type CreateJobManualData = {
7410
7887
  /** Ephemeral storage per container in MB Example: 1024 */
7411
7888
  'storageSize'?: number;
7412
7889
  };
7890
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
7891
+ 'shmSize'?: number;
7892
+ };
7893
+ 'gpu'?: {
7894
+ 'enabled'?: boolean;
7895
+ 'configuration'?: {
7896
+ 'gpuType': string;
7897
+ 'timesliced'?: boolean;
7898
+ };
7413
7899
  };
7900
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
7901
+ 'gracePeriodSeconds'?: number;
7414
7902
  'internal': {
7415
7903
  /** ID of the build service to deploy Example: "example-build-service" */
7416
7904
  'id'?: string;
@@ -7440,8 +7928,20 @@ type CreateJobManualData = {
7440
7928
  'includeGitFolder'?: boolean;
7441
7929
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
7442
7930
  'fullGitClone'?: boolean;
7931
+ 'storage'?: {
7932
+ 'ephemeralStorage'?: {
7933
+ /** Ephemeral storage per build in MB Example: 16384 */
7934
+ 'storageSize'?: number;
7935
+ };
7936
+ };
7443
7937
  };
7444
7938
  'buildSettings'?: {
7939
+ 'storage'?: {
7940
+ 'ephemeralStorage'?: {
7941
+ /** Ephemeral storage per build in MB Example: 16384 */
7942
+ 'storageSize'?: number;
7943
+ };
7944
+ };
7445
7945
  'dockerfile': {
7446
7946
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
7447
7947
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -7453,6 +7953,12 @@ type CreateJobManualData = {
7453
7953
  'useCache'?: boolean;
7454
7954
  };
7455
7955
  } | {
7956
+ 'storage'?: {
7957
+ 'ephemeralStorage'?: {
7958
+ /** Ephemeral storage per build in MB Example: 16384 */
7959
+ 'storageSize'?: number;
7960
+ };
7961
+ };
7456
7962
  'buildpack': {
7457
7963
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
7458
7964
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -7513,8 +8019,17 @@ type PutJobManualResult = {
7513
8019
  /** An array of previously defined tags to help identify and group the resource. */
7514
8020
  'tags'?: string[];
7515
8021
  'billing': {
8022
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
8023
+ 'buildPlan'?: string;
7516
8024
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
7517
8025
  'deploymentPlan': string;
8026
+ 'gpu'?: {
8027
+ 'enabled'?: boolean;
8028
+ 'configuration'?: {
8029
+ 'gpuType': string;
8030
+ 'timesliced'?: boolean;
8031
+ };
8032
+ };
7518
8033
  };
7519
8034
  /** The number of attempts to rerun a job before it is marked as failed. */
7520
8035
  'backoffLimit': number;
@@ -7540,6 +8055,12 @@ type PutJobManualResult = {
7540
8055
  'includeGitFolder'?: boolean;
7541
8056
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
7542
8057
  'fullGitClone'?: boolean;
8058
+ 'storage'?: {
8059
+ 'ephemeralStorage'?: {
8060
+ /** Ephemeral storage per build in MB Example: 16384 */
8061
+ 'storageSize'?: number;
8062
+ };
8063
+ };
7543
8064
  };
7544
8065
  /** An object containing the runtime environment to set for the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"variable1":"abcdef","variable2":"12345"} */
7545
8066
  'runtimeEnvironment'?: any;
@@ -7604,7 +8125,18 @@ type PutJobManualResult = {
7604
8125
  /** Ephemeral storage per container in MB Example: 1024 */
7605
8126
  'storageSize'?: number;
7606
8127
  };
8128
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
8129
+ 'shmSize'?: number;
8130
+ };
8131
+ 'gpu'?: {
8132
+ 'enabled'?: boolean;
8133
+ 'configuration'?: {
8134
+ 'gpuType': string;
8135
+ 'timesliced'?: boolean;
8136
+ };
7607
8137
  };
8138
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
8139
+ 'gracePeriodSeconds'?: number;
7608
8140
  'vcs'?: {
7609
8141
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
7610
8142
  'projectUrl': string;
@@ -7639,6 +8171,12 @@ type PutJobManualResult = {
7639
8171
  'imageUrl'?: string;
7640
8172
  };
7641
8173
  'buildSettings'?: {
8174
+ 'storage'?: {
8175
+ 'ephemeralStorage'?: {
8176
+ /** Ephemeral storage per build in MB Example: 16384 */
8177
+ 'storageSize'?: number;
8178
+ };
8179
+ };
7642
8180
  'dockerfile': {
7643
8181
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
7644
8182
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -7650,6 +8188,12 @@ type PutJobManualResult = {
7650
8188
  'useCache'?: boolean;
7651
8189
  };
7652
8190
  } | {
8191
+ 'storage'?: {
8192
+ 'ephemeralStorage'?: {
8193
+ /** Ephemeral storage per build in MB Example: 16384 */
8194
+ 'storageSize'?: number;
8195
+ };
8196
+ };
7653
8197
  'buildpack': {
7654
8198
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
7655
8199
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -7697,8 +8241,17 @@ type PutJobManualData = {
7697
8241
  /** An array of previously defined tags to help identify and group the resource. */
7698
8242
  'tags'?: string[];
7699
8243
  'billing': {
8244
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
8245
+ 'buildPlan'?: string;
7700
8246
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
7701
8247
  'deploymentPlan': string;
8248
+ 'gpu'?: {
8249
+ 'enabled'?: boolean;
8250
+ 'configuration'?: {
8251
+ 'gpuType': string;
8252
+ 'timesliced'?: boolean;
8253
+ };
8254
+ };
7702
8255
  };
7703
8256
  /** The number of attempts to rerun a job before it is marked as failed. */
7704
8257
  'backoffLimit': number;
@@ -7733,7 +8286,18 @@ type PutJobManualData = {
7733
8286
  /** Ephemeral storage per container in MB Example: 1024 */
7734
8287
  'storageSize'?: number;
7735
8288
  };
8289
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
8290
+ 'shmSize'?: number;
7736
8291
  };
8292
+ 'gpu'?: {
8293
+ 'enabled'?: boolean;
8294
+ 'configuration'?: {
8295
+ 'gpuType': string;
8296
+ 'timesliced'?: boolean;
8297
+ };
8298
+ };
8299
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
8300
+ 'gracePeriodSeconds'?: number;
7737
8301
  'vcs': {
7738
8302
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
7739
8303
  'projectUrl': string;
@@ -7774,7 +8338,18 @@ type PutJobManualData = {
7774
8338
  /** Ephemeral storage per container in MB Example: 1024 */
7775
8339
  'storageSize'?: number;
7776
8340
  };
8341
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
8342
+ 'shmSize'?: number;
8343
+ };
8344
+ 'gpu'?: {
8345
+ 'enabled'?: boolean;
8346
+ 'configuration'?: {
8347
+ 'gpuType': string;
8348
+ 'timesliced'?: boolean;
8349
+ };
7777
8350
  };
8351
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
8352
+ 'gracePeriodSeconds'?: number;
7778
8353
  'external': {
7779
8354
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
7780
8355
  'imagePath': string;
@@ -7807,7 +8382,18 @@ type PutJobManualData = {
7807
8382
  /** Ephemeral storage per container in MB Example: 1024 */
7808
8383
  'storageSize'?: number;
7809
8384
  };
8385
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
8386
+ 'shmSize'?: number;
7810
8387
  };
8388
+ 'gpu'?: {
8389
+ 'enabled'?: boolean;
8390
+ 'configuration'?: {
8391
+ 'gpuType': string;
8392
+ 'timesliced'?: boolean;
8393
+ };
8394
+ };
8395
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
8396
+ 'gracePeriodSeconds'?: number;
7811
8397
  'internal': {
7812
8398
  /** ID of the build service to deploy Example: "example-build-service" */
7813
8399
  'id'?: string;
@@ -7837,8 +8423,20 @@ type PutJobManualData = {
7837
8423
  'includeGitFolder'?: boolean;
7838
8424
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
7839
8425
  'fullGitClone'?: boolean;
8426
+ 'storage'?: {
8427
+ 'ephemeralStorage'?: {
8428
+ /** Ephemeral storage per build in MB Example: 16384 */
8429
+ 'storageSize'?: number;
8430
+ };
8431
+ };
7840
8432
  };
7841
8433
  'buildSettings'?: {
8434
+ 'storage'?: {
8435
+ 'ephemeralStorage'?: {
8436
+ /** Ephemeral storage per build in MB Example: 16384 */
8437
+ 'storageSize'?: number;
8438
+ };
8439
+ };
7842
8440
  'dockerfile': {
7843
8441
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
7844
8442
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -7850,6 +8448,12 @@ type PutJobManualData = {
7850
8448
  'useCache'?: boolean;
7851
8449
  };
7852
8450
  } | {
8451
+ 'storage'?: {
8452
+ 'ephemeralStorage'?: {
8453
+ /** Ephemeral storage per build in MB Example: 16384 */
8454
+ 'storageSize'?: number;
8455
+ };
8456
+ };
7853
8457
  'buildpack': {
7854
8458
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
7855
8459
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -7910,8 +8514,17 @@ type PatchJobManualResult = {
7910
8514
  /** An array of previously defined tags to help identify and group the resource. */
7911
8515
  'tags'?: string[];
7912
8516
  'billing': {
8517
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
8518
+ 'buildPlan'?: string;
7913
8519
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
7914
8520
  'deploymentPlan': string;
8521
+ 'gpu'?: {
8522
+ 'enabled'?: boolean;
8523
+ 'configuration'?: {
8524
+ 'gpuType': string;
8525
+ 'timesliced'?: boolean;
8526
+ };
8527
+ };
7915
8528
  };
7916
8529
  /** The number of attempts to rerun a job before it is marked as failed. */
7917
8530
  'backoffLimit': number;
@@ -7937,6 +8550,12 @@ type PatchJobManualResult = {
7937
8550
  'includeGitFolder'?: boolean;
7938
8551
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
7939
8552
  'fullGitClone'?: boolean;
8553
+ 'storage'?: {
8554
+ 'ephemeralStorage'?: {
8555
+ /** Ephemeral storage per build in MB Example: 16384 */
8556
+ 'storageSize'?: number;
8557
+ };
8558
+ };
7940
8559
  };
7941
8560
  /** An object containing the runtime environment to set for the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"variable1":"abcdef","variable2":"12345"} */
7942
8561
  'runtimeEnvironment'?: any;
@@ -8001,7 +8620,18 @@ type PatchJobManualResult = {
8001
8620
  /** Ephemeral storage per container in MB Example: 1024 */
8002
8621
  'storageSize'?: number;
8003
8622
  };
8623
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
8624
+ 'shmSize'?: number;
8004
8625
  };
8626
+ 'gpu'?: {
8627
+ 'enabled'?: boolean;
8628
+ 'configuration'?: {
8629
+ 'gpuType': string;
8630
+ 'timesliced'?: boolean;
8631
+ };
8632
+ };
8633
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
8634
+ 'gracePeriodSeconds'?: number;
8005
8635
  'vcs'?: {
8006
8636
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
8007
8637
  'projectUrl': string;
@@ -8036,6 +8666,12 @@ type PatchJobManualResult = {
8036
8666
  'imageUrl'?: string;
8037
8667
  };
8038
8668
  'buildSettings'?: {
8669
+ 'storage'?: {
8670
+ 'ephemeralStorage'?: {
8671
+ /** Ephemeral storage per build in MB Example: 16384 */
8672
+ 'storageSize'?: number;
8673
+ };
8674
+ };
8039
8675
  'dockerfile': {
8040
8676
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
8041
8677
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -8047,6 +8683,12 @@ type PatchJobManualResult = {
8047
8683
  'useCache'?: boolean;
8048
8684
  };
8049
8685
  } | {
8686
+ 'storage'?: {
8687
+ 'ephemeralStorage'?: {
8688
+ /** Ephemeral storage per build in MB Example: 16384 */
8689
+ 'storageSize'?: number;
8690
+ };
8691
+ };
8050
8692
  'buildpack': {
8051
8693
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
8052
8694
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -8094,8 +8736,17 @@ type PatchJobManualData = {
8094
8736
  /** An array of previously defined tags to help identify and group the resource. */
8095
8737
  'tags'?: string[];
8096
8738
  'billing'?: {
8739
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
8740
+ 'buildPlan'?: string;
8097
8741
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
8098
8742
  'deploymentPlan'?: string;
8743
+ 'gpu'?: {
8744
+ 'enabled'?: boolean;
8745
+ 'configuration'?: {
8746
+ 'gpuType'?: string;
8747
+ 'timesliced'?: boolean;
8748
+ };
8749
+ };
8099
8750
  };
8100
8751
  /** The number of attempts to rerun a job before it is marked as failed. */
8101
8752
  'backoffLimit'?: number;
@@ -8114,9 +8765,27 @@ type PatchJobManualData = {
8114
8765
  'ciIgnoreFlagsEnabled'?: boolean;
8115
8766
  /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
8116
8767
  'ciIgnoreFlags'?: string[];
8768
+ /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
8769
+ 'dockerfileTarget'?: string;
8117
8770
  'dockerCredentials'?: string[];
8771
+ /** Include .git folder inside the build context */
8772
+ 'includeGitFolder'?: boolean;
8773
+ /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
8774
+ 'fullGitClone'?: boolean;
8775
+ 'storage'?: {
8776
+ 'ephemeralStorage'?: {
8777
+ /** Ephemeral storage per build in MB Example: 16384 */
8778
+ 'storageSize'?: number;
8779
+ };
8780
+ };
8118
8781
  };
8119
8782
  'buildSettings'?: {
8783
+ 'storage'?: {
8784
+ 'ephemeralStorage'?: {
8785
+ /** Ephemeral storage per build in MB Example: 16384 */
8786
+ 'storageSize'?: number;
8787
+ };
8788
+ };
8120
8789
  'dockerfile'?: {
8121
8790
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
8122
8791
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -8228,6 +8897,12 @@ type GetJobResult = {
8228
8897
  'includeGitFolder'?: boolean;
8229
8898
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
8230
8899
  'fullGitClone'?: boolean;
8900
+ 'storage'?: {
8901
+ 'ephemeralStorage'?: {
8902
+ /** Ephemeral storage per build in MB Example: 16384 */
8903
+ 'storageSize'?: number;
8904
+ };
8905
+ };
8231
8906
  };
8232
8907
  'buildEngineConfiguration'?: {
8233
8908
  /** The build engine used. Example: "buildpack" */
@@ -8666,6 +9341,12 @@ type UpdateJobBuildoptionsData = {
8666
9341
  'includeGitFolder'?: boolean;
8667
9342
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
8668
9343
  'fullGitClone'?: boolean;
9344
+ 'storage'?: {
9345
+ 'ephemeralStorage'?: {
9346
+ /** Ephemeral storage per build in MB Example: 16384 */
9347
+ 'storageSize'?: number;
9348
+ };
9349
+ };
8669
9350
  } | {
8670
9351
  'buildpack': {
8671
9352
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
@@ -8701,6 +9382,12 @@ type UpdateJobBuildoptionsData = {
8701
9382
  'includeGitFolder'?: boolean;
8702
9383
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
8703
9384
  'fullGitClone'?: boolean;
9385
+ 'storage'?: {
9386
+ 'ephemeralStorage'?: {
9387
+ /** Ephemeral storage per build in MB Example: 16384 */
9388
+ 'storageSize'?: number;
9389
+ };
9390
+ };
8704
9391
  };
8705
9392
  /** Updates the build options for a given job. */
8706
9393
  declare class UpdateJobBuildoptionsEndpoint extends PostApiEndpoint<UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult> {
@@ -9338,6 +10025,8 @@ type StartJobRunData = {
9338
10025
  /** Ephemeral storage per container in MB Example: 1024 */
9339
10026
  'storageSize'?: number;
9340
10027
  };
10028
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
10029
+ 'shmSize'?: number;
9341
10030
  };
9342
10031
  /** Optional: Specify the commit to run */
9343
10032
  'internal'?: {
@@ -9376,6 +10065,8 @@ type StartJobRunData = {
9376
10065
  /** Ephemeral storage per container in MB Example: 1024 */
9377
10066
  'storageSize'?: number;
9378
10067
  };
10068
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
10069
+ 'shmSize'?: number;
9379
10070
  };
9380
10071
  /** Optional: Specify the external image to run */
9381
10072
  'external'?: {
@@ -9605,6 +10296,8 @@ type ScaleJobData = {
9605
10296
  /** Ephemeral storage per container in MB Example: 1024 */
9606
10297
  'storageSize'?: number;
9607
10298
  };
10299
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
10300
+ 'shmSize'?: number;
9608
10301
  };
9609
10302
  };
9610
10303
  /** Modifies the scaling settings for the given job. */
@@ -9748,7 +10441,7 @@ declare class GetPipelineEndpoint extends GetApiEndpoint<GetPipelineRequest, Get
9748
10441
  type GetPreviewtemplateResult = {
9749
10442
  /** The version of the Northflank API to run the template against. Example: "v1" */
9750
10443
  'apiVersion': 'v1';
9751
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
10444
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
9752
10445
  'arguments'?: any;
9753
10446
  'triggers'?: {
9754
10447
  /** A reference that can be used to access the output of this trigger in the template. */
@@ -9775,6 +10468,8 @@ type GetPreviewtemplateResult = {
9775
10468
  'spec': any;
9776
10469
  /** Identifier for the template Example: "example-template" */
9777
10470
  'id': string;
10471
+ /** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
10472
+ 'paused'?: boolean;
9778
10473
  'options': any;
9779
10474
  /** time of creation */
9780
10475
  'createdAt'?: string;
@@ -9808,70 +10503,7 @@ declare class GetPreviewtemplateEndpoint extends GetApiEndpoint<GetPreviewtempla
9808
10503
  body: () => undefined;
9809
10504
  }
9810
10505
 
9811
- type UpdatePreviewtemplateResult = {
9812
- /** Name of the template. Example: "Example Template" */
9813
- 'name': string;
9814
- /** Description of the template. Example: "This is a sample template." */
9815
- 'description'?: string;
9816
- /** The version of the Northflank API to run the template against. Example: "v1" */
9817
- 'apiVersion': 'v1';
9818
- /** Details of the project the template will run in. */
9819
- 'project': {
9820
- /** The ID of the project to use. */
9821
- 'id': string;
9822
- } | {
9823
- 'spec': {
9824
- /** The name of the project. Example: "New Project" */
9825
- 'name': string;
9826
- /** The description of the project. Example: "This is a new project." */
9827
- 'description'?: string;
9828
- /** The color of the project in the Northflank App. Example: "#EF233C" */
9829
- 'color'?: string;
9830
- /** The region the project will be hosted in. Example: "europe-west" */
9831
- 'region'?: string;
9832
- } | {
9833
- /** The name of the project. Example: "New Project" */
9834
- 'name': string;
9835
- /** The description of the project. Example: "This is a new project." */
9836
- 'description'?: string;
9837
- /** The color of the project in the Northflank App. Example: "#EF233C" */
9838
- 'color'?: string;
9839
- /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
9840
- 'clusterId'?: string;
9841
- };
9842
- };
9843
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
9844
- 'arguments'?: any;
9845
- 'spec': any;
9846
- /** Identifier for the template Example: "example-template" */
9847
- 'id': string;
9848
- 'gitops'?: {
9849
- /** The VCS provider to use. Example: "github" */
9850
- 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
9851
- /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
9852
- 'selfHostedVcsId'?: string;
9853
- /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
9854
- 'accountLogin'?: string;
9855
- /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
9856
- 'repoUrl': string;
9857
- /** The name of the branch to use. Example: "main" */
9858
- 'branch': string;
9859
- /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
9860
- 'filePath': string;
9861
- /** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
9862
- 'templateSha': string;
9863
- };
9864
- /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
9865
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
9866
- 'options': {
9867
- /** Whether autorun is enabled */
9868
- 'autorun': boolean;
9869
- };
9870
- /** time of creation */
9871
- 'createdAt'?: string;
9872
- /** time of update */
9873
- 'updatedAt'?: string;
9874
- };
10506
+ type UpdatePreviewtemplateResult = any;
9875
10507
  type UpdatePreviewtemplateCall = (opts: UpdatePreviewtemplateRequest) => Promise<ApiCallResponse<UpdatePreviewtemplateResult>>;
9876
10508
  type UpdatePreviewtemplateRequest = {
9877
10509
  parameters: UpdatePreviewtemplateParameters;
@@ -9885,9 +10517,11 @@ type UpdatePreviewtemplateParameters = {
9885
10517
  type UpdatePreviewtemplateData = {
9886
10518
  /** The version of the Northflank API to run the template against. Example: "v1" */
9887
10519
  'apiVersion': 'v1';
9888
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
10520
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
9889
10521
  'arguments'?: any;
9890
10522
  'spec': any;
10523
+ /** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
10524
+ 'paused'?: boolean;
9891
10525
  'triggers': {
9892
10526
  /** A reference that can be used to access the output of this trigger in the template. */
9893
10527
  'ref'?: string;
@@ -10036,7 +10670,7 @@ declare class ListPreviewtemplaterunsEndpoint extends GetApiEndpoint<ListPreview
10036
10670
  type GetPreviewtemplaterunResult = {
10037
10671
  /** The version of the Northflank API to run the template against. Example: "v1" */
10038
10672
  'apiVersion': 'v1';
10039
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
10673
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
10040
10674
  'arguments'?: any;
10041
10675
  'triggers'?: {
10042
10676
  /** A reference that can be used to access the output of this trigger in the template. */
@@ -10096,7 +10730,7 @@ declare class GetPreviewtemplaterunEndpoint extends GetApiEndpoint<GetPreviewtem
10096
10730
  type GetReleaseflowResult = {
10097
10731
  /** The version of the Northflank API to run the template against. Example: "v1" */
10098
10732
  'apiVersion': 'v1';
10099
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
10733
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
10100
10734
  'arguments'?: any;
10101
10735
  'spec': any;
10102
10736
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
@@ -10105,6 +10739,8 @@ type GetReleaseflowResult = {
10105
10739
  'stage'?: string;
10106
10740
  /** Status of the template run Example: "success" */
10107
10741
  'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
10742
+ /** Whether triggers are paused for this release flow. If `true`, Git triggers and webhook triggers will not run the release flow. */
10743
+ 'paused': boolean;
10108
10744
  /** Timestamp the template was created at. Example: "2021-01-01 12:00:00.000Z" */
10109
10745
  'createdAt': string;
10110
10746
  /** Timestamp the template was last updated at. Example: "2021-01-01 12:00:00.000Z" */
@@ -10147,12 +10783,14 @@ type UpdateReleaseflowData = {
10147
10783
  'content': {
10148
10784
  /** The version of the Northflank API to run the template against. Example: "v1" */
10149
10785
  'apiVersion': 'v1';
10150
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
10786
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
10151
10787
  'arguments'?: any;
10152
10788
  'spec': any;
10153
10789
  };
10154
10790
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
10155
10791
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
10792
+ /** Whether triggers are paused for this release flow. If `true`, Git triggers and webhook triggers will not run the release flow. */
10793
+ 'paused'?: boolean;
10156
10794
  };
10157
10795
  /** Updates a release flow */
10158
10796
  declare class UpdateReleaseflowEndpoint extends PostApiEndpoint<UpdateReleaseflowRequest, UpdateReleaseflowResult> {
@@ -10181,7 +10819,7 @@ type RunReleaseflowData = {
10181
10819
  'name'?: string;
10182
10820
  /** The optional description of the release-flow run. Example: "This is a description for the release-flow run." */
10183
10821
  'description'?: string;
10184
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARG_1":"value"} */
10822
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
10185
10823
  'arguments'?: any;
10186
10824
  /** Overrides for specific reference values. This should be an object where each key corresponds to a ref defined in the template. The values of each of these keys should also be an object, where each key value pair provided will overwrite the value for that key in the given ref. For example, the value `{ 'example-ref': { 'branch': 'devel' } }` would set the `branch` field to `devel` for the node with ref `example-ref`. Example: {"example-ref":{"branch":"devel"}} */
10187
10825
  'overrides'?: any;
@@ -10252,7 +10890,7 @@ declare class ListReleaseflowrunsEndpoint extends GetApiEndpoint<ListReleaseflow
10252
10890
  type GetReleaseflowrunResult = {
10253
10891
  /** The version of the Northflank API to run the template against. Example: "v1" */
10254
10892
  'apiVersion': 'v1';
10255
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
10893
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
10256
10894
  'arguments'?: any;
10257
10895
  'spec': any;
10258
10896
  'refs'?: any;
@@ -10300,7 +10938,7 @@ declare class GetReleaseflowrunEndpoint extends GetApiEndpoint<GetReleaseflowrun
10300
10938
  type AbortReleaseflowrunResult = {
10301
10939
  /** The version of the Northflank API to run the template against. Example: "v1" */
10302
10940
  'apiVersion': 'v1';
10303
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
10941
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
10304
10942
  'arguments'?: any;
10305
10943
  'spec': any;
10306
10944
  'refs'?: any;
@@ -11053,8 +11691,17 @@ type CreateServiceBuildResult = {
11053
11691
  /** An array of previously defined tags to help identify and group the resource. */
11054
11692
  'tags'?: string[];
11055
11693
  'billing': {
11056
- /** The ID of the deployment plan to use. Example: "nf-compute-20" */
11057
- 'deploymentPlan': string;
11694
+ /** The ID of the deployment plan to use. (Deprecated - use buildPlan for build resources instead.). Example: "nf-compute-20" */
11695
+ 'deploymentPlan'?: string;
11696
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
11697
+ 'buildPlan'?: string;
11698
+ 'gpu'?: {
11699
+ 'enabled'?: boolean;
11700
+ 'configuration'?: {
11701
+ 'gpuType': string;
11702
+ 'timesliced'?: boolean;
11703
+ };
11704
+ };
11058
11705
  };
11059
11706
  /** Whether CI (continuous integration) should be disabled. */
11060
11707
  'disabledCI'?: boolean;
@@ -11071,6 +11718,12 @@ type CreateServiceBuildResult = {
11071
11718
  'vcsLinkId'?: string;
11072
11719
  };
11073
11720
  'buildSettings': {
11721
+ 'storage'?: {
11722
+ 'ephemeralStorage'?: {
11723
+ /** Ephemeral storage per build in MB Example: 16384 */
11724
+ 'storageSize'?: number;
11725
+ };
11726
+ };
11074
11727
  'dockerfile': {
11075
11728
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11076
11729
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -11082,6 +11735,12 @@ type CreateServiceBuildResult = {
11082
11735
  'useCache'?: boolean;
11083
11736
  };
11084
11737
  } | {
11738
+ 'storage'?: {
11739
+ 'ephemeralStorage'?: {
11740
+ /** Ephemeral storage per build in MB Example: 16384 */
11741
+ 'storageSize'?: number;
11742
+ };
11743
+ };
11085
11744
  'buildpack': {
11086
11745
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
11087
11746
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -11113,6 +11772,12 @@ type CreateServiceBuildResult = {
11113
11772
  'includeGitFolder'?: boolean;
11114
11773
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
11115
11774
  'fullGitClone'?: boolean;
11775
+ 'storage'?: {
11776
+ 'ephemeralStorage'?: {
11777
+ /** Ephemeral storage per build in MB Example: 16384 */
11778
+ 'storageSize'?: number;
11779
+ };
11780
+ };
11116
11781
  };
11117
11782
  /** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
11118
11783
  'buildArguments'?: any;
@@ -11160,8 +11825,17 @@ type CreateServiceBuildData = {
11160
11825
  /** An array of previously defined tags to help identify and group the resource. */
11161
11826
  'tags'?: string[];
11162
11827
  'billing': {
11163
- /** The ID of the deployment plan to use. Example: "nf-compute-20" */
11164
- 'deploymentPlan': string;
11828
+ /** The ID of the deployment plan to use. (Deprecated - use buildPlan for build resources instead.). Example: "nf-compute-20" */
11829
+ 'deploymentPlan'?: string;
11830
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
11831
+ 'buildPlan'?: string;
11832
+ 'gpu'?: {
11833
+ 'enabled'?: boolean;
11834
+ 'configuration'?: {
11835
+ 'gpuType': string;
11836
+ 'timesliced'?: boolean;
11837
+ };
11838
+ };
11165
11839
  };
11166
11840
  /** Whether CI (continuous integration) should be disabled. */
11167
11841
  'disabledCI'?: boolean;
@@ -11178,6 +11852,12 @@ type CreateServiceBuildData = {
11178
11852
  'vcsLinkId'?: string;
11179
11853
  };
11180
11854
  'buildSettings': {
11855
+ 'storage'?: {
11856
+ 'ephemeralStorage'?: {
11857
+ /** Ephemeral storage per build in MB Example: 16384 */
11858
+ 'storageSize'?: number;
11859
+ };
11860
+ };
11181
11861
  'dockerfile': {
11182
11862
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11183
11863
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -11189,6 +11869,12 @@ type CreateServiceBuildData = {
11189
11869
  'useCache'?: boolean;
11190
11870
  };
11191
11871
  } | {
11872
+ 'storage'?: {
11873
+ 'ephemeralStorage'?: {
11874
+ /** Ephemeral storage per build in MB Example: 16384 */
11875
+ 'storageSize'?: number;
11876
+ };
11877
+ };
11192
11878
  'buildpack': {
11193
11879
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
11194
11880
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -11220,6 +11906,12 @@ type CreateServiceBuildData = {
11220
11906
  'includeGitFolder'?: boolean;
11221
11907
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
11222
11908
  'fullGitClone'?: boolean;
11909
+ 'storage'?: {
11910
+ 'ephemeralStorage'?: {
11911
+ /** Ephemeral storage per build in MB Example: 16384 */
11912
+ 'storageSize'?: number;
11913
+ };
11914
+ };
11223
11915
  };
11224
11916
  /** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
11225
11917
  'buildArguments'?: any;
@@ -11243,8 +11935,17 @@ type PutServiceBuildResult = {
11243
11935
  /** An array of previously defined tags to help identify and group the resource. */
11244
11936
  'tags'?: string[];
11245
11937
  'billing': {
11246
- /** The ID of the deployment plan to use. Example: "nf-compute-20" */
11247
- 'deploymentPlan': string;
11938
+ /** The ID of the deployment plan to use. (Deprecated - use buildPlan for build resources instead.). Example: "nf-compute-20" */
11939
+ 'deploymentPlan'?: string;
11940
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
11941
+ 'buildPlan'?: string;
11942
+ 'gpu'?: {
11943
+ 'enabled'?: boolean;
11944
+ 'configuration'?: {
11945
+ 'gpuType': string;
11946
+ 'timesliced'?: boolean;
11947
+ };
11948
+ };
11248
11949
  };
11249
11950
  /** Whether CI (continuous integration) should be disabled. */
11250
11951
  'disabledCI'?: boolean;
@@ -11261,6 +11962,12 @@ type PutServiceBuildResult = {
11261
11962
  'vcsLinkId'?: string;
11262
11963
  };
11263
11964
  'buildSettings': {
11965
+ 'storage'?: {
11966
+ 'ephemeralStorage'?: {
11967
+ /** Ephemeral storage per build in MB Example: 16384 */
11968
+ 'storageSize'?: number;
11969
+ };
11970
+ };
11264
11971
  'dockerfile': {
11265
11972
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11266
11973
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -11272,6 +11979,12 @@ type PutServiceBuildResult = {
11272
11979
  'useCache'?: boolean;
11273
11980
  };
11274
11981
  } | {
11982
+ 'storage'?: {
11983
+ 'ephemeralStorage'?: {
11984
+ /** Ephemeral storage per build in MB Example: 16384 */
11985
+ 'storageSize'?: number;
11986
+ };
11987
+ };
11275
11988
  'buildpack': {
11276
11989
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
11277
11990
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -11303,6 +12016,12 @@ type PutServiceBuildResult = {
11303
12016
  'includeGitFolder'?: boolean;
11304
12017
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
11305
12018
  'fullGitClone'?: boolean;
12019
+ 'storage'?: {
12020
+ 'ephemeralStorage'?: {
12021
+ /** Ephemeral storage per build in MB Example: 16384 */
12022
+ 'storageSize'?: number;
12023
+ };
12024
+ };
11306
12025
  };
11307
12026
  /** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
11308
12027
  'buildArguments'?: any;
@@ -11350,8 +12069,17 @@ type PutServiceBuildData = {
11350
12069
  /** An array of previously defined tags to help identify and group the resource. */
11351
12070
  'tags'?: string[];
11352
12071
  'billing': {
11353
- /** The ID of the deployment plan to use. Example: "nf-compute-20" */
11354
- 'deploymentPlan': string;
12072
+ /** The ID of the deployment plan to use. (Deprecated - use buildPlan for build resources instead.). Example: "nf-compute-20" */
12073
+ 'deploymentPlan'?: string;
12074
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
12075
+ 'buildPlan'?: string;
12076
+ 'gpu'?: {
12077
+ 'enabled'?: boolean;
12078
+ 'configuration'?: {
12079
+ 'gpuType': string;
12080
+ 'timesliced'?: boolean;
12081
+ };
12082
+ };
11355
12083
  };
11356
12084
  /** Whether CI (continuous integration) should be disabled. */
11357
12085
  'disabledCI'?: boolean;
@@ -11368,6 +12096,12 @@ type PutServiceBuildData = {
11368
12096
  'vcsLinkId'?: string;
11369
12097
  };
11370
12098
  'buildSettings': {
12099
+ 'storage'?: {
12100
+ 'ephemeralStorage'?: {
12101
+ /** Ephemeral storage per build in MB Example: 16384 */
12102
+ 'storageSize'?: number;
12103
+ };
12104
+ };
11371
12105
  'dockerfile': {
11372
12106
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11373
12107
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -11379,6 +12113,12 @@ type PutServiceBuildData = {
11379
12113
  'useCache'?: boolean;
11380
12114
  };
11381
12115
  } | {
12116
+ 'storage'?: {
12117
+ 'ephemeralStorage'?: {
12118
+ /** Ephemeral storage per build in MB Example: 16384 */
12119
+ 'storageSize'?: number;
12120
+ };
12121
+ };
11382
12122
  'buildpack': {
11383
12123
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
11384
12124
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -11410,6 +12150,12 @@ type PutServiceBuildData = {
11410
12150
  'includeGitFolder'?: boolean;
11411
12151
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
11412
12152
  'fullGitClone'?: boolean;
12153
+ 'storage'?: {
12154
+ 'ephemeralStorage'?: {
12155
+ /** Ephemeral storage per build in MB Example: 16384 */
12156
+ 'storageSize'?: number;
12157
+ };
12158
+ };
11413
12159
  };
11414
12160
  /** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
11415
12161
  'buildArguments'?: any;
@@ -11433,8 +12179,17 @@ type PatchServiceBuildResult = {
11433
12179
  /** An array of previously defined tags to help identify and group the resource. */
11434
12180
  'tags'?: string[];
11435
12181
  'billing': {
11436
- /** The ID of the deployment plan to use. Example: "nf-compute-20" */
11437
- 'deploymentPlan': string;
12182
+ /** The ID of the deployment plan to use. (Deprecated - use buildPlan for build resources instead.). Example: "nf-compute-20" */
12183
+ 'deploymentPlan'?: string;
12184
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
12185
+ 'buildPlan'?: string;
12186
+ 'gpu'?: {
12187
+ 'enabled'?: boolean;
12188
+ 'configuration'?: {
12189
+ 'gpuType': string;
12190
+ 'timesliced'?: boolean;
12191
+ };
12192
+ };
11438
12193
  };
11439
12194
  /** Whether CI (continuous integration) should be disabled. */
11440
12195
  'disabledCI'?: boolean;
@@ -11451,6 +12206,12 @@ type PatchServiceBuildResult = {
11451
12206
  'vcsLinkId'?: string;
11452
12207
  };
11453
12208
  'buildSettings': {
12209
+ 'storage'?: {
12210
+ 'ephemeralStorage'?: {
12211
+ /** Ephemeral storage per build in MB Example: 16384 */
12212
+ 'storageSize'?: number;
12213
+ };
12214
+ };
11454
12215
  'dockerfile': {
11455
12216
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11456
12217
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -11462,6 +12223,12 @@ type PatchServiceBuildResult = {
11462
12223
  'useCache'?: boolean;
11463
12224
  };
11464
12225
  } | {
12226
+ 'storage'?: {
12227
+ 'ephemeralStorage'?: {
12228
+ /** Ephemeral storage per build in MB Example: 16384 */
12229
+ 'storageSize'?: number;
12230
+ };
12231
+ };
11465
12232
  'buildpack': {
11466
12233
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
11467
12234
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -11493,6 +12260,12 @@ type PatchServiceBuildResult = {
11493
12260
  'includeGitFolder'?: boolean;
11494
12261
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
11495
12262
  'fullGitClone'?: boolean;
12263
+ 'storage'?: {
12264
+ 'ephemeralStorage'?: {
12265
+ /** Ephemeral storage per build in MB Example: 16384 */
12266
+ 'storageSize'?: number;
12267
+ };
12268
+ };
11496
12269
  };
11497
12270
  /** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
11498
12271
  'buildArguments'?: any;
@@ -11540,8 +12313,17 @@ type PatchServiceBuildData = {
11540
12313
  /** An array of previously defined tags to help identify and group the resource. */
11541
12314
  'tags'?: string[];
11542
12315
  'billing'?: {
11543
- /** The ID of the deployment plan to use. Example: "nf-compute-20" */
12316
+ /** The ID of the deployment plan to use. (Deprecated - use buildPlan for build resources instead.). Example: "nf-compute-20" */
11544
12317
  'deploymentPlan'?: string;
12318
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
12319
+ 'buildPlan'?: string;
12320
+ 'gpu'?: {
12321
+ 'enabled'?: boolean;
12322
+ 'configuration'?: {
12323
+ 'gpuType'?: string;
12324
+ 'timesliced'?: boolean;
12325
+ };
12326
+ };
11545
12327
  };
11546
12328
  /** Whether CI (continuous integration) should be disabled. */
11547
12329
  'disabledCI'?: boolean;
@@ -11558,6 +12340,12 @@ type PatchServiceBuildData = {
11558
12340
  'vcsLinkId'?: string;
11559
12341
  };
11560
12342
  'buildSettings'?: {
12343
+ 'storage'?: {
12344
+ 'ephemeralStorage'?: {
12345
+ /** Ephemeral storage per build in MB Example: 16384 */
12346
+ 'storageSize'?: number;
12347
+ };
12348
+ };
11561
12349
  'dockerfile'?: {
11562
12350
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11563
12351
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -11592,7 +12380,19 @@ type PatchServiceBuildData = {
11592
12380
  'ciIgnoreFlagsEnabled'?: boolean;
11593
12381
  /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
11594
12382
  'ciIgnoreFlags'?: string[];
12383
+ /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
12384
+ 'dockerfileTarget'?: string;
11595
12385
  'dockerCredentials'?: string[];
12386
+ /** Include .git folder inside the build context */
12387
+ 'includeGitFolder'?: boolean;
12388
+ /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
12389
+ 'fullGitClone'?: boolean;
12390
+ 'storage'?: {
12391
+ 'ephemeralStorage'?: {
12392
+ /** Ephemeral storage per build in MB Example: 16384 */
12393
+ 'storageSize'?: number;
12394
+ };
12395
+ };
11596
12396
  };
11597
12397
  /** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
11598
12398
  'buildArguments'?: any;
@@ -11618,9 +12418,18 @@ type CreateServiceCombinedResult = {
11618
12418
  'billing': {
11619
12419
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
11620
12420
  'deploymentPlan': string;
12421
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
12422
+ 'buildPlan'?: string;
12423
+ 'gpu'?: {
12424
+ 'enabled'?: boolean;
12425
+ 'configuration'?: {
12426
+ 'gpuType': string;
12427
+ 'timesliced'?: boolean;
12428
+ };
12429
+ };
11621
12430
  };
11622
12431
  'ports'?: {
11623
- /** The name used to identify the port. Example: "port-1" */
12432
+ /** The name used to identify the port. Example: "p01" */
11624
12433
  'name': string;
11625
12434
  /** The port number. Example: 8080 */
11626
12435
  'internalPort': number;
@@ -11668,6 +12477,12 @@ type CreateServiceCombinedResult = {
11668
12477
  'projectBranch': string;
11669
12478
  };
11670
12479
  'buildSettings': {
12480
+ 'storage'?: {
12481
+ 'ephemeralStorage'?: {
12482
+ /** Ephemeral storage per build in MB Example: 16384 */
12483
+ 'storageSize'?: number;
12484
+ };
12485
+ };
11671
12486
  'dockerfile': {
11672
12487
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11673
12488
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -11679,6 +12494,12 @@ type CreateServiceCombinedResult = {
11679
12494
  'useCache'?: boolean;
11680
12495
  };
11681
12496
  } | {
12497
+ 'storage'?: {
12498
+ 'ephemeralStorage'?: {
12499
+ /** Ephemeral storage per build in MB Example: 16384 */
12500
+ 'storageSize'?: number;
12501
+ };
12502
+ };
11682
12503
  'buildpack': {
11683
12504
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
11684
12505
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -11706,6 +12527,12 @@ type CreateServiceCombinedResult = {
11706
12527
  'includeGitFolder'?: boolean;
11707
12528
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
11708
12529
  'fullGitClone'?: boolean;
12530
+ 'storage'?: {
12531
+ 'ephemeralStorage'?: {
12532
+ /** Ephemeral storage per build in MB Example: 16384 */
12533
+ 'storageSize'?: number;
12534
+ };
12535
+ };
11709
12536
  };
11710
12537
  /** An object containing the runtime environment to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
11711
12538
  'runtimeEnvironment'?: any;
@@ -11801,6 +12628,8 @@ type CreateServiceCombinedResult = {
11801
12628
  /** Ephemeral storage per container in MB Example: 1024 */
11802
12629
  'storageSize'?: number;
11803
12630
  };
12631
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
12632
+ 'shmSize'?: number;
11804
12633
  };
11805
12634
  'strategy'?: {
11806
12635
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -11808,6 +12637,15 @@ type CreateServiceCombinedResult = {
11808
12637
  };
11809
12638
  /** Defines scheduling behaviour across different zones within the same region. */
11810
12639
  'zonalRedundancy'?: 'preferred' | 'disabled';
12640
+ 'gpu'?: {
12641
+ 'enabled'?: boolean;
12642
+ 'configuration'?: {
12643
+ 'gpuType': string;
12644
+ 'timesliced'?: boolean;
12645
+ };
12646
+ };
12647
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
12648
+ 'gracePeriodSeconds'?: number;
11811
12649
  /** Image registry url of the deployed image. */
11812
12650
  'imageUrl'?: string;
11813
12651
  };
@@ -11862,6 +12700,15 @@ type CreateServiceCombinedData = {
11862
12700
  'billing': {
11863
12701
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
11864
12702
  'deploymentPlan': string;
12703
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
12704
+ 'buildPlan'?: string;
12705
+ 'gpu'?: {
12706
+ 'enabled'?: boolean;
12707
+ 'configuration'?: {
12708
+ 'gpuType': string;
12709
+ 'timesliced'?: boolean;
12710
+ };
12711
+ };
11865
12712
  };
11866
12713
  'deployment': {
11867
12714
  /** The number of instances to run the service on. Example: 1 */
@@ -11891,6 +12738,8 @@ type CreateServiceCombinedData = {
11891
12738
  /** Ephemeral storage per container in MB Example: 1024 */
11892
12739
  'storageSize'?: number;
11893
12740
  };
12741
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
12742
+ 'shmSize'?: number;
11894
12743
  };
11895
12744
  'strategy'?: {
11896
12745
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -11898,9 +12747,18 @@ type CreateServiceCombinedData = {
11898
12747
  };
11899
12748
  /** Defines scheduling behaviour across different zones within the same region. */
11900
12749
  'zonalRedundancy'?: 'preferred' | 'disabled';
12750
+ 'gpu'?: {
12751
+ 'enabled'?: boolean;
12752
+ 'configuration'?: {
12753
+ 'gpuType': string;
12754
+ 'timesliced'?: boolean;
12755
+ };
12756
+ };
12757
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
12758
+ 'gracePeriodSeconds'?: number;
11901
12759
  };
11902
12760
  'ports'?: {
11903
- /** The name used to identify the port. Example: "port-1" */
12761
+ /** The name used to identify the port. Example: "p01" */
11904
12762
  'name': string;
11905
12763
  /** The port number. Example: 8080 */
11906
12764
  'internalPort': number;
@@ -11948,6 +12806,12 @@ type CreateServiceCombinedData = {
11948
12806
  'projectBranch': string;
11949
12807
  };
11950
12808
  'buildSettings': {
12809
+ 'storage'?: {
12810
+ 'ephemeralStorage'?: {
12811
+ /** Ephemeral storage per build in MB Example: 16384 */
12812
+ 'storageSize'?: number;
12813
+ };
12814
+ };
11951
12815
  'dockerfile': {
11952
12816
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
11953
12817
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -11959,6 +12823,12 @@ type CreateServiceCombinedData = {
11959
12823
  'useCache'?: boolean;
11960
12824
  };
11961
12825
  } | {
12826
+ 'storage'?: {
12827
+ 'ephemeralStorage'?: {
12828
+ /** Ephemeral storage per build in MB Example: 16384 */
12829
+ 'storageSize'?: number;
12830
+ };
12831
+ };
11962
12832
  'buildpack': {
11963
12833
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
11964
12834
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -11986,6 +12856,12 @@ type CreateServiceCombinedData = {
11986
12856
  'includeGitFolder'?: boolean;
11987
12857
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
11988
12858
  'fullGitClone'?: boolean;
12859
+ 'storage'?: {
12860
+ 'ephemeralStorage'?: {
12861
+ /** Ephemeral storage per build in MB Example: 16384 */
12862
+ 'storageSize'?: number;
12863
+ };
12864
+ };
11989
12865
  };
11990
12866
  /** An object containing the runtime environment to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
11991
12867
  'runtimeEnvironment'?: any;
@@ -12068,9 +12944,18 @@ type PutServiceCombinedResult = {
12068
12944
  'billing': {
12069
12945
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
12070
12946
  'deploymentPlan': string;
12947
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
12948
+ 'buildPlan'?: string;
12949
+ 'gpu'?: {
12950
+ 'enabled'?: boolean;
12951
+ 'configuration'?: {
12952
+ 'gpuType': string;
12953
+ 'timesliced'?: boolean;
12954
+ };
12955
+ };
12071
12956
  };
12072
12957
  'ports'?: {
12073
- /** The name used to identify the port. Example: "port-1" */
12958
+ /** The name used to identify the port. Example: "p01" */
12074
12959
  'name': string;
12075
12960
  /** The port number. Example: 8080 */
12076
12961
  'internalPort': number;
@@ -12118,6 +13003,12 @@ type PutServiceCombinedResult = {
12118
13003
  'projectBranch': string;
12119
13004
  };
12120
13005
  'buildSettings': {
13006
+ 'storage'?: {
13007
+ 'ephemeralStorage'?: {
13008
+ /** Ephemeral storage per build in MB Example: 16384 */
13009
+ 'storageSize'?: number;
13010
+ };
13011
+ };
12121
13012
  'dockerfile': {
12122
13013
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12123
13014
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -12129,6 +13020,12 @@ type PutServiceCombinedResult = {
12129
13020
  'useCache'?: boolean;
12130
13021
  };
12131
13022
  } | {
13023
+ 'storage'?: {
13024
+ 'ephemeralStorage'?: {
13025
+ /** Ephemeral storage per build in MB Example: 16384 */
13026
+ 'storageSize'?: number;
13027
+ };
13028
+ };
12132
13029
  'buildpack': {
12133
13030
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
12134
13031
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -12156,6 +13053,12 @@ type PutServiceCombinedResult = {
12156
13053
  'includeGitFolder'?: boolean;
12157
13054
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
12158
13055
  'fullGitClone'?: boolean;
13056
+ 'storage'?: {
13057
+ 'ephemeralStorage'?: {
13058
+ /** Ephemeral storage per build in MB Example: 16384 */
13059
+ 'storageSize'?: number;
13060
+ };
13061
+ };
12159
13062
  };
12160
13063
  /** An object containing the runtime environment to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
12161
13064
  'runtimeEnvironment'?: any;
@@ -12251,6 +13154,8 @@ type PutServiceCombinedResult = {
12251
13154
  /** Ephemeral storage per container in MB Example: 1024 */
12252
13155
  'storageSize'?: number;
12253
13156
  };
13157
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
13158
+ 'shmSize'?: number;
12254
13159
  };
12255
13160
  'strategy'?: {
12256
13161
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -12258,6 +13163,15 @@ type PutServiceCombinedResult = {
12258
13163
  };
12259
13164
  /** Defines scheduling behaviour across different zones within the same region. */
12260
13165
  'zonalRedundancy'?: 'preferred' | 'disabled';
13166
+ 'gpu'?: {
13167
+ 'enabled'?: boolean;
13168
+ 'configuration'?: {
13169
+ 'gpuType': string;
13170
+ 'timesliced'?: boolean;
13171
+ };
13172
+ };
13173
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
13174
+ 'gracePeriodSeconds'?: number;
12261
13175
  /** Image registry url of the deployed image. */
12262
13176
  'imageUrl'?: string;
12263
13177
  };
@@ -12312,6 +13226,15 @@ type PutServiceCombinedData = {
12312
13226
  'billing': {
12313
13227
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
12314
13228
  'deploymentPlan': string;
13229
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
13230
+ 'buildPlan'?: string;
13231
+ 'gpu'?: {
13232
+ 'enabled'?: boolean;
13233
+ 'configuration'?: {
13234
+ 'gpuType': string;
13235
+ 'timesliced'?: boolean;
13236
+ };
13237
+ };
12315
13238
  };
12316
13239
  'deployment': {
12317
13240
  /** The number of instances to run the service on. Example: 1 */
@@ -12341,6 +13264,8 @@ type PutServiceCombinedData = {
12341
13264
  /** Ephemeral storage per container in MB Example: 1024 */
12342
13265
  'storageSize'?: number;
12343
13266
  };
13267
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
13268
+ 'shmSize'?: number;
12344
13269
  };
12345
13270
  'strategy'?: {
12346
13271
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -12348,9 +13273,18 @@ type PutServiceCombinedData = {
12348
13273
  };
12349
13274
  /** Defines scheduling behaviour across different zones within the same region. */
12350
13275
  'zonalRedundancy'?: 'preferred' | 'disabled';
13276
+ 'gpu'?: {
13277
+ 'enabled'?: boolean;
13278
+ 'configuration'?: {
13279
+ 'gpuType': string;
13280
+ 'timesliced'?: boolean;
13281
+ };
13282
+ };
13283
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
13284
+ 'gracePeriodSeconds'?: number;
12351
13285
  };
12352
13286
  'ports'?: {
12353
- /** The name used to identify the port. Example: "port-1" */
13287
+ /** The name used to identify the port. Example: "p01" */
12354
13288
  'name': string;
12355
13289
  /** The port number. Example: 8080 */
12356
13290
  'internalPort': number;
@@ -12398,6 +13332,12 @@ type PutServiceCombinedData = {
12398
13332
  'projectBranch': string;
12399
13333
  };
12400
13334
  'buildSettings': {
13335
+ 'storage'?: {
13336
+ 'ephemeralStorage'?: {
13337
+ /** Ephemeral storage per build in MB Example: 16384 */
13338
+ 'storageSize'?: number;
13339
+ };
13340
+ };
12401
13341
  'dockerfile': {
12402
13342
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12403
13343
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -12409,6 +13349,12 @@ type PutServiceCombinedData = {
12409
13349
  'useCache'?: boolean;
12410
13350
  };
12411
13351
  } | {
13352
+ 'storage'?: {
13353
+ 'ephemeralStorage'?: {
13354
+ /** Ephemeral storage per build in MB Example: 16384 */
13355
+ 'storageSize'?: number;
13356
+ };
13357
+ };
12412
13358
  'buildpack': {
12413
13359
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
12414
13360
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -12436,6 +13382,12 @@ type PutServiceCombinedData = {
12436
13382
  'includeGitFolder'?: boolean;
12437
13383
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
12438
13384
  'fullGitClone'?: boolean;
13385
+ 'storage'?: {
13386
+ 'ephemeralStorage'?: {
13387
+ /** Ephemeral storage per build in MB Example: 16384 */
13388
+ 'storageSize'?: number;
13389
+ };
13390
+ };
12439
13391
  };
12440
13392
  /** An object containing the runtime environment to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
12441
13393
  'runtimeEnvironment'?: any;
@@ -12518,9 +13470,18 @@ type PatchServiceCombinedResult = {
12518
13470
  'billing': {
12519
13471
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
12520
13472
  'deploymentPlan': string;
13473
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
13474
+ 'buildPlan'?: string;
13475
+ 'gpu'?: {
13476
+ 'enabled'?: boolean;
13477
+ 'configuration'?: {
13478
+ 'gpuType': string;
13479
+ 'timesliced'?: boolean;
13480
+ };
13481
+ };
12521
13482
  };
12522
13483
  'ports'?: {
12523
- /** The name used to identify the port. Example: "port-1" */
13484
+ /** The name used to identify the port. Example: "p01" */
12524
13485
  'name': string;
12525
13486
  /** The port number. Example: 8080 */
12526
13487
  'internalPort': number;
@@ -12568,6 +13529,12 @@ type PatchServiceCombinedResult = {
12568
13529
  'projectBranch': string;
12569
13530
  };
12570
13531
  'buildSettings': {
13532
+ 'storage'?: {
13533
+ 'ephemeralStorage'?: {
13534
+ /** Ephemeral storage per build in MB Example: 16384 */
13535
+ 'storageSize'?: number;
13536
+ };
13537
+ };
12571
13538
  'dockerfile': {
12572
13539
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12573
13540
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -12579,6 +13546,12 @@ type PatchServiceCombinedResult = {
12579
13546
  'useCache'?: boolean;
12580
13547
  };
12581
13548
  } | {
13549
+ 'storage'?: {
13550
+ 'ephemeralStorage'?: {
13551
+ /** Ephemeral storage per build in MB Example: 16384 */
13552
+ 'storageSize'?: number;
13553
+ };
13554
+ };
12582
13555
  'buildpack': {
12583
13556
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
12584
13557
  'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
@@ -12606,6 +13579,12 @@ type PatchServiceCombinedResult = {
12606
13579
  'includeGitFolder'?: boolean;
12607
13580
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
12608
13581
  'fullGitClone'?: boolean;
13582
+ 'storage'?: {
13583
+ 'ephemeralStorage'?: {
13584
+ /** Ephemeral storage per build in MB Example: 16384 */
13585
+ 'storageSize'?: number;
13586
+ };
13587
+ };
12609
13588
  };
12610
13589
  /** An object containing the runtime environment to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
12611
13590
  'runtimeEnvironment'?: any;
@@ -12701,6 +13680,8 @@ type PatchServiceCombinedResult = {
12701
13680
  /** Ephemeral storage per container in MB Example: 1024 */
12702
13681
  'storageSize'?: number;
12703
13682
  };
13683
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
13684
+ 'shmSize'?: number;
12704
13685
  };
12705
13686
  'strategy'?: {
12706
13687
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -12708,6 +13689,15 @@ type PatchServiceCombinedResult = {
12708
13689
  };
12709
13690
  /** Defines scheduling behaviour across different zones within the same region. */
12710
13691
  'zonalRedundancy'?: 'preferred' | 'disabled';
13692
+ 'gpu'?: {
13693
+ 'enabled'?: boolean;
13694
+ 'configuration'?: {
13695
+ 'gpuType': string;
13696
+ 'timesliced'?: boolean;
13697
+ };
13698
+ };
13699
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
13700
+ 'gracePeriodSeconds'?: number;
12711
13701
  /** Image registry url of the deployed image. */
12712
13702
  'imageUrl'?: string;
12713
13703
  };
@@ -12762,6 +13752,15 @@ type PatchServiceCombinedData = {
12762
13752
  'billing'?: {
12763
13753
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
12764
13754
  'deploymentPlan'?: string;
13755
+ /** The ID of the build plan to use. Example: "nf-compute-200-8" */
13756
+ 'buildPlan'?: string;
13757
+ 'gpu'?: {
13758
+ 'enabled'?: boolean;
13759
+ 'configuration'?: {
13760
+ 'gpuType'?: string;
13761
+ 'timesliced'?: boolean;
13762
+ };
13763
+ };
12765
13764
  };
12766
13765
  'deployment'?: {
12767
13766
  /** The number of instances to run the service on. Example: 1 */
@@ -12782,6 +13781,8 @@ type PatchServiceCombinedData = {
12782
13781
  /** Ephemeral storage per container in MB Example: 1024 */
12783
13782
  'storageSize'?: number;
12784
13783
  };
13784
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
13785
+ 'shmSize'?: number;
12785
13786
  };
12786
13787
  'strategy'?: {
12787
13788
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -12789,9 +13790,18 @@ type PatchServiceCombinedData = {
12789
13790
  };
12790
13791
  /** Defines scheduling behaviour across different zones within the same region. */
12791
13792
  'zonalRedundancy'?: 'preferred' | 'disabled';
13793
+ 'gpu'?: {
13794
+ 'enabled'?: boolean;
13795
+ 'configuration'?: {
13796
+ 'gpuType'?: string;
13797
+ 'timesliced'?: boolean;
13798
+ };
13799
+ };
13800
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
13801
+ 'gracePeriodSeconds'?: number;
12792
13802
  };
12793
13803
  'ports'?: {
12794
- /** The name used to identify the port. Example: "port-1" */
13804
+ /** The name used to identify the port. Example: "p01" */
12795
13805
  'name': string;
12796
13806
  /** The port number. Example: 8080 */
12797
13807
  'internalPort': number;
@@ -12839,6 +13849,12 @@ type PatchServiceCombinedData = {
12839
13849
  'projectBranch'?: string;
12840
13850
  };
12841
13851
  'buildSettings'?: {
13852
+ 'storage'?: {
13853
+ 'ephemeralStorage'?: {
13854
+ /** Ephemeral storage per build in MB Example: 16384 */
13855
+ 'storageSize'?: number;
13856
+ };
13857
+ };
12842
13858
  'dockerfile'?: {
12843
13859
  /** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
12844
13860
  'buildEngine'?: 'kaniko' | 'buildkit';
@@ -12869,7 +13885,19 @@ type PatchServiceCombinedData = {
12869
13885
  'ciIgnoreFlagsEnabled'?: boolean;
12870
13886
  /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
12871
13887
  'ciIgnoreFlags'?: string[];
13888
+ /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
13889
+ 'dockerfileTarget'?: string;
12872
13890
  'dockerCredentials'?: string[];
13891
+ /** Include .git folder inside the build context */
13892
+ 'includeGitFolder'?: boolean;
13893
+ /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
13894
+ 'fullGitClone'?: boolean;
13895
+ 'storage'?: {
13896
+ 'ephemeralStorage'?: {
13897
+ /** Ephemeral storage per build in MB Example: 16384 */
13898
+ 'storageSize'?: number;
13899
+ };
13900
+ };
12873
13901
  };
12874
13902
  /** An object containing the runtime environment to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
12875
13903
  'runtimeEnvironment'?: any;
@@ -12950,9 +13978,16 @@ type CreateServiceDeploymentResult = {
12950
13978
  'billing': {
12951
13979
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
12952
13980
  'deploymentPlan': string;
13981
+ 'gpu'?: {
13982
+ 'enabled'?: boolean;
13983
+ 'configuration'?: {
13984
+ 'gpuType': string;
13985
+ 'timesliced'?: boolean;
13986
+ };
13987
+ };
12953
13988
  };
12954
13989
  'ports'?: {
12955
- /** The name used to identify the port. Example: "port-1" */
13990
+ /** The name used to identify the port. Example: "p01" */
12956
13991
  'name': string;
12957
13992
  /** The port number. Example: 8080 */
12958
13993
  'internalPort': number;
@@ -13073,6 +14108,8 @@ type CreateServiceDeploymentResult = {
13073
14108
  /** Ephemeral storage per container in MB Example: 1024 */
13074
14109
  'storageSize'?: number;
13075
14110
  };
14111
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
14112
+ 'shmSize'?: number;
13076
14113
  };
13077
14114
  'strategy'?: {
13078
14115
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13080,6 +14117,15 @@ type CreateServiceDeploymentResult = {
13080
14117
  };
13081
14118
  /** Defines scheduling behaviour across different zones within the same region. */
13082
14119
  'zonalRedundancy'?: 'preferred' | 'disabled';
14120
+ 'gpu'?: {
14121
+ 'enabled'?: boolean;
14122
+ 'configuration'?: {
14123
+ 'gpuType': string;
14124
+ 'timesliced'?: boolean;
14125
+ };
14126
+ };
14127
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
14128
+ 'gracePeriodSeconds'?: number;
13083
14129
  'internal'?: {
13084
14130
  /** ID of the build service to deploy Example: "example-build-service" */
13085
14131
  'id'?: string;
@@ -13143,6 +14189,13 @@ type CreateServiceDeploymentData = {
13143
14189
  'billing': {
13144
14190
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
13145
14191
  'deploymentPlan': string;
14192
+ 'gpu'?: {
14193
+ 'enabled'?: boolean;
14194
+ 'configuration'?: {
14195
+ 'gpuType': string;
14196
+ 'timesliced'?: boolean;
14197
+ };
14198
+ };
13146
14199
  };
13147
14200
  /** Deployment type */
13148
14201
  'deployment': {
@@ -13173,6 +14226,8 @@ type CreateServiceDeploymentData = {
13173
14226
  /** Ephemeral storage per container in MB Example: 1024 */
13174
14227
  'storageSize'?: number;
13175
14228
  };
14229
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
14230
+ 'shmSize'?: number;
13176
14231
  };
13177
14232
  'strategy'?: {
13178
14233
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13180,6 +14235,15 @@ type CreateServiceDeploymentData = {
13180
14235
  };
13181
14236
  /** Defines scheduling behaviour across different zones within the same region. */
13182
14237
  'zonalRedundancy'?: 'preferred' | 'disabled';
14238
+ 'gpu'?: {
14239
+ 'enabled'?: boolean;
14240
+ 'configuration'?: {
14241
+ 'gpuType': string;
14242
+ 'timesliced'?: boolean;
14243
+ };
14244
+ };
14245
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
14246
+ 'gracePeriodSeconds'?: number;
13183
14247
  'internal': {
13184
14248
  /** ID of the build service to deploy Example: "example-build-service" */
13185
14249
  'id'?: string;
@@ -13218,6 +14282,8 @@ type CreateServiceDeploymentData = {
13218
14282
  /** Ephemeral storage per container in MB Example: 1024 */
13219
14283
  'storageSize'?: number;
13220
14284
  };
14285
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
14286
+ 'shmSize'?: number;
13221
14287
  };
13222
14288
  'strategy'?: {
13223
14289
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13225,6 +14291,15 @@ type CreateServiceDeploymentData = {
13225
14291
  };
13226
14292
  /** Defines scheduling behaviour across different zones within the same region. */
13227
14293
  'zonalRedundancy'?: 'preferred' | 'disabled';
14294
+ 'gpu'?: {
14295
+ 'enabled'?: boolean;
14296
+ 'configuration'?: {
14297
+ 'gpuType': string;
14298
+ 'timesliced'?: boolean;
14299
+ };
14300
+ };
14301
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
14302
+ 'gracePeriodSeconds'?: number;
13228
14303
  'external': {
13229
14304
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
13230
14305
  'imagePath': string;
@@ -13259,6 +14334,8 @@ type CreateServiceDeploymentData = {
13259
14334
  /** Ephemeral storage per container in MB Example: 1024 */
13260
14335
  'storageSize'?: number;
13261
14336
  };
14337
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
14338
+ 'shmSize'?: number;
13262
14339
  };
13263
14340
  'strategy'?: {
13264
14341
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13266,9 +14343,18 @@ type CreateServiceDeploymentData = {
13266
14343
  };
13267
14344
  /** Defines scheduling behaviour across different zones within the same region. */
13268
14345
  'zonalRedundancy'?: 'preferred' | 'disabled';
14346
+ 'gpu'?: {
14347
+ 'enabled'?: boolean;
14348
+ 'configuration'?: {
14349
+ 'gpuType': string;
14350
+ 'timesliced'?: boolean;
14351
+ };
14352
+ };
14353
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
14354
+ 'gracePeriodSeconds'?: number;
13269
14355
  };
13270
14356
  'ports'?: {
13271
- /** The name used to identify the port. Example: "port-1" */
14357
+ /** The name used to identify the port. Example: "p01" */
13272
14358
  'name': string;
13273
14359
  /** The port number. Example: 8080 */
13274
14360
  'internalPort': number;
@@ -13376,9 +14462,16 @@ type PutServiceDeploymentResult = {
13376
14462
  'billing': {
13377
14463
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
13378
14464
  'deploymentPlan': string;
14465
+ 'gpu'?: {
14466
+ 'enabled'?: boolean;
14467
+ 'configuration'?: {
14468
+ 'gpuType': string;
14469
+ 'timesliced'?: boolean;
14470
+ };
14471
+ };
13379
14472
  };
13380
14473
  'ports'?: {
13381
- /** The name used to identify the port. Example: "port-1" */
14474
+ /** The name used to identify the port. Example: "p01" */
13382
14475
  'name': string;
13383
14476
  /** The port number. Example: 8080 */
13384
14477
  'internalPort': number;
@@ -13499,6 +14592,8 @@ type PutServiceDeploymentResult = {
13499
14592
  /** Ephemeral storage per container in MB Example: 1024 */
13500
14593
  'storageSize'?: number;
13501
14594
  };
14595
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
14596
+ 'shmSize'?: number;
13502
14597
  };
13503
14598
  'strategy'?: {
13504
14599
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13506,6 +14601,15 @@ type PutServiceDeploymentResult = {
13506
14601
  };
13507
14602
  /** Defines scheduling behaviour across different zones within the same region. */
13508
14603
  'zonalRedundancy'?: 'preferred' | 'disabled';
14604
+ 'gpu'?: {
14605
+ 'enabled'?: boolean;
14606
+ 'configuration'?: {
14607
+ 'gpuType': string;
14608
+ 'timesliced'?: boolean;
14609
+ };
14610
+ };
14611
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
14612
+ 'gracePeriodSeconds'?: number;
13509
14613
  'internal'?: {
13510
14614
  /** ID of the build service to deploy Example: "example-build-service" */
13511
14615
  'id'?: string;
@@ -13569,6 +14673,13 @@ type PutServiceDeploymentData = {
13569
14673
  'billing': {
13570
14674
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
13571
14675
  'deploymentPlan': string;
14676
+ 'gpu'?: {
14677
+ 'enabled'?: boolean;
14678
+ 'configuration'?: {
14679
+ 'gpuType': string;
14680
+ 'timesliced'?: boolean;
14681
+ };
14682
+ };
13572
14683
  };
13573
14684
  /** Deployment type */
13574
14685
  'deployment': {
@@ -13599,6 +14710,8 @@ type PutServiceDeploymentData = {
13599
14710
  /** Ephemeral storage per container in MB Example: 1024 */
13600
14711
  'storageSize'?: number;
13601
14712
  };
14713
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
14714
+ 'shmSize'?: number;
13602
14715
  };
13603
14716
  'strategy'?: {
13604
14717
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13606,6 +14719,15 @@ type PutServiceDeploymentData = {
13606
14719
  };
13607
14720
  /** Defines scheduling behaviour across different zones within the same region. */
13608
14721
  'zonalRedundancy'?: 'preferred' | 'disabled';
14722
+ 'gpu'?: {
14723
+ 'enabled'?: boolean;
14724
+ 'configuration'?: {
14725
+ 'gpuType': string;
14726
+ 'timesliced'?: boolean;
14727
+ };
14728
+ };
14729
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
14730
+ 'gracePeriodSeconds'?: number;
13609
14731
  'internal': {
13610
14732
  /** ID of the build service to deploy Example: "example-build-service" */
13611
14733
  'id'?: string;
@@ -13644,6 +14766,8 @@ type PutServiceDeploymentData = {
13644
14766
  /** Ephemeral storage per container in MB Example: 1024 */
13645
14767
  'storageSize'?: number;
13646
14768
  };
14769
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
14770
+ 'shmSize'?: number;
13647
14771
  };
13648
14772
  'strategy'?: {
13649
14773
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13651,6 +14775,15 @@ type PutServiceDeploymentData = {
13651
14775
  };
13652
14776
  /** Defines scheduling behaviour across different zones within the same region. */
13653
14777
  'zonalRedundancy'?: 'preferred' | 'disabled';
14778
+ 'gpu'?: {
14779
+ 'enabled'?: boolean;
14780
+ 'configuration'?: {
14781
+ 'gpuType': string;
14782
+ 'timesliced'?: boolean;
14783
+ };
14784
+ };
14785
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
14786
+ 'gracePeriodSeconds'?: number;
13654
14787
  'external': {
13655
14788
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
13656
14789
  'imagePath': string;
@@ -13685,6 +14818,8 @@ type PutServiceDeploymentData = {
13685
14818
  /** Ephemeral storage per container in MB Example: 1024 */
13686
14819
  'storageSize'?: number;
13687
14820
  };
14821
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
14822
+ 'shmSize'?: number;
13688
14823
  };
13689
14824
  'strategy'?: {
13690
14825
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13692,9 +14827,18 @@ type PutServiceDeploymentData = {
13692
14827
  };
13693
14828
  /** Defines scheduling behaviour across different zones within the same region. */
13694
14829
  'zonalRedundancy'?: 'preferred' | 'disabled';
14830
+ 'gpu'?: {
14831
+ 'enabled'?: boolean;
14832
+ 'configuration'?: {
14833
+ 'gpuType': string;
14834
+ 'timesliced'?: boolean;
14835
+ };
14836
+ };
14837
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
14838
+ 'gracePeriodSeconds'?: number;
13695
14839
  };
13696
14840
  'ports'?: {
13697
- /** The name used to identify the port. Example: "port-1" */
14841
+ /** The name used to identify the port. Example: "p01" */
13698
14842
  'name': string;
13699
14843
  /** The port number. Example: 8080 */
13700
14844
  'internalPort': number;
@@ -13802,9 +14946,16 @@ type PatchServiceDeploymentResult = {
13802
14946
  'billing': {
13803
14947
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
13804
14948
  'deploymentPlan': string;
14949
+ 'gpu'?: {
14950
+ 'enabled'?: boolean;
14951
+ 'configuration'?: {
14952
+ 'gpuType': string;
14953
+ 'timesliced'?: boolean;
14954
+ };
14955
+ };
13805
14956
  };
13806
14957
  'ports'?: {
13807
- /** The name used to identify the port. Example: "port-1" */
14958
+ /** The name used to identify the port. Example: "p01" */
13808
14959
  'name': string;
13809
14960
  /** The port number. Example: 8080 */
13810
14961
  'internalPort': number;
@@ -13925,6 +15076,8 @@ type PatchServiceDeploymentResult = {
13925
15076
  /** Ephemeral storage per container in MB Example: 1024 */
13926
15077
  'storageSize'?: number;
13927
15078
  };
15079
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
15080
+ 'shmSize'?: number;
13928
15081
  };
13929
15082
  'strategy'?: {
13930
15083
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -13932,6 +15085,15 @@ type PatchServiceDeploymentResult = {
13932
15085
  };
13933
15086
  /** Defines scheduling behaviour across different zones within the same region. */
13934
15087
  'zonalRedundancy'?: 'preferred' | 'disabled';
15088
+ 'gpu'?: {
15089
+ 'enabled'?: boolean;
15090
+ 'configuration'?: {
15091
+ 'gpuType': string;
15092
+ 'timesliced'?: boolean;
15093
+ };
15094
+ };
15095
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
15096
+ 'gracePeriodSeconds'?: number;
13935
15097
  'internal'?: {
13936
15098
  /** ID of the build service to deploy Example: "example-build-service" */
13937
15099
  'id'?: string;
@@ -13995,6 +15157,13 @@ type PatchServiceDeploymentData = {
13995
15157
  'billing'?: {
13996
15158
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
13997
15159
  'deploymentPlan'?: string;
15160
+ 'gpu'?: {
15161
+ 'enabled'?: boolean;
15162
+ 'configuration'?: {
15163
+ 'gpuType'?: string;
15164
+ 'timesliced'?: boolean;
15165
+ };
15166
+ };
13998
15167
  };
13999
15168
  /** Deployment type */
14000
15169
  'deployment'?: {
@@ -14025,6 +15194,8 @@ type PatchServiceDeploymentData = {
14025
15194
  /** Ephemeral storage per container in MB Example: 1024 */
14026
15195
  'storageSize'?: number;
14027
15196
  };
15197
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
15198
+ 'shmSize'?: number;
14028
15199
  };
14029
15200
  'strategy'?: {
14030
15201
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -14032,6 +15203,15 @@ type PatchServiceDeploymentData = {
14032
15203
  };
14033
15204
  /** Defines scheduling behaviour across different zones within the same region. */
14034
15205
  'zonalRedundancy'?: 'preferred' | 'disabled';
15206
+ 'gpu'?: {
15207
+ 'enabled'?: boolean;
15208
+ 'configuration'?: {
15209
+ 'gpuType': string;
15210
+ 'timesliced'?: boolean;
15211
+ };
15212
+ };
15213
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
15214
+ 'gracePeriodSeconds'?: number;
14035
15215
  'internal': {
14036
15216
  /** ID of the build service to deploy Example: "example-build-service" */
14037
15217
  'id'?: string;
@@ -14070,6 +15250,8 @@ type PatchServiceDeploymentData = {
14070
15250
  /** Ephemeral storage per container in MB Example: 1024 */
14071
15251
  'storageSize'?: number;
14072
15252
  };
15253
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
15254
+ 'shmSize'?: number;
14073
15255
  };
14074
15256
  'strategy'?: {
14075
15257
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -14077,6 +15259,15 @@ type PatchServiceDeploymentData = {
14077
15259
  };
14078
15260
  /** Defines scheduling behaviour across different zones within the same region. */
14079
15261
  'zonalRedundancy'?: 'preferred' | 'disabled';
15262
+ 'gpu'?: {
15263
+ 'enabled'?: boolean;
15264
+ 'configuration'?: {
15265
+ 'gpuType': string;
15266
+ 'timesliced'?: boolean;
15267
+ };
15268
+ };
15269
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
15270
+ 'gracePeriodSeconds'?: number;
14080
15271
  'external': {
14081
15272
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
14082
15273
  'imagePath': string;
@@ -14111,6 +15302,8 @@ type PatchServiceDeploymentData = {
14111
15302
  /** Ephemeral storage per container in MB Example: 1024 */
14112
15303
  'storageSize'?: number;
14113
15304
  };
15305
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
15306
+ 'shmSize'?: number;
14114
15307
  };
14115
15308
  'strategy'?: {
14116
15309
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
@@ -14118,9 +15311,18 @@ type PatchServiceDeploymentData = {
14118
15311
  };
14119
15312
  /** Defines scheduling behaviour across different zones within the same region. */
14120
15313
  'zonalRedundancy'?: 'preferred' | 'disabled';
15314
+ 'gpu'?: {
15315
+ 'enabled'?: boolean;
15316
+ 'configuration'?: {
15317
+ 'gpuType': string;
15318
+ 'timesliced'?: boolean;
15319
+ };
15320
+ };
15321
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
15322
+ 'gracePeriodSeconds'?: number;
14121
15323
  };
14122
15324
  'ports'?: {
14123
- /** The name used to identify the port. Example: "port-1" */
15325
+ /** The name used to identify the port. Example: "p01" */
14124
15326
  'name': string;
14125
15327
  /** The port number. Example: 8080 */
14126
15328
  'internalPort': number;
@@ -14366,11 +15568,41 @@ type GetServiceResult = {
14366
15568
  'useCache'?: boolean;
14367
15569
  };
14368
15570
  };
15571
+ /** Describes all autoscaling configurations */
15572
+ 'autoscaling'?: {
15573
+ /** Describes the horizontal autoscaling configuration */
15574
+ 'horizontal'?: {
15575
+ /** Whether horizontal autoscaling should be enabled */
15576
+ 'enabled': boolean;
15577
+ /** Minimum number of replicas which should be running at any time */
15578
+ 'minReplicas': number;
15579
+ /** Maximum number of replicas which can be running at any time */
15580
+ 'maxReplicas': number;
15581
+ 'cpu'?: {
15582
+ /** Whether autoscaling should take into account cpu usage */
15583
+ 'enabled': boolean;
15584
+ /** Threshold CPU usage percentage at which the workload will be scaled */
15585
+ 'thresholdPercentage': number;
15586
+ };
15587
+ 'memory'?: {
15588
+ /** Whether autoscaling should take into account memory usage */
15589
+ 'enabled': boolean;
15590
+ /** Threshold memory usage percentage at which the workload will be scaled */
15591
+ 'thresholdPercentage': number;
15592
+ };
15593
+ 'rps'?: {
15594
+ /** Whether autoscaling should take into requests-per-second */
15595
+ 'enabled': boolean;
15596
+ /** Threshold rps value on which the workload will be scaled */
15597
+ 'thresholdValue': number;
15598
+ };
15599
+ };
15600
+ };
14369
15601
  /** An array of ports of the service. */
14370
15602
  'ports': {
14371
15603
  /** The id used to identify the port across requests. Example: "eonyui" */
14372
15604
  'id': string;
14373
- /** The name of the port used in the public url and UI. Example: "port-1" */
15605
+ /** The name of the port used in the public url and UI. Example: "p01" */
14374
15606
  'name': string;
14375
15607
  /** The port number. Example: 8080 */
14376
15608
  'internalPort': number;
@@ -14378,7 +15610,7 @@ type GetServiceResult = {
14378
15610
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
14379
15611
  /** If true, the port is exposed publicly. Example: true */
14380
15612
  'public': boolean;
14381
- /** DNS entry for this port. Example: "port-1--example-service--default-service--user-abc1.salvo.code.run" */
15613
+ /** DNS entry for this port. Example: "p01--example-service--default-service--user-abc1.salvo.code.run" */
14382
15614
  'dns'?: string;
14383
15615
  /** An array of domains that redirect to this port. */
14384
15616
  'domains': {
@@ -14791,6 +16023,12 @@ type UpdateServiceBuildoptionsData = {
14791
16023
  'includeGitFolder'?: boolean;
14792
16024
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
14793
16025
  'fullGitClone'?: boolean;
16026
+ 'storage'?: {
16027
+ 'ephemeralStorage'?: {
16028
+ /** Ephemeral storage per build in MB Example: 16384 */
16029
+ 'storageSize'?: number;
16030
+ };
16031
+ };
14794
16032
  } | {
14795
16033
  'buildpack': {
14796
16034
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
@@ -14830,6 +16068,12 @@ type UpdateServiceBuildoptionsData = {
14830
16068
  'includeGitFolder'?: boolean;
14831
16069
  /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
14832
16070
  'fullGitClone'?: boolean;
16071
+ 'storage'?: {
16072
+ 'ephemeralStorage'?: {
16073
+ /** Ephemeral storage per build in MB Example: 16384 */
16074
+ 'storageSize'?: number;
16075
+ };
16076
+ };
14833
16077
  };
14834
16078
  /** Updates the build options for a given service. */
14835
16079
  declare class UpdateServiceBuildoptionsEndpoint extends PostApiEndpoint<UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult> {
@@ -15288,7 +16532,7 @@ type GetServicePortsResult = {
15288
16532
  'ports': {
15289
16533
  /** The id used to identify the port across requests. Example: "eonyui" */
15290
16534
  'id': string;
15291
- /** The name of the port used in the public url and UI. Example: "port-1" */
16535
+ /** The name of the port used in the public url and UI. Example: "p01" */
15292
16536
  'name': string;
15293
16537
  /** The port number. Example: 8080 */
15294
16538
  'internalPort': number;
@@ -15296,7 +16540,7 @@ type GetServicePortsResult = {
15296
16540
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
15297
16541
  /** If true, the port is exposed publicly. Example: true */
15298
16542
  'public': boolean;
15299
- /** DNS entry for this port. Example: "port-1--example-service--default-service--user-abc1.salvo.code.run" */
16543
+ /** DNS entry for this port. Example: "p01--example-service--default-service--user-abc1.salvo.code.run" */
15300
16544
  'dns'?: string;
15301
16545
  /** An array of domains that redirect to this port. */
15302
16546
  'domains': {
@@ -15369,7 +16613,7 @@ type UpdateServicePortsData = {
15369
16613
  'ports': {
15370
16614
  /** The id of an existing port. Pass this when changing in order to keep security configurations. Example: "p01" */
15371
16615
  'id'?: string;
15372
- /** The name used to identify the port. Example: "port-1" */
16616
+ /** The name used to identify the port. Example: "p01" */
15373
16617
  'name': string;
15374
16618
  /** The port number. Example: 12345 */
15375
16619
  'internalPort': number;
@@ -15658,7 +16902,11 @@ type ScaleServiceData = {
15658
16902
  /** Ephemeral storage per container in MB Example: 1024 */
15659
16903
  'storageSize'?: number;
15660
16904
  };
16905
+ /** Configures the amount of available memory-backed disk space available to /dev/shm */
16906
+ 'shmSize'?: number;
15661
16907
  };
16908
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
16909
+ 'gracePeriodSeconds'?: number;
15662
16910
  };
15663
16911
  /** Modifies the scaling settings for the given service. */
15664
16912
  declare class ScaleServiceEndpoint extends PostApiEndpoint<ScaleServiceRequest, ScaleServiceResult> {
@@ -16083,7 +17331,7 @@ type CreateTemplateResult = {
16083
17331
  'clusterId'?: string;
16084
17332
  };
16085
17333
  };
16086
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
17334
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16087
17335
  'arguments'?: any;
16088
17336
  'spec': any;
16089
17337
  /** Identifier for the template Example: "example-template" */
@@ -16147,7 +17395,7 @@ type CreateTemplateResult = {
16147
17395
  'clusterId'?: string;
16148
17396
  };
16149
17397
  };
16150
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
17398
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16151
17399
  'arguments'?: any;
16152
17400
  'spec': any;
16153
17401
  'refs'?: any;
@@ -16201,18 +17449,18 @@ type CreateTemplateData = {
16201
17449
  'clusterId'?: string;
16202
17450
  };
16203
17451
  };
16204
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
17452
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16205
17453
  'arguments'?: any;
16206
17454
  'spec': any;
16207
17455
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
16208
17456
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
16209
- /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
17457
+ /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16210
17458
  'argumentOverrides'?: any;
16211
17459
  /** Additional options for the template creation. */
16212
17460
  'options'?: {
16213
17461
  /** If true, the template will be ran immediately after creation. Example: true */
16214
17462
  'runOnCreation'?: boolean;
16215
- /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
17463
+ /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16216
17464
  'runOnCreationArgumentOverrides'?: any;
16217
17465
  /** If true, the template will run automatically whenever it is updated. */
16218
17466
  'autorun'?: boolean;
@@ -16249,18 +17497,18 @@ type CreateTemplateData = {
16249
17497
  'clusterId'?: string;
16250
17498
  };
16251
17499
  };
16252
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
17500
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16253
17501
  'arguments'?: any;
16254
17502
  'spec': any;
16255
17503
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
16256
17504
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
16257
- /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
17505
+ /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16258
17506
  'argumentOverrides'?: any;
16259
17507
  /** Additional options for the template creation. */
16260
17508
  'options'?: {
16261
17509
  /** If true, the template will be ran immediately after creation. Example: true */
16262
17510
  'runOnCreation'?: boolean;
16263
- /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
17511
+ /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16264
17512
  'runOnCreationArgumentOverrides'?: any;
16265
17513
  /** If true, the template will run automatically whenever it is updated. */
16266
17514
  'autorun'?: boolean;
@@ -16287,13 +17535,13 @@ type CreateTemplateData = {
16287
17535
  'description'?: string;
16288
17536
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
16289
17537
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
16290
- /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
17538
+ /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16291
17539
  'argumentOverrides'?: any;
16292
17540
  /** Additional options for the template creation. */
16293
17541
  'options'?: {
16294
17542
  /** If true, the template will be ran immediately after creation. Example: true */
16295
17543
  'runOnCreation'?: boolean;
16296
- /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
17544
+ /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16297
17545
  'runOnCreationArgumentOverrides'?: any;
16298
17546
  /** If true, the template will run automatically whenever it is updated. */
16299
17547
  'autorun'?: boolean;
@@ -16355,7 +17603,7 @@ type GetTemplateResult = {
16355
17603
  'clusterId'?: string;
16356
17604
  };
16357
17605
  };
16358
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
17606
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16359
17607
  'arguments'?: any;
16360
17608
  'spec': any;
16361
17609
  /** Identifier for the template Example: "example-template" */
@@ -16446,7 +17694,7 @@ type UpdateTemplateResult = {
16446
17694
  'clusterId'?: string;
16447
17695
  };
16448
17696
  };
16449
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
17697
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16450
17698
  'arguments'?: any;
16451
17699
  'spec': any;
16452
17700
  /** Identifier for the template Example: "example-template" */
@@ -16510,7 +17758,7 @@ type UpdateTemplateResult = {
16510
17758
  'clusterId'?: string;
16511
17759
  };
16512
17760
  };
16513
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
17761
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16514
17762
  'arguments'?: any;
16515
17763
  'spec': any;
16516
17764
  'refs'?: any;
@@ -16568,12 +17816,12 @@ type UpdateTemplateData = {
16568
17816
  'clusterId'?: string;
16569
17817
  };
16570
17818
  };
16571
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
17819
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16572
17820
  'arguments'?: any;
16573
17821
  'spec': any;
16574
17822
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
16575
17823
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
16576
- /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
17824
+ /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16577
17825
  'argumentOverrides'?: any;
16578
17826
  /** Additional options for the template creation. */
16579
17827
  'options'?: {
@@ -16612,12 +17860,12 @@ type UpdateTemplateData = {
16612
17860
  'clusterId'?: string;
16613
17861
  };
16614
17862
  };
16615
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
17863
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16616
17864
  'arguments'?: any;
16617
17865
  'spec': any;
16618
17866
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
16619
17867
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
16620
- /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
17868
+ /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16621
17869
  'argumentOverrides'?: any;
16622
17870
  /** Additional options for the template creation. */
16623
17871
  'options'?: {
@@ -16646,7 +17894,7 @@ type UpdateTemplateData = {
16646
17894
  'description'?: string;
16647
17895
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
16648
17896
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
16649
- /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
17897
+ /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16650
17898
  'argumentOverrides'?: any;
16651
17899
  /** Additional options for the template creation. */
16652
17900
  'options'?: {
@@ -16727,7 +17975,7 @@ type RunTemplateResult = {
16727
17975
  'clusterId'?: string;
16728
17976
  };
16729
17977
  };
16730
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
17978
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16731
17979
  'arguments'?: any;
16732
17980
  'spec': any;
16733
17981
  'refs'?: any;
@@ -16753,7 +18001,7 @@ type RunTemplateParameters = {
16753
18001
  /** ID of the template */ 'templateId': string;
16754
18002
  };
16755
18003
  type RunTemplateData = {
16756
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18004
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16757
18005
  'arguments'?: any;
16758
18006
  };
16759
18007
  /** Run a template */
@@ -16849,7 +18097,7 @@ type GetTemplaterunResult = {
16849
18097
  'clusterId'?: string;
16850
18098
  };
16851
18099
  };
16852
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18100
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16853
18101
  'arguments'?: any;
16854
18102
  'spec': any;
16855
18103
  'refs'?: any;
@@ -16916,7 +18164,7 @@ type AbortTemplaterunResult = {
16916
18164
  'clusterId'?: string;
16917
18165
  };
16918
18166
  };
16919
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
18167
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARGUMENT_1":"value_1","ARGUMENT_2":"value_2"} */
16920
18168
  'arguments'?: any;
16921
18169
  'spec': any;
16922
18170
  'refs'?: any;
@@ -17177,6 +18425,12 @@ declare class ApiClient {
17177
18425
  volume: DeleteVolumeCall;
17178
18426
  template: DeleteTemplateCall;
17179
18427
  };
18428
+ import: {
18429
+ domainCertificate: ImportDomaincertificateCall;
18430
+ addon: {
18431
+ backup: ImportAddonBackupCall;
18432
+ };
18433
+ };
17180
18434
  add: {
17181
18435
  domain: {
17182
18436
  subdomain: AddDomainSubdomainCall;
@@ -17273,11 +18527,6 @@ declare class ApiClient {
17273
18527
  backup: RetainAddonBackupCall;
17274
18528
  };
17275
18529
  };
17276
- import: {
17277
- addon: {
17278
- backup: ImportAddonBackupCall;
17279
- };
17280
- };
17281
18530
  start: {
17282
18531
  addon: {
17283
18532
  pitr: StartAddonPitrCall;
@@ -17509,6 +18758,12 @@ declare class ApiClient {
17509
18758
  volume: DeleteVolumeEndpoint;
17510
18759
  template: DeleteTemplateEndpoint;
17511
18760
  };
18761
+ import: {
18762
+ domainCertificate: ImportDomaincertificateEndpoint;
18763
+ addon: {
18764
+ backup: ImportAddonBackupEndpoint;
18765
+ };
18766
+ };
17512
18767
  add: {
17513
18768
  domain: {
17514
18769
  subdomain: AddDomainSubdomainEndpoint;
@@ -17605,11 +18860,6 @@ declare class ApiClient {
17605
18860
  backup: RetainAddonBackupEndpoint;
17606
18861
  };
17607
18862
  };
17608
- import: {
17609
- addon: {
17610
- backup: ImportAddonBackupEndpoint;
17611
- };
17612
- };
17613
18863
  start: {
17614
18864
  addon: {
17615
18865
  pitr: StartAddonPitrEndpoint;
@@ -17656,4 +18906,4 @@ type ApiClientOpts = {
17656
18906
  customUserAgent?: string;
17657
18907
  };
17658
18908
 
17659
- export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
18909
+ 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 };